summaryrefslogtreecommitdiff
path: root/gtk2_ardour/vca_master_strip.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-19 14:53:41 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:43 -0400
commitcc3f029c73ec5367f42b394a40b0d86bb9823a4f (patch)
tree977ed68e1d2cabffb73d403109047123df311bd8 /gtk2_ardour/vca_master_strip.h
parentb81fec9d58e18785494c4c554c1c5eac80417860 (diff)
remove name button from vca strip; add drop button
Diffstat (limited to 'gtk2_ardour/vca_master_strip.h')
-rw-r--r--gtk2_ardour/vca_master_strip.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/vca_master_strip.h b/gtk2_ardour/vca_master_strip.h
index a9636dfe69..0df8929d30 100644
--- a/gtk2_ardour/vca_master_strip.h
+++ b/gtk2_ardour/vca_master_strip.h
@@ -49,7 +49,6 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
private:
boost::shared_ptr<ARDOUR::VCA> _vca;
- ArdourButton name_button;
GainMeter gain_meter;
Gtk::Frame global_frame;
@@ -65,6 +64,7 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
ArdourButton solo_button;
ArdourButton mute_button;
ArdourButton assign_button;
+ ArdourButton drop_button;
Gtk::Menu* context_menu;
PBD::ScopedConnectionList vca_connections;
Gtk::MessageDialog* delete_dialog;
@@ -87,7 +87,6 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
void update_vca_display ();
void start_name_edit ();
void finish_name_edit (std::string);
- bool name_button_press (GdkEventButton*);
bool vertical_box_press (GdkEventButton*);
void vca_property_changed (PBD::PropertyChange const & what_changed);
void update_vca_name ();
@@ -95,6 +94,8 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
void hide_confirmation (int);
void self_delete ();
void remove ();
+ void drop_button_press ();
+ void drop_all_slaves ();
};