befe85934d45d295116986cf50ce588d8e8ee7b2
[ardour.git] / gtk2_ardour / editor_actions.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <gio/gio.h>
21 #include <gtk/gtkiconfactory.h>
22
23 #include "pbd/file_utils.h"
24
25 #include "gtkmm2ext/bindings.h"
26 #include "gtkmm2ext/utils.h"
27
28 #include "ardour/filesystem_paths.h"
29 #include "ardour/profile.h"
30 #include "ardour/session.h"
31 #include "ardour/types.h"
32
33 #include "canvas/canvas.h"
34 #include "canvas/pixbuf.h"
35
36 #include "LuaBridge/LuaBridge.h"
37
38 #include "actions.h"
39 #include "ardour_ui.h"
40 #include "editing.h"
41 #include "editor.h"
42 #include "gui_thread.h"
43 #include "luainstance.h"
44 #include "main_clock.h"
45 #include "time_axis_view.h"
46 #include "ui_config.h"
47 #include "utils.h"
48 #include "pbd/i18n.h"
49 #include "audio_time_axis.h"
50 #include "editor_group_tabs.h"
51 #include "editor_routes.h"
52 #include "editor_regions.h"
53
54 using namespace Gtk;
55 using namespace Glib;
56 using namespace std;
57 using namespace ARDOUR;
58 using namespace ARDOUR_UI_UTILS;
59 using namespace PBD;
60 using namespace Editing;
61
62 using Gtkmm2ext::Bindings;
63
64 /* Convenience functions to slightly reduce verbosity below */
65
66
67 RefPtr<Action>
68 Editor::register_region_action (RefPtr<ActionGroup> group, RegionActionTarget tgt, char const * name, char const * label, sigc::slot<void> slot)
69 {
70         RefPtr<Action> act = myactions.register_action (group, name, label, slot);
71         ActionManager::session_sensitive_actions.push_back (act);
72         region_action_map.insert (make_pair<string,RegionAction> (name, RegionAction (act,tgt)));
73         return act;
74 }
75
76 void
77 Editor::register_toggle_region_action (RefPtr<ActionGroup> group, RegionActionTarget tgt, char const * name, char const * label, sigc::slot<void> slot)
78 {
79         RefPtr<Action> act = myactions.register_toggle_action (group, name, label, slot);
80         ActionManager::session_sensitive_actions.push_back (act);
81         region_action_map.insert (make_pair<string,RegionAction> (name, RegionAction (act,tgt)));
82 }
83
84 RefPtr<Action>
85 Editor::reg_sens (RefPtr<ActionGroup> group, char const * name, char const * label, sigc::slot<void> slot)
86 {
87         RefPtr<Action> act = myactions.register_action (group, name, label, slot);
88         ActionManager::session_sensitive_actions.push_back (act);
89         return act;
90 }
91
92 void
93 Editor::toggle_reg_sens (RefPtr<ActionGroup> group, char const * name, char const * label, sigc::slot<void> slot)
94 {
95         RefPtr<Action> act = myactions.register_toggle_action (group, name, label, slot);
96         ActionManager::session_sensitive_actions.push_back (act);
97 }
98
99 void
100 Editor::radio_reg_sens (RefPtr<ActionGroup> action_group, RadioAction::Group& radio_group, char const * name, char const * label, sigc::slot<void> slot)
101 {
102         RefPtr<Action> act = myactions.register_radio_action (action_group, radio_group, name, label, slot);
103         ActionManager::session_sensitive_actions.push_back (act);
104 }
105
106 void
107 Editor::register_actions ()
108 {
109         RefPtr<Action> act;
110
111         editor_actions = myactions.create_action_group (X_("Editor"));
112         editor_menu_actions = myactions.create_action_group (X_("EditorMenu"));
113
114         /* non-operative menu items for menu bar */
115
116         myactions.register_action (editor_menu_actions, X_("AlignMenu"), _("Align"));
117         myactions.register_action (editor_menu_actions, X_("Autoconnect"), _("Autoconnect"));
118         myactions.register_action (editor_menu_actions, X_("Crossfades"), _("Crossfades"));
119         myactions.register_action (editor_menu_actions, X_("Edit"), _("Edit"));
120         myactions.register_action (editor_menu_actions, X_("EditCursorMovementOptions"), _("Move Selected Marker"));
121         myactions.register_action (editor_menu_actions, X_("EditSelectRangeOptions"), _("Select Range Operations"));
122         myactions.register_action (editor_menu_actions, X_("EditSelectRegionOptions"), _("Select Regions"));
123         myactions.register_action (editor_menu_actions, X_("EditPointMenu"), _("Edit Point"));
124         myactions.register_action (editor_menu_actions, X_("FadeMenu"), _("Fade"));
125         myactions.register_action (editor_menu_actions, X_("LatchMenu"), _("Latch"));
126         myactions.register_action (editor_menu_actions, X_("RegionMenu"), _("Region"));
127         myactions.register_action (editor_menu_actions, X_("RegionMenuLayering"), _("Layering"));
128         myactions.register_action (editor_menu_actions, X_("RegionMenuPosition"), _("Position"));
129         myactions.register_action (editor_menu_actions, X_("RegionMenuEdit"), _("Edit"));
130         myactions.register_action (editor_menu_actions, X_("RegionMenuTrim"), _("Trim"));
131         myactions.register_action (editor_menu_actions, X_("RegionMenuGain"), _("Gain"));
132         myactions.register_action (editor_menu_actions, X_("RegionMenuRanges"), _("Ranges"));
133         myactions.register_action (editor_menu_actions, X_("RegionMenuFades"), _("Fades"));
134         myactions.register_action (editor_menu_actions, X_("RegionMenuMIDI"), _("MIDI"));
135         myactions.register_action (editor_menu_actions, X_("RegionMenuDuplicate"), _("Duplicate"));
136         myactions.register_action (editor_menu_actions, X_("Link"), _("Link"));
137         myactions.register_action (editor_menu_actions, X_("ZoomFocusMenu"), _("Zoom Focus"));
138         myactions.register_action (editor_menu_actions, X_("LocateToMarker"), _("Locate to Markers"));
139         myactions.register_action (editor_menu_actions, X_("MarkerMenu"), _("Markers"));
140         myactions.register_action (editor_menu_actions, X_("MeterFalloff"), _("Meter falloff"));
141         myactions.register_action (editor_menu_actions, X_("MeterHold"), _("Meter hold"));
142         myactions.register_action (editor_menu_actions, X_("MIDI"), _("MIDI Options"));
143         myactions.register_action (editor_menu_actions, X_("MiscOptions"), _("Misc Options"));
144         myactions.register_action (editor_menu_actions, X_("Monitoring"), _("Monitoring"));
145         myactions.register_action (editor_menu_actions, X_("MoveActiveMarkMenu"), _("Active Mark"));
146         myactions.register_action (editor_menu_actions, X_("MovePlayHeadMenu"), _("Playhead"));
147         myactions.register_action (editor_menu_actions, X_("PlayMenu"), _("Play"));
148         myactions.register_action (editor_menu_actions, X_("PrimaryClockMenu"), _("Primary Clock"));
149         myactions.register_action (editor_menu_actions, X_("Pullup"), _("Pullup / Pulldown"));
150         myactions.register_action (editor_menu_actions, X_("RegionEditOps"), _("Region operations"));
151         myactions.register_action (editor_menu_actions, X_("RegionGainMenu"), _("Gain"));
152         myactions.register_action (editor_menu_actions, X_("RulerMenu"), _("Rulers"));
153         myactions.register_action (editor_menu_actions, X_("SavedViewMenu"), _("Views"));
154         myactions.register_action (editor_menu_actions, X_("ScrollMenu"), _("Scroll"));
155         myactions.register_action (editor_menu_actions, X_("SecondaryClockMenu"), _("Secondary Clock"));
156         myactions.register_action (editor_menu_actions, X_("Select"), _("Select"));
157         myactions.register_action (editor_menu_actions, X_("SelectMenu"), _("Select"));
158         myactions.register_action (editor_menu_actions, X_("SeparateMenu"), _("Separate"));
159         myactions.register_action (editor_menu_actions, X_("SetLoopMenu"), _("Loop"));
160         myactions.register_action (editor_menu_actions, X_("SetPunchMenu"), _("Punch"));
161         myactions.register_action (editor_menu_actions, X_("Solo"), _("Solo"));
162         myactions.register_action (editor_menu_actions, X_("Subframes"), _("Subframes"));
163         myactions.register_action (editor_menu_actions, X_("SyncMenu"), _("Sync"));
164         myactions.register_action (editor_menu_actions, X_("TempoMenu"), _("Tempo"));
165         myactions.register_action (editor_menu_actions, X_("Timecode"), _("Timecode fps"));
166
167         act = myactions.register_action (editor_menu_actions, X_("TrackHeightMenu"), _("Height"));
168         ActionManager::stripable_selection_sensitive_actions.push_back (act);
169
170         myactions.register_action (editor_menu_actions, X_("TrackMenu"), _("Track"));
171         myactions.register_action (editor_menu_actions, X_("Tools"), _("Tools"));
172         myactions.register_action (editor_menu_actions, X_("View"), _("View"));
173         myactions.register_action (editor_menu_actions, X_("ZoomFocus"), _("Zoom Focus"));
174         myactions.register_action (editor_menu_actions, X_("ZoomMenu"), _("Zoom"));
175         myactions.register_action (editor_menu_actions, X_("LuaScripts"), _("Lua Scripts"));
176
177         register_region_actions ();
178
179         /* add named actions for the editor */
180
181         /* We don't bother registering "unlock" because it would be insensitive
182            when required. Editor::unlock() must be invoked directly.
183         */
184         myactions.register_action (editor_actions, "lock", S_("Session|Lock"), sigc::mem_fun (*this, &Editor::lock));
185
186         toggle_reg_sens (editor_actions, "show-editor-mixer", _("Show Editor Mixer"), sigc::mem_fun (*this, &Editor::editor_mixer_button_toggled));
187         toggle_reg_sens (editor_actions, "show-editor-list", _("Show Editor List"), sigc::mem_fun (*this, &Editor::editor_list_button_toggled));
188
189         reg_sens (editor_actions, "playhead-to-next-region-boundary", _("Playhead to Next Region Boundary"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_boundary), true));
190         reg_sens (editor_actions, "playhead-to-next-region-boundary-noselection", _("Playhead to Next Region Boundary (No Track Selection)"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_boundary), false));
191         reg_sens (editor_actions, "playhead-to-previous-region-boundary", _("Playhead to Previous Region Boundary"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_boundary), true));
192         reg_sens (editor_actions, "playhead-to-previous-region-boundary-noselection", _("Playhead to Previous Region Boundary (No Track Selection)"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_boundary), false));
193
194         reg_sens (editor_actions, "playhead-to-next-region-start", _("Playhead to Next Region Start"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_point), playhead_cursor, RegionPoint (Start)));
195         reg_sens (editor_actions, "playhead-to-next-region-end", _("Playhead to Next Region End"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_point), playhead_cursor, RegionPoint (End)));
196         reg_sens (editor_actions, "playhead-to-next-region-sync", _("Playhead to Next Region Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_point), playhead_cursor, RegionPoint (SyncPoint)));
197
198         reg_sens (editor_actions, "playhead-to-previous-region-start", _("Playhead to Previous Region Start"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_point), playhead_cursor, RegionPoint (Start)));
199         reg_sens (editor_actions, "playhead-to-previous-region-end", _("Playhead to Previous Region End"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_point), playhead_cursor, RegionPoint (End)));
200         reg_sens (editor_actions, "playhead-to-previous-region-sync", _("Playhead to Previous Region Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_point), playhead_cursor, RegionPoint (SyncPoint)));
201
202         reg_sens (editor_actions, "selected-marker-to-next-region-boundary", _("To Next Region Boundary"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_boundary), true));
203         reg_sens (editor_actions, "selected-marker-to-next-region-boundary-noselection", _("To Next Region Boundary (No Track Selection)"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_boundary), false));
204         reg_sens (editor_actions, "selected-marker-to-previous-region-boundary", _("To Previous Region Boundary"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_boundary), true));
205         reg_sens (editor_actions, "selected-marker-to-previous-region-boundary-noselection", _("To Previous Region Boundary (No Track Selection)"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_boundary), false));
206
207         reg_sens (editor_actions, "edit-cursor-to-next-region-start", _("To Next Region Start"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_point), RegionPoint (Start)));
208         reg_sens (editor_actions, "edit-cursor-to-next-region-end", _("To Next Region End"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_point), RegionPoint (End)));
209         reg_sens (editor_actions, "edit-cursor-to-next-region-sync", _("To Next Region Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_point), RegionPoint (SyncPoint)));
210
211         reg_sens (editor_actions, "edit-cursor-to-previous-region-start", _("To Previous Region Start"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_point), RegionPoint (Start)));
212         reg_sens (editor_actions, "edit-cursor-to-previous-region-end", _("To Previous Region End"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_point), RegionPoint (End)));
213         reg_sens (editor_actions, "edit-cursor-to-previous-region-sync", _("To Previous Region Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_point), RegionPoint (SyncPoint)));
214
215         reg_sens (editor_actions, "edit-cursor-to-range-start", _("To Range Start"), sigc::mem_fun(*this, &Editor::selected_marker_to_selection_start));
216         reg_sens (editor_actions, "edit-cursor-to-range-end", _("To Range End"), sigc::mem_fun(*this, &Editor::selected_marker_to_selection_end));
217
218         reg_sens (editor_actions, "playhead-to-range-start", _("Playhead to Range Start"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_selection_start), playhead_cursor));
219         reg_sens (editor_actions, "playhead-to-range-end", _("Playhead to Range End"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_selection_end), playhead_cursor));
220
221         reg_sens (editor_actions, "select-all-objects", _("Select All Objects"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_objects), Selection::Set));
222
223         reg_sens (editor_actions, "select-loop-range", _("Set Range to Loop Range"), sigc::mem_fun(*this, &Editor::set_selection_from_loop));
224         reg_sens (editor_actions, "select-punch-range", _("Set Range to Punch Range"), sigc::mem_fun(*this, &Editor::set_selection_from_punch));
225         reg_sens (editor_actions, "select-from-regions", _("Set Range to Selected Regions"), sigc::mem_fun(*this, &Editor::set_selection_from_region));
226
227         reg_sens (editor_actions, "edit-current-tempo", _("Edit Current Tempo"), sigc::mem_fun(*this, &Editor::edit_current_tempo));
228         reg_sens (editor_actions, "edit-current-meter", _("Edit Current Meter"), sigc::mem_fun(*this, &Editor::edit_current_meter));
229
230         reg_sens (editor_actions, "select-all-after-edit-cursor", _("Select All After Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_using_edit), true, false));
231         reg_sens (editor_actions, "alternate-select-all-after-edit-cursor", _("Select All After Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_using_edit), true, false));
232         reg_sens (editor_actions, "select-all-before-edit-cursor", _("Select All Before Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_using_edit), false, false));
233         reg_sens (editor_actions, "alternate-select-all-before-edit-cursor", _("Select All Before Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_using_edit), false, false));
234
235         reg_sens (editor_actions, "select-all-between-cursors", _("Select All Overlapping Edit Range"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_between), false));
236         reg_sens (editor_actions, "select-all-within-cursors", _("Select All Inside Edit Range"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_between), true));
237
238         reg_sens (editor_actions, "select-range-between-cursors", _("Select Edit Range"), sigc::mem_fun(*this, &Editor::select_range_between));
239
240         reg_sens (editor_actions, "select-all-in-punch-range", _("Select All in Punch Range"), sigc::mem_fun(*this, &Editor::select_all_selectables_using_punch));
241         reg_sens (editor_actions, "select-all-in-loop-range", _("Select All in Loop Range"), sigc::mem_fun(*this, &Editor::select_all_selectables_using_loop));
242
243         reg_sens (editor_actions, "select-next-route", _("Select Next Track or Bus"), sigc::bind (sigc::mem_fun(*this, &Editor::select_next_stripable), true));
244         reg_sens (editor_actions, "select-prev-route", _("Select Previous Track or Bus"), sigc::bind (sigc::mem_fun(*this, &Editor::select_prev_stripable), true));
245
246         reg_sens (editor_actions, "select-next-stripable", _("Select Next Strip"), sigc::bind (sigc::mem_fun(*this, &Editor::select_next_stripable), false));
247         reg_sens (editor_actions, "select-prev-stripable", _("Select Previous Strip"), sigc::bind (sigc::mem_fun(*this, &Editor::select_prev_stripable), false));
248
249         act = reg_sens (editor_actions, "track-record-enable-toggle", _("Toggle Record Enable"), sigc::mem_fun(*this, &Editor::toggle_record_enable));
250         ActionManager::track_selection_sensitive_actions.push_back (act);
251         act = reg_sens (editor_actions, "track-solo-toggle", _("Toggle Solo"), sigc::mem_fun(*this, &Editor::toggle_solo));
252         ActionManager::stripable_selection_sensitive_actions.push_back (act);
253         act = reg_sens (editor_actions, "track-mute-toggle", _("Toggle Mute"), sigc::mem_fun(*this, &Editor::toggle_mute));
254         ActionManager::stripable_selection_sensitive_actions.push_back (act);
255         act = reg_sens (editor_actions, "track-solo-isolate-toggle", _("Toggle Solo Isolate"), sigc::mem_fun(*this, &Editor::toggle_solo_isolate));
256         ActionManager::stripable_selection_sensitive_actions.push_back (act);
257
258         for (int i = 1; i <= 12; ++i) {
259                 string const a = string_compose (X_("save-visual-state-%1"), i);
260                 string const n = string_compose (_("Save View %1"), i);
261                 reg_sens (editor_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::start_visual_state_op), i - 1));
262         }
263
264         for (int i = 1; i <= 12; ++i) {
265                 string const a = string_compose (X_("goto-visual-state-%1"), i);
266                 string const n = string_compose (_("Go to View %1"), i);
267                 reg_sens (editor_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::cancel_visual_state_op), i - 1));
268         }
269
270         for (int i = 1; i <= 9; ++i) {
271                 string const a = string_compose (X_("goto-mark-%1"), i);
272                 string const n = string_compose (_("Locate to Mark %1"), i);
273                 reg_sens (editor_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::goto_nth_marker), i - 1));
274         }
275
276         reg_sens (editor_actions, "temporal-zoom-out", _("Zoom Out"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_step), true));
277         reg_sens (editor_actions, "temporal-zoom-in", _("Zoom In"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_step), false));
278         reg_sens (editor_actions, "zoom-to-session", _("Zoom to Session"), sigc::mem_fun(*this, &Editor::temporal_zoom_session));
279         reg_sens (editor_actions, "zoom-to-extents", _("Zoom to Extents"), sigc::mem_fun(*this, &Editor::temporal_zoom_extents));
280         reg_sens (editor_actions, "zoom-to-selection", _("Zoom to Selection"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_selection), Both));
281         reg_sens (editor_actions, "zoom-to-selection-horiz", _("Zoom to Selection (Horizontal)"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_selection), Horizontal));
282         reg_sens (editor_actions, "toggle-zoom", _("Toggle Zoom State"), sigc::mem_fun(*this, &Editor::swap_visual_state));
283
284         reg_sens (editor_actions, "expand-tracks", _("Expand Track Height"), sigc::bind (sigc::mem_fun (*this, &Editor::tav_zoom_step), false));
285         reg_sens (editor_actions, "shrink-tracks", _("Shrink Track Height"), sigc::bind (sigc::mem_fun (*this, &Editor::tav_zoom_step), true));
286
287         reg_sens (editor_actions, "fit_1_track", _("Fit 1 Track"), sigc::bind (sigc::mem_fun(*this, &Editor::set_visible_track_count), 1));
288         reg_sens (editor_actions, "fit_2_tracks", _("Fit 2 Tracks"), sigc::bind (sigc::mem_fun(*this, &Editor::set_visible_track_count), 2));
289         reg_sens (editor_actions, "fit_4_tracks", _("Fit 4 Tracks"), sigc::bind (sigc::mem_fun(*this, &Editor::set_visible_track_count), 4));
290         reg_sens (editor_actions, "fit_8_tracks", _("Fit 8 Tracks"), sigc::bind (sigc::mem_fun(*this, &Editor::set_visible_track_count), 8));
291         reg_sens (editor_actions, "fit_16_tracks", _("Fit 16 Tracks"), sigc::bind (sigc::mem_fun(*this, &Editor::set_visible_track_count), 16));
292         reg_sens (editor_actions, "fit_32_tracks", _("Fit 32 Tracks"), sigc::bind (sigc::mem_fun(*this, &Editor::set_visible_track_count), 32));
293         reg_sens (editor_actions, "fit_all_tracks", _("Fit All Tracks"), sigc::bind (sigc::mem_fun(*this, &Editor::set_visible_track_count), 0));
294
295         reg_sens (editor_actions, "zoom_10_ms", _("Zoom to 10 ms"), sigc::bind (sigc::mem_fun(*this, &Editor::set_zoom_preset), 10));
296         reg_sens (editor_actions, "zoom_100_ms", _("Zoom to 100 ms"), sigc::bind (sigc::mem_fun(*this, &Editor::set_zoom_preset), 100));
297         reg_sens (editor_actions, "zoom_1_sec", _("Zoom to 1 sec"), sigc::bind (sigc::mem_fun(*this, &Editor::set_zoom_preset), 1000));
298         reg_sens (editor_actions, "zoom_10_sec", _("Zoom to 10 sec"), sigc::bind (sigc::mem_fun(*this, &Editor::set_zoom_preset), 10 * 1000));
299         reg_sens (editor_actions, "zoom_1_min", _("Zoom to 1 min"), sigc::bind (sigc::mem_fun(*this, &Editor::set_zoom_preset), 60 * 1000));
300         reg_sens (editor_actions, "zoom_5_min", _("Zoom to 5 min"), sigc::bind (sigc::mem_fun(*this, &Editor::set_zoom_preset), 5 * 60 * 1000));
301         reg_sens (editor_actions, "zoom_10_min", _("Zoom to 10 min"), sigc::bind (sigc::mem_fun(*this, &Editor::set_zoom_preset), 10 * 60 * 1000));
302
303         act = reg_sens (editor_actions, "move-selected-tracks-up", _("Move Selected Tracks Up"), sigc::bind (sigc::mem_fun(*_routes, &EditorRoutes::move_selected_tracks), true));
304         ActionManager::stripable_selection_sensitive_actions.push_back (act);
305         act = reg_sens (editor_actions, "move-selected-tracks-down", _("Move Selected Tracks Down"), sigc::bind (sigc::mem_fun(*_routes, &EditorRoutes::move_selected_tracks), false));
306         ActionManager::stripable_selection_sensitive_actions.push_back (act);
307
308         act = reg_sens (editor_actions, "scroll-tracks-up", _("Scroll Tracks Up"), sigc::mem_fun(*this, &Editor::scroll_tracks_up));
309         act = reg_sens (editor_actions, "scroll-tracks-down", _("Scroll Tracks Down"), sigc::mem_fun(*this, &Editor::scroll_tracks_down));
310         act = reg_sens (editor_actions, "step-tracks-up", _("Step Tracks Up"), sigc::hide_return (sigc::bind (sigc::mem_fun(*this, &Editor::scroll_up_one_track), true)));
311         act = reg_sens (editor_actions, "step-tracks-down", _("Step Tracks Down"), sigc::hide_return (sigc::bind (sigc::mem_fun(*this, &Editor::scroll_down_one_track), true)));
312         act = reg_sens (editor_actions, "select-topmost", _("Select Topmost Track"), (sigc::mem_fun(*this, &Editor::select_topmost_track)));
313
314         reg_sens (editor_actions, "scroll-backward", _("Scroll Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_backward), 0.8f));
315         reg_sens (editor_actions, "scroll-forward", _("Scroll Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_forward), 0.8f));
316         reg_sens (editor_actions, "center-playhead", _("Center Playhead"), sigc::mem_fun(*this, &Editor::center_playhead));
317         reg_sens (editor_actions, "center-edit-cursor", _("Center Edit Point"), sigc::mem_fun(*this, &Editor::center_edit_point));
318
319         reg_sens (editor_actions, "scroll-playhead-forward", _("Playhead Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_playhead), true));;
320         reg_sens (editor_actions, "scroll-playhead-backward", _("Playhead Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_playhead), false));
321
322         reg_sens (editor_actions, "playhead-to-edit", _("Playhead to Active Mark"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_align), true));
323         reg_sens (editor_actions, "edit-to-playhead", _("Active Mark to Playhead"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_align), false));
324
325         toggle_reg_sens (editor_actions, "toggle-skip-playback", _("Use Skip Ranges"), sigc::mem_fun(*this, &Editor::toggle_skip_playback));
326
327         reg_sens (editor_actions, "set-loop-from-edit-range", _("Set Loop from Selection"), sigc::bind (sigc::mem_fun(*this, &Editor::set_loop_from_selection), false));
328         reg_sens (editor_actions, "set-punch-from-edit-range", _("Set Punch from Selection"), sigc::mem_fun(*this, &Editor::set_punch_from_selection));
329         reg_sens (editor_actions, "set-session-from-edit-range", _("Set Session Start/End from Selection"), sigc::mem_fun(*this, &Editor::set_session_extents_from_selection));
330
331         /* this is a duplicated action so that the main menu can use a different label */
332         reg_sens (editor_actions, "main-menu-play-selected-regions", _("Play Selected Regions"), sigc::mem_fun (*this, &Editor::play_selected_region));
333         reg_sens (editor_actions, "play-from-edit-point", _("Play from Edit Point"), sigc::mem_fun(*this, &Editor::play_from_edit_point));
334         reg_sens (editor_actions, "play-from-edit-point-and-return", _("Play from Edit Point and Return"), sigc::mem_fun(*this, &Editor::play_from_edit_point_and_return));
335
336         reg_sens (editor_actions, "play-edit-range", _("Play Edit Range"), sigc::mem_fun(*this, &Editor::play_edit_range));
337
338         reg_sens (editor_actions, "set-playhead", _("Playhead to Mouse"), sigc::mem_fun(*this, &Editor::set_playhead_cursor));
339         reg_sens (editor_actions, "set-edit-point", _("Active Marker to Mouse"), sigc::mem_fun(*this, &Editor::set_edit_point));
340         reg_sens (editor_actions, "set-auto-punch-range", _("Set Auto Punch In/Out from Playhead"), sigc::mem_fun(*this, &Editor::set_auto_punch_range));
341
342         reg_sens (editor_actions, "duplicate", _("Duplicate"), sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_range), false));
343
344         /* Open the dialogue to duplicate selected regions multiple times */
345         reg_sens (editor_actions, "multi-duplicate", _("Multi-Duplicate..."),
346                   sigc::bind (sigc::mem_fun (*this, &Editor::duplicate_range), true));
347
348         undo_action = reg_sens (editor_actions, "undo", S_("Command|Undo"), sigc::bind (sigc::mem_fun(*this, &Editor::undo), 1U));
349
350         redo_action = reg_sens (editor_actions, "redo", _("Redo"), sigc::bind (sigc::mem_fun(*this, &Editor::redo), 1U));
351         alternate_redo_action = reg_sens (editor_actions, "alternate-redo", _("Redo"), sigc::bind (sigc::mem_fun(*this, &Editor::redo), 1U));
352         alternate_alternate_redo_action = reg_sens (editor_actions, "alternate-alternate-redo", _("Redo"), sigc::bind (sigc::mem_fun(*this, &Editor::redo), 1U));
353
354         selection_undo_action = reg_sens (editor_actions, "undo-last-selection-op", _("Undo Selection Change"), sigc::mem_fun(*this, &Editor::undo_selection_op));
355         selection_redo_action = reg_sens (editor_actions, "redo-last-selection-op", _("Redo Selection Change"), sigc::mem_fun(*this, &Editor::redo_selection_op));
356
357         reg_sens (editor_actions, "export-audio", _("Export Audio"), sigc::mem_fun(*this, &Editor::export_audio));
358         reg_sens (editor_actions, "export-range", _("Export Range"), sigc::mem_fun(*this, &Editor::export_range));
359
360         act = reg_sens (editor_actions, "editor-separate", _("Separate"), sigc::mem_fun(*this, &Editor::separate_region_from_selection));
361         ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
362
363         act = reg_sens (editor_actions, "separate-from-punch", _("Separate Using Punch Range"), sigc::mem_fun(*this, &Editor::separate_region_from_punch));
364         act = reg_sens (editor_actions, "separate-from-loop", _("Separate Using Loop Range"), sigc::mem_fun(*this, &Editor::separate_region_from_loop));
365
366         act = reg_sens (editor_actions, "editor-crop", _("Crop"), sigc::mem_fun(*this, &Editor::crop_region_to_selection));
367         ActionManager::time_selection_sensitive_actions.push_back (act);
368
369         reg_sens (editor_actions, "editor-cut", _("Cut"), sigc::mem_fun(*this, &Editor::cut));
370         reg_sens (editor_actions, "editor-delete", _("Delete"), sigc::mem_fun(*this, &Editor::delete_));
371         reg_sens (editor_actions, "alternate-editor-delete", _("Delete"), sigc::mem_fun(*this, &Editor::delete_));
372
373         reg_sens (editor_actions, "split-region", _("Split/Separate"), sigc::mem_fun (*this, &Editor::split_region));
374
375         reg_sens (editor_actions, "editor-copy", _("Copy"), sigc::mem_fun(*this, &Editor::copy));
376         reg_sens (editor_actions, "editor-paste", _("Paste"), sigc::mem_fun(*this, &Editor::keyboard_paste));
377
378         reg_sens (editor_actions, "editor-fade-range", _("Fade Range Selection"), sigc::mem_fun(*this, &Editor::fade_range));
379
380         act = myactions.register_action (editor_actions, "set-tempo-from-edit-range", _("Set Tempo from Edit Range = Bar"), sigc::mem_fun(*this, &Editor::use_range_as_bar));
381         ActionManager::time_selection_sensitive_actions.push_back (act);
382
383         toggle_reg_sens (editor_actions, "toggle-log-window", _("Log"),
384                         sigc::mem_fun (ARDOUR_UI::instance(), &ARDOUR_UI::toggle_errors));
385
386         reg_sens (editor_actions, "alternate-tab-to-transient-forwards", _("Move to Next Transient"), sigc::bind (sigc::mem_fun(*this, &Editor::tab_to_transient), true));
387         reg_sens (editor_actions, "alternate-tab-to-transient-backwards", _("Move to Previous Transient"), sigc::bind (sigc::mem_fun(*this, &Editor::tab_to_transient), false));
388         reg_sens (editor_actions, "tab-to-transient-forwards", _("Move to Next Transient"), sigc::bind (sigc::mem_fun(*this, &Editor::tab_to_transient), true));
389         reg_sens (editor_actions, "tab-to-transient-backwards", _("Move to Previous Transient"), sigc::bind (sigc::mem_fun(*this, &Editor::tab_to_transient), false));
390
391         reg_sens (editor_actions, "crop", _("Crop"), sigc::mem_fun(*this, &Editor::crop_region_to_selection));
392
393 //      reg_sens (editor_actions, "finish-add-range", _("Finish Add Range"), sigc::bind (sigc::mem_fun(*this, &Editor::keyboard_selection_finish), true));
394
395         reg_sens (
396                 editor_actions,
397                 "move-range-start-to-previous-region-boundary",
398                 _("Move Range Start to Previous Region Boundary"),
399                 sigc::bind (sigc::mem_fun (*this, &Editor::move_range_selection_start_or_end_to_region_boundary), false, false)
400                 );
401
402         reg_sens (
403                 editor_actions,
404                 "move-range-start-to-next-region-boundary",
405                 _("Move Range Start to Next Region Boundary"),
406                 sigc::bind (sigc::mem_fun (*this, &Editor::move_range_selection_start_or_end_to_region_boundary), false, true)
407                 );
408
409         reg_sens (
410                 editor_actions,
411                 "move-range-end-to-previous-region-boundary",
412                 _("Move Range End to Previous Region Boundary"),
413                 sigc::bind (sigc::mem_fun (*this, &Editor::move_range_selection_start_or_end_to_region_boundary), true, false)
414                 );
415
416         reg_sens (
417                 editor_actions,
418                 "move-range-end-to-next-region-boundary",
419                 _("Move Range End to Next Region Boundary"),
420                 sigc::bind (sigc::mem_fun (*this, &Editor::move_range_selection_start_or_end_to_region_boundary), true, true)
421                 );
422
423         toggle_reg_sens (editor_actions, "toggle-follow-playhead", _("Follow Playhead"), (sigc::mem_fun(*this, &Editor::toggle_follow_playhead)));
424         act = reg_sens (editor_actions, "remove-last-capture", _("Remove Last Capture"), (sigc::mem_fun(*this, &Editor::remove_last_capture)));
425
426         myactions.register_toggle_action (editor_actions, "toggle-stationary-playhead", _("Stationary Playhead"), (mem_fun(*this, &Editor::toggle_stationary_playhead)));
427
428         act = reg_sens (editor_actions, "insert-time", _("Insert Time"), (sigc::mem_fun(*this, &Editor::do_insert_time)));
429         ActionManager::track_selection_sensitive_actions.push_back (act);
430         act = myactions.register_action (editor_actions, "remove-time", _("Remove Time"), (mem_fun(*this, &Editor::do_remove_time)));
431         ActionManager::session_sensitive_actions.push_back (act);
432         ActionManager::track_selection_sensitive_actions.push_back (act);
433
434
435         act = reg_sens (editor_actions, "toggle-track-active", _("Toggle Active"), (sigc::mem_fun(*this, &Editor::toggle_tracks_active)));
436         ActionManager::route_selection_sensitive_actions.push_back (act);
437         act = reg_sens (editor_actions, "remove-track", _("Remove"), (sigc::mem_fun(*this, &Editor::remove_tracks)));
438         ActionManager::stripable_selection_sensitive_actions.push_back (act);
439
440         act = reg_sens (editor_actions, "fit-selection", _("Fit Selection (Vertical)"), sigc::mem_fun(*this, &Editor::fit_selection));
441         ActionManager::stripable_selection_sensitive_actions.push_back (act);
442
443         act = reg_sens (editor_actions, "track-height-largest", _("Largest"), sigc::bind (
444                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightLargest));
445         ActionManager::stripable_selection_sensitive_actions.push_back (act);
446         act = reg_sens (editor_actions, "track-height-larger", _("Larger"), sigc::bind (
447                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightLarger));
448         ActionManager::stripable_selection_sensitive_actions.push_back (act);
449         act = reg_sens (editor_actions, "track-height-large", _("Large"), sigc::bind (
450                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightLarge));
451         ActionManager::stripable_selection_sensitive_actions.push_back (act);
452         act = reg_sens (editor_actions, "track-height-normal", _("Normal"), sigc::bind (
453                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightNormal));
454         ActionManager::stripable_selection_sensitive_actions.push_back (act);
455         act = reg_sens (editor_actions, "track-height-small", _("Small"), sigc::bind (
456                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightSmall));
457         ActionManager::stripable_selection_sensitive_actions.push_back (act);
458
459         toggle_reg_sens (editor_actions, "sound-midi-notes", _("Sound Selected MIDI Notes"), sigc::mem_fun (*this, &Editor::toggle_sound_midi_notes));
460
461         Glib::RefPtr<ActionGroup> zoom_actions = myactions.create_action_group (X_("Zoom"));
462         RadioAction::Group zoom_group;
463
464         radio_reg_sens (zoom_actions, zoom_group, "zoom-focus-left", _("Zoom Focus Left"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusLeft));
465         radio_reg_sens (zoom_actions, zoom_group, "zoom-focus-right", _("Zoom Focus Right"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusRight));
466         radio_reg_sens (zoom_actions, zoom_group, "zoom-focus-center", _("Zoom Focus Center"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusCenter));
467         radio_reg_sens (zoom_actions, zoom_group, "zoom-focus-playhead", _("Zoom Focus Playhead"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusPlayhead));
468         radio_reg_sens (zoom_actions, zoom_group, "zoom-focus-mouse", _("Zoom Focus Mouse"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusMouse));
469         radio_reg_sens (zoom_actions, zoom_group, "zoom-focus-edit", _("Zoom Focus Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusEdit));
470
471         myactions.register_action (editor_actions, X_("cycle-zoom-focus"), _("Next Zoom Focus"), sigc::mem_fun (*this, &Editor::cycle_zoom_focus));
472
473         for (int i = 1; i <= MAX_LUA_ACTION_SCRIPTS; ++i) {
474                 string const a = string_compose (X_("script-action-%1"), i);
475                 string const n = string_compose (_("Unset #%1"), i);
476                 act = myactions.register_action (editor_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::trigger_script), i - 1));
477                 act->set_tooltip (_("no action bound"));
478                 act->set_sensitive (false);
479         }
480
481         Glib::RefPtr<ActionGroup> mouse_mode_actions = myactions.create_action_group (X_("MouseMode"));
482         RadioAction::Group mouse_mode_group;
483
484         act = myactions.register_toggle_action (mouse_mode_actions, "set-mouse-mode-object-range", _("Smart Object Mode"), sigc::mem_fun (*this, &Editor::mouse_mode_object_range_toggled));
485         smart_mode_action = Glib::RefPtr<ToggleAction>::cast_static (act);
486         smart_mode_button.set_related_action (smart_mode_action);
487         smart_mode_button.set_text (_("Smart"));
488         smart_mode_button.set_name ("mouse mode button");
489
490         act = myactions.register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-object", _("Object Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseObject));
491         mouse_move_button.set_related_action (act);
492         mouse_move_button.set_icon (ArdourWidgets::ArdourIcon::ToolGrab);
493         mouse_move_button.set_name ("mouse mode button");
494
495         act = myactions.register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-range", _("Range Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseRange));
496         mouse_select_button.set_related_action (act);
497         mouse_select_button.set_icon (ArdourWidgets::ArdourIcon::ToolRange);
498         mouse_select_button.set_name ("mouse mode button");
499
500         act = myactions.register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-draw", _("Note Drawing Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseDraw));
501         mouse_draw_button.set_related_action (act);
502         mouse_draw_button.set_icon (ArdourWidgets::ArdourIcon::ToolDraw);
503         mouse_draw_button.set_name ("mouse mode button");
504
505         act = myactions.register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-audition", _("Audition Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseAudition));
506         mouse_audition_button.set_related_action (act);
507         mouse_audition_button.set_icon (ArdourWidgets::ArdourIcon::ToolAudition);
508         mouse_audition_button.set_name ("mouse mode button");
509
510         act = myactions.register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-timefx", _("Time FX Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseTimeFX));
511         mouse_timefx_button.set_related_action (act);
512         mouse_timefx_button.set_icon (ArdourWidgets::ArdourIcon::ToolStretch);
513         mouse_timefx_button.set_name ("mouse mode button");
514
515         act = myactions.register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-content", _("Content Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseContent));
516         mouse_content_button.set_related_action (act);
517         mouse_content_button.set_icon (ArdourWidgets::ArdourIcon::ToolContent);
518         mouse_content_button.set_name ("mouse mode button");
519
520         if(!Profile->get_mixbus()) {
521                 act = myactions.register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-cut", _("Cut Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseCut));
522                 mouse_cut_button.set_related_action (act);
523                 mouse_cut_button.set_icon (ArdourWidgets::ArdourIcon::ToolCut);
524                 mouse_cut_button.set_name ("mouse mode button");
525         }
526
527         myactions.register_action (editor_actions, "step-mouse-mode", _("Step Mouse Mode"), sigc::bind (sigc::mem_fun(*this, &Editor::step_mouse_mode), true));
528
529         RadioAction::Group edit_point_group;
530         myactions.register_radio_action (editor_actions, edit_point_group, X_("edit-at-playhead"), _("Playhead"), (sigc::bind (sigc::mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtPlayhead)));
531         myactions.register_radio_action (editor_actions, edit_point_group, X_("edit-at-mouse"), _("Mouse"), (sigc::bind (sigc::mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtMouse)));
532         myactions.register_radio_action (editor_actions, edit_point_group, X_("edit-at-selected-marker"), _("Marker"), (sigc::bind (sigc::mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtSelectedMarker)));
533
534         myactions.register_action (editor_actions, "cycle-edit-point", _("Change Edit Point"), sigc::bind (sigc::mem_fun (*this, &Editor::cycle_edit_point), false));
535         myactions.register_action (editor_actions, "cycle-edit-point-with-marker", _("Change Edit Point Including Marker"), sigc::bind (sigc::mem_fun (*this, &Editor::cycle_edit_point), true));
536
537 //      myactions.register_action (editor_actions, "set-edit-splice", _("Splice"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Splice));
538         myactions.register_action (editor_actions, "set-edit-ripple", _("Ripple"), bind (mem_fun (*this, &Editor::set_edit_mode), Ripple));
539         myactions.register_action (editor_actions, "set-edit-slide", _("Slide"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Slide));
540         myactions.register_action (editor_actions, "set-edit-lock", S_("EditMode|Lock"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Lock));
541         myactions.register_action (editor_actions, "cycle-edit-mode", _("Cycle Edit Mode"), sigc::mem_fun (*this, &Editor::cycle_edit_mode));
542
543         myactions.register_action (editor_actions, X_("GridChoice"), _("Snap & Grid"));
544
545         RadioAction::Group snap_mode_group;
546         /* deprecated */  myactions.register_radio_action (editor_actions, snap_mode_group, X_("snap-off"), _("No Grid"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_mode_chosen), Editing::SnapOff)));
547         /* deprecated */  myactions.register_radio_action (editor_actions, snap_mode_group, X_("snap-normal"), _("Grid"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_mode_chosen), Editing::SnapNormal)));  //deprecated
548         /* deprecated */  myactions.register_radio_action (editor_actions, snap_mode_group, X_("snap-magnetic"), _("Magnetic"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_mode_chosen), Editing::SnapMagnetic)));
549
550         snap_mode_button.set_text (_("Snap"));
551         snap_mode_button.set_name ("mouse mode button");
552         snap_mode_button.signal_button_press_event().connect (sigc::mem_fun (*this, &Editor::snap_mode_button_clicked), false);
553
554         myactions.register_action (editor_actions, X_("cycle-snap-mode"), _("Toggle Snap"), sigc::mem_fun (*this, &Editor::cycle_snap_mode));
555         myactions.register_action (editor_actions, X_("next-grid-choice"), _("Next Quantize Grid Choice"), sigc::mem_fun (*this, &Editor::next_grid_choice));
556         myactions.register_action (editor_actions, X_("prev-grid-choice"), _("Previous Quantize Grid Choice"), sigc::mem_fun (*this, &Editor::prev_grid_choice));
557
558         Glib::RefPtr<ActionGroup> snap_actions = myactions.create_action_group (X_("Snap"));
559         RadioAction::Group grid_choice_group;
560
561         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-thirtyseconds"),  grid_type_strings[(int)GridTypeBeatDiv32].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv32)));
562         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-twentyeighths"),  grid_type_strings[(int)GridTypeBeatDiv28].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv28)));
563         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-twentyfourths"),  grid_type_strings[(int)GridTypeBeatDiv24].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv24)));
564         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-twentieths"),     grid_type_strings[(int)GridTypeBeatDiv20].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv20)));
565         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-asixteenthbeat"), grid_type_strings[(int)GridTypeBeatDiv16].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv16)));
566         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-fourteenths"),    grid_type_strings[(int)GridTypeBeatDiv14].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv14)));
567         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-twelfths"),       grid_type_strings[(int)GridTypeBeatDiv12].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv12)));
568         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-tenths"),         grid_type_strings[(int)GridTypeBeatDiv10].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv10)));
569         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-eighths"),        grid_type_strings[(int)GridTypeBeatDiv8].c_str(),  (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv8)));
570         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-sevenths"),       grid_type_strings[(int)GridTypeBeatDiv7].c_str(),  (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv7)));
571         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-sixths"),         grid_type_strings[(int)GridTypeBeatDiv6].c_str(),  (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv6)));
572         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-fifths"),         grid_type_strings[(int)GridTypeBeatDiv5].c_str(),  (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv5)));
573         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-quarters"),       grid_type_strings[(int)GridTypeBeatDiv4].c_str(),  (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv4)));
574         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-thirds"),         grid_type_strings[(int)GridTypeBeatDiv3].c_str(),  (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv3)));
575         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-halves"),         grid_type_strings[(int)GridTypeBeatDiv2].c_str(),  (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeatDiv2)));
576
577         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-timecode"),       grid_type_strings[(int)GridTypeTimecode].c_str(),      (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeTimecode)));
578         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-minsec"),         grid_type_strings[(int)GridTypeMinSec].c_str(),    (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeMinSec)));
579         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-cdframe"),        grid_type_strings[(int)GridTypeCDFrame].c_str(), (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeCDFrame)));
580
581         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-beat"),           grid_type_strings[(int)GridTypeBeat].c_str(),      (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBeat)));
582         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-bar"),            grid_type_strings[(int)GridTypeBar].c_str(),       (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeBar)));
583
584         myactions.register_radio_action (snap_actions, grid_choice_group, X_("grid-type-none"),           grid_type_strings[(int)GridTypeNone].c_str(),      (sigc::bind (sigc::mem_fun(*this, &Editor::grid_type_chosen), Editing::GridTypeNone)));
585
586         myactions.register_toggle_action (editor_actions, X_("show-marker-lines"), _("Show Marker Lines"), sigc::mem_fun (*this, &Editor::toggle_marker_lines));
587
588         /* RULERS */
589
590         Glib::RefPtr<ActionGroup> ruler_actions = myactions.create_action_group (X_("Rulers"));
591         ruler_tempo_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-tempo-ruler"), _("Tempo"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_tempo)));
592         ruler_meter_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-meter-ruler"), _("Meter"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_meter)));
593         ruler_range_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-range-ruler"), _("Ranges"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_range_marker)));
594         ruler_marker_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-marker-ruler"), _("Markers"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_marker)));
595         ruler_cd_marker_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-cd-marker-ruler"), _("CD Markers"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_cd_marker)));
596         ruler_loop_punch_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-loop-punch-ruler"), _("Loop/Punch"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_transport_marker)));
597         ruler_bbt_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-bbt-ruler"), _("Bars & Beats"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_metric_bbt)));
598         ruler_samples_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-samples-ruler"), _("Samples"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_metric_samples)));
599         ruler_timecode_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-timecode-ruler"), _("Timecode"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_metric_timecode)));
600         ruler_minsec_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-minsec-ruler"), _("Min:Sec"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_metric_minsec)));
601
602         myactions.register_action (editor_menu_actions, X_("VideoMonitorMenu"), _("Video Monitor"));
603
604         ruler_video_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (ruler_actions, X_("toggle-video-ruler"), _("Video"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_video_timeline)));
605         xjadeo_proc_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (editor_actions, X_("ToggleJadeo"), _("Video Monitor"), sigc::mem_fun (*this, &Editor::set_xjadeo_proc)));
606
607         xjadeo_ontop_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (editor_actions, X_("toggle-vmon-ontop"), _("Always on Top"), sigc::bind (sigc::mem_fun (*this, &Editor::set_xjadeo_viewoption), (int) 1)));
608         xjadeo_timecode_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (editor_actions, X_("toggle-vmon-timecode"), _("Timecode"), sigc::bind (sigc::mem_fun (*this, &Editor::set_xjadeo_viewoption), (int) 2)));
609         xjadeo_sample_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (editor_actions, X_("toggle-vmon-frame"), _("Frame number"), sigc::bind (sigc::mem_fun (*this, &Editor::set_xjadeo_viewoption), (int) 3)));
610         xjadeo_osdbg_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (editor_actions, X_("toggle-vmon-osdbg"), _("Timecode Background"), sigc::bind (sigc::mem_fun (*this, &Editor::set_xjadeo_viewoption), (int) 4)));
611         xjadeo_fullscreen_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (editor_actions, X_("toggle-vmon-fullscreen"), _("Fullscreen"), sigc::bind (sigc::mem_fun (*this, &Editor::set_xjadeo_viewoption), (int) 5)));
612         xjadeo_letterbox_action = Glib::RefPtr<ToggleAction>::cast_static (myactions.register_toggle_action (editor_actions, X_("toggle-vmon-letterbox"), _("Letterbox"), sigc::bind (sigc::mem_fun (*this, &Editor::set_xjadeo_viewoption), (int) 6)));
613         xjadeo_zoom_100 = reg_sens (editor_actions, "zoom-vmon-100", _("Original Size"), sigc::bind (sigc::mem_fun (*this, &Editor::set_xjadeo_viewoption), (int) 7));
614
615         /* set defaults here */
616
617         no_ruler_shown_update = true;
618
619         if (Profile->get_trx()) {
620                 ruler_marker_action->set_active (true);
621                 ruler_meter_action->set_active (false);
622                 ruler_tempo_action->set_active (false);
623                 ruler_range_action->set_active (false);
624                 ruler_loop_punch_action->set_active (false);
625                 ruler_loop_punch_action->set_active (false);
626                 ruler_bbt_action->set_active (true);
627                 ruler_cd_marker_action->set_active (false);
628                 ruler_timecode_action->set_active (false);
629                 ruler_minsec_action->set_active (true);
630         } else {
631                 ruler_marker_action->set_active (true);
632                 ruler_meter_action->set_active (true);
633                 ruler_tempo_action->set_active (true);
634                 ruler_range_action->set_active (true);
635                 ruler_loop_punch_action->set_active (true);
636                 ruler_loop_punch_action->set_active (true);
637                 ruler_bbt_action->set_active (true);
638                 ruler_cd_marker_action->set_active (true);
639                 ruler_timecode_action->set_active (true);
640                 ruler_minsec_action->set_active (false);
641         }
642
643         ruler_video_action->set_active (false);
644         xjadeo_proc_action->set_active (false);
645         xjadeo_proc_action->set_sensitive (false);
646         xjadeo_ontop_action->set_active (false);
647         xjadeo_ontop_action->set_sensitive (false);
648         xjadeo_timecode_action->set_active (false);
649         xjadeo_timecode_action->set_sensitive (false);
650         xjadeo_sample_action->set_active (false);
651         xjadeo_sample_action->set_sensitive (false);
652         xjadeo_osdbg_action->set_active (false);
653         xjadeo_osdbg_action->set_sensitive (false);
654         xjadeo_fullscreen_action->set_active (false);
655         xjadeo_fullscreen_action->set_sensitive (false);
656         xjadeo_letterbox_action->set_active (false);
657         xjadeo_letterbox_action->set_sensitive (false);
658         xjadeo_zoom_100->set_sensitive (false);
659
660         ruler_samples_action->set_active (false);
661         no_ruler_shown_update = false;
662
663         /* REGION LIST */
664
665         Glib::RefPtr<ActionGroup> rl_actions = myactions.create_action_group (X_("RegionList"));
666         RadioAction::Group sort_type_group;
667         RadioAction::Group sort_order_group;
668
669         /* the region list popup menu */
670         myactions.register_action (rl_actions, X_("RegionListSort"), _("Sort"));
671
672         act = myactions.register_action (rl_actions, X_("rlAudition"), _("Audition"), sigc::mem_fun(*this, &Editor::audition_region_from_region_list));
673         ActionManager::region_list_selection_sensitive_actions.push_back (act);
674
675         act = myactions.register_action (rl_actions, X_("rlHide"), _("Hide"), sigc::mem_fun(*this, &Editor::hide_region_from_region_list));
676         ActionManager::region_list_selection_sensitive_actions.push_back (act);
677
678         act = myactions.register_action (rl_actions, X_("rlShow"), _("Show"), sigc::mem_fun(*this, &Editor::show_region_in_region_list));
679         ActionManager::region_list_selection_sensitive_actions.push_back (act);
680
681         myactions.register_toggle_action (rl_actions, X_("rlShowAll"), _("Show All"), sigc::mem_fun(*_regions, &EditorRegions::toggle_full));
682         myactions.register_toggle_action (rl_actions, X_("rlShowAuto"), _("Show Automatic Regions"), sigc::mem_fun (*_regions, &EditorRegions::toggle_show_auto_regions));
683
684         myactions.register_radio_action (rl_actions, sort_order_group, X_("SortAscending"),  _("Ascending"),
685                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_direction), true));
686         myactions.register_radio_action (rl_actions, sort_order_group, X_("SortDescending"),   _("Descending"),
687                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_direction), false));
688
689         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortByRegionName"),  _("By Region Name"),
690                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByName, false));
691         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortByRegionLength"),  _("By Region Length"),
692                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByLength, false));
693         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortByRegionPosition"),  _("By Region Position"),
694                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByPosition, false));
695         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortByRegionTimestamp"),  _("By Region Timestamp"),
696                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByTimestamp, false));
697         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortByRegionStartinFile"),  _("By Region Start in File"),
698                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByStartInFile, false));
699         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortByRegionEndinFile"),  _("By Region End in File"),
700                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByEndInFile, false));
701         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileName"),  _("By Source File Name"),
702                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileName, false));
703         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileLength"),  _("By Source File Length"),
704                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileLength, false));
705         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileCreationDate"),  _("By Source File Creation Date"),
706                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileCreationDate, false));
707         myactions.register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFilesystem"),  _("By Source Filesystem"),
708                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileFS, false));
709
710         myactions.register_action (rl_actions, X_("removeUnusedRegions"), _("Remove Unused"), sigc::mem_fun (*_regions, &EditorRegions::remove_unused_regions));
711
712         act = reg_sens (editor_actions, X_("addExistingPTFiles"), _("Import PT session"), sigc::mem_fun (*this, &Editor::external_pt_dialog));
713         ActionManager::write_sensitive_actions.push_back (act);
714
715         /* the next two are duplicate items with different names for use in two different contexts */
716
717         act = reg_sens (editor_actions, X_("addExternalAudioToRegionList"), _("Import to Region List..."), sigc::bind (sigc::mem_fun(*this, &Editor::add_external_audio_action), ImportAsRegion));
718         ActionManager::write_sensitive_actions.push_back (act);
719
720         act = myactions.register_action (editor_actions, X_("importFromSession"), _("Import from Session"), sigc::mem_fun(*this, &Editor::session_import_dialog));
721         ActionManager::write_sensitive_actions.push_back (act);
722
723
724         act = myactions.register_action (editor_actions, X_("bring-into-session"), _("Bring all media into session folder"), sigc::mem_fun(*this, &Editor::bring_all_sources_into_session));
725         ActionManager::write_sensitive_actions.push_back (act);
726
727         myactions.register_toggle_action (editor_actions, X_("ToggleSummary"), _("Show Summary"), sigc::mem_fun (*this, &Editor::set_summary));
728
729         myactions.register_toggle_action (editor_actions, X_("ToggleGroupTabs"), _("Show Group Tabs"), sigc::mem_fun (*this, &Editor::set_group_tabs));
730
731         myactions.register_action (editor_actions, X_("toggle-midi-input-active"), _("Toggle MIDI Input Active for Editor-Selected Tracks/Busses"),
732                                    sigc::bind (sigc::mem_fun (*this, &Editor::toggle_midi_input_active), false));
733
734
735         /* MIDI stuff */
736         reg_sens (editor_actions, "quantize", _("Quantize"), sigc::mem_fun (*this, &Editor::quantize_region));
737
738 }
739
740 static void _lua_print (std::string s) {
741 #ifndef NDEBUG
742         std::cout << "LuaInstance: " << s << "\n";
743 #endif
744         PBD::info << "LuaInstance: " << s << endmsg;
745 }
746
747 void
748 Editor::trigger_script_by_name (const std::string script_name)
749 {
750         string script_path;
751         ARDOUR::LuaScriptList scr = LuaScripting::instance ().scripts(LuaScriptInfo::EditorAction);
752         for (ARDOUR::LuaScriptList::const_iterator s = scr.begin(); s != scr.end(); ++s) {
753
754                 if ((*s)->name == script_name) {
755                         script_path = (*s)->path;
756
757                         if (!Glib::file_test (script_path, Glib::FILE_TEST_EXISTS | Glib::FILE_TEST_IS_REGULAR)) {
758 #ifndef NDEBUG
759                                 cerr << "Lua Script action: path to " << script_path << " does not appear to be valid" << endl;
760 #endif
761                                 return;
762                         }
763
764                         LuaState lua;
765                         lua.Print.connect (&_lua_print);
766                         lua.sandbox (false);
767                         lua_State* L = lua.getState();
768                         LuaInstance::register_classes (L);
769                         LuaBindings::set_session (L, _session);
770                         luabridge::push <PublicEditor *> (L, &PublicEditor::instance());
771                         lua_setglobal (L, "Editor");
772                         lua.do_command ("function ardour () end");
773                         lua.do_file (script_path);
774                         luabridge::LuaRef args (luabridge::newTable (L));
775
776                         try {
777                                 luabridge::LuaRef fn = luabridge::getGlobal (L, "factory");
778                                 if (fn.isFunction()) {
779                                         fn (args)();
780                                 }
781                         } catch (luabridge::LuaException const& e) {
782                                 cerr << "LuaException:" << e.what () << endl;
783                         } catch (...) {
784                                 cerr << "Lua script failed: " << script_path << endl;
785                         }
786                         return;
787                 }
788         }
789 #ifndef NDEBUG
790         cerr << "Lua script was not found: " << script_name << endl;
791 #endif
792 }
793
794 void
795 Editor::load_bindings ()
796 {
797         bindings = Bindings::get_bindings (X_("Editor"), myactions);
798         global_hpacker.set_data ("ardour-bindings", bindings);
799 }
800
801 void
802 Editor::toggle_skip_playback ()
803 {
804         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), "toggle-skip-playback");
805
806         if (act) {
807                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
808                 bool s = Config->get_skip_playback ();
809                 if (tact->get_active() != s) {
810                         Config->set_skip_playback (tact->get_active());
811                 }
812         }
813 }
814
815 void
816 Editor::toggle_ruler_visibility (RulerType rt)
817 {
818         const char* action = 0;
819
820         if (no_ruler_shown_update) {
821                 return;
822         }
823
824         switch (rt) {
825         case ruler_metric_timecode:
826                 action = "toggle-timecode-ruler";
827                 break;
828         case ruler_metric_bbt:
829                 action = "toggle-bbt-ruler";
830                 break;
831         case ruler_metric_samples:
832                 action = "toggle-samples-ruler";
833                 break;
834         case ruler_metric_minsec:
835                 action = "toggle-minsec-ruler";
836                 break;
837         case ruler_time_tempo:
838                 action = "toggle-tempo-ruler";
839                 break;
840         case ruler_time_meter:
841                 action = "toggle-meter-ruler";
842                 break;
843         case ruler_time_marker:
844                 action = "toggle-marker-ruler";
845                 break;
846         case ruler_time_range_marker:
847                 action = "toggle-range-ruler";
848                 break;
849         case ruler_time_transport_marker:
850                 action = "toggle-loop-punch-ruler";
851                 break;
852         case ruler_time_cd_marker:
853                 action = "toggle-cd-marker-ruler";
854                 break;
855         case ruler_video_timeline:
856                 action = "toggle-video-ruler";
857                 break;
858         }
859
860         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Rulers"), action);
861
862         if (act) {
863                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
864                 update_ruler_visibility ();
865                 store_ruler_visibility ();
866         }
867 }
868
869 void
870 Editor::set_summary ()
871 {
872         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleSummary"));
873         if (act) {
874                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
875                 _session->config.set_show_summary (tact->get_active ());
876         }
877 }
878
879 void
880 Editor::set_group_tabs ()
881 {
882         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleGroupTabs"));
883         if (act) {
884                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
885                 _session->config.set_show_group_tabs (tact->get_active ());
886         }
887 }
888
889 void
890 Editor::set_close_video_sensitive (bool onoff)
891 {
892         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Main"), X_("CloseVideo"));
893         if (act) {
894                 act->set_sensitive (onoff);
895         }
896 }
897
898 void
899 Editor::set_xjadeo_sensitive (bool onoff)
900 {
901         xjadeo_proc_action->set_sensitive(onoff);
902 }
903
904 void
905 Editor::toggle_xjadeo_proc (int state)
906 {
907         switch(state) {
908                 case 1:
909                         xjadeo_proc_action->set_active(true);
910                         break;
911                 case 0:
912                         xjadeo_proc_action->set_active(false);
913                         break;
914                 default:
915                         xjadeo_proc_action->set_active(!xjadeo_proc_action->get_active());
916                         break;
917         }
918         bool onoff = xjadeo_proc_action->get_active();
919         xjadeo_ontop_action->set_sensitive(onoff);
920         xjadeo_timecode_action->set_sensitive(onoff);
921         xjadeo_sample_action->set_sensitive(onoff);
922         xjadeo_osdbg_action->set_sensitive(onoff);
923         xjadeo_fullscreen_action->set_sensitive(onoff);
924         xjadeo_letterbox_action->set_sensitive(onoff);
925         xjadeo_zoom_100->set_sensitive(onoff);
926 }
927
928 void
929 Editor::set_xjadeo_proc ()
930 {
931         if (xjadeo_proc_action->get_active()) {
932                 ARDOUR_UI::instance()->video_timeline->open_video_monitor();
933         } else {
934                 ARDOUR_UI::instance()->video_timeline->close_video_monitor();
935         }
936 }
937
938 void
939 Editor::toggle_xjadeo_viewoption (int what, int state)
940 {
941         Glib::RefPtr<Gtk::ToggleAction> action;
942         switch (what) {
943                 case 1:
944                         action = xjadeo_ontop_action;
945                         break;
946                 case 2:
947                         action = xjadeo_timecode_action;
948                         break;
949                 case 3:
950                         action = xjadeo_sample_action;
951                         break;
952                 case 4:
953                         action = xjadeo_osdbg_action;
954                         break;
955                 case 5:
956                         action = xjadeo_fullscreen_action;
957                         break;
958                 case 6:
959                         action = xjadeo_letterbox_action;
960                         break;
961                 case 7:
962                         return;
963                 default:
964                         return;
965         }
966
967         switch(state) {
968                 case 1:
969                         action->set_active(true);
970                         break;
971                 case 0:
972                         action->set_active(false);
973                         break;
974                 default:
975                         action->set_active(!action->get_active());
976                         break;
977         }
978 }
979
980 void
981 Editor::set_xjadeo_viewoption (int what)
982 {
983         Glib::RefPtr<Gtk::ToggleAction> action;
984         switch (what) {
985                 case 1:
986                         action = xjadeo_ontop_action;
987                         break;
988                 case 2:
989                         action = xjadeo_timecode_action;
990                         break;
991                 case 3:
992                         action = xjadeo_sample_action;
993                         break;
994                 case 4:
995                         action = xjadeo_osdbg_action;
996                         break;
997                 case 5:
998                         action = xjadeo_fullscreen_action;
999                         break;
1000                 case 6:
1001                         action = xjadeo_letterbox_action;
1002                         break;
1003                 case 7:
1004                         ARDOUR_UI::instance()->video_timeline->control_video_monitor(what, 0);
1005                         return;
1006                 default:
1007                         return;
1008         }
1009         if (action->get_active()) {
1010                 ARDOUR_UI::instance()->video_timeline->control_video_monitor(what, 1);
1011         } else {
1012                 ARDOUR_UI::instance()->video_timeline->control_video_monitor(what, 0);
1013         }
1014 }
1015
1016 void
1017 Editor::edit_current_meter ()
1018 {
1019         ARDOUR::MeterSection* ms = const_cast<ARDOUR::MeterSection*>(&_session->tempo_map().meter_section_at_sample (ARDOUR_UI::instance()->primary_clock->absolute_time()));
1020         edit_meter_section (ms);
1021 }
1022
1023 void
1024 Editor::edit_current_tempo ()
1025 {
1026         ARDOUR::TempoSection* ts = const_cast<ARDOUR::TempoSection*>(&_session->tempo_map().tempo_section_at_sample (ARDOUR_UI::instance()->primary_clock->absolute_time()));
1027         edit_tempo_section (ts);
1028 }
1029
1030 RefPtr<RadioAction>
1031 Editor::grid_type_action (GridType type)
1032 {
1033         const char* action = 0;
1034         RefPtr<Action> act;
1035
1036         switch (type) {
1037         case Editing::GridTypeBeatDiv32:
1038                 action = "grid-type-thirtyseconds";
1039                 break;
1040         case Editing::GridTypeBeatDiv28:
1041                 action = "grid-type-twentyeighths";
1042                 break;
1043         case Editing::GridTypeBeatDiv24:
1044                 action = "grid-type-twentyfourths";
1045                 break;
1046         case Editing::GridTypeBeatDiv20:
1047                 action = "grid-type-twentieths";
1048                 break;
1049         case Editing::GridTypeBeatDiv16:
1050                 action = "grid-type-asixteenthbeat";
1051                 break;
1052         case Editing::GridTypeBeatDiv14:
1053                 action = "grid-type-fourteenths";
1054                 break;
1055         case Editing::GridTypeBeatDiv12:
1056                 action = "grid-type-twelfths";
1057                 break;
1058         case Editing::GridTypeBeatDiv10:
1059                 action = "grid-type-tenths";
1060                 break;
1061         case Editing::GridTypeBeatDiv8:
1062                 action = "grid-type-eighths";
1063                 break;
1064         case Editing::GridTypeBeatDiv7:
1065                 action = "grid-type-sevenths";
1066                 break;
1067         case Editing::GridTypeBeatDiv6:
1068                 action = "grid-type-sixths";
1069                 break;
1070         case Editing::GridTypeBeatDiv5:
1071                 action = "grid-type-fifths";
1072                 break;
1073         case Editing::GridTypeBeatDiv4:
1074                 action = "grid-type-quarters";
1075                 break;
1076         case Editing::GridTypeBeatDiv3:
1077                 action = "grid-type-thirds";
1078                 break;
1079         case Editing::GridTypeBeatDiv2:
1080                 action = "grid-type-halves";
1081                 break;
1082         case Editing::GridTypeBeat:
1083                 action = "grid-type-beat";
1084                 break;
1085         case Editing::GridTypeBar:
1086                 action = "grid-type-bar";
1087                 break;
1088         case Editing::GridTypeNone:
1089                 action = "grid-type-none";
1090                 break;
1091         case Editing::GridTypeTimecode:
1092                 action = "grid-type-timecode";
1093                 break;
1094         case Editing::GridTypeCDFrame:
1095                 action = "grid-type-cdframe";
1096                 break;
1097         case Editing::GridTypeMinSec:
1098                 action = "grid-type-minsec";
1099                 break;
1100         default:
1101                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible snap-to type", (int) type) << endmsg;
1102                 abort(); /*NOTREACHED*/
1103         }
1104
1105         act = ActionManager::get_action (X_("Snap"), action);
1106
1107         if (act) {
1108                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1109                 return ract;
1110
1111         } else  {
1112                 error << string_compose (_("programming error: %1"), "Editor::grid_type_chosen could not find action to match type.") << endmsg;
1113                 return RefPtr<RadioAction>();
1114         }
1115 }
1116
1117 void
1118 Editor::next_grid_choice ()
1119 {
1120         switch (_grid_type) {
1121         case Editing::GridTypeBeatDiv32:
1122                 set_grid_to (Editing::GridTypeNone);
1123                 break;
1124         case Editing::GridTypeBeatDiv16:
1125                 set_grid_to (Editing::GridTypeBeatDiv32);
1126                 break;
1127         case Editing::GridTypeBeatDiv8:
1128                 set_grid_to (Editing::GridTypeBeatDiv16);
1129                 break;
1130         case Editing::GridTypeBeatDiv4:
1131                 set_grid_to (Editing::GridTypeBeatDiv8);
1132                 break;
1133         case Editing::GridTypeBeatDiv2:
1134                 set_grid_to (Editing::GridTypeBeatDiv4);
1135                 break;
1136         case Editing::GridTypeBeat:
1137                 set_grid_to (Editing::GridTypeBeatDiv2);
1138                 break;
1139         case Editing::GridTypeBar:
1140                 set_grid_to (Editing::GridTypeBeat);
1141                 break;
1142         case Editing::GridTypeNone:
1143                 set_grid_to (Editing::GridTypeBar);
1144                 break;
1145         case Editing::GridTypeBeatDiv3:
1146         case Editing::GridTypeBeatDiv6:
1147         case Editing::GridTypeBeatDiv12:
1148         case Editing::GridTypeBeatDiv24:
1149         case Editing::GridTypeBeatDiv5:
1150         case Editing::GridTypeBeatDiv10:
1151         case Editing::GridTypeBeatDiv20:
1152         case Editing::GridTypeBeatDiv7:
1153         case Editing::GridTypeBeatDiv14:
1154         case Editing::GridTypeBeatDiv28:
1155         case Editing::GridTypeTimecode:
1156         case Editing::GridTypeMinSec:
1157         case Editing::GridTypeCDFrame:
1158                 break;  //do nothing
1159         }
1160 }
1161
1162 void
1163 Editor::prev_grid_choice ()
1164 {
1165         switch (_grid_type) {
1166         case Editing::GridTypeBeatDiv32:
1167                 set_grid_to (Editing::GridTypeBeatDiv16);
1168                 break;
1169         case Editing::GridTypeBeatDiv16:
1170                 set_grid_to (Editing::GridTypeBeatDiv8);
1171                 break;
1172         case Editing::GridTypeBeatDiv8:
1173                 set_grid_to (Editing::GridTypeBeatDiv4);
1174                 break;
1175         case Editing::GridTypeBeatDiv4:
1176                 set_grid_to (Editing::GridTypeBeatDiv2);
1177                 break;
1178         case Editing::GridTypeBeatDiv2:
1179                 set_grid_to (Editing::GridTypeBeat);
1180                 break;
1181         case Editing::GridTypeBeat:
1182                 set_grid_to (Editing::GridTypeBar);
1183                 break;
1184         case Editing::GridTypeBar:
1185                 set_grid_to (Editing::GridTypeNone);
1186                 break;
1187         case Editing::GridTypeNone:
1188                 set_grid_to (Editing::GridTypeBeatDiv32);
1189                 break;
1190         case Editing::GridTypeBeatDiv3:
1191         case Editing::GridTypeBeatDiv6:
1192         case Editing::GridTypeBeatDiv12:
1193         case Editing::GridTypeBeatDiv24:
1194         case Editing::GridTypeBeatDiv5:
1195         case Editing::GridTypeBeatDiv10:
1196         case Editing::GridTypeBeatDiv20:
1197         case Editing::GridTypeBeatDiv7:
1198         case Editing::GridTypeBeatDiv14:
1199         case Editing::GridTypeBeatDiv28:
1200         case Editing::GridTypeTimecode:
1201         case Editing::GridTypeMinSec:
1202         case Editing::GridTypeCDFrame:
1203                 break;  //do nothing
1204         }
1205 }
1206
1207 void
1208 Editor::grid_type_chosen (GridType type)
1209 {
1210         /* this is driven by a toggle on a radio group, and so is invoked twice,
1211            once for the item that became inactive and once for the one that became
1212            active.
1213         */
1214
1215         RefPtr<RadioAction> ract = grid_type_action (type);
1216
1217         if (ract && ract->get_active()) {
1218                 set_grid_to (type);
1219         }
1220 }
1221
1222 RefPtr<RadioAction>
1223 Editor::snap_mode_action (SnapMode mode)
1224 {
1225         const char* action = 0;
1226         RefPtr<Action> act;
1227
1228         switch (mode) {
1229         case Editing::SnapOff:
1230                 action = X_("snap-off");
1231                 break;
1232         case Editing::SnapNormal:
1233                 action = X_("snap-normal");
1234                 break;
1235         case Editing::SnapMagnetic:
1236                 action = X_("snap-magnetic");
1237                 break;
1238         default:
1239                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible snap mode type", (int) mode) << endmsg;
1240                 abort(); /*NOTREACHED*/
1241         }
1242
1243         act = ActionManager::get_action (X_("Editor"), action);
1244
1245         if (act) {
1246                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1247                 return ract;
1248
1249         } else  {
1250                 error << string_compose (_("programming error: %1: %2"), "Editor::snap_mode_chosen could not find action to match mode.", action) << endmsg;
1251                 return RefPtr<RadioAction> ();
1252         }
1253 }
1254
1255 void
1256 Editor::cycle_snap_mode ()
1257 {
1258         switch (_snap_mode) {
1259         case SnapOff:
1260         case SnapNormal:
1261                 set_snap_mode (SnapMagnetic);
1262                 break;
1263         case SnapMagnetic:
1264                 set_snap_mode (SnapOff);
1265                 break;
1266         }
1267 }
1268
1269 void
1270 Editor::snap_mode_chosen (SnapMode mode)
1271 {
1272         /* this is driven by a toggle on a radio group, and so is invoked twice,
1273            once for the item that became inactive and once for the one that became
1274            active.
1275         */
1276
1277         if (mode == SnapNormal) {
1278                 mode = SnapMagnetic;
1279         }
1280
1281         RefPtr<RadioAction> ract = snap_mode_action (mode);
1282
1283         if (ract && ract->get_active()) {
1284                 set_snap_mode (mode);
1285         }
1286 }
1287
1288 RefPtr<RadioAction>
1289 Editor::edit_point_action (EditPoint ep)
1290 {
1291         const char* action = 0;
1292         RefPtr<Action> act;
1293
1294         switch (ep) {
1295         case Editing::EditAtPlayhead:
1296                 action = X_("edit-at-playhead");
1297                 break;
1298         case Editing::EditAtSelectedMarker:
1299                 action = X_("edit-at-selected-marker");
1300                 break;
1301         case Editing::EditAtMouse:
1302                 action = X_("edit-at-mouse");
1303                 break;
1304         default:
1305                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible edit point type", (int) ep) << endmsg;
1306                 abort(); /*NOTREACHED*/
1307         }
1308
1309         act = ActionManager::get_action (X_("Editor"), action);
1310
1311         if (act) {
1312                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1313                 return ract;
1314
1315         } else  {
1316                 error << string_compose (_("programming error: %1: %2"), "Editor::edit_point_action could not find action to match edit point.", action) << endmsg;
1317                 return RefPtr<RadioAction> ();
1318         }
1319 }
1320
1321 void
1322 Editor::edit_point_chosen (EditPoint ep)
1323 {
1324         /* this is driven by a toggle on a radio group, and so is invoked twice,
1325            once for the item that became inactive and once for the one that became
1326            active.
1327         */
1328
1329         RefPtr<RadioAction> ract = edit_point_action (ep);
1330
1331         if (ract && ract->get_active()) {
1332                 set_edit_point_preference (ep);
1333         }
1334 }
1335
1336
1337 RefPtr<RadioAction>
1338 Editor::zoom_focus_action (ZoomFocus focus)
1339 {
1340         const char* action = 0;
1341         RefPtr<Action> act;
1342
1343         switch (focus) {
1344         case ZoomFocusLeft:
1345                 action = X_("zoom-focus-left");
1346                 break;
1347         case ZoomFocusRight:
1348                 action = X_("zoom-focus-right");
1349                 break;
1350         case ZoomFocusCenter:
1351                 action = X_("zoom-focus-center");
1352                 break;
1353         case ZoomFocusPlayhead:
1354                 action = X_("zoom-focus-playhead");
1355                 break;
1356         case ZoomFocusMouse:
1357                 action = X_("zoom-focus-mouse");
1358                 break;
1359         case ZoomFocusEdit:
1360                 action = X_("zoom-focus-edit");
1361                 break;
1362         default:
1363                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible focus type", (int) focus) << endmsg;
1364                 abort(); /*NOTREACHED*/
1365         }
1366
1367         act = ActionManager::get_action (X_("Zoom"), action);
1368
1369         if (act) {
1370                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1371                 return ract;
1372         } else {
1373                 error << string_compose (_("programming error: %1: %2"), "Editor::zoom_focus_action could not find action to match focus.", action) << endmsg;
1374         }
1375
1376         return RefPtr<RadioAction> ();
1377 }
1378
1379 void
1380 Editor::toggle_sound_midi_notes ()
1381 {
1382         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("sound-midi-notes"));
1383
1384         if (act) {
1385                 bool s = UIConfiguration::instance().get_sound_midi_notes();
1386                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1387                 if (tact->get_active () != s) {
1388                         UIConfiguration::instance().set_sound_midi_notes (tact->get_active());
1389                 }
1390         }
1391 }
1392
1393 void
1394 Editor::zoom_focus_chosen (ZoomFocus focus)
1395 {
1396         /* this is driven by a toggle on a radio group, and so is invoked twice,
1397            once for the item that became inactive and once for the one that became
1398            active.
1399         */
1400
1401         RefPtr<RadioAction> ract = zoom_focus_action (focus);
1402
1403         if (ract && ract->get_active()) {
1404                 set_zoom_focus (focus);
1405         }
1406 }
1407
1408 /** A Configuration parameter has changed.
1409  * @param parameter_name Name of the changed parameter.
1410  */
1411 void
1412 Editor::parameter_changed (std::string p)
1413 {
1414         ENSURE_GUI_THREAD (*this, &Editor::parameter_changed, p)
1415
1416         if (p == "auto-loop") {
1417                 update_loop_range_view ();
1418         } else if (p == "punch-in") {
1419                 update_punch_range_view ();
1420         } else if (p == "punch-out") {
1421                 update_punch_range_view ();
1422         } else if (p == "timecode-format") {
1423                 update_just_timecode ();
1424         } else if (p == "show-region-fades") {
1425                 update_region_fade_visibility ();
1426         } else if (p == "edit-mode") {
1427                 edit_mode_selector.set_text (edit_mode_to_string (Config->get_edit_mode()));
1428         } else if (p == "show-track-meters") {
1429                 toggle_meter_updating();
1430         } else if (p == "show-summary") {
1431
1432                 bool const s = _session->config.get_show_summary ();
1433                 if (s) {
1434                         _summary_hbox.show ();
1435                 } else {
1436                         _summary_hbox.hide ();
1437                 }
1438
1439                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleSummary"));
1440                 if (act) {
1441                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1442                         if (tact->get_active () != s) {
1443                                 tact->set_active (s);
1444                         }
1445                 }
1446         } else if (p == "show-group-tabs") {
1447
1448                 bool const s = _session->config.get_show_group_tabs ();
1449                 if (s) {
1450                         _group_tabs->show ();
1451                 } else {
1452                         _group_tabs->hide ();
1453                 }
1454
1455                 reset_controls_layout_width ();
1456
1457                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleGroupTabs"));
1458                 if (act) {
1459                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1460                         if (tact->get_active () != s) {
1461                                 tact->set_active (s);
1462                         }
1463                 }
1464         } else if (p == "timecode-offset" || p == "timecode-offset-negative") {
1465                 update_just_timecode ();
1466         } else if (p == "sound-midi-notes") {
1467                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("sound-midi-notes"));
1468
1469                 if (act) {
1470                         bool s = UIConfiguration::instance().get_sound_midi_notes();
1471                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1472                         if (tact->get_active () != s) {
1473                                 tact->set_active (s);
1474                         }
1475                 }
1476         } else if (p == "show-region-gain") {
1477                 set_gain_envelope_visibility ();
1478         } else if (p == "skip-playback") {
1479                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-skip-playback"));
1480
1481                 if (act) {
1482                         bool s = Config->get_skip_playback ();
1483                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1484                         if (tact->get_active () != s) {
1485                                 tact->set_active (s);
1486                         }
1487                 }
1488         }
1489 }
1490
1491 void
1492 Editor::reset_canvas_action_sensitivity (bool onoff)
1493 {
1494         if (_edit_point != EditAtMouse) {
1495                 onoff = true;
1496         }
1497
1498         for (vector<Glib::RefPtr<Action> >::iterator x = ActionManager::mouse_edit_point_requires_canvas_actions.begin();
1499              x != ActionManager::mouse_edit_point_requires_canvas_actions.end(); ++x) {
1500                 (*x)->set_sensitive (onoff);
1501         }
1502 }
1503
1504 void
1505 Editor::register_region_actions ()
1506 {
1507         _region_actions = myactions.create_action_group (X_("Region"));
1508
1509         /* PART 1: actions that operate on the selection, and for which the edit point type and location is irrelevant */
1510
1511         /* Remove selected regions */
1512         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "remove-region", _("Remove"), sigc::mem_fun (*this, &Editor::remove_selected_regions));
1513
1514         /* Offer dialogue box to rename the first selected region */
1515         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "rename-region", _("Rename..."), sigc::mem_fun (*this, &Editor::rename_region));
1516
1517         /* Raise all selected regions by 1 layer */
1518         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "raise-region", _("Raise"), sigc::mem_fun (*this, &Editor::raise_region));
1519
1520         /* Raise all selected regions to the top */
1521         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "raise-region-to-top", _("Raise to Top"), sigc::mem_fun (*this, &Editor::raise_region_to_top));
1522
1523         /* Lower all selected regions by 1 layer */
1524         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "lower-region", _("Lower"), sigc::mem_fun (*this, &Editor::lower_region));
1525
1526         /* Lower all selected regions to the bottom */
1527         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "lower-region-to-bottom", _("Lower to Bottom"), sigc::mem_fun (*this, &Editor::lower_region_to_bottom));
1528
1529         /* Move selected regions to their original (`natural') position */
1530         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "naturalize-region", _("Move to Original Position"), sigc::mem_fun (*this, &Editor::naturalize_region));
1531
1532         /* Toggle `locked' status of selected regions */
1533         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-region-lock", _("Lock"), sigc::mem_fun(*this, &Editor::toggle_region_lock));
1534         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-region-video-lock", _("Lock to Video"), sigc::mem_fun(*this, &Editor::toggle_region_video_lock));
1535         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-region-lock-style", _("Glue to Bars and Beats"), sigc::mem_fun (*this, &Editor::toggle_region_lock_style));
1536
1537         /* Remove sync points from selected regions */
1538         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "remove-region-sync", _("Remove Sync"), sigc::mem_fun(*this, &Editor::remove_region_sync));
1539
1540         /* Mute or unmute selected regions */
1541         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-region-mute", _("Mute"), sigc::mem_fun(*this, &Editor::toggle_region_mute));
1542
1543         /* Open the normalize dialogue to operate on the selected regions */
1544         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "normalize-region", _("Normalize..."), sigc::mem_fun(*this, &Editor::normalize_region));
1545
1546         /* Reverse selected regions */
1547         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "reverse-region", _("Reverse"), sigc::mem_fun (*this, &Editor::reverse_region));
1548
1549         /* Split selected multi-channel regions into mono regions */
1550         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "split-multichannel-region", _("Make Mono Regions"), sigc::mem_fun (*this, &Editor::split_multichannel_region));
1551
1552         /* Boost selected region gain */
1553         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "boost-region-gain", _("Boost Gain"), sigc::bind (sigc::mem_fun(*this, &Editor::adjust_region_gain), true));
1554
1555         /* Cut selected region gain */
1556         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "cut-region-gain", _("Cut Gain"), sigc::bind (sigc::mem_fun(*this, &Editor::adjust_region_gain), false));
1557
1558         /* Reset selected region gain */
1559         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "reset-region-gain", _("Reset Gain"), sigc::mem_fun(*this, &Editor::reset_region_gain));
1560
1561         /* Open the pitch shift dialogue for any selected audio regions */
1562         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "pitch-shift-region", _("Pitch Shift..."), sigc::mem_fun (*this, &Editor::pitch_shift_region));
1563
1564         /* Open the transpose dialogue for any selected MIDI regions */
1565         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "transpose-region", _("Transpose..."), sigc::mem_fun (*this, &Editor::transpose_region));
1566
1567         /* Toggle selected region opacity */
1568         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-opaque-region", _("Opaque"), sigc::mem_fun (*this, &Editor::toggle_opaque_region));
1569
1570         /* Toggle active status of selected regions' fade in */
1571         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-region-fade-in", _("Fade In"), sigc::bind (sigc::mem_fun (*this, &Editor::toggle_region_fades), 1));
1572
1573         /* Toggle active status of selected regions' fade out */
1574         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-region-fade-out", _("Fade Out"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_region_fades), -1));
1575
1576         /* Toggle active status of selected regions' fade in and out */
1577         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-region-fades", _("Fades"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_region_fades), 0));
1578
1579         /* Duplicate selected regions */
1580         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "duplicate-region", _("Duplicate"), sigc::bind (sigc::mem_fun (*this, &Editor::duplicate_regions), 1));
1581
1582         /* Open the dialogue to duplicate selected regions multiple times */
1583         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "multi-duplicate-region", _("Multi-Duplicate..."), sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_range), true));
1584
1585         /* Fill tracks with selected regions */
1586         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "region-fill-track", _("Fill Track"), sigc::mem_fun (*this, &Editor::region_fill_track));
1587
1588         /* Set up the loop range from the selected regions */
1589         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "set-loop-from-region", _("Set Loop Range"), sigc::bind (sigc::mem_fun (*this, &Editor::set_loop_from_region), false));
1590
1591         /* Set up the loop range from the selected regions, and start playback of it */
1592         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "loop-region", _("Loop"), sigc::bind  (sigc::mem_fun(*this, &Editor::set_loop_from_region), true));
1593
1594         /* Set the punch range from the selected regions */
1595         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "set-punch-from-region", _("Set Punch"), sigc::mem_fun (*this, &Editor::set_punch_from_region));
1596
1597         /* Add a single range marker around all selected regions */
1598         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "add-range-marker-from-region", _("Add Single Range Marker"), sigc::mem_fun (*this, &Editor::add_location_from_region));
1599
1600         /* Add a range marker around each selected region */
1601         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "add-range-markers-from-region", _("Add Range Marker Per Region"), sigc::mem_fun (*this, &Editor::add_locations_from_region));
1602
1603         /* Snap selected regions to the grid */
1604         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "snap-regions-to-grid", _("Snap Position to Grid"), sigc::mem_fun (*this, &Editor::snap_regions_to_grid));
1605
1606         /* Close gaps in selected regions */
1607         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "close-region-gaps", _("Close Gaps"), sigc::mem_fun (*this, &Editor::close_region_gaps));
1608
1609         /* Open the Rhythm Ferret dialogue for the selected regions */
1610         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "show-rhythm-ferret", _("Rhythm Ferret..."), sigc::mem_fun (*this, &Editor::show_rhythm_ferret));
1611
1612         /* Export the first selected region */
1613         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "export-region", _("Export..."), sigc::mem_fun (*this, &Editor::export_region));
1614
1615         /* Separate under selected regions: XXX not sure what this does */
1616         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "separate-under-region", _("Separate Under"), sigc::mem_fun (*this, &Editor::separate_under_selected_regions));
1617
1618         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "set-fade-in-length", _("Set Fade In Length"), sigc::bind (sigc::mem_fun (*this, &Editor::set_fade_length), true));
1619         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "alternate-set-fade-in-length", _("Set Fade In Length"), sigc::bind (sigc::mem_fun (*this, &Editor::set_fade_length), true));
1620         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "set-fade-out-length", _("Set Fade Out Length"), sigc::bind (sigc::mem_fun (*this, &Editor::set_fade_length), false));
1621         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "alternate-set-fade-out-length", _("Set Fade Out Length"), sigc::bind (sigc::mem_fun (*this, &Editor::set_fade_length), false));
1622
1623         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "set-tempo-from-region", _("Set Tempo from Region = Bar"), sigc::mem_fun (*this, &Editor::set_tempo_from_region));
1624
1625         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "split-region-at-transients", _("Split at Percussion Onsets"), sigc::mem_fun(*this, &Editor::split_region_at_transients));
1626
1627         /* Open the list editor dialogue for the selected regions */
1628         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "show-region-list-editor", _("List Editor..."), sigc::mem_fun (*this, &Editor::show_midi_list_editor));
1629
1630         /* Open the region properties dialogue for the selected regions */
1631         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "show-region-properties", _("Properties..."), sigc::mem_fun (*this, &Editor::show_region_properties));
1632
1633         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "play-selected-regions", _("Play selected Regions"), sigc::mem_fun(*this, &Editor::play_selected_region));
1634
1635         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "bounce-regions-processed", _("Bounce (with processing)"), (sigc::bind (sigc::mem_fun (*this, &Editor::bounce_region_selection), true)));
1636         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "bounce-regions-unprocessed", _("Bounce (without processing)"), (sigc::bind (sigc::mem_fun (*this, &Editor::bounce_region_selection), false)));
1637         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "combine-regions", _("Combine"), sigc::mem_fun (*this, &Editor::combine_regions));
1638         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "uncombine-regions", _("Uncombine"), sigc::mem_fun (*this, &Editor::uncombine_regions));
1639
1640         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "loudness-analyze-region", _("Loudness Analysis..."), sigc::mem_fun (*this, &Editor::loudness_analyze_region_selection));
1641         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "spectral-analyze-region", _("Spectral Analysis..."), sigc::mem_fun (*this, &Editor::spectral_analyze_region_selection));
1642
1643         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "reset-region-gain-envelopes", _("Reset Envelope"), sigc::mem_fun (*this, &Editor::reset_region_gain_envelopes));
1644         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "reset-region-scale-amplitude", _("Reset Gain"), sigc::mem_fun (*this, &Editor::reset_region_scale_amplitude));
1645
1646         register_toggle_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "toggle-region-gain-envelope-active", _("Envelope Active"), sigc::mem_fun (*this, &Editor::toggle_gain_envelope_active));
1647
1648         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "quantize-region", _("Quantize..."), sigc::mem_fun (*this, &Editor::quantize_region));
1649         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "legatize-region", _("Legatize"), sigc::bind(sigc::mem_fun (*this, &Editor::legatize_region), false));
1650         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "transform-region", _("Transform..."), sigc::mem_fun (*this, &Editor::transform_region));
1651         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "remove-overlap", _("Remove Overlap"), sigc::bind(sigc::mem_fun (*this, &Editor::legatize_region), true));
1652         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "insert-patch-change", _("Insert Patch Change..."), sigc::bind (sigc::mem_fun (*this, &Editor::insert_patch_change), false));
1653         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "insert-patch-change-context", _("Insert Patch Change..."), sigc::bind (sigc::mem_fun (*this, &Editor::insert_patch_change), true));
1654         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "fork-region", _("Unlink from other copies"), sigc::mem_fun (*this, &Editor::fork_region));
1655         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "strip-region-silence", _("Strip Silence..."), sigc::mem_fun (*this, &Editor::strip_region_silence));
1656         register_region_action (_region_actions, RegionActionTarget (SelectedRegions), "set-selection-from-region", _("Set Range Selection"), sigc::mem_fun (*this, &Editor::set_selection_from_region));
1657
1658         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "nudge-forward", _("Nudge Later"), sigc::bind (sigc::mem_fun (*this, &Editor::nudge_forward), false, false));
1659         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "alternate-nudge-forward", _("Nudge Later"), sigc::bind (sigc::mem_fun (*this, &Editor::nudge_forward), false, false));
1660         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "nudge-backward", _("Nudge Earlier"), sigc::bind (sigc::mem_fun (*this, &Editor::nudge_backward), false, false));
1661         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "alternate-nudge-backward", _("Nudge Earlier"), sigc::bind (sigc::mem_fun (*this, &Editor::nudge_backward), false, false));
1662
1663         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "sequence-regions", _("Sequence Regions"), sigc::mem_fun (*this, &Editor::sequence_regions));
1664
1665         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "nudge-forward-by-capture-offset", _("Nudge Later by Capture Offset"), sigc::mem_fun (*this, &Editor::nudge_forward_capture_offset));
1666
1667         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "nudge-backward-by-capture-offset", _("Nudge Earlier by Capture Offset"), sigc::mem_fun (*this, &Editor::nudge_backward_capture_offset));
1668
1669         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "trim-region-to-loop", _("Trim to Loop"), sigc::mem_fun (*this, &Editor::trim_region_to_loop));
1670         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "trim-region-to-punch", _("Trim to Punch"), sigc::mem_fun (*this, &Editor::trim_region_to_punch));
1671
1672         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "trim-to-previous-region", _("Trim to Previous"), sigc::mem_fun(*this, &Editor::trim_region_to_previous_region_end));
1673         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EnteredRegions), "trim-to-next-region", _("Trim to Next"), sigc::mem_fun(*this, &Editor::trim_region_to_next_region_start));
1674
1675         /* PART 2: actions that are not related to the selection, but for which the edit point type and location is important */
1676
1677         register_region_action (_region_actions, RegionActionTarget (ListSelection), "insert-region-from-region-list", _("Insert Region from Region List"), sigc::bind (sigc::mem_fun (*this, &Editor::insert_region_list_selection), 1));
1678
1679         /* PART 3: actions that operate on the selection and also require the edit point location */
1680
1681         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "set-region-sync-position", _("Set Sync Position"), sigc::mem_fun (*this, &Editor::set_region_sync_position));
1682         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "place-transient", _("Place Transient"), sigc::mem_fun (*this, &Editor::place_transient));
1683         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "trim-front", _("Trim Start at Edit Point"), sigc::mem_fun (*this, &Editor::trim_region_front));
1684         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "trim-back", _("Trim End at Edit Point"), sigc::mem_fun (*this, &Editor::trim_region_back));
1685         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "align-regions-start", _("Align Start"), sigc::bind (sigc::mem_fun(*this, &Editor::align_regions), ARDOUR::Start));
1686         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "align-regions-start-relative", _("Align Start Relative"), sigc::bind (sigc::mem_fun (*this, &Editor::align_regions_relative), ARDOUR::Start));
1687         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "align-regions-end", _("Align End"), sigc::bind (sigc::mem_fun (*this, &Editor::align_regions), ARDOUR::End));
1688         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "align-regions-end-relative", _("Align End Relative"), sigc::bind (sigc::mem_fun(*this, &Editor::align_regions_relative), ARDOUR::End));
1689         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "align-regions-sync", _("Align Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::align_regions), ARDOUR::SyncPoint));
1690         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "align-regions-sync-relative", _("Align Sync Relative"), sigc::bind (sigc::mem_fun (*this, &Editor::align_regions_relative), ARDOUR::SyncPoint));
1691         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "choose-top-region", _("Choose Top..."), sigc::bind (sigc::mem_fun (*this, &Editor::change_region_layering_order), false));
1692         register_region_action (_region_actions, RegionActionTarget (SelectedRegions|EditPointRegions), "choose-top-region-context-menu", _("Choose Top..."), sigc::bind (sigc::mem_fun (*this, &Editor::change_region_layering_order), true));
1693
1694         /* desensitize them all by default. region selection will change this */
1695         sensitize_all_region_actions (false);
1696 }