slightly improve text of cleanup results dialog
[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 "gtkmm2ext/tearoff.h"
24
25 #include "ardour/ardour.h"
26 #include "ardour/profile.h"
27 #include "ardour/session.h"
28
29 #include "actions.h"
30 #include "ardour_ui.h"
31 #include "editing.h"
32 #include "editor.h"
33 #include "gui_thread.h"
34 #include "time_axis_view.h"
35 #include "utils.h"
36 #include "i18n.h"
37 #include "audio_time_axis.h"
38 #include "editor_group_tabs.h"
39 #include "editor_routes.h"
40 #include "editor_regions.h"
41
42 using namespace Gtk;
43 using namespace Glib;
44 using namespace std;
45 using namespace ARDOUR;
46 using namespace PBD;
47 using namespace Editing;
48
49 void
50 Editor::register_actions ()
51 {
52         RefPtr<Action> act;
53
54         editor_actions = ActionGroup::create (X_("Editor"));
55
56         /* non-operative menu items for menu bar */
57
58         ActionManager::register_action (editor_actions, X_("AlignMenu"), _("Align"));
59         ActionManager::register_action (editor_actions, X_("Autoconnect"), _("Autoconnect"));
60         ActionManager::register_action (editor_actions, X_("Crossfades"), _("Crossfades"));
61         ActionManager::register_action (editor_actions, X_("Edit"), _("Edit"));
62         ActionManager::register_action (editor_actions, X_("EditCursorMovementOptions"), _("Move Selected Marker"));
63         ActionManager::register_action (editor_actions, X_("EditSelectRangeOptions"), _("Select Range Operations"));
64         ActionManager::register_action (editor_actions, X_("EditSelectRegionOptions"), _("Select Regions"));
65         ActionManager::register_action (editor_actions, X_("EditPointMenu"), _("Edit Point"));
66         ActionManager::register_action (editor_actions, X_("FadeMenu"), _("Fade"));
67         ActionManager::register_action (editor_actions, X_("LatchMenu"), _("Latch"));
68         ActionManager::register_action (editor_actions, X_("RegionMenu"), _("Region"));
69         ActionManager::register_action (editor_actions, X_("RegionMenuLayering"), _("Layering"));
70         ActionManager::register_action (editor_actions, X_("RegionMenuNudge"), _("Nudge"));
71         ActionManager::register_action (editor_actions, X_("RegionMenuTrim"), _("Trim"));
72         ActionManager::register_action (editor_actions, X_("RegionMenuGain"), _("Gain"));
73         ActionManager::register_action (editor_actions, X_("RegionMenuRanges"), _("Ranges"));
74         ActionManager::register_action (editor_actions, X_("RegionMenuFades"), _("Fades"));
75         ActionManager::register_action (editor_actions, X_("RegionMenuMIDI"), _("MIDI"));
76         ActionManager::register_action (editor_actions, X_("RegionMenuDuplicate"), _("Duplicate"));
77         ActionManager::register_action (editor_actions, X_("Link"), _("Link"));
78         ActionManager::register_action (editor_actions, X_("ZoomFocusMenu"), _("Zoom Focus"));
79         ActionManager::register_action (editor_actions, X_("KeyMouseActions"), _("Key Mouse"));
80         ActionManager::register_action (editor_actions, X_("LocateToMarker"), _("Locate to Markers"));
81         ActionManager::register_action (editor_actions, X_("MarkerMenu"), _("Markers"));
82         ActionManager::register_action (editor_actions, X_("MeterFalloff"), _("Meter falloff"));
83         ActionManager::register_action (editor_actions, X_("MeterHold"), _("Meter hold"));
84         ActionManager::register_action (editor_actions, X_("MiscOptions"), _("Misc Options"));
85         ActionManager::register_action (editor_actions, X_("Monitoring"), _("Monitoring"));
86         ActionManager::register_action (editor_actions, X_("MoveActiveMarkMenu"), _("Active Mark"));
87         ActionManager::register_action (editor_actions, X_("MovePlayHeadMenu"), _("Playhead"));
88         ActionManager::register_action (editor_actions, X_("PlayMenu"), _("Play"));
89         ActionManager::register_action (editor_actions, X_("PrimaryClockMenu"), _("Primary Clock"));
90         ActionManager::register_action (editor_actions, X_("Pullup"), _("Pullup / Pulldown"));
91         ActionManager::register_action (editor_actions, X_("RegionEditOps"), _("Region operations"));
92         ActionManager::register_action (editor_actions, X_("RegionGainMenu"), _("Gain"));
93         ActionManager::register_action (editor_actions, X_("RulerMenu"), _("Rulers"));
94         ActionManager::register_action (editor_actions, X_("SavedViewMenu"), _("Views"));
95         ActionManager::register_action (editor_actions, X_("ScrollMenu"), _("Scroll"));
96         ActionManager::register_action (editor_actions, X_("SecondaryClockMenu"), _("Secondary Clock"));
97         ActionManager::register_action (editor_actions, X_("Select"), _("Select"));
98         ActionManager::register_action (editor_actions, X_("SelectMenu"), _("Select"));
99         ActionManager::register_action (editor_actions, X_("SeparateMenu"), _("Separate"));
100         ActionManager::register_action (editor_actions, X_("SetLoopMenu"), _("Loop"));
101         ActionManager::register_action (editor_actions, X_("SetPunchMenu"), _("Punch"));
102         ActionManager::register_action (editor_actions, X_("Solo"), _("Solo"));
103         ActionManager::register_action (editor_actions, X_("Subframes"), _("Subframes"));
104         ActionManager::register_action (editor_actions, X_("SyncMenu"), _("Sync"));
105         ActionManager::register_action (editor_actions, X_("TempoMenu"), _("Tempo"));
106         ActionManager::register_action (editor_actions, X_("Timecode"), _("Timecode fps"));
107         ActionManager::register_action (editor_actions, X_("TrackHeightMenu"), _("Height"));
108         ActionManager::register_action (editor_actions, X_("TrackMenu"), _("Track"));
109         ActionManager::register_action (editor_actions, X_("Tools"), _("Tools"));
110         ActionManager::register_action (editor_actions, X_("View"), _("View"));
111         ActionManager::register_action (editor_actions, X_("ZoomFocus"), _("Zoom Focus"));
112         ActionManager::register_action (editor_actions, X_("ZoomMenu"), _("Zoom"));
113
114         register_region_actions ();
115
116         /* add named actions for the editor */
117
118         ActionManager::register_action (editor_actions, "escape", _("Break drag or deselect all"), sigc::mem_fun (*this, &Editor::escape));
119
120         act = ActionManager::register_toggle_action (editor_actions, "show-editor-mixer", _("Show Editor Mixer"), sigc::mem_fun (*this, &Editor::editor_mixer_button_toggled));
121         ActionManager::session_sensitive_actions.push_back (act);
122         act = ActionManager::register_toggle_action (editor_actions, "show-editor-list", _("Show Editor List"), sigc::mem_fun (*this, &Editor::editor_list_button_toggled));
123         ActionManager::session_sensitive_actions.push_back (act);
124
125         act = ActionManager::register_action (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 ));
126         ActionManager::session_sensitive_actions.push_back (act);
127         act = ActionManager::register_action (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 ));
128         ActionManager::session_sensitive_actions.push_back (act);
129         act = ActionManager::register_action (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));
130         ActionManager::session_sensitive_actions.push_back (act);
131         act = ActionManager::register_action (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));
132         ActionManager::session_sensitive_actions.push_back (act);
133
134         act = ActionManager::register_action (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)));
135         ActionManager::session_sensitive_actions.push_back (act);
136         act = ActionManager::register_action (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)));
137         ActionManager::session_sensitive_actions.push_back (act);
138         act = ActionManager::register_action (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)));
139         ActionManager::session_sensitive_actions.push_back (act);
140
141         act = ActionManager::register_action (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)));
142         ActionManager::session_sensitive_actions.push_back (act);
143         act = ActionManager::register_action (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)));
144         ActionManager::session_sensitive_actions.push_back (act);
145         act = ActionManager::register_action (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)));
146         ActionManager::session_sensitive_actions.push_back (act);
147
148         act = ActionManager::register_action (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));
149         ActionManager::session_sensitive_actions.push_back (act);
150         act = ActionManager::register_action (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));
151         ActionManager::session_sensitive_actions.push_back (act);
152         act = ActionManager::register_action (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));
153         ActionManager::session_sensitive_actions.push_back (act);
154         act = ActionManager::register_action (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));
155         ActionManager::session_sensitive_actions.push_back (act);
156
157         act = ActionManager::register_action (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)));
158         ActionManager::session_sensitive_actions.push_back (act);
159         act = ActionManager::register_action (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)));
160         ActionManager::session_sensitive_actions.push_back (act);
161         act = ActionManager::register_action (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)));
162         ActionManager::session_sensitive_actions.push_back (act);
163
164         act = ActionManager::register_action (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)));
165         ActionManager::session_sensitive_actions.push_back (act);
166         act = ActionManager::register_action (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)));
167         ActionManager::session_sensitive_actions.push_back (act);
168         act = ActionManager::register_action (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)));
169         ActionManager::session_sensitive_actions.push_back (act);
170
171         act = ActionManager::register_action (editor_actions, "edit-cursor-to-range-start", _("To Range Start"), sigc::mem_fun(*this, &Editor::selected_marker_to_selection_start));
172         ActionManager::session_sensitive_actions.push_back (act);
173         act = ActionManager::register_action (editor_actions, "edit-cursor-to-range-end", _("To Range End"), sigc::mem_fun(*this, &Editor::selected_marker_to_selection_end));
174         ActionManager::session_sensitive_actions.push_back (act);
175
176         act = ActionManager::register_action (editor_actions, "playhead-to-range-start", _("Playhead to Range Start"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_selection_start), playhead_cursor));
177         ActionManager::session_sensitive_actions.push_back (act);
178         act = ActionManager::register_action (editor_actions, "playhead-to-range-end", _("Playhead to Range End"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_selection_end), playhead_cursor));
179         ActionManager::session_sensitive_actions.push_back (act);
180
181         act = ActionManager::register_action (editor_actions, "select-all", _("Select All"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all), Selection::Set));
182         ActionManager::session_sensitive_actions.push_back (act);
183         act = ActionManager::register_action (editor_actions, "deselect-all", _("Deselect All"), sigc::mem_fun(*this, &Editor::deselect_all));
184         ActionManager::session_sensitive_actions.push_back (act);
185         act = ActionManager::register_action (editor_actions, "invert-selection", _("Invert Selection"), sigc::mem_fun(*this, &Editor::invert_selection));
186         ActionManager::session_sensitive_actions.push_back (act);
187         act = ActionManager::register_action (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));
188         ActionManager::session_sensitive_actions.push_back (act);
189         act = ActionManager::register_action (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));
190         ActionManager::session_sensitive_actions.push_back (act);
191
192         act = ActionManager::register_action (editor_actions, "select-all-between-cursors", _("Select All Overlapping Edit Range"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_between), false));
193         ActionManager::session_sensitive_actions.push_back (act);
194         act = ActionManager::register_action (editor_actions, "select-all-within-cursors", _("Select All Inside Edit Range"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_between), true));
195         ActionManager::session_sensitive_actions.push_back (act);
196
197         act = ActionManager::register_action (editor_actions, "select-range-between-cursors", _("Select Edit Range"), sigc::mem_fun(*this, &Editor::select_range_between));
198         ActionManager::session_sensitive_actions.push_back (act);
199
200         act = ActionManager::register_action (editor_actions, "select-all-in-punch-range", _("Select All in Punch Range"), sigc::mem_fun(*this, &Editor::select_all_selectables_using_punch));
201         ActionManager::session_sensitive_actions.push_back (act);
202         act = ActionManager::register_action (editor_actions, "select-all-in-loop-range", _("Select All in Loop Range"), sigc::mem_fun(*this, &Editor::select_all_selectables_using_loop));
203         ActionManager::session_sensitive_actions.push_back (act);
204
205         act = ActionManager::register_action (editor_actions, "select-next-route", _("Select Next Track or Bus"), sigc::mem_fun(*this, &Editor::select_next_route));
206         ActionManager::session_sensitive_actions.push_back (act);
207         act = ActionManager::register_action (editor_actions, "select-prev-route", _("Select Previous Track or Bus"), sigc::mem_fun(*this, &Editor::select_prev_route));
208         ActionManager::session_sensitive_actions.push_back (act);
209
210         act = ActionManager::register_action (editor_actions, "track-record-enable-toggle", _("Toggle Record Enable"), sigc::mem_fun(*this, &Editor::toggle_record_enable));
211         ActionManager::session_sensitive_actions.push_back (act);
212         ActionManager::track_selection_sensitive_actions.push_back (act);
213
214         for (int i = 1; i <= 12; ++i) {
215                 string const a = string_compose (X_("save-visual-state-%1"), i);
216                 string const n = string_compose (_("Save View %1"), i);
217                 act = ActionManager::register_action (editor_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::start_visual_state_op), i - 1));
218                 ActionManager::session_sensitive_actions.push_back (act);
219         }
220
221         for (int i = 1; i <= 12; ++i) {
222                 string const a = string_compose (X_("goto-visual-state-%1"), i);
223                 string const n = string_compose (_("Goto View %1"), i);
224                 act = ActionManager::register_action (editor_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::cancel_visual_state_op), i - 1));
225                 ActionManager::session_sensitive_actions.push_back (act);
226         }
227         
228         for (int i = 1; i <= 9; ++i) {
229                 string const a = string_compose (X_("goto-mark-%1"), i);
230                 string const n = string_compose (_("Locate to Mark %1"), i);
231                 act = ActionManager::register_action (editor_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::goto_nth_marker), i - 1));
232                 ActionManager::session_sensitive_actions.push_back (act);
233         }
234
235         act = ActionManager::register_action (editor_actions, "jump-forward-to-mark", _("Jump Forward to Mark"), sigc::mem_fun(*this, &Editor::jump_forward_to_mark));
236         ActionManager::session_sensitive_actions.push_back (act);
237         act = ActionManager::register_action (editor_actions, "jump-backward-to-mark", _("Jump Backward to Mark"), sigc::mem_fun(*this, &Editor::jump_backward_to_mark));
238         ActionManager::session_sensitive_actions.push_back (act);
239         act = ActionManager::register_action (editor_actions, "add-location-from-playhead", _("Add Mark from Playhead"), sigc::mem_fun(*this, &Editor::add_location_from_playhead_cursor));
240         ActionManager::session_sensitive_actions.push_back (act);
241
242         act = ActionManager::register_action (editor_actions, "nudge-next-forward", _("Nudge Next Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_forward), true, false));
243         ActionManager::session_sensitive_actions.push_back (act);
244         act = ActionManager::register_action (editor_actions, "nudge-next-backward", _("Nudge Next Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_backward), true, false));
245         ActionManager::session_sensitive_actions.push_back (act);
246
247         act = ActionManager::register_action (editor_actions, "nudge-playhead-forward", _("Nudge Playhead Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_forward), false, true));
248         ActionManager::session_sensitive_actions.push_back (act);
249         act = ActionManager::register_action (editor_actions, "nudge-playhead-backward", _("Nudge Playhead Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_backward), false, true));
250         ActionManager::session_sensitive_actions.push_back (act);
251         act = ActionManager::register_action (editor_actions, "playhead-forward-to-grid", _("Forward to Grid"), sigc::mem_fun(*this, &Editor::playhead_forward_to_grid));
252         ActionManager::session_sensitive_actions.push_back (act);
253         act = ActionManager::register_action (editor_actions, "playhead-backward-to-grid", _("Backward to Grid"), sigc::mem_fun(*this, &Editor::playhead_backward_to_grid));
254         ActionManager::session_sensitive_actions.push_back (act);
255
256
257         act = ActionManager::register_action (editor_actions, "temporal-zoom-out", _("Zoom Out"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_step), true));
258         ActionManager::session_sensitive_actions.push_back (act);
259         act = ActionManager::register_action (editor_actions, "temporal-zoom-in", _("Zoom In"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_step), false));
260         ActionManager::session_sensitive_actions.push_back (act);
261         act = ActionManager::register_action (editor_actions, "zoom-to-session", _("Zoom to Session"), sigc::mem_fun(*this, &Editor::temporal_zoom_session));
262         ActionManager::session_sensitive_actions.push_back (act);
263         act = ActionManager::register_action (editor_actions, "zoom-to-region", _("Zoom to Region"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_to_region), false));
264         ActionManager::session_sensitive_actions.push_back (act);
265         act = ActionManager::register_action (editor_actions, "zoom-to-region-both-axes", _("Zoom to Region (Width and Height)"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_to_region), true));
266         ActionManager::session_sensitive_actions.push_back (act);
267         act = ActionManager::register_action (editor_actions, "toggle-zoom", _("Toggle Zoom State"), sigc::mem_fun(*this, &Editor::swap_visual_state));
268         ActionManager::session_sensitive_actions.push_back (act);
269
270         act = ActionManager::register_action (editor_actions, "move-selected-tracks-up", _("Move Selected Tracks Up"), sigc::bind (sigc::mem_fun(*_routes, &EditorRoutes::move_selected_tracks), true));
271         ActionManager::session_sensitive_actions.push_back (act);
272         ActionManager::track_selection_sensitive_actions.push_back (act);
273         act = ActionManager::register_action (editor_actions, "move-selected-tracks-down", _("Move Selected Tracks Down"), sigc::bind (sigc::mem_fun(*_routes, &EditorRoutes::move_selected_tracks), false));
274         ActionManager::session_sensitive_actions.push_back (act);
275         ActionManager::track_selection_sensitive_actions.push_back (act);
276
277         act = ActionManager::register_action (editor_actions, "scroll-tracks-up", _("Scroll Tracks Up"), sigc::mem_fun(*this, &Editor::scroll_tracks_up));
278         ActionManager::session_sensitive_actions.push_back (act);
279         ActionManager::track_selection_sensitive_actions.push_back (act);
280         act = ActionManager::register_action (editor_actions, "scroll-tracks-down", _("Scroll Tracks Down"), sigc::mem_fun(*this, &Editor::scroll_tracks_down));
281         ActionManager::track_selection_sensitive_actions.push_back (act);
282         ActionManager::session_sensitive_actions.push_back (act);
283         act = ActionManager::register_action (editor_actions, "step-tracks-up", _("Step Tracks Up"), sigc::mem_fun(*this, &Editor::scroll_tracks_up_line));
284         ActionManager::track_selection_sensitive_actions.push_back (act);
285         ActionManager::session_sensitive_actions.push_back (act);
286         act = ActionManager::register_action (editor_actions, "step-tracks-down", _("Step Tracks Down"), sigc::mem_fun(*this, &Editor::scroll_tracks_down_line));
287         ActionManager::session_sensitive_actions.push_back (act);
288         ActionManager::track_selection_sensitive_actions.push_back (act);
289
290         act = ActionManager::register_action (editor_actions, "scroll-backward", _("Scroll Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_backward), 0.8f));
291         ActionManager::session_sensitive_actions.push_back (act);
292         act = ActionManager::register_action (editor_actions, "scroll-forward", _("Scroll Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_forward), 0.8f));
293         ActionManager::session_sensitive_actions.push_back (act);
294         act = ActionManager::register_action (editor_actions, "goto", _("goto"), sigc::mem_fun(*this, &Editor::goto_frame));
295         ActionManager::session_sensitive_actions.push_back (act);
296         act = ActionManager::register_action (editor_actions, "center-playhead", _("Center Playhead"), sigc::mem_fun(*this, &Editor::center_playhead));
297         ActionManager::session_sensitive_actions.push_back (act);
298         act = ActionManager::register_action (editor_actions, "center-edit-cursor", _("Center Active Marker"), sigc::mem_fun(*this, &Editor::center_edit_point));
299         ActionManager::session_sensitive_actions.push_back (act);
300
301         act = ActionManager::register_action (editor_actions, "scroll-playhead-forward", _("Playhead Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_playhead), true));;
302         ActionManager::session_sensitive_actions.push_back (act);
303         act = ActionManager::register_action (editor_actions, "scroll-playhead-backward", _("Playhead Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_playhead), false));
304         ActionManager::session_sensitive_actions.push_back (act);
305
306         act = ActionManager::register_action (editor_actions, "playhead-to-edit", _("Playhead to Active Mark"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_align), true));
307         ActionManager::session_sensitive_actions.push_back (act);
308         act = ActionManager::register_action (editor_actions, "edit-to-playhead", _("Active Mark to Playhead"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_align), false));
309         ActionManager::session_sensitive_actions.push_back (act);
310
311         act = ActionManager::register_action (editor_actions, "set-loop-from-edit-range", _("Set Loop from Edit Range"), sigc::bind (sigc::mem_fun(*this, &Editor::set_loop_from_edit_range), false));
312         ActionManager::session_sensitive_actions.push_back (act);
313         act = ActionManager::register_action (editor_actions, "set-punch-from-edit-range", _("Set Punch from Edit Range"), sigc::mem_fun(*this, &Editor::set_punch_from_edit_range));
314         ActionManager::session_sensitive_actions.push_back (act);
315
316         act = ActionManager::register_action (editor_actions, "play-from-edit-point", _("Play From Edit Point"), sigc::mem_fun(*this, &Editor::play_from_edit_point));
317         ActionManager::session_sensitive_actions.push_back (act);
318         act = ActionManager::register_action (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));
319         ActionManager::session_sensitive_actions.push_back (act);
320
321         act = ActionManager::register_action (editor_actions, "play-edit-range", _("Play Edit Range"), sigc::mem_fun(*this, &Editor::play_edit_range));
322         act = ActionManager::register_action (editor_actions, "brush-at-mouse", _("Brush at Mouse"), sigc::mem_fun(*this, &Editor::kbd_brush));
323         ActionManager::session_sensitive_actions.push_back (act);
324
325         act = ActionManager::register_action (editor_actions, "set-playhead", _("Playhead to Mouse"), sigc::mem_fun(*this, &Editor::set_playhead_cursor));
326         ActionManager::session_sensitive_actions.push_back (act);
327         act = ActionManager::register_action (editor_actions, "set-edit-point", _("Active Marker to Mouse"), sigc::mem_fun(*this, &Editor::set_edit_point));
328         ActionManager::session_sensitive_actions.push_back (act);
329
330         act = ActionManager::register_action (editor_actions, "duplicate-range", _("Duplicate Range"), sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_dialog), false));
331         ActionManager::session_sensitive_actions.push_back (act);
332
333         undo_action = act = ActionManager::register_action (editor_actions, "undo", _("Undo"), sigc::bind (sigc::mem_fun(*this, &Editor::undo), 1U));
334         ActionManager::session_sensitive_actions.push_back (act);
335         redo_action = act = ActionManager::register_action (editor_actions, "redo", _("Redo"), sigc::bind (sigc::mem_fun(*this, &Editor::redo), 1U));
336         ActionManager::session_sensitive_actions.push_back (act);
337
338         act = ActionManager::register_action (editor_actions, "export-audio", _("Export Audio"), sigc::mem_fun(*this, &Editor::export_audio));
339         ActionManager::session_sensitive_actions.push_back (act);
340         act = ActionManager::register_action (editor_actions, "export-range", _("Export Range"), sigc::mem_fun(*this, &Editor::export_range));
341         ActionManager::session_sensitive_actions.push_back (act);
342
343         act = ActionManager::register_action (editor_actions, "editor-separate", _("Separate"), sigc::mem_fun(*this, &Editor::separate_region_from_selection));
344         ActionManager::session_sensitive_actions.push_back (act);
345         ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
346         
347         act = ActionManager::register_action (editor_actions, "separate-from-punch", _("Separate Using Punch Range"), sigc::mem_fun(*this, &Editor::separate_region_from_punch));
348         ActionManager::session_sensitive_actions.push_back (act);
349         ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
350         
351         act = ActionManager::register_action (editor_actions, "separate-from-loop", _("Separate Using Loop Range"), sigc::mem_fun(*this, &Editor::separate_region_from_loop));
352         ActionManager::session_sensitive_actions.push_back (act);
353         ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
354         
355         act = ActionManager::register_action (editor_actions, "editor-crop", _("Crop"), sigc::mem_fun(*this, &Editor::crop_region_to_selection));
356         ActionManager::session_sensitive_actions.push_back (act);
357         ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
358         
359         act = ActionManager::register_action (editor_actions, "editor-cut", _("Cut"), sigc::mem_fun(*this, &Editor::cut));
360         ActionManager::session_sensitive_actions.push_back (act);
361         
362         /* Note: for now, editor-delete does the exact same thing as editor-cut */
363         act = ActionManager::register_action (editor_actions, "editor-delete", _("Delete"), sigc::mem_fun(*this, &Editor::cut));
364         ActionManager::session_sensitive_actions.push_back (act);
365         act = ActionManager::register_action (editor_actions, "editor-copy", _("Copy"), sigc::mem_fun(*this, &Editor::copy));
366         ActionManager::session_sensitive_actions.push_back (act);
367         act = ActionManager::register_action (editor_actions, "editor-paste", _("Paste"), sigc::mem_fun(*this, &Editor::keyboard_paste));
368         ActionManager::session_sensitive_actions.push_back (act);
369
370         act = ActionManager::register_action (editor_actions, "set-tempo-from-edit-range", _("Set Tempo from Edit Range=Bar"), sigc::mem_fun(*this, &Editor::use_range_as_bar));
371         ActionManager::session_sensitive_actions.push_back (act);
372
373         act = ActionManager::register_toggle_action (editor_actions, "toggle-log-window", _("Log"),
374                         sigc::mem_fun (ARDOUR_UI::instance(), &ARDOUR_UI::toggle_errors));
375         ActionManager::session_sensitive_actions.push_back (act);
376
377         act = ActionManager::register_action (editor_actions, "tab-to-transient-forwards", _("Move Forward to Transient"), sigc::bind (sigc::mem_fun(*this, &Editor::tab_to_transient), true));
378         ActionManager::session_sensitive_actions.push_back (act);
379         act = ActionManager::register_action (editor_actions, "tab-to-transient-backwards", _("Move Backwards to Transient"), sigc::bind (sigc::mem_fun(*this, &Editor::tab_to_transient), false));
380         ActionManager::session_sensitive_actions.push_back (act);
381
382         act = ActionManager::register_action (editor_actions, "crop", _("Crop"), sigc::mem_fun(*this, &Editor::crop_region_to_selection));
383         ActionManager::session_sensitive_actions.push_back (act);
384
385         act = ActionManager::register_action (editor_actions, "start-range", _("Start Range"), sigc::mem_fun(*this, &Editor::keyboard_selection_begin));
386         ActionManager::session_sensitive_actions.push_back (act);
387         act = ActionManager::register_action (editor_actions, "finish-range", _("Finish Range"), sigc::bind (sigc::mem_fun(*this, &Editor::keyboard_selection_finish), false));
388         ActionManager::session_sensitive_actions.push_back (act);
389         act = ActionManager::register_action (editor_actions, "finish-add-range", _("Finish Add Range"), sigc::bind (sigc::mem_fun(*this, &Editor::keyboard_selection_finish), true));
390         ActionManager::session_sensitive_actions.push_back (act);
391
392         act = ActionManager::register_action (editor_actions, "extend-range-to-end-of-region", _("Extend Range to End of Region"), sigc::bind (sigc::mem_fun(*this, &Editor::extend_selection_to_end_of_region), false));
393         ActionManager::session_sensitive_actions.push_back (act);
394         act = ActionManager::register_action (editor_actions, "extend-range-to-start-of-region", _("Extend Range to Start of Region"), sigc::bind (sigc::mem_fun(*this, &Editor::extend_selection_to_start_of_region), false));
395         ActionManager::session_sensitive_actions.push_back (act);
396
397         act = ActionManager::register_toggle_action (editor_actions, "toggle-follow-playhead", _("Follow Playhead"), (sigc::mem_fun(*this, &Editor::toggle_follow_playhead)));
398         ActionManager::session_sensitive_actions.push_back (act);
399         act = ActionManager::register_action (editor_actions, "remove-last-capture", _("Remove Last Capture"), (sigc::mem_fun(*this, &Editor::remove_last_capture)));
400         ActionManager::session_sensitive_actions.push_back (act);
401
402         ActionManager::register_toggle_action (editor_actions, "toggle-stationary-playhead", _("Stationary Playhead"), (mem_fun(*this, &Editor::toggle_stationary_playhead)));
403
404         act = ActionManager::register_action (editor_actions, "insert-time", _("Insert Time"), (sigc::mem_fun(*this, &Editor::do_insert_time)));
405         ActionManager::session_sensitive_actions.push_back (act);
406         ActionManager::track_selection_sensitive_actions.push_back (act);
407
408         act = ActionManager::register_action (editor_actions, "toggle-track-active", _("Toggle Active"), (sigc::mem_fun(*this, &Editor::toggle_tracks_active)));
409         ActionManager::session_sensitive_actions.push_back (act);
410         ActionManager::track_selection_sensitive_actions.push_back (act);
411         if (Profile->get_sae()) {
412                 act = ActionManager::register_action (editor_actions, "remove-track", _("Delete"), (sigc::mem_fun(*this, &Editor::remove_tracks)));
413         } else {
414                 act = ActionManager::register_action (editor_actions, "remove-track", _("Remove"), (sigc::mem_fun(*this, &Editor::remove_tracks)));
415         }
416         ActionManager::session_sensitive_actions.push_back (act);
417         ActionManager::track_selection_sensitive_actions.push_back (act);
418
419         act = ActionManager::register_action (editor_actions, "fit-tracks", _("Fit Selected Tracks"), sigc::mem_fun(*this, &Editor::fit_selected_tracks));
420         ActionManager::session_sensitive_actions.push_back (act);
421         ActionManager::track_selection_sensitive_actions.push_back (act);
422         act = ActionManager::register_action (editor_actions, "track-height-largest", _("Largest"), sigc::bind (
423                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightLargest));
424         ActionManager::session_sensitive_actions.push_back (act);
425         ActionManager::track_selection_sensitive_actions.push_back (act);
426         act = ActionManager::register_action (editor_actions, "track-height-larger", _("Larger"), sigc::bind (
427                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightLarger));
428         ActionManager::session_sensitive_actions.push_back (act);
429         ActionManager::track_selection_sensitive_actions.push_back (act);
430         act = ActionManager::register_action (editor_actions, "track-height-large", _("Large"), sigc::bind (
431                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightLarge));
432         ActionManager::session_sensitive_actions.push_back (act);
433         ActionManager::track_selection_sensitive_actions.push_back (act);
434         act = ActionManager::register_action (editor_actions, "track-height-normal", _("Normal"), sigc::bind (
435                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightNormal));
436         ActionManager::session_sensitive_actions.push_back (act);
437         ActionManager::track_selection_sensitive_actions.push_back (act);
438         act = ActionManager::register_action (editor_actions, "track-height-small", _("Small"), sigc::bind (
439                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightSmall));
440         ActionManager::track_selection_sensitive_actions.push_back (act);
441         ActionManager::session_sensitive_actions.push_back (act);
442         ActionManager::track_selection_sensitive_actions.push_back (act);
443         act = ActionManager::register_action (editor_actions, "track-height-smaller", _("Smaller"), sigc::bind (
444                                 sigc::mem_fun(*this, &Editor::set_track_height), HeightSmaller));
445         ActionManager::session_sensitive_actions.push_back (act);
446         ActionManager::track_selection_sensitive_actions.push_back (act);
447
448         Glib::RefPtr<ActionGroup> zoom_actions = ActionGroup::create (X_("Zoom"));
449         RadioAction::Group zoom_group;
450
451         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-left", _("Zoom Focus Left"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusLeft));
452         ActionManager::session_sensitive_actions.push_back (act);
453         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-right", _("Zoom Focus Right"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusRight));
454         ActionManager::session_sensitive_actions.push_back (act);
455         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-center", _("Zoom Focus Center"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusCenter));
456         ActionManager::session_sensitive_actions.push_back (act);
457         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-playhead", _("Zoom Focus Playhead"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusPlayhead));
458         ActionManager::session_sensitive_actions.push_back (act);
459         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-mouse", _("Zoom Focus Mouse"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusMouse));
460         ActionManager::session_sensitive_actions.push_back (act);
461         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-edit", _("Zoom Focus Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusEdit));
462         ActionManager::session_sensitive_actions.push_back (act);
463
464         Glib::RefPtr<ActionGroup> mouse_mode_actions = ActionGroup::create (X_("MouseMode"));
465         RadioAction::Group mouse_mode_group;
466
467         act = ActionManager::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));
468         act->connect_proxy (mouse_move_button);
469         mouse_move_button.set_image (*(manage (new Image (::get_icon("tool_object")))));
470         mouse_move_button.set_label ("");
471         mouse_move_button.set_name ("MouseModeButton");
472         mouse_move_button.get_image ()->show ();
473
474         act = ActionManager::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));
475         act->connect_proxy (mouse_select_button);
476         mouse_select_button.set_image (*(manage (new Image (::get_icon("tool_range")))));
477         mouse_select_button.set_label ("");
478         mouse_select_button.set_name ("MouseModeButton");
479         mouse_select_button.get_image ()->show ();
480
481         act = ActionManager::register_toggle_action (mouse_mode_actions, "set-mouse-mode-object-range", _("Link Object / Range Tools"), sigc::mem_fun (*this, &Editor::mouse_mode_object_range_toggled));
482         act->connect_proxy (join_object_range_button);
483         join_object_range_button.set_image (*(manage (new Image (::get_icon ("tool_object_range")))));
484         join_object_range_button.set_label ("");
485         join_object_range_button.set_name ("MouseModeButton");
486         join_object_range_button.get_image ()->show ();
487
488         act = ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-gain", _("Gain Tool"), sigc::bind (mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseGain));
489         act->connect_proxy (mouse_gain_button);
490         mouse_gain_button.set_image (*(manage (new Image (::get_icon("tool_gain")))));
491         mouse_gain_button.set_label ("");
492         mouse_gain_button.set_name ("MouseModeButton");
493         mouse_gain_button.get_image ()->show ();
494
495         act = ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-zoom", _("Zoom Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseZoom));
496         act->connect_proxy (mouse_zoom_button);
497         mouse_zoom_button.set_image (*(manage (new Image (::get_icon("tool_zoom")))));
498         mouse_zoom_button.set_label ("");
499         mouse_zoom_button.set_name ("MouseModeButton");
500         mouse_zoom_button.get_image ()->show ();
501
502         act = ActionManager::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));
503         act->connect_proxy (mouse_audition_button);
504         mouse_audition_button.set_image (*(manage (new Image (::get_icon("tool_audition")))));
505         mouse_audition_button.set_label ("");
506         mouse_audition_button.set_name ("MouseModeButton");
507         mouse_audition_button.get_image ()->show ();
508
509         act = ActionManager::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));
510         act->connect_proxy (mouse_timefx_button);
511         mouse_timefx_button.set_image (*(manage (new Image (::get_icon("tool_stretch")))));
512         mouse_timefx_button.set_label ("");
513         mouse_timefx_button.set_name ("MouseModeButton");
514         mouse_timefx_button.get_image ()->show ();
515
516         ActionManager::register_action (editor_actions, "step-mouse-mode", _("Step Mouse Mode"), sigc::bind (sigc::mem_fun(*this, &Editor::step_mouse_mode), true));
517
518         act = ActionManager::register_toggle_action (mouse_mode_actions, "toggle-internal-edit", _("Edit MIDI"), sigc::mem_fun(*this, &Editor::toggle_internal_editing));
519         act->connect_proxy (internal_edit_button);
520         internal_edit_button.set_image (*(manage (new Image (::get_icon("tool_note")))));
521         internal_edit_button.set_label ("");
522         internal_edit_button.set_name ("MouseModeButton");
523         internal_edit_button.get_image ()->show ();
524
525         RadioAction::Group edit_point_group;
526         ActionManager::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)));
527         ActionManager::register_radio_action (editor_actions, edit_point_group, X_("edit-at-mouse"), _("Mouse"), (sigc::bind (sigc::mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtPlayhead)));
528         ActionManager::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::EditAtPlayhead)));
529
530         ActionManager::register_action (editor_actions, "cycle-edit-point", _("Change Edit Point"), sigc::bind (sigc::mem_fun (*this, &Editor::cycle_edit_point), false));
531         ActionManager::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));
532         if (!Profile->get_sae()) {
533                 ActionManager::register_action (editor_actions, "set-edit-splice", _("Splice"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Splice));
534         }
535         ActionManager::register_action (editor_actions, "set-edit-slide", _("Slide"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Slide));
536         ActionManager::register_action (editor_actions, "set-edit-lock", _("Lock"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Lock));
537         ActionManager::register_action (editor_actions, "toggle-edit-mode", _("Toggle Edit Mode"), sigc::mem_fun (*this, &Editor::cycle_edit_mode));
538
539         ActionManager::register_action (editor_actions, X_("SnapTo"), _("Snap to"));
540         ActionManager::register_action (editor_actions, X_("SnapMode"), _("Snap Mode"));
541
542         RadioAction::Group snap_mode_group;
543         ActionManager::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)));
544         ActionManager::register_radio_action (editor_actions, snap_mode_group, X_("snap-normal"), _("Grid"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_mode_chosen), Editing::SnapNormal)));
545         ActionManager::register_radio_action (editor_actions, snap_mode_group, X_("snap-magnetic"), _("Magnetic"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_mode_chosen), Editing::SnapMagnetic)));
546
547         ActionManager::register_action (editor_actions, X_("cycle-snap-mode"), _("Next Snap Mode"), sigc::mem_fun (*this, &Editor::cycle_snap_mode));
548         ActionManager::register_action (editor_actions, X_("cycle-snap-choice"), _("Next Snap Choice"), sigc::mem_fun (*this, &Editor::cycle_snap_choice));
549
550         Glib::RefPtr<ActionGroup> snap_actions = ActionGroup::create (X_("Snap"));
551         RadioAction::Group snap_choice_group;
552
553         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-cd-frame"), _("Snap to CD Frame"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToCDFrame)));
554         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-timecode-frame"), _("Snap to Timecode Frame"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToTimecodeFrame)));
555         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-timecode-seconds"), _("Snap to Timecode Seconds"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToTimecodeSeconds)));
556         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-timecode-minutes"), _("Snap to Timecode Minutes"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToTimecodeMinutes)));
557         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-seconds"), _("Snap to Seconds"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToSeconds)));
558         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-minutes"), _("Snap to Minutes"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToMinutes)));
559
560         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-thirtyseconds"), _("Snap to Thirty Seconds"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv32)));
561         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-twentyeighths"), _("Snap to Twenty Eighths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv28)));
562         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-twentyfourths"), _("Snap to Twenty Fourths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv24)));
563         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-twentieths"), _("Snap to Twentieths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv20)));
564         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-asixteenthbeat"), _("Snap to Sixteenths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv16)));
565         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-fourteenths"), _("Snap to Fourteenths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv14)));
566         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-twelfths"), _("Snap to Tweflths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv12)));
567         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-tenths"), _("Snap to Tenths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv10)));
568         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-eighths"), _("Snap to Eighths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv8)));
569         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-sevenths"), _("Snap to Sevenths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv7)));
570         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-sixths"), _("Snap to Sixths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv6)));
571         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-fifths"), _("Snap to Fifths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv5)));
572         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-quarters"), _("Snap to Quarters"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv4)));
573         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-thirds"), _("Snap to Thirds"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv3)));
574         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-halves"), _("Snap to Halves"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeatDiv2)));
575
576         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-beat"), _("Snap to Beat"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeat)));
577         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-bar"), _("Snap to Bar"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBar)));
578         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-mark"), _("Snap to Mark"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToMark)));
579         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-region-start"), _("Snap to Region Start"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToRegionStart)));
580         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-region-end"), _("Snap to Region End"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToRegionEnd)));
581         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-region-sync"), _("Snap to Region Sync"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToRegionSync)));
582         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-region-boundary"), _("Snap to Region Boundary"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToRegionBoundary)));
583
584         ActionManager::register_toggle_action (editor_actions, X_("show-marker-lines"), _("Show Marker Lines"), sigc::mem_fun (*this, &Editor::toggle_marker_lines));
585
586         /* RULERS */
587
588         Glib::RefPtr<ActionGroup> ruler_actions = ActionGroup::create (X_("Rulers"));
589         ruler_tempo_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::register_toggle_action (ruler_actions, X_("toggle-tempo-ruler"), _("Tempo"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_tempo)));
590         ruler_meter_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::register_toggle_action (ruler_actions, X_("toggle-meter-ruler"), _("Meter"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_meter)));
591         ruler_range_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::register_toggle_action (ruler_actions, X_("toggle-range-ruler"), _("Ranges"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_range_marker)));
592         ruler_marker_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::register_toggle_action (ruler_actions, X_("toggle-marker-ruler"), _("Markers"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_time_marker)));
593         ruler_cd_marker_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::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)));
594         ruler_loop_punch_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::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)));
595         ruler_bbt_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::register_toggle_action (ruler_actions, X_("toggle-bbt-ruler"), _("Bars & Beats"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_metric_bbt)));
596         ruler_samples_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::register_toggle_action (ruler_actions, X_("toggle-samples-ruler"), _("Samples"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_metric_samples)));
597         ruler_timecode_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::register_toggle_action (ruler_actions, X_("toggle-timecode-ruler"), _("Timecode"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_metric_timecode)));
598         ruler_minsec_action = Glib::RefPtr<ToggleAction>::cast_static (ActionManager::register_toggle_action (ruler_actions, X_("toggle-minsec-ruler"), _("Min:Sec"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility), ruler_metric_minsec)));
599
600         /* set defaults here */
601
602         no_ruler_shown_update = true;
603         ruler_meter_action->set_active (true);
604         ruler_tempo_action->set_active (true);
605         ruler_marker_action->set_active (true);
606         ruler_range_action->set_active (false);
607         ruler_loop_punch_action->set_active (true);
608         ruler_loop_punch_action->set_active (true);
609         if (Profile->get_sae()) {
610                 ruler_bbt_action->set_active (true);
611                 ruler_cd_marker_action->set_active (false);
612                 ruler_timecode_action->set_active (false);
613                 ruler_minsec_action->set_active (true);
614         } else {
615                 ruler_bbt_action->set_active (false);
616                 ruler_cd_marker_action->set_active (true);
617                 ruler_timecode_action->set_active (true);
618                 ruler_minsec_action->set_active (false);
619         }
620         ruler_samples_action->set_active (false);
621         no_ruler_shown_update = false;
622
623         /* REGION LIST */
624
625         Glib::RefPtr<ActionGroup> rl_actions = ActionGroup::create (X_("RegionList"));
626         RadioAction::Group sort_type_group;
627         RadioAction::Group sort_order_group;
628
629         /* the region list popup menu */
630         ActionManager::register_action (rl_actions, X_("RegionListSort"), _("Sort"));
631
632         act = ActionManager::register_action (rl_actions, X_("rlAudition"), _("Audition"), sigc::mem_fun(*this, &Editor::audition_region_from_region_list));
633         ActionManager::region_list_selection_sensitive_actions.push_back (act);
634         
635         act = ActionManager::register_action (rl_actions, X_("rlHide"), _("Hide"), sigc::mem_fun(*this, &Editor::hide_region_from_region_list));
636         ActionManager::region_list_selection_sensitive_actions.push_back (act);
637         
638         act = ActionManager::register_action (rl_actions, X_("rlShow"), _("Show"), sigc::mem_fun(*this, &Editor::show_region_in_region_list));
639         ActionManager::region_list_selection_sensitive_actions.push_back (act);
640         
641         ActionManager::register_toggle_action (rl_actions, X_("rlShowAll"), _("Show All"), sigc::mem_fun(*_regions, &EditorRegions::toggle_full));
642         ActionManager::register_toggle_action (rl_actions, X_("rlShowAuto"), _("Show Automatic Regions"), sigc::mem_fun (*_regions, &EditorRegions::toggle_show_auto_regions));
643         
644         ActionManager::register_radio_action (rl_actions, sort_order_group, X_("SortAscending"),  _("Ascending"),
645                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_direction), true));
646         ActionManager::register_radio_action (rl_actions, sort_order_group, X_("SortDescending"),   _("Descending"),
647                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_direction), false));
648
649         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionName"),  _("By Region Name"),
650                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByName, false));
651         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionLength"),  _("By Region Length"),
652                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByLength, false));
653         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionPosition"),  _("By Region Position"),
654                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByPosition, false));
655         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionTimestamp"),  _("By Region Timestamp"),
656                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByTimestamp, false));
657         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionStartinFile"),  _("By Region Start in File"),
658                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByStartInFile, false));
659         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionEndinFile"),  _("By Region End in File"),
660                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByEndInFile, false));
661         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileName"),  _("By Source File Name"),
662                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileName, false));
663         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileLength"),  _("By Source File Length"),
664                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileLength, false));
665         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileCreationDate"),  _("By Source File Creation Date"),
666                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileCreationDate, false));
667         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFilesystem"),  _("By Source Filesystem"),
668                         sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileFS, false));
669
670         ActionManager::register_action (rl_actions, X_("removeUnusedRegions"), _("Delete Unused"), sigc::mem_fun(*_regions, &EditorRegions::delete_unused_regions));
671
672         /* the next two are duplicate items with different names for use in two different contexts */
673
674         act = ActionManager::register_action (editor_actions, X_("addExistingAudioFiles"), _("Import"), sigc::mem_fun (*this, &Editor::external_audio_dialog));
675         ActionManager::session_sensitive_actions.push_back (act);
676         ActionManager::write_sensitive_actions.push_back (act);
677
678         act = ActionManager::register_action (editor_actions, X_("addExternalAudioToRegionList"), _("Import to Region List..."), sigc::bind (sigc::mem_fun(*this, &Editor::add_external_audio_action), ImportAsRegion));
679         ActionManager::session_sensitive_actions.push_back (act);
680         ActionManager::write_sensitive_actions.push_back (act);
681
682         act = ActionManager::register_action (editor_actions, X_("importFromSession"), _("Import From Session"), sigc::mem_fun(*this, &Editor::session_import_dialog));
683         ActionManager::write_sensitive_actions.push_back (act);
684
685         ActionManager::register_toggle_action (editor_actions, X_("ToggleSummary"), _("Show Summary"), sigc::mem_fun (*this, &Editor::set_summary));
686
687         ActionManager::register_toggle_action (editor_actions, X_("ToggleGroupTabs"), _("Show Group Tabs"), sigc::mem_fun (*this, &Editor::set_group_tabs));
688
689         ActionManager::register_toggle_action (editor_actions, X_("ToggleMeasureVisibility"), _("Show Measures"), sigc::mem_fun (*this, &Editor::toggle_measure_visibility));
690
691         /* if there is a logo in the editor canvas, its always visible at startup */
692
693         act = ActionManager::register_toggle_action (editor_actions, X_("ToggleLogoVisibility"), _("Show Logo"), sigc::mem_fun (*this, &Editor::toggle_logo_visibility));
694         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
695         tact->set_active (true);
696
697         /* MIDI */
698
699         Glib::RefPtr<ActionGroup> midi_actions = ActionGroup::create (X_("MIDI"));
700         ActionManager::register_action (midi_actions, X_("panic"), _("Panic"), sigc::mem_fun(*this, &Editor::midi_panic));
701
702         ActionManager::add_action_group (rl_actions);
703         ActionManager::add_action_group (ruler_actions);
704         ActionManager::add_action_group (zoom_actions);
705         ActionManager::add_action_group (mouse_mode_actions);
706         ActionManager::add_action_group (snap_actions);
707         ActionManager::add_action_group (editor_actions);
708         ActionManager::add_action_group (midi_actions);
709 }
710
711 void
712 Editor::toggle_ruler_visibility (RulerType rt)
713 {
714         const char* action = 0;
715
716         if (no_ruler_shown_update) {
717                 return;
718         }
719
720         switch (rt) {
721         case ruler_metric_timecode:
722                 action = "toggle-timecode-ruler";
723                 break;
724         case ruler_metric_bbt:
725                 action = "toggle-bbt-ruler";
726                 break;
727         case ruler_metric_samples:
728                 action = "toggle-samples-ruler";
729                 break;
730         case ruler_metric_minsec:
731                 action = "toggle-minsec-ruler";
732                 break;
733         case ruler_time_tempo:
734                 action = "toggle-tempo-ruler";
735                 break;
736         case ruler_time_meter:
737                 action = "toggle-meter-ruler";
738                 break;
739         case ruler_time_marker:
740                 action = "toggle-marker-ruler";
741                 break;
742         case ruler_time_range_marker:
743                 action = "toggle-range-ruler";
744                 break;
745         case ruler_time_transport_marker:
746                 action = "toggle-loop-punch-ruler";
747                 break;
748         case ruler_time_cd_marker:
749                 action = "toggle-cd-marker-ruler";
750                 break;
751         }
752
753         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Rulers"), action);
754         
755         if (act) {
756                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
757                 update_ruler_visibility ();
758                 store_ruler_visibility ();
759         }
760 }
761
762 void
763 Editor::set_summary ()
764 {
765         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleSummary"));
766         if (act) {
767                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
768                 _session->config.set_show_summary (tact->get_active ());
769         }
770 }
771
772 void
773 Editor::set_group_tabs ()
774 {
775         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleGroupTabs"));
776         if (act) {
777                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
778                 _session->config.set_show_group_tabs (tact->get_active ());
779         }
780 }
781
782 void
783 Editor::toggle_measure_visibility ()
784 {
785         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleMeasureVisibility"));
786         if (act) {
787                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
788                 set_show_measures (tact->get_active());
789         }
790 }
791
792 void
793 Editor::toggle_logo_visibility ()
794 {
795         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleLogoVisibility"));
796
797         if (act) {
798                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
799                 if (logo_item) {
800                         if (tact->get_active()) {
801                                 logo_item->show ();
802                         } else {
803                                 logo_item->hide ();
804                         }
805                 }
806         }
807 }
808
809 RefPtr<RadioAction>
810 Editor::snap_type_action (SnapType type)
811 {
812         const char* action = 0;
813         RefPtr<Action> act;
814
815         switch (type) {
816         case Editing::SnapToCDFrame:
817                 action = "snap-to-cd-frame";
818                 break;
819         case Editing::SnapToTimecodeFrame:
820                 action = "snap-to-timecode-frame";
821                 break;
822         case Editing::SnapToTimecodeSeconds:
823                 action = "snap-to-timecode-seconds";
824                 break;
825         case Editing::SnapToTimecodeMinutes:
826                 action = "snap-to-timecode-minutes";
827                 break;
828         case Editing::SnapToSeconds:
829                 action = "snap-to-seconds";
830                 break;
831         case Editing::SnapToMinutes:
832                 action = "snap-to-minutes";
833                 break;
834         case Editing::SnapToBeatDiv32:
835                 action = "snap-to-thirtyseconds";
836                 break;
837         case Editing::SnapToBeatDiv28:
838                 action = "snap-to-twentyeighths";
839                 break;
840         case Editing::SnapToBeatDiv24:
841                 action = "snap-to-twentyfourths";
842                 break;
843         case Editing::SnapToBeatDiv20:
844                 action = "snap-to-twentieths";
845                 break;
846         case Editing::SnapToBeatDiv16:
847                 action = "snap-to-asixteenthbeat";
848                 break;
849         case Editing::SnapToBeatDiv14:
850                 action = "snap-to-fourteenths";
851                 break;
852         case Editing::SnapToBeatDiv12:
853                 action = "snap-to-twelfths";
854                 break;
855         case Editing::SnapToBeatDiv10:
856                 action = "snap-to-tenths";
857                 break;
858         case Editing::SnapToBeatDiv8:
859                 action = "snap-to-eighths";
860                 break;
861         case Editing::SnapToBeatDiv7:
862                 action = "snap-to-sevenths";
863                 break;
864         case Editing::SnapToBeatDiv6:
865                 action = "snap-to-sixths";
866                 break;
867         case Editing::SnapToBeatDiv5:
868                 action = "snap-to-fifths";
869                 break;
870         case Editing::SnapToBeatDiv4:
871                 action = "snap-to-quarters";
872                 break;
873         case Editing::SnapToBeatDiv3:
874                 action = "snap-to-thirds";
875                 break;
876         case Editing::SnapToBeatDiv2:
877                 action = "snap-to-halves";
878                 break;
879         case Editing::SnapToBeat:
880                 action = "snap-to-beat";
881                 break;
882         case Editing::SnapToBar:
883                 action = "snap-to-bar";
884                 break;
885         case Editing::SnapToMark:
886                 action = "snap-to-mark";
887                 break;
888         case Editing::SnapToRegionStart:
889                 action = "snap-to-region-start";
890                 break;
891         case Editing::SnapToRegionEnd:
892                 action = "snap-to-region-end";
893                 break;
894         case Editing::SnapToRegionSync:
895                 action = "snap-to-region-sync";
896                 break;
897         case Editing::SnapToRegionBoundary:
898                 action = "snap-to-region-boundary";
899                 break;
900         default:
901                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible snap-to type", (int) type) << endmsg;
902                 /*NOTREACHED*/
903         }
904
905         act = ActionManager::get_action (X_("Snap"), action);
906
907         if (act) {
908                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
909                 return ract;
910
911         } else  {
912                 error << string_compose (_("programming error: %1"), "Editor::snap_type_chosen could not find action to match type.") << endmsg;
913                 return RefPtr<RadioAction>();
914         }
915 }
916
917 void
918 Editor::cycle_snap_choice()
919 {
920         switch (_snap_type) {
921         case Editing::SnapToCDFrame:
922                 set_snap_to (Editing::SnapToTimecodeFrame);
923                 break;
924         case Editing::SnapToTimecodeFrame:
925                 set_snap_to (Editing::SnapToTimecodeSeconds);
926                 break;
927         case Editing::SnapToTimecodeSeconds:
928                 set_snap_to (Editing::SnapToTimecodeMinutes);
929                 break;
930         case Editing::SnapToTimecodeMinutes:
931                 set_snap_to (Editing::SnapToSeconds);
932                 break;
933         case Editing::SnapToSeconds:
934                 set_snap_to (Editing::SnapToMinutes);
935                 break;
936         case Editing::SnapToMinutes:
937                 set_snap_to (Editing::SnapToBeatDiv32);
938                 break;
939         case Editing::SnapToBeatDiv32:
940                 set_snap_to (Editing::SnapToBeatDiv28);
941                 break;
942         case Editing::SnapToBeatDiv28:
943                 set_snap_to (Editing::SnapToBeatDiv24);
944                 break;
945         case Editing::SnapToBeatDiv24:
946                 set_snap_to (Editing::SnapToBeatDiv20);
947                 break;
948         case Editing::SnapToBeatDiv20:
949                 set_snap_to (Editing::SnapToBeatDiv16);
950                 break;
951         case Editing::SnapToBeatDiv16:
952                 set_snap_to (Editing::SnapToBeatDiv14);
953                 break;
954         case Editing::SnapToBeatDiv14:
955                 set_snap_to (Editing::SnapToBeatDiv12);
956                 break;
957         case Editing::SnapToBeatDiv12:
958                 set_snap_to (Editing::SnapToBeatDiv10);
959                 break;
960         case Editing::SnapToBeatDiv10:
961                 set_snap_to (Editing::SnapToBeatDiv8);
962                 break;
963         case Editing::SnapToBeatDiv8:
964                 set_snap_to (Editing::SnapToBeatDiv7);
965                 break;
966         case Editing::SnapToBeatDiv7:
967                 set_snap_to (Editing::SnapToBeatDiv6);
968                 break;
969         case Editing::SnapToBeatDiv6:
970                 set_snap_to (Editing::SnapToBeatDiv5);
971                 break;
972         case Editing::SnapToBeatDiv5:
973                 set_snap_to (Editing::SnapToBeatDiv4);
974                 break;
975         case Editing::SnapToBeatDiv4:
976                 set_snap_to (Editing::SnapToBeatDiv3);
977                 break;
978         case Editing::SnapToBeatDiv3:
979                 set_snap_to (Editing::SnapToBeatDiv2);
980                 break;
981         case Editing::SnapToBeatDiv2:
982                 set_snap_to (Editing::SnapToBeat);
983                 break;
984         case Editing::SnapToBeat:
985                 set_snap_to (Editing::SnapToBar);
986                 break;
987         case Editing::SnapToBar:
988                 set_snap_to (Editing::SnapToMark);
989                 break;
990         case Editing::SnapToMark:
991                 set_snap_to (Editing::SnapToRegionStart);
992                 break;
993         case Editing::SnapToRegionStart:
994                 set_snap_to (Editing::SnapToRegionEnd);
995                 break;
996         case Editing::SnapToRegionEnd:
997                 set_snap_to (Editing::SnapToRegionSync);
998                 break;
999         case Editing::SnapToRegionSync:
1000                 set_snap_to (Editing::SnapToRegionBoundary);
1001                 break;
1002         case Editing::SnapToRegionBoundary:
1003                 set_snap_to (Editing::SnapToCDFrame);
1004                 break;
1005         }
1006 }
1007
1008 void
1009 Editor::snap_type_chosen (SnapType type)
1010 {
1011         /* this is driven by a toggle on a radio group, and so is invoked twice,
1012            once for the item that became inactive and once for the one that became
1013            active.
1014         */
1015
1016         RefPtr<RadioAction> ract = snap_type_action (type);
1017
1018         if (ract && ract->get_active()) {
1019                 set_snap_to (type);
1020         }
1021 }
1022
1023 RefPtr<RadioAction>
1024 Editor::snap_mode_action (SnapMode mode)
1025 {
1026         const char* action = 0;
1027         RefPtr<Action> act;
1028
1029         switch (mode) {
1030         case Editing::SnapOff:
1031                 action = X_("snap-off");
1032                 break;
1033         case Editing::SnapNormal:
1034                 action = X_("snap-normal");
1035                 break;
1036         case Editing::SnapMagnetic:
1037                 action = X_("snap-magnetic");
1038                 break;
1039         default:
1040                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible snap mode type", (int) mode) << endmsg;
1041                 /*NOTREACHED*/
1042         }
1043
1044         act = ActionManager::get_action (X_("Editor"), action);
1045
1046         if (act) {
1047                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1048                 return ract;
1049
1050         } else  {
1051                 error << string_compose (_("programming error: %1: %2"), "Editor::snap_mode_chosen could not find action to match mode.", action) << endmsg;
1052                 return RefPtr<RadioAction> ();
1053         }
1054 }
1055
1056 void
1057 Editor::cycle_snap_mode ()
1058 {
1059         switch (_snap_mode) {
1060         case SnapOff:
1061                 set_snap_mode (SnapNormal);
1062                 break;
1063         case SnapNormal:
1064                 set_snap_mode (SnapMagnetic);
1065                 break;
1066         case SnapMagnetic:
1067                 set_snap_mode (SnapOff);
1068                 break;
1069         }
1070 }
1071
1072 void
1073 Editor::snap_mode_chosen (SnapMode mode)
1074 {
1075         /* this is driven by a toggle on a radio group, and so is invoked twice,
1076            once for the item that became inactive and once for the one that became
1077            active.
1078         */
1079
1080         RefPtr<RadioAction> ract = snap_mode_action (mode);
1081
1082         if (ract && ract->get_active()) {
1083                 set_snap_mode (mode);
1084         }
1085 }
1086
1087 RefPtr<RadioAction>
1088 Editor::edit_point_action (EditPoint ep)
1089 {
1090         const char* action = 0;
1091         RefPtr<Action> act;
1092
1093         switch (ep) {
1094         case Editing::EditAtPlayhead:
1095                 action = X_("edit-at-playhead");
1096                 break;
1097         case Editing::EditAtSelectedMarker:
1098                 action = X_("edit-at-selected-marker");
1099                 break;
1100         case Editing::EditAtMouse:
1101                 action = X_("edit-at-mouse");
1102                 break;
1103         default:
1104                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible edit point type", (int) ep) << endmsg;
1105                 /*NOTREACHED*/
1106         }
1107
1108         act = ActionManager::get_action (X_("Editor"), action);
1109
1110         if (act) {
1111                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1112                 return ract;
1113
1114         } else  {
1115                 error << string_compose (_("programming error: %1: %2"), "Editor::edit_point_action could not find action to match edit point.", action) << endmsg;
1116                 return RefPtr<RadioAction> ();
1117         }
1118 }
1119
1120 void
1121 Editor::edit_point_chosen (EditPoint ep)
1122 {
1123         /* this is driven by a toggle on a radio group, and so is invoked twice,
1124            once for the item that became inactive and once for the one that became
1125            active.
1126         */
1127
1128         RefPtr<RadioAction> ract = edit_point_action (ep);
1129
1130         if (ract && ract->get_active()) {
1131                 set_edit_point_preference (ep);
1132         }
1133 }
1134
1135
1136 RefPtr<RadioAction>
1137 Editor::zoom_focus_action (ZoomFocus focus)
1138 {
1139         const char* action = 0;
1140         RefPtr<Action> act;
1141
1142         switch (focus) {
1143         case ZoomFocusLeft:
1144                 action = X_("zoom-focus-left");
1145                 break;
1146         case ZoomFocusRight:
1147                 action = X_("zoom-focus-right");
1148                 break;
1149         case ZoomFocusCenter:
1150                 action = X_("zoom-focus-center");
1151                 break;
1152         case ZoomFocusPlayhead:
1153                 action = X_("zoom-focus-playhead");
1154                 break;
1155         case ZoomFocusMouse:
1156                 action = X_("zoom-focus-mouse");
1157                 break;
1158         case ZoomFocusEdit:
1159                 action = X_("zoom-focus-edit");
1160                 break;
1161         default:
1162                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible focus type", (int) focus) << endmsg;
1163                 /*NOTREACHED*/
1164         }
1165
1166         act = ActionManager::get_action (X_("Zoom"), action);
1167
1168         if (act) {
1169                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1170                 return ract;
1171         } else {
1172                 error << string_compose (_("programming error: %1: %2"), "Editor::zoom_focus_action could not find action to match focus.", action) << endmsg;
1173         }
1174
1175         return RefPtr<RadioAction> ();
1176 }
1177
1178 void
1179 Editor::zoom_focus_chosen (ZoomFocus focus)
1180 {
1181         /* this is driven by a toggle on a radio group, and so is invoked twice,
1182            once for the item that became inactive and once for the one that became
1183            active.
1184         */
1185
1186         RefPtr<RadioAction> ract = zoom_focus_action (focus);
1187
1188         if (ract && ract->get_active()) {
1189                 set_zoom_focus (focus);
1190         }
1191 }
1192
1193 /** A Configuration parameter has changed.
1194  * @param parameter_name Name of the changed parameter.
1195  */
1196 void
1197 Editor::parameter_changed (std::string p)
1198 {
1199         ENSURE_GUI_THREAD (*this, &Editor::parameter_changed, p)
1200
1201         if (p == "auto-loop") {
1202                 update_loop_range_view (true);
1203         } else if (p == "punch-in") {
1204                 update_punch_range_view (true);
1205         } else if (p == "punch-out") {
1206                 update_punch_range_view (true);
1207         } else if (p == "timecode-format") {
1208                 update_just_timecode ();
1209         } else if (p == "xfades-visible") {
1210                 update_xfade_visibility ();
1211         } else if (p == "show-region-fades") {
1212                 update_region_fade_visibility ();
1213         } else if (p == "edit-mode") {
1214                 edit_mode_selector.set_active_text (edit_mode_to_string (Config->get_edit_mode()));
1215         } else if (p == "subframes-per-frame") {
1216                 update_just_timecode ();
1217         } else if (p == "show-track-meters") {
1218                 toggle_meter_updating();
1219         } else if (p == "show-summary") {
1220
1221                 bool const s = _session->config.get_show_summary ();
1222                 if (s) {
1223                         _summary_hbox.show ();
1224                 } else {
1225                         _summary_hbox.hide ();
1226                 }
1227
1228                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleSummary"));
1229                 if (act) {
1230                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1231                         if (tact->get_active () != s) {
1232                                 tact->set_active (s);
1233                         }
1234                 }
1235         } else if (p == "show-group-tabs") {
1236
1237                 bool const s = _session->config.get_show_group_tabs ();
1238                 if (s) {
1239                         _group_tabs->show ();
1240                 } else {
1241                         _group_tabs->hide ();
1242                 }
1243
1244                 reset_controls_layout_width ();
1245
1246                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleGroupTabs"));
1247                 if (act) {
1248                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1249                         if (tact->get_active () != s) {
1250                                 tact->set_active (s);
1251                         }
1252                 }
1253         } else if (p == "timecode-offset" || p == "timecode-offset-negative") {
1254                 update_just_timecode ();
1255         } else if (p == "show-zoom-tools") {
1256                 _zoom_tearoff->set_visible (Config->get_show_zoom_tools(), true);
1257         }
1258 }
1259
1260 void
1261 Editor::reset_focus ()
1262 {
1263         track_canvas->grab_focus();
1264 }
1265
1266 void
1267 Editor::reset_canvas_action_sensitivity (bool onoff)
1268 {
1269         if (_edit_point != EditAtMouse) {
1270                 onoff = true;
1271         }
1272
1273         for (vector<Glib::RefPtr<Action> >::iterator x = ActionManager::mouse_edit_point_requires_canvas_actions.begin();
1274              x != ActionManager::mouse_edit_point_requires_canvas_actions.end(); ++x) {
1275                 (*x)->set_sensitive (onoff);
1276         }
1277 }
1278
1279 void
1280 Editor::toggle_internal_editing ()
1281 {
1282         Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("MouseMode"), X_("toggle-internal-edit"));
1283         if (act) {
1284                 Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
1285                 set_internal_edit (tact->get_active());
1286         }
1287 }
1288
1289 /* Convenience functions to slightly reduce verbosity below */
1290
1291 static RefPtr<Action>
1292 reg_sens (RefPtr<ActionGroup> group, char const * name, char const * label, sigc::slot<void> slot)
1293 {
1294         RefPtr<Action> act = ActionManager::register_action (group, name, label, slot);
1295         ActionManager::session_sensitive_actions.push_back (act);
1296         return act;
1297 }
1298
1299 static void
1300 toggle_reg_sens (RefPtr<ActionGroup> group, char const * name, char const * label, sigc::slot<void> slot)
1301 {
1302         RefPtr<Action> act = ActionManager::register_toggle_action (group, name, label, slot);
1303         ActionManager::session_sensitive_actions.push_back (act);
1304 }
1305
1306 void
1307 Editor::register_region_actions ()
1308 {
1309         _region_actions = ActionGroup::create (X_("Region"));
1310         
1311         /* PART 1: actions that operate on the selection, and for which the edit point type and location is irrelevant */
1312
1313         /* Remove selected regions */
1314         reg_sens (_region_actions, "remove-region", _("Remove"), sigc::mem_fun (*this, &Editor::remove_selected_regions));
1315         
1316         /* Offer dialogue box to rename the first selected region */
1317         reg_sens (_region_actions, "rename-region", _("Rename..."), sigc::mem_fun (*this, &Editor::rename_region));
1318         
1319         /* Raise all selected regions by 1 layer */
1320         reg_sens (_region_actions, "raise-region", _("Raise"), sigc::mem_fun (*this, &Editor::raise_region));
1321
1322         /* Raise all selected regions to the top */
1323         reg_sens (_region_actions, "raise-region-to-top", _("Raise to Top"), sigc::mem_fun (*this, &Editor::raise_region_to_top));
1324         
1325         /* Lower all selected regions by 1 layer */
1326         reg_sens (_region_actions, "lower-region", _("Lower"), sigc::mem_fun (*this, &Editor::lower_region));
1327
1328         /* Lower all selected regions to the bottom */
1329         reg_sens (_region_actions, "lower-region-to-bottom", _("Lower to Bottom"), sigc::mem_fun (*this, &Editor::lower_region_to_bottom));
1330         
1331         /* Move selected regions to their original (`natural') position */
1332         reg_sens (_region_actions, "naturalize-region", _("Move to Original Position"), sigc::mem_fun (*this, &Editor::naturalize_region));
1333         
1334         /* Toggle `locked' status of selected regions */
1335         toggle_reg_sens (_region_actions, "toggle-region-lock", _("Lock"), sigc::mem_fun(*this, &Editor::toggle_region_lock));
1336
1337         toggle_reg_sens (
1338                 _region_actions,
1339                 "toggle-region-lock-style",
1340                 _("Glue to Bars and Beats"),
1341                 sigc::mem_fun (*this, &Editor::toggle_region_lock_style)
1342                 );
1343         
1344         /* Remove sync points from selected regions */
1345         reg_sens (_region_actions, "remove-region-sync", _("Remove Sync"), sigc::mem_fun(*this, &Editor::remove_region_sync));
1346         
1347         /* Mute or unmute selected regions */
1348         toggle_reg_sens (_region_actions, "toggle-region-mute", _("Mute"), sigc::mem_fun(*this, &Editor::toggle_region_mute));
1349         
1350         /* Open the normalize dialogue to operate on the selected regions */
1351         reg_sens (_region_actions, "normalize-region", _("Normalize..."), sigc::mem_fun(*this, &Editor::normalize_region));
1352         
1353         /* Reverse selected regions */
1354         reg_sens (_region_actions, "reverse-region", _("Reverse"), sigc::mem_fun (*this, &Editor::reverse_region));
1355         
1356         /* Split selected multi-channel regions into mono regions */
1357         reg_sens (_region_actions, "split-multichannel-region", _("Make Mono Regions"), sigc::mem_fun (*this, &Editor::split_multichannel_region));
1358         
1359         /* Boost selected region gain */
1360         reg_sens (_region_actions, "boost-region-gain", _("Boost Gain"), sigc::bind (sigc::mem_fun(*this, &Editor::adjust_region_gain), true));
1361         
1362         /* Cut selected region gain */
1363         reg_sens (_region_actions, "cut-region-gain", _("Cut Gain"), sigc::bind (sigc::mem_fun(*this, &Editor::adjust_region_gain), false));
1364         
1365         /* Open the pitch shift dialogue for the selected regions */
1366         reg_sens (_region_actions, "pitch-shift-region", _("Transpose"), sigc::mem_fun (*this, &Editor::pitch_shift_region));
1367         
1368         /* Toggle selected region opacity */
1369         toggle_reg_sens (_region_actions, "toggle-opaque-region", _("Opaque"), sigc::mem_fun (*this, &Editor::toggle_opaque_region));
1370         
1371         /* Toggle active status of selected regions' fade in */
1372         toggle_reg_sens (
1373                 _region_actions, "toggle-region-fade-in", _("Fade In"), sigc::bind (sigc::mem_fun (*this, &Editor::toggle_region_fades), 1)
1374                 );
1375         
1376         /* Toggle active status of selected regions' fade out */
1377         toggle_reg_sens (
1378                 _region_actions, "toggle-region-fade-out", _("Fade Out"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_region_fades), -1)
1379                 );
1380         
1381         /* Toggle active status of selected regions' fade in and out */
1382         toggle_reg_sens (
1383                 _region_actions, "toggle-region-fades", _("Fades"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_region_fades), 0)
1384                 );
1385         
1386         /* Open the dialogue to duplicate selected regions */
1387         reg_sens (_region_actions, "duplicate-region", _("Duplicate"), sigc::bind (sigc::mem_fun (*this, &Editor::duplicate_dialog), false));
1388         
1389         /* Open the dialogue to duplicate selected regions multiple times */
1390         reg_sens (
1391                 _region_actions,
1392                 "multi-duplicate-region",
1393                 _("Multi-Duplicate..."),
1394                 sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_dialog), true)
1395                 );
1396         
1397         /* Fill tracks with selected regions */
1398         reg_sens (_region_actions, "region-fill-track", _("Fill Track"), sigc::mem_fun (*this, &Editor::region_fill_track));
1399         
1400         /* Set up the loop range from the selected regions */
1401         reg_sens (
1402                 _region_actions, "set-loop-from-region", _("Set Loop Range"), sigc::bind (sigc::mem_fun (*this, &Editor::set_loop_from_region), false)
1403                 );
1404         
1405         /* Set up the loop range from the selected regions, and start playback of it */
1406         reg_sens (_region_actions, "loop-region", _("Loop"), sigc::bind  (sigc::mem_fun(*this, &Editor::set_loop_from_region), true));
1407         
1408         /* Set the punch range from the selected regions */
1409         reg_sens (_region_actions, "set-punch-from-region", _("Set Punch"), sigc::mem_fun (*this, &Editor::set_punch_from_region));
1410         
1411         /* Add a single range marker around all selected regions */
1412         reg_sens (
1413                 _region_actions, "add-range-marker-from-region", _("Add 1 Range Marker"), sigc::mem_fun (*this, &Editor::add_location_from_region)
1414                 );
1415         
1416         /* Add a range marker around each selected region */
1417         reg_sens (
1418                 _region_actions, "add-range-markers-from-region", _("Add Range Marker(s)"), sigc::mem_fun (*this, &Editor::add_locations_from_region)
1419                 );
1420
1421         /* Snap selected regions to the grid */
1422         reg_sens (_region_actions, "snap-regions-to-grid", _("Snap to Grid"), sigc::mem_fun (*this, &Editor::snap_regions_to_grid));
1423
1424         /* Close gaps in selected regions */
1425         reg_sens (_region_actions, "close-region-gaps", _("Close Gaps"), sigc::mem_fun (*this, &Editor::close_region_gaps));
1426
1427         /* Open the Rhythm Ferret dialogue for the selected regions */
1428         reg_sens (_region_actions, "show-rhythm-ferret", _("Rhythm Ferret..."), sigc::mem_fun (*this, &Editor::show_rhythm_ferret));
1429
1430         /* Export the first selected region */
1431         reg_sens (_region_actions, "export-region", _("Export..."), sigc::mem_fun (*this, &Editor::export_region));
1432
1433         /* Separate under selected regions: XXX not sure what this does */
1434         reg_sens (
1435                 _region_actions,
1436                 "separate-under-region",
1437                 _("Separate Under"),
1438                 sigc::mem_fun (*this, &Editor::separate_under_selected_regions)
1439                 );
1440
1441         reg_sens (_region_actions, "set-fade-in-length", _("Set Fade In Length"), sigc::bind (sigc::mem_fun (*this, &Editor::set_fade_length), true));
1442         reg_sens (_region_actions, "set-fade-out-length", _("Set Fade Out Length"), sigc::bind (sigc::mem_fun (*this, &Editor::set_fade_length), false));
1443         reg_sens (_region_actions, "set-tempo-from-region", _("Set Tempo from Region = Bar"), sigc::mem_fun (*this, &Editor::set_tempo_from_region));
1444
1445         reg_sens (
1446                 _region_actions,
1447                 "split-region-at-transients",
1448                 _("Split at Percussion Onsets"),
1449                 sigc::mem_fun(*this, &Editor::split_region_at_transients)
1450                 );
1451
1452         /* Open the list editor dialogue for the selected regions */
1453         reg_sens (_region_actions, "show-region-list-editor", _("List Editor..."), sigc::mem_fun (*this, &Editor::show_midi_list_editor));
1454
1455         /* Open the region properties dialogue for the selected regions */
1456         reg_sens (_region_actions, "show-region-properties", _("Properties..."), sigc::mem_fun (*this, &Editor::show_region_properties));
1457
1458         reg_sens (_region_actions, "play-selected-regions", _("Play"), sigc::mem_fun(*this, &Editor::play_selected_region));
1459
1460         reg_sens (_region_actions, "bounce-region", _("Bounce"), sigc::mem_fun (*this, &Editor::bounce_region_selection));
1461
1462         reg_sens (_region_actions, "analyze-region", _("Spectral Analysis..."), sigc::mem_fun (*this, &Editor::analyze_region_selection));
1463
1464         reg_sens (_region_actions, "reset-region-gain-envelopes", _("Reset Envelope"), sigc::mem_fun (*this, &Editor::reset_region_gain_envelopes));
1465
1466         reg_sens (_region_actions, "reset-region-scale-amplitude", _("Reset Gain"), sigc::mem_fun (*this, &Editor::reset_region_scale_amplitude));
1467
1468         toggle_reg_sens (
1469                 _region_actions,
1470                 "toggle-region-gain-envelope-visible",
1471                 _("Envelope Visible"),
1472                 sigc::mem_fun (*this, &Editor::toggle_gain_envelope_visibility)
1473                 );
1474
1475         toggle_reg_sens (
1476                 _region_actions,
1477                 "toggle-region-gain-envelope-active",
1478                 _("Envelope Active"),
1479                 sigc::mem_fun (*this, &Editor::toggle_gain_envelope_active)
1480                 );
1481
1482         reg_sens (_region_actions, "quantize-region", _("Quantize"), sigc::mem_fun (*this, &Editor::quantize_region));
1483         reg_sens (_region_actions, "insert-patch-change", _("Insert Patch Change..."), sigc::mem_fun (*this, &Editor::insert_patch_change));
1484         reg_sens (_region_actions, "fork-region", _("Fork"), sigc::mem_fun (*this, &Editor::fork_region));
1485         reg_sens (_region_actions, "strip-region-silence", _("Strip Silence..."), sigc::mem_fun (*this, &Editor::strip_region_silence));
1486         reg_sens (_region_actions, "set-selection-from-region", _("Set Range Selection"), sigc::mem_fun (*this, &Editor::set_selection_from_region));
1487
1488         reg_sens (_region_actions, "nudge-forward", _("Nudge Forward"), sigc::bind (sigc::mem_fun (*this, &Editor::nudge_forward), false, false));
1489         reg_sens (_region_actions, "nudge-backward", _("Nudge Backward"), sigc::bind (sigc::mem_fun (*this, &Editor::nudge_backward), false, false));
1490
1491         reg_sens (
1492                 _region_actions,
1493                 "nudge-forward-by-capture-offset",
1494                 _("Nudge Forward by Capture Offset"),
1495                 sigc::mem_fun (*this, &Editor::nudge_forward_capture_offset)
1496                 );
1497         
1498         reg_sens (
1499                 _region_actions,
1500                 "nudge-backward-by-capture-offset",
1501                 _("Nudge Backward by Capture Offset"),
1502                 sigc::mem_fun (*this, &Editor::nudge_backward_capture_offset)
1503                 );
1504
1505         reg_sens (_region_actions, "trim-region-to-loop", _("Trim to Loop"), sigc::mem_fun (*this, &Editor::trim_region_to_loop));
1506         reg_sens (_region_actions, "trim-region-to-punch", _("Trim to Punch"), sigc::mem_fun (*this, &Editor::trim_region_to_punch));
1507         
1508         reg_sens (_region_actions, "trim-to-previous-region", _("Trim to Previous"), sigc::mem_fun(*this, &Editor::trim_region_to_previous_region_end));
1509         reg_sens (_region_actions, "trim-to-next-region", _("Trim to Next"), sigc::mem_fun(*this, &Editor::trim_region_to_next_region_start));
1510
1511         /* PART 2: actions that are not related to the selection, but for which the edit point type and location is important */
1512
1513         reg_sens (
1514                 _region_actions,
1515                 "insert-region-from-region-list",
1516                 _("Insert Region From Region List"),
1517                 sigc::bind (sigc::mem_fun (*this, &Editor::insert_region_list_selection), 1)
1518                 );
1519
1520         /* PART 3: actions that operate on the selection and also require the edit point location */
1521
1522         reg_sens (_region_actions, "set-region-sync-position", _("Set Sync Position"), sigc::mem_fun (*this, &Editor::set_region_sync_position));
1523         reg_sens (_region_actions, "place-transient", _("Place Transient"), sigc::mem_fun (*this, &Editor::place_transient));
1524         reg_sens (_region_actions, "split-region", _("Split"), sigc::mem_fun (*this, &Editor::split_region));
1525         reg_sens (_region_actions, "trim-front", _("Trim Start at Edit Point"), sigc::mem_fun (*this, &Editor::trim_region_front));
1526         reg_sens (_region_actions, "trim-back", _("Trim End at Edit Point"), sigc::mem_fun (*this, &Editor::trim_region_back));
1527
1528         reg_sens (
1529                 _region_actions,
1530                 "align-regions-start",
1531                 _("Align Start"),
1532                 sigc::bind (sigc::mem_fun(*this, &Editor::align_regions), ARDOUR::Start)
1533                 );
1534         
1535         reg_sens (
1536                 _region_actions,
1537                 "align-regions-start-relative",
1538                 _("Align Start Relative"),
1539                 sigc::bind (sigc::mem_fun (*this, &Editor::align_regions_relative), ARDOUR::Start)
1540                 );
1541         
1542         reg_sens (_region_actions, "align-regions-end", _("Align End"), sigc::bind (sigc::mem_fun (*this, &Editor::align_regions), ARDOUR::End));
1543
1544         reg_sens (
1545                 _region_actions,
1546                 "align-regions-end-relative",
1547                 _("Align End Relative"),
1548                 sigc::bind (sigc::mem_fun(*this, &Editor::align_regions_relative), ARDOUR::End)
1549                 );
1550
1551         reg_sens (
1552                 _region_actions,
1553                 "align-regions-sync",
1554                 _("Align Sync"),
1555                 sigc::bind (sigc::mem_fun(*this, &Editor::align_regions), ARDOUR::SyncPoint)
1556                 );
1557         
1558         reg_sens (
1559                 _region_actions,
1560                 "align-regions-sync-relative",
1561                 _("Align Sync Relative"),
1562                 sigc::bind (sigc::mem_fun (*this, &Editor::align_regions_relative), ARDOUR::SyncPoint)
1563                 );
1564
1565         Glib::RefPtr<Action> a = reg_sens (_region_actions, "choose-top-region", _("Choose Top..."), mem_fun (*this, &Editor::change_region_layering_order));
1566         a->set_accel_group (get_accel_group ());
1567
1568         _all_region_actions_sensitized = true;
1569
1570         ActionManager::add_action_group (_region_actions);
1571 }