VKeybd: Pass on primary (Ctrl/Cmd) shortcuts
[ardour.git] / gtk2_ardour / monitor_selector.h
index 8c642b5dfe26e5720c9903f63a13c7b2368c74e2..14c2a8abe42e52d4c88ae3423fc2e14762fdc04c 100644 (file)
@@ -1,21 +1,22 @@
 /*
-    Copyright (C) 2002-2007 Paul Davis
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
+ * Copyright (C) 2015 Ben Loftis <ben@harrisonconsoles.com>
+ * Copyright (C) 2017 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 #ifndef __gtkardour_monitor_output_selector_h__
 #define __gtkardour_monitor_output_selector_h__
@@ -25,7 +26,7 @@
 
 class MonitorSelector : public PortMatrix
 {
-  public:
+public:
        MonitorSelector (Gtk::Window*, ARDOUR::Session *, boost::shared_ptr<ARDOUR::IO>);
 
        void set_state (ARDOUR::BundleChannel c[2], bool);
@@ -34,8 +35,6 @@ class MonitorSelector : public PortMatrix
        std::string disassociation_verb () const;
        std::string channel_noun () const;
 
-        ARDOUR::Session* session() const { return _session; }
-
        uint32_t n_io_ports () const;
        boost::shared_ptr<ARDOUR::IO> const io () { return _io; }
        void setup_ports (int);
@@ -57,8 +56,7 @@ class MonitorSelector : public PortMatrix
        bool can_remove_channels (boost::shared_ptr<ARDOUR::Bundle>) const { return false; }
        bool can_rename_channels (boost::shared_ptr<ARDOUR::Bundle>) const { return false; }
 
-  private:
-
+private:
        void io_changed ();
        void io_changed_proxy ();
 
@@ -72,16 +70,16 @@ class MonitorSelector : public PortMatrix
 
 class MonitorSelectorWindow : public ArdourWindow
 {
-  public:
+public:
        MonitorSelectorWindow (ARDOUR::Session *, boost::shared_ptr<ARDOUR::IO>, bool can_cancel = false);
 
        MonitorSelector& selector() { return _selector; }
 
-  protected:
+protected:
        void on_map ();
        void on_show ();
 
-  private:
+private:
        MonitorSelector _selector;
 
        void io_name_changed (void *src);