X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fglobal_port_matrix.h;h=d45a6390938c067f6d10bb10640b62da3c3b50a1;hb=dd8c5f9144470433bbedf932fcff65fc9630402b;hp=1372c651f1d1e7fcef1e91da767da5b81cbc8bb0;hpb=6da5dd6d41df9e3d05b9b8cceaf1b671b4e21141;p=ardour.git diff --git a/gtk2_ardour/global_port_matrix.h b/gtk2_ardour/global_port_matrix.h index 1372c651f1..d45a639093 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,32 +23,22 @@ #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 (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; - void add_channel (boost::shared_ptr) {} - bool can_remove_channels (int d) const { - return false; - } - void remove_channel (ARDOUR::BundleChannel) {} - bool can_rename_channels (int d) const { - return false; - } + std::string disassociation_verb () const; + std::string channel_noun () const; - std::string disassociation_verb () const { - return _("Disconnect"); - } - bool list_is_global (int) const { return true; } @@ -61,17 +51,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_realize (); - void max_size_changed (); - void set_max_size (); - + void on_show (); + GlobalPortMatrix _port_matrix; Gtk::Button _rescan_button; Gtk::CheckButton _show_ports_button;