X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fglobal_port_matrix.h;h=1dabcbd379339ae1eb0729dcd86062dbdbcd162d;hb=4c42a77441e74356cd909d994e270d1e1314aad4;hp=5aa20f9503beedeac6cf6f44efb65444f118b7d4;hpb=272cad6241ababb0e2033f27e0511596b3e32b15;p=ardour.git diff --git a/gtk2_ardour/global_port_matrix.h b/gtk2_ardour/global_port_matrix.h index 5aa20f9503..1dabcbd379 100644 --- a/gtk2_ardour/global_port_matrix.h +++ b/gtk2_ardour/global_port_matrix.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2009 Paul Davis + Copyright (C) 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 @@ -23,27 +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_state (ARDOUR::BundleChannel c[2], bool); PortMatrixNode::State get_state (ARDOUR::BundleChannel c[2]) const; - std::string disassociation_verb () const { - return _("Disconnect"); - } + std::string disassociation_verb () const; + std::string channel_noun () const; - std::string channel_noun () const { - return _("port"); - } - bool list_is_global (int) const { return true; } @@ -56,15 +50,16 @@ private: }; }; - -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 (); - + GlobalPortMatrix _port_matrix; Gtk::Button _rescan_button; Gtk::CheckButton _show_ports_button;