X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=gtk2_ardour%2Fglobal_port_matrix.h;h=0ce77f74c3d9e35a2ca97bf14ef89e4447171324;hb=a4664d68c031c77c5e436fe97a92005b7d2019d8;hp=db742252ad894a3cb6bf04bc60df20ce50992016;hpb=eef922383510830de4efa8a3096fce011b2e6b9f;p=ardour.git diff --git a/gtk2_ardour/global_port_matrix.h b/gtk2_ardour/global_port_matrix.h index db742252ad..0ce77f74c3 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 @@ -28,21 +28,15 @@ class GlobalPortMatrix : public PortMatrix { public: - GlobalPortMatrix (ARDOUR::Session&, ARDOUR::DataType); + GlobalPortMatrix (Gtk::Window*, ARDOUR::Session*, ARDOUR::DataType); void setup_ports (int); - + void set_state (ARDOUR::BundleChannel c[2], bool); - State get_state (ARDOUR::BundleChannel c[2]) const; + 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; bool list_is_global (int) const { return true; @@ -60,14 +54,14 @@ private: class GlobalPortMatrixWindow : public Gtk::Window { public: - GlobalPortMatrixWindow (ARDOUR::Session&, ARDOUR::DataType); + GlobalPortMatrixWindow (ARDOUR::Session *, ARDOUR::DataType); private: - void rescan (); - + void on_show (); + GlobalPortMatrix _port_matrix; Gtk::Button _rescan_button; - + Gtk::CheckButton _show_ports_button; };