X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fvca_master_strip.h;h=7208071f85d2bcddea50ce8669d2a00d037469c2;hb=5583929a3491075df4e1862579e8df7318dc7370;hp=b65aef0c4af6811481128136c48f9c965129a045;hpb=9339a7b9979863537401100762e39c231fd8bc53;p=ardour.git diff --git a/gtk2_ardour/vca_master_strip.h b/gtk2_ardour/vca_master_strip.h index b65aef0c4a..7208071f85 100644 --- a/gtk2_ardour/vca_master_strip.h +++ b/gtk2_ardour/vca_master_strip.h @@ -22,9 +22,11 @@ #include #include +#include #include "ardour_button.h" #include "axis_view.h" +#include "control_slave_ui.h" #include "gain_meter.h" namespace ARDOUR { @@ -32,27 +34,35 @@ namespace ARDOUR { class VCA; } +class FloatingTextEntry; + class VCAMasterStrip : public AxisView, public Gtk::EventBox { public: VCAMasterStrip (ARDOUR::Session*, boost::shared_ptr); + ~VCAMasterStrip (); + + boost::shared_ptr 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 vca() const { return _vca; } - private: + static PBD::Signal1 CatchDeletion; + + bool marked_for_display () const; + bool set_marked_for_display (bool); + + private: boost::shared_ptr _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 width_hide_box; Gtk::HBox solo_mute_box; ArdourButton width_button; ArdourButton color_button; @@ -60,10 +70,14 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox ArdourButton number_label; ArdourButton solo_button; ArdourButton mute_button; - ArdourButton assign_button; - bool wide; + 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); void hide_clicked(); bool width_button_pressed (GdkEventButton *); void set_selected (bool); @@ -73,6 +87,23 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox 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_all_slaves (); + + void parameter_changed (std::string const& p); + void set_button_names (); + + void start_color_edit (); + void finish_color_edit (int, Gtk::ColorSelectionDialog*); };