add pitch shifting; minor fixes elsewhere
[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 <ardour/ardour.h>
21
22 #include "utils.h"
23 #include "editor.h"
24 #include "editing.h"
25 #include "actions.h"
26 #include "ardour_ui.h"
27 #include "gui_thread.h"
28 #include "i18n.h"
29
30 using namespace Gtk;
31 using namespace Glib;
32 using namespace std;
33 using namespace sigc;
34 using namespace ARDOUR;
35 using namespace PBD;
36 using namespace Editing;
37
38 void
39 Editor::register_actions ()
40 {
41         RefPtr<Action> act;
42
43         editor_actions = ActionGroup::create (X_("Editor"));
44         
45         /* non-operative menu items for menu bar */
46
47         ActionManager::register_action (editor_actions, X_("Edit"), _("Edit"));
48         ActionManager::register_action (editor_actions, X_("Select"), _("Select"));
49         ActionManager::register_action (editor_actions, X_("EditSelectRegionOptions"), _("Select Regions"));
50         ActionManager::register_action (editor_actions, X_("EditSelectRangeOptions"), _("Select Range Operations"));
51         ActionManager::register_action (editor_actions, X_("EditCursorMovementOptions"), _("Move Selected Marker"));
52         ActionManager::register_action (editor_actions, X_("RegionEditOps"), _("Region operations"));
53         ActionManager::register_action (editor_actions, X_("Tools"), _("Tools"));
54         ActionManager::register_action (editor_actions, X_("View"), _("View"));
55         ActionManager::register_action (editor_actions, X_("ZoomFocus"), _("ZoomFocus"));
56         ActionManager::register_action (editor_actions, X_("MeterHold"), _("Meter hold"));
57         ActionManager::register_action (editor_actions, X_("MeterFalloff"), _("Meter falloff"));
58         ActionManager::register_action (editor_actions, X_("Solo"), _("Solo"));
59         ActionManager::register_action (editor_actions, X_("Crossfades"), _("Crossfades"));
60         ActionManager::register_action (editor_actions, X_("Monitoring"), _("Monitoring"));
61         ActionManager::register_action (editor_actions, X_("Autoconnect"), _("Autoconnect"));
62         ActionManager::register_action (editor_actions, X_("Layering"), _("Layering"));
63         ActionManager::register_action (editor_actions, X_("Timecode"), _("Timecode fps"));
64         ActionManager::register_action (editor_actions, X_("Pullup"), _("Pullup / Pulldown"));
65         ActionManager::register_action (editor_actions, X_("Subframes"), _("Subframes"));
66
67         /* add named actions for the editor */
68
69
70         act = ActionManager::register_toggle_action (editor_actions, "show-editor-mixer", _("Show Editor Mixer"), mem_fun (*this, &Editor::editor_mixer_button_toggled));
71         ActionManager::session_sensitive_actions.push_back (act);
72
73         RadioAction::Group crossfade_model_group;
74
75         act = ActionManager::register_radio_action (editor_actions, crossfade_model_group, "CrossfadesFull", _("Span Entire Overlap"), bind (mem_fun(*this, &Editor::set_crossfade_model), FullCrossfade));
76         ActionManager::session_sensitive_actions.push_back (act);
77         act = ActionManager::register_radio_action (editor_actions, crossfade_model_group, "CrossfadesShort", _("Short"), bind (mem_fun(*this, &Editor::set_crossfade_model), ShortCrossfade));
78         ActionManager::session_sensitive_actions.push_back (act);
79
80         act = ActionManager::register_toggle_action (editor_actions, "toggle-xfades-active", _("Active"), mem_fun(*this, &Editor::toggle_xfades_active));
81         ActionManager::session_sensitive_actions.push_back (act);
82         act = ActionManager::register_toggle_action (editor_actions, "toggle-xfades-visible", _("Show"), mem_fun(*this, &Editor::toggle_xfade_visibility));
83         ActionManager::session_sensitive_actions.push_back (act);
84         act = ActionManager::register_toggle_action (editor_actions, "toggle-auto-xfades", _("Created Automatically"), mem_fun(*this, &Editor::toggle_auto_xfade));
85         ActionManager::session_sensitive_actions.push_back (act);
86
87         act = ActionManager::register_action (editor_actions, "playhead-to-next-region-boundary", _("Playhead to Next Region Boundary"), bind (mem_fun(*this, &Editor::cursor_to_next_region_boundary), playhead_cursor));
88         ActionManager::session_sensitive_actions.push_back (act);
89         act = ActionManager::register_action (editor_actions, "playhead-to-previous-region-boundary", _("Playhead to Previous Region Boundary"), bind (mem_fun(*this, &Editor::cursor_to_previous_region_boundary), playhead_cursor));
90         ActionManager::session_sensitive_actions.push_back (act);
91
92         act = ActionManager::register_action (editor_actions, "playhead-to-next-region-start", _("Playhead to Next Region Start"), bind (mem_fun(*this, &Editor::cursor_to_next_region_point), playhead_cursor, RegionPoint (Start)));
93         ActionManager::session_sensitive_actions.push_back (act);
94         act = ActionManager::register_action (editor_actions, "playhead-to-next-region-end", _("Playhead to Next Region End"), bind (mem_fun(*this, &Editor::cursor_to_next_region_point), playhead_cursor, RegionPoint (End)));
95         ActionManager::session_sensitive_actions.push_back (act);
96         act = ActionManager::register_action (editor_actions, "playhead-to-next-region-sync", _("Playhead to Next Region Sync"), bind (mem_fun(*this, &Editor::cursor_to_next_region_point), playhead_cursor, RegionPoint (SyncPoint)));
97         ActionManager::session_sensitive_actions.push_back (act);
98
99         act = ActionManager::register_action (editor_actions, "playhead-to-previous-region-start", _("Playhead to Previous Region Start"), bind (mem_fun(*this, &Editor::cursor_to_previous_region_point), playhead_cursor, RegionPoint (Start)));
100         ActionManager::session_sensitive_actions.push_back (act);
101         act = ActionManager::register_action (editor_actions, "playhead-to-previous-region-end", _("Playhead to Previous Region End"), bind (mem_fun(*this, &Editor::cursor_to_previous_region_point), playhead_cursor, RegionPoint (End)));
102         ActionManager::session_sensitive_actions.push_back (act);
103         act = ActionManager::register_action (editor_actions, "playhead-to-previous-region-sync", _("Playhead to Previous Region Sync"), bind (mem_fun(*this, &Editor::cursor_to_previous_region_point), playhead_cursor, RegionPoint (SyncPoint)));
104         ActionManager::session_sensitive_actions.push_back (act);
105
106         act = ActionManager::register_action (editor_actions, "selected-marker-to-next-region-boundary", _("to Next Region Boundary"), mem_fun(*this, &Editor::selected_marker_to_next_region_boundary));
107         ActionManager::session_sensitive_actions.push_back (act);
108         act = ActionManager::register_action (editor_actions, "selected-marker-to-previous-region-boundary", _("to Previous Region Boundary"), mem_fun(*this, &Editor::selected_marker_to_previous_region_boundary));
109         ActionManager::session_sensitive_actions.push_back (act);
110
111         act = ActionManager::register_action (editor_actions, "edit-cursor-to-next-region-start", _("to Next Region Start"), bind (mem_fun(*this, &Editor::selected_marker_to_next_region_point), RegionPoint (Start)));
112         ActionManager::session_sensitive_actions.push_back (act);
113         act = ActionManager::register_action (editor_actions, "edit-cursor-to-next-region-end", _("to Next Region End"), bind (mem_fun(*this, &Editor::selected_marker_to_next_region_point), RegionPoint (End)));
114         ActionManager::session_sensitive_actions.push_back (act);
115         act = ActionManager::register_action (editor_actions, "edit-cursor-to-next-region-sync", _("to Next Region Sync"), bind (mem_fun(*this, &Editor::selected_marker_to_next_region_point), RegionPoint (SyncPoint)));
116         ActionManager::session_sensitive_actions.push_back (act);
117
118         act = ActionManager::register_action (editor_actions, "edit-cursor-to-previous-region-start", _("to Previous Region Start"), bind (mem_fun(*this, &Editor::selected_marker_to_previous_region_point), RegionPoint (Start)));
119         ActionManager::session_sensitive_actions.push_back (act);
120         act = ActionManager::register_action (editor_actions, "edit-cursor-to-previous-region-end", _("to Previous Region End"), bind (mem_fun(*this, &Editor::selected_marker_to_previous_region_point), RegionPoint (End)));
121         ActionManager::session_sensitive_actions.push_back (act);
122         act = ActionManager::register_action (editor_actions, "edit-cursor-to-previous-region-sync", _("to Previous Region Sync"), bind (mem_fun(*this, &Editor::selected_marker_to_previous_region_point), RegionPoint (SyncPoint)));
123         ActionManager::session_sensitive_actions.push_back (act);
124
125         act = ActionManager::register_action (editor_actions, "edit-cursor-to-range-start", _("to Range Start"), mem_fun(*this, &Editor::selected_marker_to_selection_start));
126         ActionManager::session_sensitive_actions.push_back (act);
127         act = ActionManager::register_action (editor_actions, "edit-cursor-to-range-end", _("to Range End"), mem_fun(*this, &Editor::selected_marker_to_selection_end));
128         ActionManager::session_sensitive_actions.push_back (act);
129
130         act = ActionManager::register_action (editor_actions, "playhead-to-range-start", _("Playhead to Range Start"), bind (mem_fun(*this, &Editor::cursor_to_selection_start), playhead_cursor));
131         ActionManager::session_sensitive_actions.push_back (act);
132         act = ActionManager::register_action (editor_actions, "playhead-to-range-end", _("Playhead to Range End"), bind (mem_fun(*this, &Editor::cursor_to_selection_end), playhead_cursor));
133         ActionManager::session_sensitive_actions.push_back (act);
134
135         act = ActionManager::register_action (editor_actions, "select-all", _("Select All"), bind (mem_fun(*this, &Editor::select_all), Selection::Set));
136         ActionManager::session_sensitive_actions.push_back (act);
137         act = ActionManager::register_action (editor_actions, "deselect-all", _("Deselect All"), mem_fun(*this, &Editor::deselect_all));
138         ActionManager::session_sensitive_actions.push_back (act);
139         act = ActionManager::register_action (editor_actions, "invert-selection", _("Invert Selection"), mem_fun(*this, &Editor::invert_selection));
140         ActionManager::session_sensitive_actions.push_back (act);
141         act = ActionManager::register_action (editor_actions, "select-all-after-edit-cursor", _("Select All After Edit Point"), bind (mem_fun(*this, &Editor::select_all_selectables_using_edit), true));
142         ActionManager::session_sensitive_actions.push_back (act);
143         act = ActionManager::register_action (editor_actions, "select-all-before-edit-cursor", _("Select All Before Edit Point"), bind (mem_fun(*this, &Editor::select_all_selectables_using_edit), false));
144         ActionManager::session_sensitive_actions.push_back (act);
145
146         act = ActionManager::register_action (editor_actions, "select-all-after-playhead", _("Select All After Playhead"), bind (mem_fun(*this, &Editor::select_all_selectables_using_cursor), playhead_cursor, true));
147         ActionManager::session_sensitive_actions.push_back (act);
148         act = ActionManager::register_action (editor_actions, "select-all-before-playhead", _("Select All Before Playhead"), bind (mem_fun(*this, &Editor::select_all_selectables_using_cursor), playhead_cursor, false));
149         ActionManager::session_sensitive_actions.push_back (act);
150         act = ActionManager::register_action (editor_actions, "select-all-between-cursors", _("Select All Between Playhead & Edit Point"), bind (mem_fun(*this, &Editor::select_all_selectables_between), false));
151         ActionManager::session_sensitive_actions.push_back (act);
152         act = ActionManager::register_action (editor_actions, "select-all-within-cursors", _("Select All Within Playhead & Edit Point"), bind (mem_fun(*this, &Editor::select_all_selectables_between), true));
153         ActionManager::session_sensitive_actions.push_back (act);
154
155         act = ActionManager::register_action (editor_actions, "select-range-between-cursors", _("Select Range Between Playhead & Edit Point"), mem_fun(*this, &Editor::select_range_between));
156         ActionManager::session_sensitive_actions.push_back (act);
157
158         act = ActionManager::register_action (editor_actions, "select-all-in-punch-range", _("Select All in Punch Range"), mem_fun(*this, &Editor::select_all_selectables_using_punch));
159         ActionManager::session_sensitive_actions.push_back (act);
160         act = ActionManager::register_action (editor_actions, "select-all-in-loop-range", _("Select All in Loop Range"), mem_fun(*this, &Editor::select_all_selectables_using_loop));
161         ActionManager::session_sensitive_actions.push_back (act);
162         
163         act = ActionManager::register_action (editor_actions, "select-next-route", _("Select Next Track/Bus"), mem_fun(*this, &Editor::select_next_route));
164         ActionManager::session_sensitive_actions.push_back (act);
165         act = ActionManager::register_action (editor_actions, "select-prev-route", _("Select Previous Track/Bus"), mem_fun(*this, &Editor::select_prev_route));
166         ActionManager::session_sensitive_actions.push_back (act);
167         
168
169         act = ActionManager::register_action (editor_actions, "goto-mark-1", _("Locate to Mark 1"), bind (mem_fun (*this, &Editor::goto_nth_marker), 0));
170         ActionManager::session_sensitive_actions.push_back (act);
171         act = ActionManager::register_action (editor_actions, "goto-mark-2", _("Locate to Mark 2"), bind (mem_fun (*this, &Editor::goto_nth_marker), 1));
172         ActionManager::session_sensitive_actions.push_back (act);
173         act = ActionManager::register_action (editor_actions, "goto-mark-3", _("Locate to Mark 3"), bind (mem_fun (*this, &Editor::goto_nth_marker), 2));
174         ActionManager::session_sensitive_actions.push_back (act);
175         act = ActionManager::register_action (editor_actions, "goto-mark-4", _("Locate to Mark 4"), bind (mem_fun (*this, &Editor::goto_nth_marker), 3));
176         ActionManager::session_sensitive_actions.push_back (act);
177         act = ActionManager::register_action (editor_actions, "goto-mark-5", _("Locate to Mark 5"), bind (mem_fun (*this, &Editor::goto_nth_marker), 4));
178         ActionManager::session_sensitive_actions.push_back (act);
179         act = ActionManager::register_action (editor_actions, "goto-mark-6", _("Locate to Mark 6"), bind (mem_fun (*this, &Editor::goto_nth_marker), 5));
180         ActionManager::session_sensitive_actions.push_back (act);
181         act = ActionManager::register_action (editor_actions, "goto-mark-7", _("Locate to Mark 7"), bind (mem_fun (*this, &Editor::goto_nth_marker), 6));
182         ActionManager::session_sensitive_actions.push_back (act);
183         act = ActionManager::register_action (editor_actions, "goto-mark-8", _("Locate to Mark 8"), bind (mem_fun (*this, &Editor::goto_nth_marker), 7));
184         ActionManager::session_sensitive_actions.push_back (act);
185         act = ActionManager::register_action (editor_actions, "goto-mark-9", _("Locate to Mark 9"), bind (mem_fun (*this, &Editor::goto_nth_marker), 8));
186         ActionManager::session_sensitive_actions.push_back (act);
187
188         act = ActionManager::register_action (editor_actions, "jump-forward-to-mark", _("Jump Forward to Mark"), mem_fun(*this, &Editor::jump_forward_to_mark));
189         ActionManager::session_sensitive_actions.push_back (act);
190         act = ActionManager::register_action (editor_actions, "jump-backward-to-mark", _("Jump Backward to Mark"), mem_fun(*this, &Editor::jump_backward_to_mark));
191         ActionManager::session_sensitive_actions.push_back (act);
192         act = ActionManager::register_action (editor_actions, "add-location-from-playhead", _("Add Mark from Playhead"), mem_fun(*this, &Editor::add_location_from_playhead_cursor));
193         ActionManager::session_sensitive_actions.push_back (act);
194
195         act = ActionManager::register_action (editor_actions, "nudge-forward", _("Nudge Forward"), bind (mem_fun(*this, &Editor::nudge_forward), false));
196         ActionManager::session_sensitive_actions.push_back (act);
197         act = ActionManager::register_action (editor_actions, "nudge-next-forward", _("Nudge Next Forward"), bind (mem_fun(*this, &Editor::nudge_forward), true));
198         ActionManager::session_sensitive_actions.push_back (act);
199         act = ActionManager::register_action (editor_actions, "nudge-backward", _("Nudge Backward"), bind (mem_fun(*this, &Editor::nudge_backward), false));
200         ActionManager::session_sensitive_actions.push_back (act);
201         act = ActionManager::register_action (editor_actions, "nudge-next-backward", _("Nudge Next Backward"), bind (mem_fun(*this, &Editor::nudge_backward), true));
202         ActionManager::session_sensitive_actions.push_back (act);
203
204
205         act = ActionManager::register_action (editor_actions, "temporal-zoom-out", _("Zoom Out"), bind (mem_fun(*this, &Editor::temporal_zoom_step), true));
206         ActionManager::session_sensitive_actions.push_back (act);
207         act = ActionManager::register_action (editor_actions, "temporal-zoom-in", _("Zoom In"), bind (mem_fun(*this, &Editor::temporal_zoom_step), false));
208         ActionManager::session_sensitive_actions.push_back (act);
209         act = ActionManager::register_action (editor_actions, "zoom-to-session", _("Zoom to Session"), mem_fun(*this, &Editor::temporal_zoom_session));
210         ActionManager::session_sensitive_actions.push_back (act);
211         act = ActionManager::register_action (editor_actions, "zoom-to-region", _("Zoom to Region"), mem_fun(*this, &Editor::temporal_zoom_region));
212         ActionManager::session_sensitive_actions.push_back (act);
213         act = ActionManager::register_action (editor_actions, "toggle-zoom", _("Toggle Zoom State"), mem_fun(*this, &Editor::swap_visual_state));
214         ActionManager::session_sensitive_actions.push_back (act);
215
216         act = ActionManager::register_action (editor_actions, "scroll-tracks-up", _("Scroll Tracks Up"), mem_fun(*this, &Editor::scroll_tracks_up));
217         ActionManager::session_sensitive_actions.push_back (act);
218         act = ActionManager::register_action (editor_actions, "scroll-tracks-down", _("Scroll Tracks Down"), mem_fun(*this, &Editor::scroll_tracks_down));
219         ActionManager::session_sensitive_actions.push_back (act);
220         act = ActionManager::register_action (editor_actions, "step-tracks-up", _("Step Tracks Up"), mem_fun(*this, &Editor::scroll_tracks_up_line));
221         ActionManager::session_sensitive_actions.push_back (act);
222         act = ActionManager::register_action (editor_actions, "step-tracks-down", _("Step Tracks Down"), mem_fun(*this, &Editor::scroll_tracks_down_line));
223         ActionManager::session_sensitive_actions.push_back (act);
224
225         act = ActionManager::register_action (editor_actions, "scroll-backward", _("Scroll Backward"), bind (mem_fun(*this, &Editor::scroll_backward), 0.8f));
226         ActionManager::session_sensitive_actions.push_back (act);
227         act = ActionManager::register_action (editor_actions, "scroll-forward", _("Scroll Forward"), bind (mem_fun(*this, &Editor::scroll_forward), 0.8f));
228         ActionManager::session_sensitive_actions.push_back (act);
229         act = ActionManager::register_action (editor_actions, "goto", _("goto"), mem_fun(*this, &Editor::goto_frame));
230         ActionManager::session_sensitive_actions.push_back (act);
231         act = ActionManager::register_action (editor_actions, "center-playhead", _("to Center"), mem_fun(*this, &Editor::center_playhead));
232         ActionManager::session_sensitive_actions.push_back (act);
233         act = ActionManager::register_action (editor_actions, "center-edit-cursor", _("to Center"), mem_fun(*this, &Editor::center_edit_point));
234         ActionManager::session_sensitive_actions.push_back (act);
235
236         act = ActionManager::register_action (editor_actions, "scroll-playhead-forward", _("Playhead forward"), bind (mem_fun(*this, &Editor::scroll_playhead), true));;
237         ActionManager::session_sensitive_actions.push_back (act);
238         act = ActionManager::register_action (editor_actions, "scroll-playhead-backward", _("Playhead Backward"), bind (mem_fun(*this, &Editor::scroll_playhead), false));
239         ActionManager::session_sensitive_actions.push_back (act);
240
241         act = ActionManager::register_action (editor_actions, "playhead-to-edit", _("to Edit"), bind (mem_fun(*this, &Editor::cursor_align), true));
242         ActionManager::session_sensitive_actions.push_back (act);
243         act = ActionManager::register_action (editor_actions, "edit-to-playhead", _("to Playhead"), bind (mem_fun(*this, &Editor::cursor_align), false));
244         ActionManager::session_sensitive_actions.push_back (act);
245
246         act = ActionManager::register_action (editor_actions, "trim-front", _("Trim start at edit point"), mem_fun(*this, &Editor::trim_region_front));
247         ActionManager::session_sensitive_actions.push_back (act);
248         act = ActionManager::register_action (editor_actions, "trim-back", _("Trim end at edit point"), mem_fun(*this, &Editor::trim_region_back));
249         ActionManager::session_sensitive_actions.push_back (act);
250
251         act = ActionManager::register_action (editor_actions, "trim-from-start", _("Start to edit point"), mem_fun(*this, &Editor::trim_region_from_edit_point));
252         ActionManager::session_sensitive_actions.push_back (act);
253         act = ActionManager::register_action (editor_actions, "trim-to-end", _("Edit point to end"), mem_fun(*this, &Editor::trim_region_to_edit_point));
254         ActionManager::session_sensitive_actions.push_back (act);
255         act = ActionManager::register_action (editor_actions, "trim-region-to-loop", _("Trim To Loop"), mem_fun(*this, &Editor::trim_region_to_loop));
256         ActionManager::session_sensitive_actions.push_back (act);
257         act = ActionManager::register_action (editor_actions, "trim-region-to-punch", _("Trim To Punch"), mem_fun(*this, &Editor::trim_region_to_punch));
258         ActionManager::session_sensitive_actions.push_back (act);
259
260         act = ActionManager::register_action (editor_actions, "set-loop-from-edit-range", _("Set Loop From Edit Range"), bind (mem_fun(*this, &Editor::set_loop_from_edit_range), false));
261         ActionManager::session_sensitive_actions.push_back (act);
262         act = ActionManager::register_action (editor_actions, "set-loop-from-region", _("Set Loop From Region"), bind (mem_fun(*this, &Editor::set_loop_from_region), false));
263         ActionManager::session_sensitive_actions.push_back (act);
264         act = ActionManager::register_action (editor_actions, "loop-region", _("Loop Region"), bind (mem_fun(*this, &Editor::set_loop_from_region), true));
265         ActionManager::session_sensitive_actions.push_back (act);
266         act = ActionManager::register_action (editor_actions, "set-punch-from-edit-range", _("Set Punch From Edit Range"), mem_fun(*this, &Editor::set_punch_from_edit_range));
267         ActionManager::session_sensitive_actions.push_back (act);
268         
269         
270         act = ActionManager::register_action (editor_actions, "pitch-shift-region", _("Transpose"), mem_fun(*this, &Editor::pitch_shift_regions));
271         ActionManager::session_sensitive_actions.push_back (act);
272         
273         act = ActionManager::register_action (editor_actions, "set-fade-in-length", _("Set Fade In Length"), bind (mem_fun(*this, &Editor::set_fade_length), true));
274         ActionManager::session_sensitive_actions.push_back (act);
275         act = ActionManager::register_action (editor_actions, "toggle-fade-in-active", _("Toggle Fade In Active"), bind (mem_fun(*this, &Editor::toggle_fade_active), true));
276         ActionManager::session_sensitive_actions.push_back (act);
277         act = ActionManager::register_action (editor_actions, "set-fade-out-length", _("Set Fade Out Length"), bind (mem_fun(*this, &Editor::set_fade_length), false));
278         ActionManager::session_sensitive_actions.push_back (act);
279         act = ActionManager::register_action (editor_actions, "toggle-fade-out-active", _("Toggle Fade Out Active"), bind (mem_fun(*this, &Editor::toggle_fade_active), false));
280         ActionManager::session_sensitive_actions.push_back (act);
281
282         act = ActionManager::register_action (editor_actions, "align-regions-start", _("Align Regions Start"), bind (mem_fun(*this, &Editor::align), ARDOUR::Start));
283         ActionManager::session_sensitive_actions.push_back (act);
284         act = ActionManager::register_action (editor_actions, "align-regions-start-relative", _("Align Regions Start Relative"), bind (mem_fun(*this, &Editor::align_relative), ARDOUR::Start));
285         ActionManager::session_sensitive_actions.push_back (act);
286         act = ActionManager::register_action (editor_actions, "align-regions-end", _("Align Regions End"), bind (mem_fun(*this, &Editor::align), ARDOUR::End));
287         ActionManager::session_sensitive_actions.push_back (act);
288         act = ActionManager::register_action (editor_actions, "align-regions-end-relative", _("Align Regions End Relative"), bind (mem_fun(*this, &Editor::align_relative), ARDOUR::End));
289         ActionManager::session_sensitive_actions.push_back (act);
290
291         act = ActionManager::register_action (editor_actions, "align-regions-sync", _("Align Regions Sync"), bind (mem_fun(*this, &Editor::align), ARDOUR::SyncPoint));
292         ActionManager::session_sensitive_actions.push_back (act);
293         act = ActionManager::register_action (editor_actions, "align-regions-sync-relative", _("Align Regions Sync Relative"), bind (mem_fun(*this, &Editor::align_relative), ARDOUR::SyncPoint));
294         ActionManager::session_sensitive_actions.push_back (act);
295         
296         act = ActionManager::register_action (editor_actions, "audition-region", _("Audition Region"), mem_fun(*this, &Editor::audition_selected_region));
297         ActionManager::session_sensitive_actions.push_back (act);
298         act = ActionManager::register_action (editor_actions, "brush-at-mouse", _("Brush at Mouse"), mem_fun(*this, &Editor::kbd_brush));
299         ActionManager::session_sensitive_actions.push_back (act);
300         act = ActionManager::register_action (editor_actions, "mute-unmute-region", _("Mute/Unmute Region"), mem_fun(*this, &Editor::kbd_mute_unmute_region));
301         ActionManager::session_sensitive_actions.push_back (act);
302
303         act = ActionManager::register_action (editor_actions, "set-playhead", _("Set Playhead"), mem_fun(*this, &Editor::set_playhead_cursor));
304         ActionManager::session_sensitive_actions.push_back (act);
305         act = ActionManager::register_action (editor_actions, "set-edit-point", _("Set Edit Point"), mem_fun(*this, &Editor::set_edit_point));
306         ActionManager::session_sensitive_actions.push_back (act);
307         act = ActionManager::register_action (editor_actions, "split-region", _("Split Region"), mem_fun(*this, &Editor::split));
308         ActionManager::session_sensitive_actions.push_back (act);
309         act = ActionManager::register_action (editor_actions, "set-region-sync-position", _("Set Region Sync Position"), mem_fun(*this, &Editor::set_region_sync_from_edit_point));
310         ActionManager::session_sensitive_actions.push_back (act);
311
312         undo_action = act = ActionManager::register_action (editor_actions, "undo", _("Undo"), bind (mem_fun(*this, &Editor::undo), 1U));
313         ActionManager::session_sensitive_actions.push_back (act);
314         redo_action = act = ActionManager::register_action (editor_actions, "redo", _("Redo"), bind (mem_fun(*this, &Editor::redo), 1U));
315         ActionManager::session_sensitive_actions.push_back (act);
316
317         act = ActionManager::register_action (editor_actions, "export-session", _("Export Session"), mem_fun(*this, &Editor::export_session));
318         ActionManager::session_sensitive_actions.push_back (act);
319         act = ActionManager::register_action (editor_actions, "export-range", _("Export Range"), mem_fun(*this, &Editor::export_selection));
320         ActionManager::session_sensitive_actions.push_back (act);
321
322         act = ActionManager::register_action (editor_actions, "editor-separate", _("Separate"), mem_fun(*this, &Editor::separate_region_from_selection));
323         ActionManager::session_sensitive_actions.push_back (act);
324         act = ActionManager::register_action (editor_actions, "editor-crop", _("Crop"), mem_fun(*this, &Editor::crop_region_to_selection));
325         ActionManager::session_sensitive_actions.push_back (act);
326         act = ActionManager::register_action (editor_actions, "editor-cut", _("Cut"), mem_fun(*this, &Editor::cut));
327         ActionManager::session_sensitive_actions.push_back (act);
328         /* Note: for now, editor-delete does the exact same thing as editor-cut */
329         act = ActionManager::register_action (editor_actions, "editor-delete", _("Delete"), mem_fun(*this, &Editor::cut));
330         ActionManager::session_sensitive_actions.push_back (act);
331         act = ActionManager::register_action (editor_actions, "editor-copy", _("Copy"), mem_fun(*this, &Editor::copy));
332         ActionManager::session_sensitive_actions.push_back (act);
333         act = ActionManager::register_action (editor_actions, "editor-paste", _("Paste"), mem_fun(*this, &Editor::keyboard_paste));
334         ActionManager::session_sensitive_actions.push_back (act);
335         act = ActionManager::register_action (editor_actions, "duplicate-region", _("Duplicate Region"), bind (mem_fun(*this, &Editor::duplicate_dialog), false));
336         ActionManager::session_sensitive_actions.push_back (act);
337         act = ActionManager::register_action (editor_actions, "multi-duplicate-region", _("Multi-Duplicate Region"), bind (mem_fun(*this, &Editor::duplicate_dialog), true));
338         ActionManager::session_sensitive_actions.push_back (act);
339         act = ActionManager::register_action (editor_actions, "duplicate-range", _("Duplicate Range"), bind (mem_fun(*this, &Editor::duplicate_dialog), false));
340         ActionManager::session_sensitive_actions.push_back (act);
341         act = ActionManager::register_action (editor_actions, "insert-region", _("Insert Region"), mem_fun(*this, &Editor::keyboard_insert_region_list_selection));
342         ActionManager::session_sensitive_actions.push_back (act);
343         act = ActionManager::register_action (editor_actions, "reverse-region", _("Reverse Region"), mem_fun(*this, &Editor::reverse_region));
344         ActionManager::session_sensitive_actions.push_back (act);
345         act = ActionManager::register_action (editor_actions, "normalize-region", _("Normalize Region"), mem_fun(*this, &Editor::normalize_region));
346         ActionManager::session_sensitive_actions.push_back (act);
347         act = ActionManager::register_action (editor_actions, "crop", _("Crop"), mem_fun(*this, &Editor::crop_region_to_selection));
348         ActionManager::session_sensitive_actions.push_back (act);
349         act = ActionManager::register_action (editor_actions, "insert-chunk", _("Insert Chunk"), bind (mem_fun(*this, &Editor::paste_named_selection), 1.0f));
350         ActionManager::session_sensitive_actions.push_back (act);
351
352         act = ActionManager::register_action (editor_actions, "split-at-edit-cursor", _("Split At Edit Point"), mem_fun(*this, &Editor::split_region));
353         ActionManager::edit_point_in_region_sensitive_actions.push_back (act);
354
355         act = ActionManager::register_action (editor_actions, "start-range", _("Start Range"), mem_fun(*this, &Editor::keyboard_selection_begin));
356         ActionManager::session_sensitive_actions.push_back (act);
357         act = ActionManager::register_action (editor_actions, "finish-range", _("Finish Range"), bind (mem_fun(*this, &Editor::keyboard_selection_finish), false));
358         ActionManager::session_sensitive_actions.push_back (act);
359         act = ActionManager::register_action (editor_actions, "finish-add-range", _("Finish add Range"), bind (mem_fun(*this, &Editor::keyboard_selection_finish), true));
360         ActionManager::session_sensitive_actions.push_back (act);
361
362         act = ActionManager::register_action (editor_actions, "extend-range-to-end-of-region", _("Extend Range to End of Region"), bind (mem_fun(*this, &Editor::extend_selection_to_end_of_region), false));
363         ActionManager::session_sensitive_actions.push_back (act);
364         act = ActionManager::register_action (editor_actions, "extend-range-to-start-of-region", _("Extend Range to Start of Region"), bind (mem_fun(*this, &Editor::extend_selection_to_start_of_region), false));
365         ActionManager::session_sensitive_actions.push_back (act);
366
367         act = ActionManager::register_toggle_action (editor_actions, "toggle-follow-playhead", _("Follow Playhead"), (mem_fun(*this, &Editor::toggle_follow_playhead)));
368         ActionManager::session_sensitive_actions.push_back (act);
369         act = ActionManager::register_action (editor_actions, "remove-last-capture", _("Remove Last Capture"), (mem_fun(*this, &Editor::remove_last_capture)));
370         ActionManager::session_sensitive_actions.push_back (act);
371
372         Glib::RefPtr<ActionGroup> zoom_actions = ActionGroup::create (X_("Zoom"));
373         RadioAction::Group zoom_group;
374
375         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-left", _("Zoom Focus Left"), bind (mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusLeft));
376         ActionManager::session_sensitive_actions.push_back (act);
377         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-right", _("Zoom Focus Right"), bind (mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusRight));
378         ActionManager::session_sensitive_actions.push_back (act);
379         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-center", _("Zoom Focus Center"), bind (mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusCenter));
380         ActionManager::session_sensitive_actions.push_back (act);
381         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-playhead", _("Zoom Focus Playhead"), bind (mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusPlayhead));
382         ActionManager::session_sensitive_actions.push_back (act);
383         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-mouse", _("Zoom Focus Mouse"), bind (mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusMouse));
384         ActionManager::session_sensitive_actions.push_back (act);
385         ActionManager::register_radio_action (zoom_actions, zoom_group, "zoom-focus-edit", _("Zoom Focus Edit"), bind (mem_fun(*this, &Editor::zoom_focus_chosen), Editing::ZoomFocusEdit));
386         ActionManager::session_sensitive_actions.push_back (act);
387
388         Glib::RefPtr<ActionGroup> mouse_mode_actions = ActionGroup::create (X_("MouseMode"));
389         RadioAction::Group mouse_mode_group;
390
391         ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-object", _("Object Tool"), bind (mem_fun(*this, &Editor::set_mouse_mode), Editing::MouseObject, false));
392         ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-range", _("Range Tool"), bind (mem_fun(*this, &Editor::set_mouse_mode), Editing::MouseRange, false));
393         ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-gain", _("Gain Tool"), bind (mem_fun(*this, &Editor::set_mouse_mode), Editing::MouseGain, false));
394         ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-zoom", _("Zoom Tool"), bind (mem_fun(*this, &Editor::set_mouse_mode), Editing::MouseZoom, false));
395         ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-timefx", _("Timefx Tool"), bind (mem_fun(*this, &Editor::set_mouse_mode), Editing::MouseTimeFX, false));
396
397         RadioAction::Group edit_point_group;
398         ActionManager::register_radio_action (editor_actions, edit_point_group, X_("edit-at-playhead"), _("Playhead"), (bind (mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtPlayhead)));
399         ActionManager::register_radio_action (editor_actions, edit_point_group, X_("edit-at-mouse"), _("Mouse"), (bind (mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtPlayhead)));
400         ActionManager::register_radio_action (editor_actions, edit_point_group, X_("edit-at-selected-marker"), _("Marker"), (bind (mem_fun(*this, &Editor::edit_point_chosen), Editing::EditAtPlayhead)));
401
402         ActionManager::register_action (editor_actions, "cycle-edit-point", _("Change edit point"), bind (mem_fun (*this, &Editor::cycle_edit_point), false));
403         ActionManager::register_action (editor_actions, "cycle-edit-point-with-marker", _("Change edit point (w/Marker)"), bind (mem_fun (*this, &Editor::cycle_edit_point), true));
404
405         ActionManager::register_action (editor_actions, "set-edit-splice", _("Splice"), bind (mem_fun (*this, &Editor::set_edit_mode), Splice));
406         ActionManager::register_action (editor_actions, "set-edit-slide", _("Slide"), bind (mem_fun (*this, &Editor::set_edit_mode), Slide));
407         ActionManager::register_action (editor_actions, "toggle-edit-mode", _("Toggle Edit Mode"), mem_fun (*this, &Editor::cycle_edit_mode));
408
409         ActionManager::register_action (editor_actions, X_("SnapTo"), _("Snap To"));
410         ActionManager::register_action (editor_actions, X_("SnapMode"), _("Snap Mode"));
411
412         RadioAction::Group snap_mode_group;
413         ActionManager::register_radio_action (editor_actions, snap_mode_group, X_("snap-off"), _("No Grid"), (bind (mem_fun(*this, &Editor::snap_mode_chosen), Editing::SnapOff)));
414         ActionManager::register_radio_action (editor_actions, snap_mode_group, X_("snap-normal"), _("Grid"), (bind (mem_fun(*this, &Editor::snap_mode_chosen), Editing::SnapNormal)));
415         ActionManager::register_radio_action (editor_actions, snap_mode_group, X_("snap-magnetic"), _("Magnetic"), (bind (mem_fun(*this, &Editor::snap_mode_chosen), Editing::SnapMagnetic)));
416
417         ActionManager::register_action (editor_actions, X_("cycle-snap-mode"), _("Next Snap Mode"), mem_fun (*this, &Editor::cycle_snap_mode));
418         ActionManager::register_action (editor_actions, X_("cycle-snap-choice"), _("Next Snap Choice"), mem_fun (*this, &Editor::cycle_snap_choice));
419
420         Glib::RefPtr<ActionGroup> snap_actions = ActionGroup::create (X_("Snap"));
421         RadioAction::Group snap_choice_group;
422
423         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-cd-frame"), _("Snap to cd frame"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToCDFrame)));
424         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-smpte-frame"), _("Snap to SMPTE frame"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToSMPTEFrame)));
425         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-smpte-seconds"), _("Snap to SMPTE seconds"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToSMPTESeconds)));
426         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-smpte-minutes"), _("Snap to SMPTE minutes"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToSMPTEMinutes)));
427         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-seconds"), _("Snap to seconds"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToSeconds)));
428         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-minutes"), _("Snap to minutes"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToMinutes)));
429         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-thirtyseconds"), _("Snap to thirtyseconds"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToAThirtysecondBeat)));
430         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-asixteenthbeat"), _("Snap to asixteenthbeat"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToASixteenthBeat)));
431         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-eighths"), _("Snap to eighths"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToAEighthBeat)));
432         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-quarters"), _("Snap to quarters"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToAQuarterBeat)));
433         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-thirds"), _("Snap to thirds"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToAThirdBeat)));
434         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-beat"), _("Snap to beat"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBeat)));
435         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-bar"), _("Snap to bar"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToBar)));
436         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-mark"), _("Snap to mark"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToMark)));
437         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-region-start"), _("Snap to region start"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToRegionStart)));
438         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-region-end"), _("Snap to region end"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToRegionEnd)));
439         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-region-sync"), _("Snap to region sync"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToRegionSync)));
440         ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-region-boundary"), _("Snap to region boundary"), (bind (mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToRegionBoundary)));
441
442         /* REGION LIST */
443
444         Glib::RefPtr<ActionGroup> rl_actions = ActionGroup::create (X_("RegionList"));
445         RadioAction::Group sort_type_group;
446         RadioAction::Group sort_order_group;
447
448         /* the region list popup menu */
449         ActionManager::register_action (rl_actions, X_("RegionListSort"), _("Sort"));
450
451         act = ActionManager::register_action (rl_actions, X_("rlAudition"), _("Audition"), mem_fun(*this, &Editor::audition_region_from_region_list));
452         ActionManager::region_list_selection_sensitive_actions.push_back (act);
453         act = ActionManager::register_action (rl_actions, X_("rlHide"), _("Hide"), mem_fun(*this, &Editor::hide_region_from_region_list));
454         ActionManager::region_list_selection_sensitive_actions.push_back (act);
455         act = ActionManager::register_action (rl_actions, X_("rlRemove"), _("Remove"), mem_fun (*this, &Editor::remove_region_from_region_list));
456         ActionManager::region_list_selection_sensitive_actions.push_back (act);
457         ActionManager::register_toggle_action (rl_actions, X_("rlShowAll"), _("Show all"), mem_fun(*this, &Editor::toggle_full_region_list));
458         ActionManager::register_toggle_action (rl_actions, X_("rlShowAuto"), _("Show automatic regions"), mem_fun(*this, &Editor::toggle_show_auto_regions));
459
460         ActionManager::register_radio_action (rl_actions, sort_order_group, X_("SortAscending"),  _("Ascending"),
461                                bind (mem_fun(*this, &Editor::reset_region_list_sort_direction), true));
462         ActionManager::register_radio_action (rl_actions, sort_order_group, X_("SortDescending"),   _("Descending"),
463                                bind (mem_fun(*this, &Editor::reset_region_list_sort_direction), false));
464         
465         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionName"),  _("By Region Name"),
466                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), ByName));
467         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionLength"),  _("By Region Length"),
468                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), ByLength));
469         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionPosition"),  _("By Region Position"),
470                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), ByPosition));
471         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionTimestamp"),  _("By Region Timestamp"),
472                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), ByTimestamp));
473         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionStartinFile"),  _("By Region Start in File"),
474                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), ByStartInFile));
475         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionEndinFile"),  _("By Region End in File"),
476                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), ByEndInFile));
477         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileName"),  _("By Source File Name"),
478                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), BySourceFileName));
479         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileLength"),  _("By Source File Length"),
480                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), BySourceFileLength));
481         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileCreationDate"),  _("By Source File Creation Date"),
482                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), BySourceFileCreationDate));
483         ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFilesystem"),  _("By Source Filesystem"),
484                                bind (mem_fun(*this, &Editor::reset_region_list_sort_type), BySourceFileFS));
485
486
487         /* the next two are duplicate items with different names for use in two different contexts */
488
489         ActionManager::register_action (editor_actions, X_("addExistingAudioFiles"), _("Add Existing Audio"), mem_fun (*this, &Editor::external_audio_dialog));
490
491         act = ActionManager::register_action (editor_actions, X_("addExternalAudioToRegionList"), _("Add External Audio"), bind (mem_fun(*this, &Editor::add_external_audio_action), ImportAsRegion));
492         ActionManager::session_sensitive_actions.push_back (act);
493
494         ActionManager::register_toggle_action (editor_actions, X_("ToggleWaveformVisibility"), _("Show Waveforms"), mem_fun (*this, &Editor::toggle_waveform_visibility));
495         ActionManager::register_toggle_action (editor_actions, X_("ToggleWaveformsWhileRecording"), _("Show Waveforms While Recording"), mem_fun (*this, &Editor::toggle_waveforms_while_recording));
496         ActionManager::register_toggle_action (editor_actions, X_("ToggleMeasureVisibility"), _("Show Measures"), mem_fun (*this, &Editor::toggle_measure_visibility));
497
498         /* if there is a logo in the editor canvas, its always visible at startup */
499
500         act = ActionManager::register_toggle_action (editor_actions, X_("ToggleLogoVisibility"), _("Show Logo"), mem_fun (*this, &Editor::toggle_logo_visibility));
501         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
502         tact->set_active (true);
503         
504         RadioAction::Group layer_model_group;
505
506         ActionManager::register_radio_action (editor_actions, layer_model_group,  X_("LayerLaterHigher"), _("Later is Higher"), bind (mem_fun (*this, &Editor::set_layer_model), LaterHigher));
507         ActionManager::register_radio_action (editor_actions, layer_model_group,  X_("LayerMoveAddHigher"), _("Most Recently Moved/Added is Higher"), bind (mem_fun (*this, &Editor::set_layer_model), MoveAddHigher));
508         ActionManager::register_radio_action (editor_actions, layer_model_group,  X_("LayerAddHigher"), _("Most Recently Added is Higher"), bind (mem_fun (*this, &Editor::set_layer_model), AddHigher));
509
510         RadioAction::Group smpte_group;
511
512         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte23976"), _("23.976"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_23976));
513         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte24"), _("24"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_24));
514         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte24976"), _("24.976"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_24976));
515         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte25"), _("25"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_25));
516         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte2997"), _("29.97"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_2997));
517         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte2997drop"), _("29.97 drop"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_2997drop));
518         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte30"), _("30"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_30));
519         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte30drop"), _("30 drop"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_30drop));
520         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte5994"), _("59.94"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_5994));
521         ActionManager::register_radio_action (editor_actions, smpte_group,  X_("Smpte60"), _("60"), bind (mem_fun (*this, &Editor::smpte_fps_chosen), smpte_60));
522
523         RadioAction::Group pullup_group;
524
525         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupPlus4Plus1"), _("+4.1667% + 0.1%"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_Plus4Plus1));
526         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupPlus4"), _("+4.1667%"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_Plus4));
527         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupPlus4Minus1"), _("+4.1667% - 0.1%"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_Plus4Minus1));
528         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupPlus1"), _("+ 0.1%"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_Plus1));
529         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupNone"), _("None"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_None));
530         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupMinus1"), _("- 0.1%"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_Minus1));
531         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupMinus4Plus1"), _("-4.1667% + 0.1%"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_Minus4Plus1));
532         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupMinus4"), _("-4.1667%"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_Minus4));
533         ActionManager::register_radio_action (editor_actions, pullup_group,  X_("PullupMinus4Minus1"), _("-4.1667% - 0.1%"), bind (mem_fun (*this, &Editor::video_pullup_chosen), Session::pullup_Minus4Minus1));
534
535         RadioAction::Group subframe_group;
536
537         ActionManager::register_radio_action (editor_actions, subframe_group,  X_("Subframes80"), _("80 per frame"), bind (mem_fun (*this, 
538 &Editor::subframes_per_frame_chosen), 80));
539         ActionManager::register_radio_action (editor_actions, subframe_group,  X_("Subframes100"), _("100 per frame"), bind (mem_fun (*this, 
540 &Editor::subframes_per_frame_chosen), 100));
541
542         ActionManager::add_action_group (rl_actions);
543         ActionManager::add_action_group (zoom_actions);
544         ActionManager::add_action_group (mouse_mode_actions);
545         ActionManager::add_action_group (snap_actions);
546         ActionManager::add_action_group (editor_actions);
547 }
548
549 void
550 Editor::toggle_waveform_visibility ()
551 {
552         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleWaveformVisibility"));
553         if (act) {
554                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
555                 set_show_waveforms (tact->get_active());
556         }
557 }
558
559 void
560 Editor::toggle_waveforms_while_recording ()
561 {
562         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleWaveformsWhileRecording"));
563         if (act) {
564                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
565                 set_show_waveforms_recording (tact->get_active());
566         }
567 }
568
569 void
570 Editor::toggle_measure_visibility ()
571 {
572         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleMeasureVisibility"));
573         if (act) {
574                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
575                 set_show_measures (tact->get_active());
576         }
577 }
578
579 void
580 Editor::toggle_logo_visibility ()
581 {
582         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleLogoVisibility"));
583
584         if (act) {
585                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
586                 if (logo_item) {
587                         if (tact->get_active()) {
588                                 logo_item->show ();
589                         } else {
590                                 logo_item->hide ();
591                         }
592                 }
593         }
594 }
595
596 void
597 Editor::set_crossfade_model (CrossfadeModel model)
598 {
599         RefPtr<Action> act;
600
601         /* this is driven by a toggle on a radio group, and so is invoked twice,
602            once for the item that became inactive and once for the one that became
603            active.
604         */
605
606         switch (model) {
607         case FullCrossfade:
608                 act = ActionManager::get_action (X_("Editor"), X_("CrossfadesFull"));
609                 break;
610         case ShortCrossfade:
611                 act = ActionManager::get_action (X_("Editor"), X_("CrossfadesShort"));
612                 break;
613         }
614         
615         if (act) {
616                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
617                 if (ract && ract->get_active()) {
618                         Config->set_xfade_model (model);
619                 }
620         }
621 }
622
623 void
624 Editor::update_crossfade_model ()
625 {
626         RefPtr<Action> act;
627
628         switch (Config->get_xfade_model()) {
629         case FullCrossfade:
630                 act = ActionManager::get_action (X_("Editor"), X_("CrossfadesFull"));
631                 break;
632         case ShortCrossfade:
633                 act = ActionManager::get_action (X_("Editor"), X_("CrossfadesShort"));
634                 break;
635         }
636
637         if (act) {
638                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
639                 if (ract && !ract->get_active()) {
640                         ract->set_active (true);
641                 }
642         }
643 }
644
645 void
646 Editor::update_smpte_mode ()
647 {
648         ENSURE_GUI_THREAD(mem_fun(*this, &Editor::update_smpte_mode));
649
650         RefPtr<Action> act;
651         const char* action = 0;
652
653         switch (Config->get_smpte_format()) {
654         case smpte_23976:
655                 action = X_("Smpte23976");
656                 break;
657         case smpte_24:
658                 action = X_("Smpte24");
659                 break;
660         case smpte_24976:
661                 action = X_("Smpte24976");
662                 break;
663         case smpte_25:
664                 action = X_("Smpte25");
665                 break;
666         case smpte_2997:
667                 action = X_("Smpte2997");
668                 break;
669         case smpte_2997drop:
670                 action = X_("Smpte2997drop");
671                 break;
672         case smpte_30:
673                 action = X_("Smpte30");
674                 break;
675         case smpte_30drop:
676                 action = X_("Smpte30drop");
677                 break;
678         case smpte_5994:
679                 action = X_("Smpte5994");
680                 break;
681         case smpte_60:
682                 action = X_("Smpte60");
683                 break;
684         }
685
686         act = ActionManager::get_action (X_("Editor"), action);
687
688         if (act) {
689                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
690                 if (ract && !ract->get_active()) {
691                         ract->set_active (true);
692                 }
693         }
694 }
695
696 void
697 Editor::update_video_pullup ()
698 {
699         ENSURE_GUI_THREAD (mem_fun(*this, &Editor::update_video_pullup));
700
701         RefPtr<Action> act;
702         const char* action = 0;
703
704         float pullup = Config->get_video_pullup();
705
706         if ( pullup < (-4.1667 - 0.1) * 0.99) {
707                 action = X_("PullupMinus4Minus1");
708         } else if ( pullup < (-4.1667) * 0.99 ) {
709                 action = X_("PullupMinus4");
710         } else if ( pullup < (-4.1667 + 0.1) * 0.99 ) {
711                 action = X_("PullupMinus4Plus1");
712         } else if ( pullup < (-0.1) * 0.99 ) {
713                 action = X_("PullupMinus1");
714         } else if (pullup > (4.1667 + 0.1) * 0.99 ) {
715                 action = X_("PullupPlus4Plus1");
716         } else if ( pullup > (4.1667) * 0.99 ) {
717                 action = X_("PullupPlus4");
718         } else if ( pullup > (4.1667 - 0.1) * 0.99) {
719                 action = X_("PullupPlus4Minus1");
720         } else if ( pullup > (0.1) * 0.99 ) {
721                 action = X_("PullupPlus1");
722         } else {
723                 action = X_("PullupNone");
724         }
725
726         act = ActionManager::get_action (X_("Editor"), action);
727
728         if (act) {
729                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
730                 if (ract && !ract->get_active()) {
731                         ract->set_active (true);
732                 }
733         }
734 }
735
736 void
737 Editor::update_layering_model ()
738 {
739         RefPtr<Action> act;
740
741         switch (Config->get_layer_model()) {
742         case LaterHigher:
743                 act = ActionManager::get_action (X_("Editor"), X_("LayerLaterHigher"));
744                 break;
745         case MoveAddHigher:
746                 act = ActionManager::get_action (X_("Editor"), X_("LayerMoveAddHigher"));
747                 break;
748         case AddHigher:
749                 act = ActionManager::get_action (X_("Editor"), X_("LayerAddHigher"));
750                 break;
751         }
752
753         if (act) {
754                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
755                 if (ract && !ract->get_active()) {
756                         ract->set_active (true);
757                 }
758         }
759 }
760
761 void
762 Editor::set_layer_model (LayerModel model)
763 {
764         /* this is driven by a toggle on a radio group, and so is invoked twice,
765            once for the item that became inactive and once for the one that became
766            active.
767         */
768
769         RefPtr<Action> act;
770
771         switch (model) {
772         case LaterHigher:
773                 act = ActionManager::get_action (X_("Editor"), X_("LayerLaterHigher"));
774                 break;
775         case MoveAddHigher:
776                 act = ActionManager::get_action (X_("Editor"), X_("LayerMoveAddHigher"));
777                 break;
778         case AddHigher:
779                 act = ActionManager::get_action (X_("Editor"), X_("LayerAddHigher"));
780                 break;
781         }
782         
783         if (act) {
784                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
785                 if (ract && ract->get_active() && Config->get_layer_model() != model) {
786                         Config->set_layer_model (model);
787                 }
788         }
789 }
790
791 RefPtr<RadioAction>
792 Editor::snap_type_action (SnapType type)
793 {
794
795         const char* action = 0;
796         RefPtr<Action> act;
797         
798         switch (type) {
799         case Editing::SnapToCDFrame:
800                 action = "snap-to-cd-frame";
801                 break;
802         case Editing::SnapToSMPTEFrame:
803                 action = "snap-to-smpte-frame";
804                 break;
805         case Editing::SnapToSMPTESeconds:
806                 action = "snap-to-smpte-seconds";
807                 break;
808         case Editing::SnapToSMPTEMinutes:
809                 action = "snap-to-smpte-minutes";
810                 break;
811         case Editing::SnapToSeconds:
812                 action = "snap-to-seconds";
813                 break;
814         case Editing::SnapToMinutes:
815                 action = "snap-to-minutes";
816                 break;
817         case Editing::SnapToAThirtysecondBeat:
818                 action = "snap-to-thirtyseconds";
819                 break;
820         case Editing::SnapToASixteenthBeat:
821                 action = "snap-to-asixteenthbeat";
822                 break;
823         case Editing::SnapToAEighthBeat:
824                 action = "snap-to-eighths";
825                 break;
826         case Editing::SnapToAQuarterBeat:
827                 action = "snap-to-quarters";
828                 break;
829         case Editing::SnapToAThirdBeat:
830                 action = "snap-to-thirds";
831                 break;
832         case Editing::SnapToBeat:
833                 action = "snap-to-beat";
834                 break;
835         case Editing::SnapToBar:
836                 action = "snap-to-bar";
837                 break;
838         case Editing::SnapToMark:
839                 action = "snap-to-mark";
840                 break;
841         case Editing::SnapToRegionStart:
842                 action = "snap-to-region-start";
843                 break;
844         case Editing::SnapToRegionEnd:
845                 action = "snap-to-region-end";
846                 break;
847         case Editing::SnapToRegionSync:
848                 action = "snap-to-region-sync";
849                 break;
850         case Editing::SnapToRegionBoundary:
851                 action = "snap-to-region-boundary";
852                 break;
853         default:
854                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible snap-to type", (int) type) << endmsg;
855                 /*NOTREACHED*/
856         }
857
858         act = ActionManager::get_action (X_("Snap"), action);
859
860         if (act) {
861                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
862                 return ract;
863
864         } else  {
865                 error << string_compose (_("programming error: %1"), "Editor::snap_type_chosen could not find action to match type.") << endmsg;
866                 return RefPtr<RadioAction>();
867         }
868 }
869
870 void
871 Editor::cycle_snap_choice()
872 {
873         switch (snap_type) {
874         case Editing::SnapToCDFrame:
875                 set_snap_to (Editing::SnapToSMPTEFrame);
876                 break;
877         case Editing::SnapToSMPTEFrame:
878                 set_snap_to (Editing::SnapToSMPTESeconds);
879                 break;
880         case Editing::SnapToSMPTESeconds:
881                 set_snap_to (Editing::SnapToSMPTEMinutes);
882                 break;
883         case Editing::SnapToSMPTEMinutes:
884                 set_snap_to (Editing::SnapToSeconds);
885                 break;
886         case Editing::SnapToSeconds:
887                 set_snap_to (Editing::SnapToMinutes);
888                 break;
889         case Editing::SnapToMinutes:
890                 set_snap_to (Editing::SnapToAThirtysecondBeat);
891                 break;
892         case Editing::SnapToAThirtysecondBeat:
893                 set_snap_to (Editing::SnapToASixteenthBeat);
894                 break;
895         case Editing::SnapToASixteenthBeat:
896                 set_snap_to (Editing::SnapToAEighthBeat);
897                 break;
898         case Editing::SnapToAEighthBeat:
899                 set_snap_to (Editing::SnapToAQuarterBeat);
900                 break;
901         case Editing::SnapToAQuarterBeat:
902                 set_snap_to (Editing::SnapToAThirdBeat);
903                 break;
904         case Editing::SnapToAThirdBeat:
905                 set_snap_to (Editing::SnapToBeat);
906                 break;
907         case Editing::SnapToBeat:
908                 set_snap_to (Editing::SnapToBar);
909                 break;
910         case Editing::SnapToBar:
911                 set_snap_to (Editing::SnapToMark);
912                 break;
913         case Editing::SnapToMark:
914                 set_snap_to (Editing::SnapToRegionStart);
915                 break;
916         case Editing::SnapToRegionStart:
917                 set_snap_to (Editing::SnapToRegionEnd);
918                 break;
919         case Editing::SnapToRegionEnd:
920                 set_snap_to (Editing::SnapToRegionSync);
921                 break;
922         case Editing::SnapToRegionSync:
923                 set_snap_to (Editing::SnapToRegionBoundary);
924                 break;
925         case Editing::SnapToRegionBoundary:
926                 set_snap_to (Editing::SnapToCDFrame);
927                 break;
928         }
929 }
930
931 void
932 Editor::snap_type_chosen (SnapType type)
933 {
934         /* this is driven by a toggle on a radio group, and so is invoked twice,
935            once for the item that became inactive and once for the one that became
936            active.
937         */
938
939         RefPtr<RadioAction> ract = snap_type_action (type);
940
941         if (ract && ract->get_active()) {
942                 set_snap_to (type);
943         }
944 }
945
946 RefPtr<RadioAction>
947 Editor::snap_mode_action (SnapMode mode)
948 {
949         const char* action = 0;
950         RefPtr<Action> act;
951         
952         switch (mode) {
953         case Editing::SnapOff:
954                 action = X_("snap-off");
955                 break;
956         case Editing::SnapNormal:
957                 action = X_("snap-normal");
958                 break;
959         case Editing::SnapMagnetic:
960                 action = X_("snap-magnetic");
961                 break;
962         default:
963                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible snap mode type", (int) mode) << endmsg;
964                 /*NOTREACHED*/
965         }
966         
967         act = ActionManager::get_action (X_("Editor"), action);
968         
969         if (act) {
970                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
971                 return ract;
972                 
973         } else  {
974                 error << string_compose (_("programming error: %1: %2"), "Editor::snap_mode_chosen could not find action to match mode.", action) << endmsg;
975                 return RefPtr<RadioAction> ();
976         }
977 }
978
979 void
980 Editor::cycle_snap_mode ()
981 {
982         switch (snap_mode) {
983         case SnapOff:
984                 set_snap_mode (SnapNormal);
985                 break;
986         case SnapNormal:
987                 set_snap_mode (SnapMagnetic);
988                 break;
989         case SnapMagnetic:
990                 set_snap_mode (SnapOff);
991                 break;
992         }
993 }
994
995 void
996 Editor::snap_mode_chosen (SnapMode mode)
997 {
998         /* this is driven by a toggle on a radio group, and so is invoked twice,
999            once for the item that became inactive and once for the one that became
1000            active.
1001         */
1002
1003         RefPtr<RadioAction> ract = snap_mode_action (mode);
1004
1005         if (ract && ract->get_active()) {
1006                 set_snap_mode (mode);
1007         }
1008 }
1009
1010 RefPtr<RadioAction>
1011 Editor::edit_point_action (EditPoint ep)
1012 {
1013         const char* action = 0;
1014         RefPtr<Action> act;
1015         
1016         switch (ep) {
1017         case Editing::EditAtPlayhead:
1018                 action = X_("edit-at-playhead");
1019                 break;
1020         case Editing::EditAtSelectedMarker:
1021                 action = X_("edit-at-selected-marker");
1022                 break;
1023         case Editing::EditAtMouse:
1024                 action = X_("edit-at-mouse");
1025                 break;
1026         default:
1027                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible edit point type", (int) ep) << endmsg;
1028                 /*NOTREACHED*/
1029         }
1030         
1031         act = ActionManager::get_action (X_("Editor"), action);
1032         
1033         if (act) {
1034                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1035                 return ract;
1036                 
1037         } else  {
1038                 error << string_compose (_("programming error: %1: %2"), "Editor::edit_point_action could not find action to match edit point.", action) << endmsg;
1039                 return RefPtr<RadioAction> ();
1040         }
1041 }
1042
1043 void
1044 Editor::edit_point_chosen (EditPoint ep)
1045 {
1046         /* this is driven by a toggle on a radio group, and so is invoked twice,
1047            once for the item that became inactive and once for the one that became
1048            active.
1049         */
1050
1051         RefPtr<RadioAction> ract = edit_point_action (ep);
1052
1053         if (ract && ract->get_active()) {
1054                 set_edit_point_preference (ep);
1055         }
1056 }
1057
1058
1059 RefPtr<RadioAction>
1060 Editor::zoom_focus_action (ZoomFocus focus)
1061 {
1062         const char* action = 0;
1063         RefPtr<Action> act;
1064         
1065         switch (focus) {
1066         case ZoomFocusLeft:
1067                 action = X_("zoom-focus-left");
1068                 break;
1069         case ZoomFocusRight:
1070                 action = X_("zoom-focus-right");
1071                 break;
1072         case ZoomFocusCenter:
1073                 action = X_("zoom-focus-center");
1074                 break;
1075         case ZoomFocusPlayhead:
1076                 action = X_("zoom-focus-playhead");
1077                 break;
1078         case ZoomFocusMouse:
1079                 action = X_("zoom-focus-mouse");
1080                 break;
1081         case ZoomFocusEdit:
1082                 action = X_("zoom-focus-edit");
1083                 break;
1084         default:
1085                 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible focus type", (int) focus) << endmsg;
1086                 /*NOTREACHED*/
1087         }
1088         
1089         act = ActionManager::get_action (X_("Zoom"), action);
1090         
1091         if (act) {
1092                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1093                 return ract;
1094         } else {
1095                 error << string_compose (_("programming error: %1: %2"), "Editor::zoom_focus_action could not find action to match focus.", action) << endmsg;
1096         }
1097
1098         return RefPtr<RadioAction> ();
1099 }
1100
1101 void
1102 Editor::zoom_focus_chosen (ZoomFocus focus)
1103 {
1104         /* this is driven by a toggle on a radio group, and so is invoked twice,
1105            once for the item that became inactive and once for the one that became
1106            active.
1107         */
1108
1109         RefPtr<RadioAction> ract = zoom_focus_action (focus);
1110
1111         if (ract && ract->get_active()) {
1112                 set_zoom_focus (focus);
1113         }
1114 }
1115
1116 void
1117 Editor::smpte_fps_chosen (SmpteFormat format)
1118 {
1119         /* this is driven by a toggle on a radio group, and so is invoked twice,
1120            once for the item that became inactive and once for the one that became
1121            active.
1122         */
1123
1124         if (session) {
1125
1126                 RefPtr<Action> act;
1127
1128                 switch (format) {
1129                         case smpte_23976: 
1130                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte23976"));
1131                          break;
1132                         case smpte_24: 
1133                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte24"));
1134                          break;
1135                         case smpte_24976: 
1136                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte24976"));
1137                          break;
1138                         case smpte_25: 
1139                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte25"));
1140                          break;
1141                         case smpte_2997: 
1142                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte2997"));
1143                          break;
1144                         case smpte_2997drop: 
1145                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte2997drop"));
1146                          break;
1147                         case smpte_30: 
1148                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte30"));
1149                          break;
1150                         case smpte_30drop: 
1151                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte30drop"));
1152                          break;
1153                         case smpte_5994: 
1154                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte5994"));
1155                          break;
1156                         case smpte_60: 
1157                                 act = ActionManager::get_action (X_("Editor"), X_("Smpte60"));
1158                          break;
1159                         default:
1160                                 cerr << "Editor received unexpected smpte type" << endl;
1161                 }
1162
1163                 if (act) {
1164                         RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1165                         if (ract && ract->get_active()) {
1166                                 session->set_smpte_format (format);
1167                         }
1168                 }
1169         }
1170 }
1171
1172 void
1173 Editor::video_pullup_chosen (Session::PullupFormat pullup)
1174 {
1175         /* this is driven by a toggle on a radio group, and so is invoked twice,
1176            once for the item that became inactive and once for the one that became
1177            active.
1178         */
1179
1180         const char* action = 0;
1181
1182         RefPtr<Action> act;
1183         
1184         float pull = 0.0;
1185         
1186         switch (pullup) {
1187         case Session::pullup_Plus4Plus1:
1188                 pull = 4.1667 + 0.1;
1189                 action = X_("PullupPlus4Plus1");
1190                 break;
1191         case Session::pullup_Plus4:
1192                 pull = 4.1667;
1193                 action = X_("PullupPlus4");
1194                 break;
1195         case Session::pullup_Plus4Minus1:
1196                 pull = 4.1667 - 0.1;
1197                 action = X_("PullupPlus4Minus1");
1198                 break;
1199         case Session::pullup_Plus1:
1200                 pull = 0.1;
1201                 action = X_("PullupPlus1");
1202                 break;
1203         case Session::pullup_None:
1204                 pull = 0.0;
1205                 action = X_("PullupNone");
1206                 break;
1207         case Session::pullup_Minus1:
1208                 pull = -0.1;
1209                 action = X_("PullupMinus1");
1210                 break;
1211         case Session::pullup_Minus4Plus1:
1212                 pull = -4.1667 + 0.1;
1213                 action = X_("PullupMinus4Plus1");
1214                 break;
1215         case Session::pullup_Minus4:
1216                 pull = -4.1667;
1217                 action = X_("PullupMinus4");
1218                 break;
1219         case Session::pullup_Minus4Minus1:
1220                 pull = -4.1667 - 0.1;
1221                 action = X_("PullupMinus4Minus1");
1222                 break;
1223         default:
1224                 fatal << string_compose (_("programming error: %1"), "Session received unexpected pullup type") << endmsg;
1225                 /*NOTREACHED*/
1226         }
1227         
1228         act = ActionManager::get_action (X_("Editor"), action);
1229         
1230         if (act) {
1231                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1232                 if (ract && ract->get_active()) {
1233                         Config->set_video_pullup ( pull );
1234                 }
1235                 
1236         } else  {
1237                 error << string_compose (_("programming error: %1"), "Editor::video_pullup_chosen could not find action to match pullup.") << endmsg;
1238         }
1239 }
1240
1241 void
1242 Editor::update_subframes_per_frame ()
1243 {
1244         ENSURE_GUI_THREAD (mem_fun(*this, &Editor::update_subframes_per_frame));
1245
1246         RefPtr<Action> act;
1247         const char* action = 0;
1248
1249         uint32_t sfpf = Config->get_subframes_per_frame();
1250
1251         if (sfpf == 80) {
1252                 action = X_("Subframes80");
1253         } else if (sfpf == 100) {
1254                 action = X_("Subframes100");
1255         } else {
1256                 warning << string_compose (_("Configuraton is using unhandled subframes per frame value: %1"), sfpf) << endmsg;
1257                 /*NOTREACHED*/
1258                 return;
1259         }
1260
1261         act = ActionManager::get_action (X_("Editor"), action);
1262
1263         if (act) {
1264                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1265                 if (ract && !ract->get_active()) {
1266                         ract->set_active (true);
1267                 }
1268         }
1269 }
1270
1271 void
1272 Editor::subframes_per_frame_chosen (uint32_t sfpf)
1273 {
1274         /* this is driven by a toggle on a radio group, and so is invoked twice,
1275            once for the item that became inactive and once for the one that became
1276            active.
1277         */
1278
1279         const char* action = 0;
1280
1281         RefPtr<Action> act;
1282         
1283         if (sfpf == 80) {
1284                 action = X_("Subframes80");
1285         } else if (sfpf == 100) {       
1286                 action = X_("Subframes100");
1287         } else {
1288                 fatal << string_compose (_("programming error: %1 %2"), "Session received unexpected subframes per frame value: ", sfpf) << endmsg;
1289                 /*NOTREACHED*/
1290         }
1291         
1292         act = ActionManager::get_action (X_("Editor"), action);
1293         
1294         if (act) {
1295                 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1296                 if (ract && ract->get_active()) {
1297                         Config->set_subframes_per_frame ((uint32_t) rint (sfpf));
1298                 }
1299                 
1300         } else  {
1301                 error << string_compose (_("programming error: %1"), "Editor::subframes_per_frame_chosen could not find action to match value.") << endmsg;
1302         }
1303 }
1304
1305 void
1306 Editor::toggle_auto_xfade ()
1307 {
1308         ActionManager::toggle_config_state ("Editor", "toggle-auto-xfades", &Configuration::set_auto_xfade, &Configuration::get_auto_xfade);
1309 }
1310
1311 void
1312 Editor::toggle_xfades_active ()
1313 {
1314         ActionManager::toggle_config_state ("Editor", "toggle-xfades-active", &Configuration::set_xfades_active, &Configuration::get_xfades_active);
1315 }
1316
1317 void
1318 Editor::toggle_xfade_visibility ()
1319 {
1320         ActionManager::toggle_config_state ("Editor", "toggle-xfades-visible", &Configuration::set_xfades_visible, &Configuration::get_xfades_visible);
1321 }
1322
1323 /** A Configuration parameter has changed.
1324  * @param parameter_name Name of the changed parameter.
1325  */
1326 void
1327 Editor::parameter_changed (const char* parameter_name)
1328 {
1329 #define PARAM_IS(x) (!strcmp (parameter_name, (x)))
1330         //cerr << "Editor::parameter_changed: " << parameter_name << endl;
1331         ENSURE_GUI_THREAD (bind (mem_fun (*this, &Editor::parameter_changed), parameter_name));
1332
1333         if (PARAM_IS ("auto-loop")) {
1334                 update_loop_range_view (true);
1335         } else if (PARAM_IS ("punch-in")) {
1336                 update_punch_range_view (true);
1337         } else if (PARAM_IS ("punch-out")) {
1338                 update_punch_range_view (true);
1339         } else if (PARAM_IS ("layer-model")) {
1340                 update_layering_model ();
1341         } else if (PARAM_IS ("smpte-format")) {
1342                 update_smpte_mode ();
1343                 update_just_smpte ();
1344         } else if (PARAM_IS ("video-pullup")) {
1345                 update_video_pullup ();
1346         } else if (PARAM_IS ("xfades-active")) {
1347                 ActionManager::map_some_state ("Editor", "toggle-xfades-active", &Configuration::get_xfades_active);
1348         } else if (PARAM_IS ("xfades-visible")) {
1349                 ActionManager::map_some_state ("Editor", "toggle-xfades-visible", &Configuration::get_xfades_visible);
1350                 update_xfade_visibility ();
1351         } else if (PARAM_IS ("auto-xfade")) {
1352                 ActionManager::map_some_state ("Editor", "toggle-auto-xfades", &Configuration::get_auto_xfade);
1353         } else if (PARAM_IS ("xfade-model")) {
1354                 update_crossfade_model ();
1355         } else if (PARAM_IS ("edit-mode")) {
1356                 edit_mode_selector.set_active_text (edit_mode_to_string (Config->get_edit_mode()));
1357         } else if (PARAM_IS ("subframes-per-frame")) {
1358                 update_subframes_per_frame ();
1359                 update_just_smpte ();
1360         } else if (PARAM_IS ("show-track-meters")) {
1361                 toggle_meter_updating();
1362         }
1363
1364 #undef PARAM_IS
1365 }
1366
1367 void
1368 Editor::reset_focus ()
1369 {
1370         track_canvas.grab_focus();
1371 }