X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fio_selector.h;h=a9810f2d7a3de1f5bd04469603b68b0c58c1f170;hb=d9fcab88f01f7ada6f52482f1ee60fc41c91235c;hp=957db11a2b2cc8d6c5a6cbf0c73604989f2ebf71;hpb=aacf71589f8b586528235c488868f8fab9fe6ead;p=ardour.git diff --git a/gtk2_ardour/io_selector.h b/gtk2_ardour/io_selector.h index 957db11a2b..a9810f2d7a 100644 --- a/gtk2_ardour/io_selector.h +++ b/gtk2_ardour/io_selector.h @@ -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 @@ -17,189 +17,72 @@ */ -#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 -using __gnu_cxx::slist; -#else -#include -#endif +#include "port_matrix.h" +#include "ardour_window.h" -#include - -#include - -#include -#include -#include -#include -#include -#include -#include - -#include - - -namespace ARDOUR { - class IO; - class Session; - class PortInsert; - class Port; - class Redirect; -} - -class IOSelector : public Gtk::VBox { - public: - IOSelector (ARDOUR::Session&, boost::shared_ptr, bool for_input); - ~IOSelector (); - - void redisplay (); - - enum Result { - Cancelled, - Accepted - }; - - sigc::signal Finished; - - protected: - ARDOUR::Session& session; - - private: - boost::shared_ptr 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 displayed_name; - Gtk::TreeModelColumn full_name; - }; - - PortDisplayModelColumns port_display_columns; +class IOSelector : public PortMatrix +{ +public: + IOSelector (Gtk::Window*, ARDOUR::Session *, boost::shared_ptr); - /* 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 const io () { return _io; } + void setup_ports (int); + bool list_is_global (int) const; - Glib::Mutex port_display_lock; - slist 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 (); - void set_button_sensitivity (); + 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 _io; + boost::shared_ptr _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, bool for_input, bool can_cancel=false); - ~IOSelectorWindow (); + IOSelectorWindow (ARDOUR::Session *, boost::shared_ptr, 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); - - 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, 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 (); - sigc::connection going_away_connection; + void io_name_changed (void *src); + bool wm_delete (GdkEventAny*); }; - -#endif /* __ardour_ui_io_selector_h__ */ +#endif /* __gtkardour_io_selector_h__ */