mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-27 00:47:43 +01:00
add step-mouse-mode action, bound to F1 for SAE bindings
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4188 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2762309854
commit
ad47f3d935
7 changed files with 8 additions and 0 deletions
|
|
@ -186,6 +186,7 @@
|
|||
; (gtk_accel_path "<Actions>/Editor/finish-range" "F2")
|
||||
; (gtk_accel_path "<Actions>/Editor/edit-cursor-to-range-end" "<%TERTIARY%>F2")
|
||||
; (gtk_accel_path "<Actions>/Editor/brush-at-mouse" "F3")
|
||||
(gtk_accel_path "<Actions>/Editor/step-mouse-mode" "F1")
|
||||
(gtk_accel_path "<Actions>/Common/ToggleMaximalEditor" "F2")
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
; (gtk_accel_path "<Actions>/Editor/finish-range" "F2")
|
||||
; (gtk_accel_path "<Actions>/Editor/edit-cursor-to-range-end" "<%TERTIARY%>F2")
|
||||
; (gtk_accel_path "<Actions>/Editor/brush-at-mouse" "F3")
|
||||
(gtk_accel_path "<Actions>/Editor/step-mouse-mode" "F1")
|
||||
(gtk_accel_path "<Actions>/Common/ToggleMaximalEditor" "F2")
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -186,6 +186,7 @@
|
|||
; (gtk_accel_path "<Actions>/Editor/finish-range" "F2")
|
||||
; (gtk_accel_path "<Actions>/Editor/edit-cursor-to-range-end" "<%TERTIARY%>F2")
|
||||
; (gtk_accel_path "<Actions>/Editor/brush-at-mouse" "F3")
|
||||
(gtk_accel_path "<Actions>/Editor/step-mouse-mode" "F1")
|
||||
(gtk_accel_path "<Actions>/Common/ToggleMaximalEditor" "F2")
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -185,6 +185,7 @@
|
|||
; (gtk_accel_path "<Actions>/Editor/finish-range" "F2")
|
||||
; (gtk_accel_path "<Actions>/Editor/edit-cursor-to-range-end" "<%TERTIARY%>F2")
|
||||
; (gtk_accel_path "<Actions>/Editor/brush-at-mouse" "F3")
|
||||
(gtk_accel_path "<Actions>/Editor/step-mouse-mode" "F1")
|
||||
(gtk_accel_path "<Actions>/Common/ToggleMaximalEditor" "F2")
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -315,6 +315,7 @@
|
|||
<menuitem action='GotoStart'/>
|
||||
<menuitem action='GotoEnd'/>
|
||||
<separator/>
|
||||
<menuitem action='step-mouse-mode'/>
|
||||
<menuitem action='set-mouse-mode-object'/>
|
||||
<menuitem action='set-mouse-mode-zoom'/>
|
||||
<menuitem action='set-mouse-mode-timefx'/>
|
||||
|
|
|
|||
|
|
@ -191,6 +191,7 @@
|
|||
<menuitem action='select-prev-route'/>
|
||||
<menuitem action='brush-at-mouse'/>
|
||||
<separator/>
|
||||
<menuitem action='step-mouse-mode'/>
|
||||
<menuitem action='set-mouse-mode-object'/>
|
||||
<menuitem action='set-mouse-mode-range'/>
|
||||
<menuitem action='set-mouse-mode-gain'/>
|
||||
|
|
|
|||
|
|
@ -639,6 +639,8 @@ Editor::register_actions ()
|
|||
ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-zoom", _("Zoom Tool"), bind (mem_fun(*this, &Editor::set_mouse_mode), Editing::MouseZoom, false));
|
||||
ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-timefx", _("Timefx Tool"), bind (mem_fun(*this, &Editor::set_mouse_mode), Editing::MouseTimeFX, false));
|
||||
|
||||
ActionManager::register_action (editor_actions, "step-mouse-mode", _("Step Mouse Mode"), bind (mem_fun(*this, &Editor::step_mouse_mode), true));
|
||||
|
||||
RadioAction::Group edit_point_group;
|
||||
ActionManager::register_radio_action (editor_actions, edit_point_group, X_("edit-at-playhead"), _("Playhead"), (bind (mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtPlayhead)));
|
||||
ActionManager::register_radio_action (editor_actions, edit_point_group, X_("edit-at-mouse"), _("Mouse"), (bind (mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtPlayhead)));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue