many changes associated with rationalizing selection flow
[ardour.git] / gtk2_ardour / vca_master_strip.h
index 2533020f61736f476cfa159d7abf832d686f42f7..ea8ee52f6d4a95480cd0026199dc8c3cba1c8929 100644 (file)
 #include <boost/shared_ptr.hpp>
 
 #include <gtkmm/box.h>
+#include <gtkmm/menuitem.h>
 
 #include "ardour_button.h"
 #include "axis_view.h"
+#include "control_slave_ui.h"
 #include "gain_meter.h"
 
 namespace ARDOUR {
@@ -32,35 +34,78 @@ namespace ARDOUR {
        class VCA;
 }
 
+class FloatingTextEntry;
+
 class VCAMasterStrip : public AxisView, public Gtk::EventBox
 {
       public:
        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;
-       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; }
 
-      private:
+       static PBD::Signal1<void,VCAMasterStrip*> CatchDeletion;
+
+       bool marked_for_display () const;
+       bool set_marked_for_display (bool);
+
+     private:
        boost::shared_ptr<ARDOUR::VCA> _vca;
-       Gtk::HBox    vertical_padding;
-       ArdourButton name_button;
-       ArdourButton active_button;
        GainMeter    gain_meter;
 
        Gtk::Frame   global_frame;
        Gtk::VBox    global_vpacker;
        Gtk::HBox    top_padding;
        Gtk::HBox    bottom_padding;
+       Gtk::HBox    solo_mute_box;
        ArdourButton width_button;
        ArdourButton color_button;
        ArdourButton hide_button;
        ArdourButton number_label;
-       Gtk::HBox    width_hide_box;
+       ArdourButton solo_button;
+       ArdourButton mute_button;
+       ArdourButton drop_button;
+       Gtk::Menu*   context_menu;
+       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>);
        void hide_clicked();
        bool width_button_pressed (GdkEventButton *);
        void set_selected (bool);
+       bool solo_release (GdkEventButton*);
+       bool mute_release (GdkEventButton*);
+       void set_width (bool wide);
+       void set_solo_text ();
+       void solo_changed ();
+       void mute_changed ();
+       void unassign ();
+       void start_name_edit ();
+       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 ();
+       void hide_confirmation (int);
+       void self_delete ();
+       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*);
 };