summaryrefslogtreecommitdiff
path: root/gtk2_ardour/location_ui.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-09 18:22:10 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-09 18:22:10 +0000
commit7c5f1b7a26df60417590340d4cfe367ed00e180a (patch)
tree52007e3a379a9bd0e93264d9e4411ca79857e8b1 /gtk2_ardour/location_ui.h
parent2c90b4f36cd074428631eb94b4a95ea0844870bc (diff)
Add glue / lock buttons to the location window.
git-svn-id: svn://localhost/ardour2/branches/3.0@7577 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/location_ui.h')
-rw-r--r--gtk2_ardour/location_ui.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk2_ardour/location_ui.h b/gtk2_ardour/location_ui.h
index c3f07cc84d..b2b7174d8f 100644
--- a/gtk2_ardour/location_ui.h
+++ b/gtk2_ardour/location_ui.h
@@ -86,6 +86,8 @@ class LocationEditRow : public Gtk::HBox, public ARDOUR::SessionHandlePtr
AudioClock length_clock;
Gtk::CheckButton cd_check_button;
Gtk::CheckButton hide_check_button;
+ Gtk::CheckButton lock_check_button;
+ Gtk::CheckButton glue_check_button;
Gtk::Button remove_button;
@@ -117,6 +119,8 @@ class LocationEditRow : public Gtk::HBox, public ARDOUR::SessionHandlePtr
void cd_toggled ();
void hide_toggled ();
+ void lock_toggled ();
+ void glue_toggled ();
void remove_button_pressed ();
void scms_toggled ();
@@ -127,6 +131,8 @@ class LocationEditRow : public Gtk::HBox, public ARDOUR::SessionHandlePtr
void name_changed (ARDOUR::Location *);
void location_changed (ARDOUR::Location *);
void flags_changed (ARDOUR::Location *, void *src);
+ void lock_changed (ARDOUR::Location *);
+ void position_lock_style_changed (ARDOUR::Location *);
PBD::ScopedConnectionList connections;
};