Fix key-forwarding to linuxVST UIs
[ardour.git] / gtk2_ardour / io_selector.h
index 5187f6468933fece4863d9327dfe5e9ca7e66908..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 <gtk--.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&, ARDOUR::IO&, bool for_input);
-       ~IOSelector ();
-
-       void redisplay ();
-
-       enum Result {
-               Cancelled,
-               Accepted
-       };
-
-       SigC::Signal1<void,Result> Finished;
-
-  protected:
-       ARDOUR::Session& session;
-
-  private:
-       ARDOUR::IO& io;
-       bool for_input;
-       ARDOUR::Port *selected_port;
-
-       Gtk::VBox main_box;
-       Gtk::HBox port_and_selector_box;
+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;
 
-       PBD::Lock port_display_lock;
-       slist<Gtk::CList *> 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;
+       }
 
-       void port_selection_handler (gint row, gint col, GdkEvent *ev, Gtk::CList *);
+       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 port_column_button_release (GdkEventButton*, Gtk::CList*);
-       gint connection_click (GdkEventButton *, Gtk::CList *clist);
-       
-       void select_clist(Gtk::CList*);
-       void select_next_clist ();
+       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&, 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:
-       gint map_event_impl (GdkEventAny *);
-       
-  private:
-       IOSelector _selector;
-
-       Gtk::VBox vbox;
-
-       /* 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&, ARDOUR::PortInsert&);
-       
-       void redisplay ();
-       void finished (IOSelector::Result);
+       void on_map ();
+       void on_show ();
 
   private:
-       
-       Gtk::HBox  hbox;
-       IOSelector input_selector;
-       IOSelector output_selector;
-       
-};
+       IOSelector _selector;
 
-class PortInsertWindow : public ArdourDialog
-{
-  public: 
-       PortInsertWindow (ARDOUR::Session&, ARDOUR::PortInsert&, bool can_cancel=false);
-       
-  protected:
-       gint map_event_impl (GdkEventAny *);
-       
-  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 (ARDOUR::Redirect*);
+       void io_name_changed (void *src);
+       bool wm_delete (GdkEventAny*);
 };
 
-
-#endif /* __ardour_ui_io_selector_h__ */
+#endif /* __gtkardour_io_selector_h__ */