OSC: Add /jog/mode/name
[ardour.git] / gtk2_ardour / mixer_strip.h
index df3b78dcd325329be227a529bcda0b2b054aff9d..a8e80d8afad157c6dcff8dab4c89855cd7f4f2e5 100644 (file)
@@ -47,6 +47,8 @@
 
 #include "pbd/fastlog.h"
 
+#include "axis_view.h"
+#include "control_slave_ui.h"
 #include "ardour_knob.h"
 #include "route_ui.h"
 #include "gain_meter.h"
@@ -74,13 +76,20 @@ class MotionController;
 class RouteGroupMenu;
 class ArdourWindow;
 
-class MixerStrip : public RouteUI, public Gtk::EventBox
+class MixerStrip : public AxisView, public RouteUI, public Gtk::EventBox
 {
   public:
        MixerStrip (Mixer_UI&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>, bool in_mixer = true);
        MixerStrip (Mixer_UI&, ARDOUR::Session*, bool in_mixer = true);
        ~MixerStrip ();
 
+       std::string name()  const;
+       Gdk::Color color () const;
+       bool marked_for_display () const;
+       bool set_marked_for_display (bool);
+
+       boost::shared_ptr<ARDOUR::Stripable> stripable() const { return RouteUI::stripable(); }
+
        void set_width_enum (Width, void* owner);
        Width get_width_enum () const { return _width; }
        void* width_owner () const { return _width_owner; }
@@ -131,8 +140,7 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
        void toggle_processors ();
        void ab_plugins ();
 
-       void set_selected(bool yn);
-       bool is_selected() {return _selected;}
+       void set_selected (bool yn);
 
        static MixerStrip* entered_mixer_strip() { return _entered_mixer_strip; }
 
@@ -158,7 +166,7 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
        ArdourButton         width_button;
        ArdourButton         number_label;
        Gtk::HBox           width_hide_box;
-       Gtk::EventBox*      spacer;
+       Gtk::EventBox           spacer;
 
        void hide_clicked();
        bool width_button_pressed (GdkEventButton *);
@@ -176,9 +184,9 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
        Gtk::Table solo_iso_table;
        Gtk::Table mute_solo_table;
        Gtk::Table bottom_button_table;
-       Gtk::Table vca_table;
 
-       ArdourButton                 meter_point_button;
+       void vca_assign (boost::shared_ptr<ARDOUR::VCA>);
+       void vca_unassign (boost::shared_ptr<ARDOUR::VCA>);
 
        void meter_changed ();
        void monitor_changed ();
@@ -190,6 +198,7 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
 
        void input_button_resized (Gtk::Allocation&);
        void output_button_resized (Gtk::Allocation&);
+       void comment_button_resized (Gtk::Allocation&);
 
        ArdourButton* midi_input_enable_button;
        Gtk::HBox   input_button_box;
@@ -200,6 +209,9 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
        bool input_active_button_press (GdkEventButton*);
        bool input_active_button_release (GdkEventButton*);
 
+       void help_count_plugins (boost::weak_ptr<ARDOUR::Processor>);
+       uint32_t _plugin_insert_cnt;
+
        gint    mark_update_safe ();
        guint32 mode_switch_in_progress;
 
@@ -235,13 +247,13 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
        void io_changed_proxy ();
 
        Gtk::Menu *send_action_menu;
-       Gtk::MenuItem* rename_menu_item;
        void build_send_action_menu ();
 
        PBD::ScopedConnection panstate_connection;
        PBD::ScopedConnection panstyle_connection;
        void connect_to_pan ();
        void update_panner_choices ();
+       void update_trim_control ();
 
        void update_diskstream_display ();
        void update_input_display ();
@@ -252,7 +264,6 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
        Gtk::Menu* route_ops_menu;
        void build_route_ops_menu ();
        gboolean name_button_button_press (GdkEventButton*);
-       gboolean name_button_button_release (GdkEventButton*);
        gboolean number_button_button_press (GdkEventButton*);
        void list_route_operations ();
 
@@ -264,7 +275,7 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
        void route_color_changed ();
        void show_passthru_color ();
 
-       void property_changed (const PBD::PropertyChange&);
+       void route_property_changed (const PBD::PropertyChange&);
        void name_button_resized (Gtk::Allocation&);
        void name_changed ();
        void update_speed_display ();
@@ -319,6 +330,10 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
        PBD::ScopedConnection _level_meter_connection;
 
        std::string meter_point_string (ARDOUR::MeterPoint);
+
+       void update_track_number_visibility ();
+
+       ControlSlaveUI control_slave_ui;
 };
 
 #endif /* __ardour_mixer_strip__ */