X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fport_matrix.h;h=09c334b5efe7222f3e5bb570f08e0e6e26e0b378;hb=6b1b72a247bf04c81292fc41af4f69c9b7f90379;hp=a789ea6203c648e1d8d99339c0cd8101656c1080;hpb=ee4e28751edae18bc2c2d3960472f15446b17306;p=ardour.git diff --git a/gtk2_ardour/port_matrix.h b/gtk2_ardour/port_matrix.h index a789ea6203..09c334b5ef 100644 --- a/gtk2_ardour/port_matrix.h +++ b/gtk2_ardour/port_matrix.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2002-2009 Paul Davis + Copyright (C) 2002-2009 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 @@ -26,9 +26,15 @@ #include #include #include +#include #include + #include "ardour/bundle.h" +#include "ardour/types.h" +#include "ardour/session_handle.h" + #include "port_group.h" +#include "port_matrix_types.h" /** The `port matrix' UI. This is a widget which lets the user alter * associations between one set of ports and another. e.g. to connect @@ -36,19 +42,25 @@ * * It is made up of a body, PortMatrixBody, which is rendered using cairo, * and some scrollbars and other stuff. All of this is arranged inside the - * VBox that we inherit from. + * Table that we inherit from. */ namespace ARDOUR { class Bundle; } +namespace Gtk { + namespace Menu_Helpers { + class MenuList; + } +} + class PortMatrixBody; -class PortMatrix : public Gtk::VBox +class PortMatrix : public Gtk::Table, public ARDOUR::SessionHandlePtr { public: - PortMatrix (ARDOUR::Session&, ARDOUR::DataType); + PortMatrix (Gtk::Window*, ARDOUR::Session *, ARDOUR::DataType); ~PortMatrix (); void set_type (ARDOUR::DataType); @@ -56,22 +68,35 @@ public: ARDOUR::DataType type () const { return _type; } - + void disassociate_all (); void setup_scrollbars (); - void popup_channel_context_menu (int, uint32_t, uint32_t); + void popup_menu (ARDOUR::BundleChannel, ARDOUR::BundleChannel, uint32_t); + + int min_height_divisor () const { + return _min_height_divisor; + } + void set_min_height_divisor (int f) { + _min_height_divisor = f; + } enum Arrangement { TOP_TO_RIGHT, ///< column labels on top, row labels to the right LEFT_TO_BOTTOM ///< row labels to the left, column labels on the bottom }; + /** @return Arrangement in use */ Arrangement arrangement () const { return _arrangement; } + bool show_only_bundles () const { + return _show_only_bundles; + } + PortGroupList const * columns () const; + boost::shared_ptr visible_columns () const; /** @return index into the _ports array for the list which is displayed as columns */ int column_index () const { @@ -79,6 +104,7 @@ public: } PortGroupList const * rows () const; + boost::shared_ptr visible_rows () const; /** @return index into the _ports array for the list which is displayed as rows */ int row_index () const { @@ -88,31 +114,48 @@ public: PortGroupList const * ports (int d) const { return &_ports[d]; } - - virtual void setup (); + + boost::shared_ptr visible_ports (int d) const; + + void init (); + void setup (); + virtual void setup_ports (int) = 0; + void setup_all_ports (); + + std::pair max_size () const; + + bool should_show (ARDOUR::DataType) const; + uint32_t count_of_our_type (ARDOUR::ChanCount) const; + uint32_t count_of_our_type_min_1 (ARDOUR::ChanCount) const; + + PortMatrixNode::State get_association (PortMatrixNode) const; + + void flip (); + bool key_press (GdkEventKey *); /** @param c Channels; where c[0] is from _ports[0] and c[1] is from _ports[1]. * @param s New state. */ virtual void set_state (ARDOUR::BundleChannel c[2], bool s) = 0; - enum State { - ASSOCIATED, ///< the ports are associaed - NOT_ASSOCIATED, ///< the ports are not associated - UNKNOWN ///< we don't know anything about these two ports' relationship - }; - /** @param c Channels; where c[0] is from _ports[0] and c[1] is from _ports[1]. * @return state */ - virtual State get_state (ARDOUR::BundleChannel c[2]) const = 0; - - virtual void add_channel (boost::shared_ptr) = 0; - virtual bool can_remove_channels (int) const = 0; - virtual void remove_channel (ARDOUR::BundleChannel) = 0; - virtual bool can_rename_channels (int) const = 0; + virtual PortMatrixNode::State get_state (ARDOUR::BundleChannel c[2]) const = 0; + virtual bool list_is_global (int) const = 0; + + virtual bool can_add_channels (boost::shared_ptr) const; + virtual void add_channel (boost::shared_ptr, ARDOUR::DataType); + virtual bool can_remove_channels (boost::shared_ptr) const; + virtual void remove_channel (ARDOUR::BundleChannel); + virtual void remove_all_channels (boost::weak_ptr); + virtual bool can_rename_channels (boost::shared_ptr) const { + return false; + } virtual void rename_channel (ARDOUR::BundleChannel) {} - + virtual std::string disassociation_verb () const = 0; + virtual std::string channel_noun () const; + enum Result { Cancelled, Accepted @@ -120,6 +163,8 @@ public: sigc::signal Finished; + static bool bundle_with_channels (boost::shared_ptr); + protected: /** We have two port group lists. One will be presented on the rows of the matrix, @@ -129,41 +174,64 @@ protected: from left to right as you go from list 0 to list 1. Hence subclasses which deal with inputs and outputs should put outputs in list 0 and inputs in list 1. */ PortGroupList _ports[2]; - ARDOUR::Session& _session; - + private: void hscroll_changed (); void vscroll_changed (); void routes_changed (); void reconnect_to_routes (); - void visibility_toggled (boost::weak_ptr, Gtk::CheckButton *); void select_arrangement (); + void add_channel_proxy (boost::weak_ptr, ARDOUR::DataType); void remove_channel_proxy (boost::weak_ptr, uint32_t); void rename_channel_proxy (boost::weak_ptr, uint32_t); - - /// port type that we are working with + void disassociate_all_on_channel (boost::weak_ptr, uint32_t, int); + void disassociate_all_on_bundle (boost::weak_ptr, int); + void setup_global_ports (); + void setup_global_ports_proxy (); + void toggle_show_only_bundles (); + bool on_scroll_event (GdkEventScroll *); + boost::shared_ptr io_from_bundle (boost::shared_ptr) const; + void setup_notebooks (); + void remove_notebook_pages (Gtk::Notebook &); + void notebook_page_selected (GtkNotebookPage *, guint); + void route_processors_changed (ARDOUR::RouteProcessorChange); + void body_dimensions_changed (); + void session_going_away (); + void add_remove_option (Gtk::Menu_Helpers::MenuList &, boost::weak_ptr, int); + void add_disassociate_option (Gtk::Menu_Helpers::MenuList &, boost::weak_ptr, int, int); + void port_connected_or_disconnected (); + void update_tab_highlighting (); + std::pair check_flip () const; + bool can_flip () const; + + Gtk::Window* _parent; + + /** port type that we are working with, or NIL if we are working with all of them */ ARDOUR::DataType _type; - std::vector _route_connections; + PBD::ScopedConnectionList _route_connections; + PBD::ScopedConnectionList _changed_connections; + PBD::ScopedConnectionList _bundle_changed_connections; PortMatrixBody* _body; Gtk::HScrollbar _hscroll; Gtk::VScrollbar _vscroll; - Gtk::HBox _main_hbox; - Gtk::HBox _column_visibility_box; - bool _column_visibility_box_added; - Gtk::Label _column_visibility_label; - std::vector _column_visibility_buttons; - Gtk::VBox _row_visibility_box; - bool _row_visibility_box_added; - Gtk::Label _row_visibility_label; - std::vector _row_visibility_buttons; - Gtk::Table _scroller_table; + Gtk::Notebook _vnotebook; + Gtk::Notebook _hnotebook; + Gtk::Label _vlabel; + Gtk::Label _hlabel; + Gtk::VBox _vbox; + Gtk::HBox _hbox; + Gtk::Label _hspacer; + Gtk::Label _vspacer; Gtk::Menu* _menu; - bool _setup_once; Arrangement _arrangement; int _row_index; int _column_index; + int _min_height_divisor; + bool _show_only_bundles; + bool _inhibit_toggle_show_only_bundles; + bool _ignore_notebook_page_selected; }; #endif