Add option to insert time to move glued / locked markers. Fixes #3393.

git-svn-id: svn://localhost/ardour2/branches/3.0@7604 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-08-11 23:41:26 +00:00
parent 636efaabc4
commit 1e2fc9dcc0
4 changed files with 62 additions and 8 deletions

View file

@ -30,14 +30,20 @@ public:
Editing::InsertTimeOption intersected_region_action ();
bool move_glued () const;
bool move_markers () const;
bool move_glued_markers () const;
bool move_locked_markers () const;
bool move_tempos () const;
nframes64_t distance () const;
private:
void move_markers_toggled ();
PublicEditor& _editor;
Gtk::ComboBoxText _intersected_combo;
Gtk::CheckButton _move_glued;
Gtk::CheckButton _move_markers;
Gtk::CheckButton _move_glued_markers;
Gtk::CheckButton _move_locked_markers;
Gtk::CheckButton _move_tempos;
AudioClock _clock;
};