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