Relent a bit and make adding a route to a group which already contains that group...
[ardour.git] / gtk2_ardour / global_port_matrix.h
index 1e383a094a64eca8b7674003b9721ba94b622017..8e13866f4227d278979e4eb1ad858d558c78c010 100644 (file)
@@ -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
 #include "port_matrix.h"
 #include "port_group.h"
 #include "ardour_dialog.h"
+#include "i18n.h"
 
 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);
        PortMatrixNode::State get_state (ARDOUR::BundleChannel c[2]) const;
 
-       void add_channel (boost::shared_ptr<ARDOUR::Bundle>) {}
-       bool can_remove_channels (int d) const {
-               return false;
+       std::string disassociation_verb () const {
+               return _("Disconnect");
        }
-       void remove_channel (ARDOUR::BundleChannel) {}
-       bool can_rename_channels (int d) const {
-               return false;
+
+       std::string channel_noun () const {
+               return _("port");
        }
 
        bool list_is_global (int) const {
@@ -60,11 +60,11 @@ private:
 class GlobalPortMatrixWindow : public Gtk::Window
 {
 public:
-       GlobalPortMatrixWindow (ARDOUR::Session&, ARDOUR::DataType);
+       GlobalPortMatrixWindow (ARDOUR::Session *, ARDOUR::DataType);
 
 private:
-       void on_realize ();
-       
+       void on_show ();
+
        GlobalPortMatrix _port_matrix;
        Gtk::Button _rescan_button;
        Gtk::CheckButton _show_ports_button;