phase out phase in favor of polarity
[ardour.git] / gtk2_ardour / vca_master_strip.h
index 0df8929d309f093f9a20f9ce8f787a908ae77605..bca74fded078c4a2f3794aa2cf0e0584fd16305b 100644 (file)
@@ -26,6 +26,7 @@
 
 #include "ardour_button.h"
 #include "axis_view.h"
+#include "control_slave_ui.h"
 #include "gain_meter.h"
 
 namespace ARDOUR {
@@ -42,11 +43,15 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        ~VCAMasterStrip ();
 
        std::string name() const;
-       std::string state_id() const { return "VCAMasterStrip"; }
+       Gdk::Color color () const;
+       std::string state_id() const;
        boost::shared_ptr<ARDOUR::VCA> vca() const { return _vca; }
 
        static PBD::Signal1<void,VCAMasterStrip*> CatchDeletion;
 
+       bool marked_for_display () const;
+       bool set_marked_for_display (bool);
+
      private:
        boost::shared_ptr<ARDOUR::VCA> _vca;
        GainMeter    gain_meter;
@@ -55,7 +60,6 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        Gtk::VBox    global_vpacker;
        Gtk::HBox    top_padding;
        Gtk::HBox    bottom_padding;
-       Gtk::HBox    width_hide_box;
        Gtk::HBox    solo_mute_box;
        ArdourButton width_button;
        ArdourButton color_button;
@@ -63,12 +67,12 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        ArdourButton number_label;
        ArdourButton solo_button;
        ArdourButton mute_button;
-       ArdourButton assign_button;
        ArdourButton drop_button;
        Gtk::Menu*   context_menu;
-       PBD::ScopedConnectionList vca_connections;
        Gtk::MessageDialog* delete_dialog;
        ArdourButton vertical_button;
+       ControlSlaveUI control_slave_ui;
+       PBD::ScopedConnectionList vca_connections;
 
        void spill ();
        void spill_change (boost::shared_ptr<ARDOUR::VCA>);
@@ -81,13 +85,10 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        void set_solo_text ();
        void solo_changed ();
        void mute_changed ();
-       void vca_menu_toggle (Gtk::CheckMenuItem* menuitem, uint32_t n);
        void unassign ();
-       bool vca_button_release (GdkEventButton*);
-       void update_vca_display ();
        void start_name_edit ();
-       void finish_name_edit (std::string);
-       bool vertical_box_press (GdkEventButton*);
+       void finish_name_edit (std::string, int);
+       bool vertical_button_press (GdkEventButton*);
        void vca_property_changed (PBD::PropertyChange const & what_changed);
        void update_vca_name ();
        void build_context_menu ();
@@ -96,6 +97,12 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        void remove ();
        void drop_button_press ();
        void drop_all_slaves ();
+
+       void parameter_changed (std::string const& p);
+       void set_button_names ();
+
+       void start_color_edit ();
+       void finish_color_edit (int, Gtk::ColorSelectionDialog*);
 };