X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fglobal_port_matrix.h;h=3def23a6a3d6c47c7f47d64d33931bbc015d04ea;hb=352c824fa3999244ef1ebf002d57d4b2dea5ae3c;hp=508376a9d179bb020538ec04ef022011e518eeed;hpb=bb9cc45cd22af67ac275a5e73accbe14fee664d8;p=ardour.git diff --git a/gtk2_ardour/global_port_matrix.h b/gtk2_ardour/global_port_matrix.h index 508376a9d1..3def23a6a3 100644 --- a/gtk2_ardour/global_port_matrix.h +++ b/gtk2_ardour/global_port_matrix.h @@ -23,26 +23,21 @@ #include #include "port_matrix.h" #include "port_group.h" -#include "ardour_dialog.h" -#include "i18n.h" +#include "ardour_window.h" class GlobalPortMatrix : public PortMatrix { public: - GlobalPortMatrix (Gtk::Window*, ARDOUR::Session&, ARDOUR::DataType); + GlobalPortMatrix (Gtk::Window*, ARDOUR::Session*, ARDOUR::DataType); void setup_ports (int); + void set_session (ARDOUR::Session* s); void set_state (ARDOUR::BundleChannel c[2], bool); PortMatrixNode::State get_state (ARDOUR::BundleChannel c[2]) const; - std::string disassociation_verb () const { - return _("Disconnect"); - } - - std::string channel_noun () const { - return _("port"); - } + std::string disassociation_verb () const; + std::string channel_noun () const; bool list_is_global (int) const { return true; @@ -51,16 +46,17 @@ public: private: /* see PortMatrix: signal flow from 0 to 1 (out to in) */ enum { - OUT = 0, - IN = 1, + FLOW_OUT = 0, + FLOW_IN = 1, }; }; - -class GlobalPortMatrixWindow : public Gtk::Window +class GlobalPortMatrixWindow : public ArdourWindow { public: - GlobalPortMatrixWindow (ARDOUR::Session&, ARDOUR::DataType); + GlobalPortMatrixWindow (ARDOUR::Session *, ARDOUR::DataType); + + void set_session (ARDOUR::Session *); private: void on_show ();