Try to make new layering stuff play nicely with undo.

git-svn-id: svn://localhost/ardour2/branches/3.0@11097 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-12-27 20:21:00 +00:00
parent 86cb9348e8
commit f440f91849
5 changed files with 113 additions and 7 deletions

View file

@ -1099,6 +1099,15 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD
void toggle_solo_isolate ();
void toggle_mute ();
void toggle_region_lock_style ();
enum LayerOperation {
Raise,
RaiseToTop,
Lower,
LowerToBottom
};
void do_layer_operation (LayerOperation);
void raise_region ();
void raise_region_to_top ();
void change_region_layering_order (bool from_context_menu);