start adding a context menu for VCA strips

This commit is contained in:
Paul Davis 2016-03-08 22:08:51 -05:00
parent 567fb50aad
commit 9f66fe1ebb
2 changed files with 23 additions and 2 deletions

View file

@ -63,7 +63,7 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
ArdourButton solo_button;
ArdourButton mute_button;
ArdourButton assign_button;
bool wide;
Gtk::Menu* context_menu;
PBD::ScopedConnectionList vca_connections;
void hide_clicked();
@ -83,6 +83,7 @@ class VCAMasterStrip : public AxisView, public Gtk::EventBox
bool name_button_press (GdkEventButton*);
void vca_property_changed (PBD::PropertyChange const & what_changed);
void update_vca_name ();
void build_context_menu ();
};