more debugging
[ardour.git] / gtk2_ardour / port_matrix.h
index 78914f0c250d71f3682d85752e327431dadff4ff..d7776ca0cd3ee9157ade5eb4b50dbe90215d2d10 100644 (file)
 #include <gtkmm/checkbutton.h>
 #include <gtkmm/notebook.h>
 #include <boost/shared_ptr.hpp>
+
 #include "ardour/bundle.h"
 #include "ardour/types.h"
+#include "ardour/session_handle.h"
+
 #include "port_group.h"
 #include "port_matrix_types.h"
-#include "i18n.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
@@ -47,12 +49,18 @@ namespace ARDOUR {
        class Bundle;
 }
 
+namespace Gtk {
+       namespace Menu_Helpers {
+               class MenuList;
+       }
+}
+
 class PortMatrixBody;
 
-class PortMatrix : public Gtk::Table
+class PortMatrix : public Gtk::Table, public ARDOUR::SessionHandlePtr
 {
 public:
-       PortMatrix (Gtk::Window*, ARDOUR::Session&, ARDOUR::DataType);
+       PortMatrix (Gtk::Window*, ARDOUR::Session *, ARDOUR::DataType);
        ~PortMatrix ();
 
        void set_type (ARDOUR::DataType);
@@ -88,7 +96,7 @@ public:
        }
 
        PortGroupList const * columns () const;
-       boost::shared_ptr<PortGroup> visible_columns () const;
+       boost::shared_ptr<const PortGroup> visible_columns () const;
 
        /** @return index into the _ports array for the list which is displayed as columns */
        int column_index () const {
@@ -96,7 +104,7 @@ public:
        }
 
        PortGroupList const * rows () const;
-       boost::shared_ptr<PortGroup> visible_rows () const;
+       boost::shared_ptr<const PortGroup> visible_rows () const;
 
        /** @return index into the _ports array for the list which is displayed as rows */
        int row_index () const {
@@ -107,9 +115,7 @@ public:
                return &_ports[d];
        }
 
-       boost::shared_ptr<const PortGroup> visible_ports (int d) const {
-               return _visible_ports[d];
-       }
+       boost::shared_ptr<const PortGroup> visible_ports (int d) const;
        
        void init ();
        void setup ();
@@ -118,6 +124,11 @@ public:
 
        std::pair<uint32_t, uint32_t> max_size () const;
 
+       bool should_show (ARDOUR::DataType) const;
+       uint32_t count_of_our_type (ARDOUR::ChanCount) const;
+
+       PortMatrixNode::State get_association (PortMatrixNode) const;
+
        /** @param c Channels; where c[0] is from _ports[0] and c[1] is from _ports[1].
         *  @param s New state.
         */
@@ -130,15 +141,16 @@ public:
        virtual bool list_is_global (int) const = 0;
 
        virtual bool can_add_channel (boost::shared_ptr<ARDOUR::Bundle>) const;
-       virtual void add_channel (boost::shared_ptr<ARDOUR::Bundle>);
+       virtual void add_channel (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::DataType);
        virtual bool can_remove_channels (boost::shared_ptr<ARDOUR::Bundle>) const;
        virtual void remove_channel (ARDOUR::BundleChannel);
+       virtual void remove_all_channels (boost::weak_ptr<ARDOUR::Bundle>);
        virtual bool can_rename_channels (boost::shared_ptr<ARDOUR::Bundle>) const {
                return false;
        }
        virtual void rename_channel (ARDOUR::BundleChannel) {}
        virtual std::string disassociation_verb () const = 0;
-       virtual std::string channel_noun () const { return _("channel"); }
+       virtual std::string channel_noun () const;
 
        enum Result {
                Cancelled,
@@ -156,8 +168,6 @@ 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];
-       boost::shared_ptr<PortGroup> _visible_ports[2];
-       ARDOUR::Session& _session;
 
 private:
 
@@ -166,26 +176,33 @@ private:
        void routes_changed ();
        void reconnect_to_routes ();
        void select_arrangement ();
-       void add_channel_proxy (boost::weak_ptr<ARDOUR::Bundle>);
+       void add_channel_proxy (boost::weak_ptr<ARDOUR::Bundle>, ARDOUR::DataType);
        void remove_channel_proxy (boost::weak_ptr<ARDOUR::Bundle>, uint32_t);
        void rename_channel_proxy (boost::weak_ptr<ARDOUR::Bundle>, uint32_t);
        void disassociate_all_on_channel (boost::weak_ptr<ARDOUR::Bundle>, uint32_t, int);
+       void disassociate_all_on_bundle (boost::weak_ptr<ARDOUR::Bundle>, int);
        void setup_global_ports ();
+       void setup_global_ports_proxy ();
        void toggle_show_only_bundles ();
        bool on_scroll_event (GdkEventScroll *);
        boost::shared_ptr<ARDOUR::IO> io_from_bundle (boost::shared_ptr<ARDOUR::Bundle>) const;
-       void bundle_changed (ARDOUR::Bundle::Change);
        void setup_notebooks ();
        void remove_notebook_pages (Gtk::Notebook &);
-       void v_page_selected (GtkNotebookPage *, guint);
-       void h_page_selected (GtkNotebookPage *, guint);
+       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<ARDOUR::Bundle>, int);
+       void add_disassociate_option (Gtk::Menu_Helpers::MenuList &, boost::weak_ptr<ARDOUR::Bundle>, int, int);
+       void port_connected_or_disconnected ();
 
        Gtk::Window* _parent;
 
-       /// port type that we are working with
+       /// port type that we are working with, or NIL if we are working with all of them
        ARDOUR::DataType _type;
-       std::vector<sigc::connection> _route_connections;
+       PBD::ScopedConnectionList _route_connections;
+       PBD::ScopedConnectionList _changed_connections;
+       PBD::ScopedConnectionList _bundle_changed_connections;
 
        PortMatrixBody* _body;
        Gtk::HScrollbar _hscroll;
@@ -196,6 +213,8 @@ private:
        Gtk::Label _hlabel;
        Gtk::VBox _vbox;
        Gtk::HBox _hbox;
+       Gtk::Label _hspacer;
+       Gtk::Label _vspacer;
        Gtk::Menu* _menu;
        Arrangement _arrangement;
        int _row_index;