Fix key-forwarding to linuxVST UIs
[ardour.git] / gtk2_ardour / io_selector.h
index 745677bfa10818f4eb3bf8c3d8d58acaa2552796..a9810f2d7a3de1f5bd04469603b68b0c58c1f170 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002 Paul Davis 
+    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
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
-#ifndef __ardour_ui_io_selector_h__
-#define __ardour_ui_io_selector_h__
+#ifndef __gtkardour_io_selector_h__
+#define __gtkardour_io_selector_h__
 
-#if __GNUC__ >= 3
-#include <ext/slist>
-using __gnu_cxx::slist;
-#else
-#include <slist.h>
-#endif
+#include "port_matrix.h"
+#include "ardour_window.h"
 
-#include <string>
-
-#include <glibmm/thread.h>
-
-#include <gtkmm/box.h>
-#include <gtkmm/frame.h>
-#include <gtkmm/button.h>
-#include <gtkmm/scrolledwindow.h>
-#include <gtkmm/notebook.h>
-#include <gtkmm/treeview.h>
-#include <gtkmm/liststore.h>
-
-#include <ardour_dialog.h>
-
-
-namespace ARDOUR {
-       class IO;
-       class Session;
-       class PortInsert;
-       class Port;
-       class Redirect;
-}
-
-class IOSelector : public Gtk::VBox {
-  public:
-       IOSelector (ARDOUR::Session&, boost::shared_ptr<ARDOUR::IO>, bool for_input);
-       ~IOSelector ();
-
-       void redisplay ();
-
-       enum Result {
-               Cancelled,
-               Accepted
-       };
-
-       sigc::signal<void,Result> Finished;
-
-  protected:
-       ARDOUR::Session& session;
-       
-  private:
-       boost::shared_ptr<ARDOUR::IO> io;
-       bool for_input;
-       ARDOUR::Port *selected_port;
-       sigc::connection page_selection_connection;
-
-       Gtk::VBox main_box;
-       Gtk::HBox port_and_selector_box;
-
-       /* column model */
-
-       struct PortDisplayModelColumns : public Gtk::TreeModel::ColumnRecord {
-
-           PortDisplayModelColumns() { 
-                   add (displayed_name);
-                   add (full_name);
-           }
-
-           Gtk::TreeModelColumn<Glib::ustring>       displayed_name;
-           Gtk::TreeModelColumn<Glib::ustring>       full_name;
-       };
-
-       PortDisplayModelColumns port_display_columns;
+class IOSelector : public PortMatrix
+{
+public:
+       IOSelector (Gtk::Window*, ARDOUR::Session *, boost::shared_ptr<ARDOUR::IO>);
 
-       /* client/port selection */
+       void set_state (ARDOUR::BundleChannel c[2], bool);
+       PortMatrixNode::State get_state (ARDOUR::BundleChannel c[2]) const;
 
-       Gtk::Notebook notebook;
-       Gtk::Frame selector_frame;
-       Gtk::VBox selector_box;
-       Gtk::HBox selector_button_box;
+       std::string disassociation_verb () const;
+       std::string channel_noun () const;
 
-       /* ports */
+       ARDOUR::Session* session() const { return _session; }
 
-       Gtk::VBox port_box;
-       Gtk::HBox port_button_box;
-       Gtk::VBox port_and_button_box;
-       Gtk::Frame port_frame;
-       Gtk::Button add_port_button;
-       Gtk::Button remove_port_button;
-       Gtk::Button clear_connections_button;
-       Gtk::ScrolledWindow port_display_scroller;
+       uint32_t n_io_ports () const;
+       boost::shared_ptr<ARDOUR::IO> const io () { return _io; }
+       void setup_ports (int);
+       bool list_is_global (int) const;
 
-       Glib::Mutex port_display_lock;
-       slist<Gtk::TreeView *> port_displays;
-       void display_ports ();
+       bool find_inputs_for_io_outputs () const {
+               return _find_inputs_for_io_outputs;
+       }
 
-       void rescan ();
-       void clear_connections ();
+       int ours () const {
+               return _ours;
+       }
 
-       bool port_selection_changed(GdkEventButton *, Gtk::TreeView*);
+       int other () const {
+               return _other;
+       }
 
-       void ports_changed (ARDOUR::IOChange, void *);
-       void name_changed (void*);
+private:
 
-       void add_port ();
-       void remove_port ();
-       gint remove_port_when_idle (ARDOUR::Port *);
+       void setup_type ();
+       void io_changed ();
+       void io_changed_proxy ();
 
-       gint connection_button_release (GdkEventButton *, Gtk::TreeView*);
-       
-       void select_treeview(Gtk::TreeView*);
-       void select_next_treeview ();
+       int _other;
+       int _ours;
+       boost::shared_ptr<ARDOUR::IO> _io;
+       boost::shared_ptr<PortGroup> _port_group;
+       bool _find_inputs_for_io_outputs;
+       PBD::ScopedConnection _io_connection;
 };
 
-class IOSelectorWindow : public ArdourDialog
+class IOSelectorWindow : public ArdourWindow
 {
   public:
-       IOSelectorWindow (ARDOUR::Session&, boost::shared_ptr<ARDOUR::IO>, bool for_input, bool can_cancel=false);
-       ~IOSelectorWindow ();
+       IOSelectorWindow (ARDOUR::Session *, boost::shared_ptr<ARDOUR::IO>, bool can_cancel = false);
 
        IOSelector& selector() { return _selector; }
 
   protected:
        void on_map ();
-       
-  private:
-       IOSelector _selector;
-
-       /* overall operation buttons */
-
-       Gtk::Button ok_button;
-       Gtk::Button cancel_button;
-       Gtk::Button rescan_button;
-       Gtk::HBox button_box;
-
-       void rescan ();
-       void cancel ();
-       void accept ();
-};
-
-
-class PortInsertUI : public Gtk::VBox
-{
-  public: 
-       PortInsertUI (ARDOUR::Session&, boost::shared_ptr<ARDOUR::PortInsert>);
-       
-       void redisplay ();
-       void finished (IOSelector::Result);
+       void on_show ();
 
   private:
-       
-       Gtk::HBox  hbox;
-       IOSelector input_selector;
-       IOSelector output_selector;
-       
-};
+       IOSelector _selector;
 
-class PortInsertWindow : public ArdourDialog
-{
-  public: 
-       PortInsertWindow (ARDOUR::Session&, boost::shared_ptr<ARDOUR::PortInsert>, bool can_cancel=false);
-       
-  protected:
-       void on_map ();
-       
-  private:
-       
-       PortInsertUI _portinsertui;
-       Gtk::VBox vbox;
-       
-       Gtk::Button ok_button;
-       Gtk::Button cancel_button;
-       Gtk::Button rescan_button;
-       Gtk::Frame button_frame;
-       Gtk::HBox button_box;
-       
-       void rescan ();
-       void cancel ();
-       void accept ();
-
-       void plugin_going_away ();
+       void io_name_changed (void *src);
+       bool wm_delete (GdkEventAny*);
 };
 
-
-#endif /* __ardour_ui_io_selector_h__ */
+#endif /* __gtkardour_io_selector_h__ */