Fix yet another oversight for the windows icon file update
[ardour.git] / gtk2_ardour / vca_master_strip.h
index 63b5e7a896b3e188ca455ea88bff6fe999aa890b..6cc728ea5214602d01dacda90eaab354536c98b2 100644 (file)
@@ -42,6 +42,9 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        VCAMasterStrip (ARDOUR::Session*, boost::shared_ptr<ARDOUR::VCA>);
        ~VCAMasterStrip ();
 
+       boost::shared_ptr<ARDOUR::Stripable> stripable() const;
+       ARDOUR::PresentationInfo const & presentation_info () const;
+
        std::string name() const;
        Gdk::Color color () const;
        std::string state_id() const;
@@ -49,6 +52,8 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
 
        static PBD::Signal1<void,VCAMasterStrip*> CatchDeletion;
 
+       bool marked_for_display () const;
+       bool set_marked_for_display (bool);
 
      private:
        boost::shared_ptr<ARDOUR::VCA> _vca;
@@ -65,7 +70,6 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        ArdourButton number_label;
        ArdourButton solo_button;
        ArdourButton mute_button;
-       ArdourButton drop_button;
        Gtk::Menu*   context_menu;
        Gtk::MessageDialog* delete_dialog;
        ArdourButton vertical_button;
@@ -73,7 +77,7 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        PBD::ScopedConnectionList vca_connections;
 
        void spill ();
-       void spill_change (boost::shared_ptr<ARDOUR::VCA>);
+       void spill_change (boost::shared_ptr<ARDOUR::Stripable>);
        void hide_clicked();
        bool width_button_pressed (GdkEventButton *);
        void set_selected (bool);
@@ -87,17 +91,23 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
        void start_name_edit ();
        void finish_name_edit (std::string, int);
        bool vertical_button_press (GdkEventButton*);
+       bool number_button_press (GdkEventButton*);
        void vca_property_changed (PBD::PropertyChange const & what_changed);
        void update_vca_name ();
        void build_context_menu ();
        void hide_confirmation (int);
        void self_delete ();
        void remove ();
-       void drop_button_press ();
        void drop_all_slaves ();
+       void assign_all_selected ();
+       void unassign_all_selected ();
 
        void parameter_changed (std::string const& p);
        void set_button_names ();
+       void update_bottom_padding ();
+
+       void start_color_edit ();
+       void finish_color_edit (int, Gtk::ColorSelectionDialog*);
 };