put the issue of using a monitor section into ~/.config/ardour.rc, not the session...
[ardour2.git] / gtk2_ardour / editor_actions.cc
blobec7472df9196a25552db597a41d5862ecc404a01
1 /*
2 Copyright (C) 2000-2007 Paul Davis
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.
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.
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.
20 #include <gio/gio.h>
21 #include <gtk/gtkiconfactory.h>
23 #include "ardour/ardour.h"
24 #include "ardour/profile.h"
25 #include "ardour/session.h"
27 #include "actions.h"
28 #include "ardour_ui.h"
29 #include "editing.h"
30 #include "editor.h"
31 #include "gui_thread.h"
32 #include "time_axis_view.h"
33 #include "utils.h"
34 #include "i18n.h"
35 #include "audio_time_axis.h"
36 #include "editor_group_tabs.h"
37 #include "editor_routes.h"
38 #include "editor_regions.h"
40 using namespace Gtk;
41 using namespace Glib;
42 using namespace std;
43 using namespace ARDOUR;
44 using namespace PBD;
45 using namespace Editing;
47 void
48 Editor::register_actions ()
50 RefPtr<Action> act;
52 editor_actions = ActionGroup::create (X_("Editor"));
54 /* non-operative menu items for menu bar */
56 ActionManager::register_action (editor_actions, X_("AlignMenu"), _("Align"));
57 ActionManager::register_action (editor_actions, X_("Autoconnect"), _("Autoconnect"));
58 ActionManager::register_action (editor_actions, X_("Crossfades"), _("Crossfades"));
59 ActionManager::register_action (editor_actions, X_("Edit"), _("Edit"));
60 ActionManager::register_action (editor_actions, X_("EditCursorMovementOptions"), _("Move Selected Marker"));
61 ActionManager::register_action (editor_actions, X_("EditSelectRangeOptions"), _("Select Range Operations"));
62 ActionManager::register_action (editor_actions, X_("EditSelectRegionOptions"), _("Select Regions"));
63 ActionManager::register_action (editor_actions, X_("EditPointMenu"), _("Edit Point"));
64 ActionManager::register_action (editor_actions, X_("FadeMenu"), _("Fade"));
65 ActionManager::register_action (editor_actions, X_("LatchMenu"), _("Latch"));
66 ActionManager::register_action (editor_actions, X_("Layering"), _("Layering"));
67 ActionManager::register_action (editor_actions, X_("Link"), _("Link"));
68 ActionManager::register_action (editor_actions, X_("ZoomFocusMenu"), _("Zoom Focus"));
69 ActionManager::register_action (editor_actions, X_("KeyMouseActions"), _("Key Mouse"));
70 ActionManager::register_action (editor_actions, X_("LocateToMarker"), _("Locate to Markers"));
71 ActionManager::register_action (editor_actions, X_("MarkerMenu"), _("Markers"));
72 ActionManager::register_action (editor_actions, X_("MeterFalloff"), _("Meter falloff"));
73 ActionManager::register_action (editor_actions, X_("MeterHold"), _("Meter hold"));
74 ActionManager::register_action (editor_actions, X_("MiscOptions"), _("Misc Options"));
75 ActionManager::register_action (editor_actions, X_("Monitoring"), _("Monitoring"));
76 ActionManager::register_action (editor_actions, X_("MoveActiveMarkMenu"), _("Active Mark"));
77 ActionManager::register_action (editor_actions, X_("MovePlayHeadMenu"), _("Playhead"));
78 ActionManager::register_action (editor_actions, X_("NudgeRegionMenu"), _("Nudge"));
79 ActionManager::register_action (editor_actions, X_("PlayMenu"), _("Play"));
80 ActionManager::register_action (editor_actions, X_("PrimaryClockMenu"), _("Primary Clock"));
81 ActionManager::register_action (editor_actions, X_("Pullup"), _("Pullup / Pulldown"));
82 ActionManager::register_action (editor_actions, X_("RegionMenu"), _("Region"));
83 ActionManager::register_action (editor_actions, X_("RegionEditOps"), _("Region operations"));
84 ActionManager::register_action (editor_actions, X_("RegionGainMenu"), _("Gain"));
85 ActionManager::register_action (editor_actions, X_("RulerMenu"), _("Rulers"));
86 ActionManager::register_action (editor_actions, X_("SavedViewMenu"), _("Views"));
87 ActionManager::register_action (editor_actions, X_("ScrollMenu"), _("Scroll"));
88 ActionManager::register_action (editor_actions, X_("SecondaryClockMenu"), _("Secondary Clock"));
89 ActionManager::register_action (editor_actions, X_("Select"), _("Select"));
90 ActionManager::register_action (editor_actions, X_("SelectMenu"), _("Select"));
91 ActionManager::register_action (editor_actions, X_("SeparateMenu"), _("Separate"));
92 ActionManager::register_action (editor_actions, X_("SetLoopMenu"), _("Loop"));
93 ActionManager::register_action (editor_actions, X_("SetPunchMenu"), _("Punch"));
94 ActionManager::register_action (editor_actions, X_("Solo"), _("Solo"));
95 ActionManager::register_action (editor_actions, X_("Subframes"), _("Subframes"));
96 ActionManager::register_action (editor_actions, X_("SyncMenu"), _("Sync"));
97 ActionManager::register_action (editor_actions, X_("TempoMenu"), _("Tempo"));
98 ActionManager::register_action (editor_actions, X_("Timecode"), _("Timecode fps"));
99 ActionManager::register_action (editor_actions, X_("TrackHeightMenu"), _("Height"));
100 ActionManager::register_action (editor_actions, X_("TrackMenu"), _("Track"));
101 ActionManager::register_action (editor_actions, X_("Tools"), _("Tools"));
102 ActionManager::register_action (editor_actions, X_("TrimMenu"), _("Trim"));
103 ActionManager::register_action (editor_actions, X_("View"), _("View"));
104 ActionManager::register_action (editor_actions, X_("ZoomFocus"), _("Zoom Focus"));
105 ActionManager::register_action (editor_actions, X_("ZoomMenu"), _("Zoom"));
107 /* add named actions for the editor */
109 ActionManager::register_action (editor_actions, "escape", _("Break drag or deselect all"), sigc::mem_fun (*this, &Editor::escape));
111 act = ActionManager::register_toggle_action (editor_actions, "show-editor-mixer", _("Show Editor Mixer"), sigc::mem_fun (*this, &Editor::editor_mixer_button_toggled));
112 ActionManager::session_sensitive_actions.push_back (act);
113 act = ActionManager::register_toggle_action (editor_actions, "show-editor-list", _("Show Editor List"), sigc::mem_fun (*this, &Editor::editor_list_button_toggled));
114 ActionManager::session_sensitive_actions.push_back (act);
116 act = ActionManager::register_action (editor_actions, "toggle-selected-region-fade-in", _("Toggle Region Fade In"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_selected_region_fades), 1));;
117 ActionManager::session_sensitive_actions.push_back (act);
118 act = ActionManager::register_action (editor_actions, "toggle-selected-region-fade-out", _("Toggle Region Fade Out"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_selected_region_fades), -1));;
119 ActionManager::session_sensitive_actions.push_back (act);
120 act = ActionManager::register_action (editor_actions, "toggle-selected-region-fades", _("Toggle Region Fades"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_selected_region_fades), 0));
121 ActionManager::session_sensitive_actions.push_back (act);
123 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 ));
124 ActionManager::session_sensitive_actions.push_back (act);
125 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 ));
126 ActionManager::session_sensitive_actions.push_back (act);
127 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));
128 ActionManager::session_sensitive_actions.push_back (act);
129 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));
130 ActionManager::session_sensitive_actions.push_back (act);
132 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)));
133 ActionManager::session_sensitive_actions.push_back (act);
134 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)));
135 ActionManager::session_sensitive_actions.push_back (act);
136 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)));
137 ActionManager::session_sensitive_actions.push_back (act);
139 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)));
140 ActionManager::session_sensitive_actions.push_back (act);
141 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)));
142 ActionManager::session_sensitive_actions.push_back (act);
143 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)));
144 ActionManager::session_sensitive_actions.push_back (act);
146 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));
147 ActionManager::session_sensitive_actions.push_back (act);
148 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));
149 ActionManager::session_sensitive_actions.push_back (act);
150 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));
151 ActionManager::session_sensitive_actions.push_back (act);
152 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));
153 ActionManager::session_sensitive_actions.push_back (act);
155 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)));
156 ActionManager::session_sensitive_actions.push_back (act);
157 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)));
158 ActionManager::session_sensitive_actions.push_back (act);
159 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)));
160 ActionManager::session_sensitive_actions.push_back (act);
162 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)));
163 ActionManager::session_sensitive_actions.push_back (act);
164 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)));
165 ActionManager::session_sensitive_actions.push_back (act);
166 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)));
167 ActionManager::session_sensitive_actions.push_back (act);
169 act = ActionManager::register_action (editor_actions, "edit-cursor-to-range-start", _("To Range Start"), sigc::mem_fun(*this, &Editor::selected_marker_to_selection_start));
170 ActionManager::session_sensitive_actions.push_back (act);
171 act = ActionManager::register_action (editor_actions, "edit-cursor-to-range-end", _("To Range End"), sigc::mem_fun(*this, &Editor::selected_marker_to_selection_end));
172 ActionManager::session_sensitive_actions.push_back (act);
174 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));
175 ActionManager::session_sensitive_actions.push_back (act);
176 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));
177 ActionManager::session_sensitive_actions.push_back (act);
179 act = ActionManager::register_action (editor_actions, "select-all", _("Select All"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all), Selection::Set));
180 ActionManager::session_sensitive_actions.push_back (act);
181 act = ActionManager::register_action (editor_actions, "deselect-all", _("Deselect All"), sigc::mem_fun(*this, &Editor::deselect_all));
182 ActionManager::session_sensitive_actions.push_back (act);
183 act = ActionManager::register_action (editor_actions, "invert-selection", _("Invert Selection"), sigc::mem_fun(*this, &Editor::invert_selection));
184 ActionManager::session_sensitive_actions.push_back (act);
185 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));
186 ActionManager::session_sensitive_actions.push_back (act);
187 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));
188 ActionManager::session_sensitive_actions.push_back (act);
190 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));
191 ActionManager::session_sensitive_actions.push_back (act);
192 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));
193 ActionManager::session_sensitive_actions.push_back (act);
195 act = ActionManager::register_action (editor_actions, "select-range-between-cursors", _("Select Edit Range"), sigc::mem_fun(*this, &Editor::select_range_between));
196 ActionManager::session_sensitive_actions.push_back (act);
198 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));
199 ActionManager::session_sensitive_actions.push_back (act);
200 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));
201 ActionManager::session_sensitive_actions.push_back (act);
203 act = ActionManager::register_action (editor_actions, "select-next-route", _("Select Next Track/Bus"), sigc::mem_fun(*this, &Editor::select_next_route));
204 ActionManager::session_sensitive_actions.push_back (act);
205 act = ActionManager::register_action (editor_actions, "select-prev-route", _("Select Previous Track/Bus"), sigc::mem_fun(*this, &Editor::select_prev_route));
206 ActionManager::session_sensitive_actions.push_back (act);
208 act = ActionManager::register_action (editor_actions, "track-record-enable-toggle", _("Toggle Record Enable"), sigc::mem_fun(*this, &Editor::toggle_record_enable));
209 ActionManager::session_sensitive_actions.push_back (act);
210 ActionManager::track_selection_sensitive_actions.push_back (act);
212 for (int i = 1; i <= 12; ++i) {
213 string const a = string_compose (X_("save-visual-state-%1"), i);
214 string const n = string_compose (_("Save View %1"), i);
215 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));
216 ActionManager::session_sensitive_actions.push_back (act);
219 for (int i = 1; i <= 12; ++i) {
220 string const a = string_compose (X_("goto-visual-state-%1"), i);
221 string const n = string_compose (_("Goto View %1"), i);
222 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));
223 ActionManager::session_sensitive_actions.push_back (act);
226 for (int i = 1; i <= 9; ++i) {
227 string const a = string_compose (X_("goto-mark-%1"), i);
228 string const n = string_compose (_("Locate to Mark %1"), i);
229 act = ActionManager::register_action (editor_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::goto_nth_marker), i - 1));
230 ActionManager::session_sensitive_actions.push_back (act);
233 act = ActionManager::register_action (editor_actions, "jump-forward-to-mark", _("Jump Forward to Mark"), sigc::mem_fun(*this, &Editor::jump_forward_to_mark));
234 ActionManager::session_sensitive_actions.push_back (act);
235 act = ActionManager::register_action (editor_actions, "jump-backward-to-mark", _("Jump Backward to Mark"), sigc::mem_fun(*this, &Editor::jump_backward_to_mark));
236 ActionManager::session_sensitive_actions.push_back (act);
237 act = ActionManager::register_action (editor_actions, "add-location-from-playhead", _("Add Mark from Playhead"), sigc::mem_fun(*this, &Editor::add_location_from_playhead_cursor));
238 ActionManager::session_sensitive_actions.push_back (act);
240 act = ActionManager::register_action (editor_actions, "nudge-forward", _("Nudge Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_forward), false, false));
241 ActionManager::session_sensitive_actions.push_back (act);
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-backward", _("Nudge Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_backward), false, false));
245 ActionManager::session_sensitive_actions.push_back (act);
246 act = ActionManager::register_action (editor_actions, "nudge-next-backward", _("Nudge Next Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_backward), true, false));
247 ActionManager::session_sensitive_actions.push_back (act);
249 act = ActionManager::register_action (editor_actions, "nudge-playhead-forward", _("Nudge Playhead Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_forward), false, true));
250 ActionManager::session_sensitive_actions.push_back (act);
251 act = ActionManager::register_action (editor_actions, "nudge-playhead-backward", _("Nudge Playhead Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_backward), false, true));
252 ActionManager::session_sensitive_actions.push_back (act);
253 act = ActionManager::register_action (editor_actions, "playhead-forward-to-grid", _("Forward to Grid"), sigc::mem_fun(*this, &Editor::playhead_forward_to_grid));
254 ActionManager::session_sensitive_actions.push_back (act);
255 act = ActionManager::register_action (editor_actions, "playhead-backward-to-grid", _("Backward to Grid"), sigc::mem_fun(*this, &Editor::playhead_backward_to_grid));
256 ActionManager::session_sensitive_actions.push_back (act);
259 act = ActionManager::register_action (editor_actions, "temporal-zoom-out", _("Zoom Out"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_step), true));
260 ActionManager::session_sensitive_actions.push_back (act);
261 act = ActionManager::register_action (editor_actions, "temporal-zoom-in", _("Zoom In"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_step), false));
262 ActionManager::session_sensitive_actions.push_back (act);
263 act = ActionManager::register_action (editor_actions, "zoom-to-session", _("Zoom to Session"), sigc::mem_fun(*this, &Editor::temporal_zoom_session));
264 ActionManager::session_sensitive_actions.push_back (act);
265 act = ActionManager::register_action (editor_actions, "zoom-to-region", _("Zoom to Region"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_to_region), false));
266 ActionManager::session_sensitive_actions.push_back (act);
267 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));
268 ActionManager::session_sensitive_actions.push_back (act);
269 act = ActionManager::register_action (editor_actions, "toggle-zoom", _("Toggle Zoom State"), sigc::mem_fun(*this, &Editor::swap_visual_state));
270 ActionManager::session_sensitive_actions.push_back (act);
272 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));
273 ActionManager::session_sensitive_actions.push_back (act);
274 ActionManager::track_selection_sensitive_actions.push_back (act);
275 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));
276 ActionManager::session_sensitive_actions.push_back (act);
277 ActionManager::track_selection_sensitive_actions.push_back (act);
279 act = ActionManager::register_action (editor_actions, "scroll-tracks-up", _("Scroll Tracks Up"), sigc::mem_fun(*this, &Editor::scroll_tracks_up));
280 ActionManager::session_sensitive_actions.push_back (act);
281 ActionManager::track_selection_sensitive_actions.push_back (act);
282 act = ActionManager::register_action (editor_actions, "scroll-tracks-down", _("Scroll Tracks Down"), sigc::mem_fun(*this, &Editor::scroll_tracks_down));
283 ActionManager::track_selection_sensitive_actions.push_back (act);
284 ActionManager::session_sensitive_actions.push_back (act);
285 act = ActionManager::register_action (editor_actions, "step-tracks-up", _("Step Tracks Up"), sigc::mem_fun(*this, &Editor::scroll_tracks_up_line));
286 ActionManager::track_selection_sensitive_actions.push_back (act);
287 ActionManager::session_sensitive_actions.push_back (act);
288 act = ActionManager::register_action (editor_actions, "step-tracks-down", _("Step Tracks Down"), sigc::mem_fun(*this, &Editor::scroll_tracks_down_line));
289 ActionManager::session_sensitive_actions.push_back (act);
290 ActionManager::track_selection_sensitive_actions.push_back (act);
292 act = ActionManager::register_action (editor_actions, "scroll-backward", _("Scroll Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_backward), 0.8f));
293 ActionManager::session_sensitive_actions.push_back (act);
294 act = ActionManager::register_action (editor_actions, "scroll-forward", _("Scroll Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_forward), 0.8f));
295 ActionManager::session_sensitive_actions.push_back (act);
296 act = ActionManager::register_action (editor_actions, "goto", _("goto"), sigc::mem_fun(*this, &Editor::goto_frame));
297 ActionManager::session_sensitive_actions.push_back (act);
298 act = ActionManager::register_action (editor_actions, "center-playhead", _("Center Playhead"), sigc::mem_fun(*this, &Editor::center_playhead));
299 ActionManager::session_sensitive_actions.push_back (act);
300 act = ActionManager::register_action (editor_actions, "center-edit-cursor", _("Center Active Marker"), sigc::mem_fun(*this, &Editor::center_edit_point));
301 ActionManager::session_sensitive_actions.push_back (act);
303 act = ActionManager::register_action (editor_actions, "scroll-playhead-forward", _("Playhead Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_playhead), true));;
304 ActionManager::session_sensitive_actions.push_back (act);
305 act = ActionManager::register_action (editor_actions, "scroll-playhead-backward", _("Playhead Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_playhead), false));
306 ActionManager::session_sensitive_actions.push_back (act);
308 act = ActionManager::register_action (editor_actions, "playhead-to-edit", _("Playhead to Active Mark"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_align), true));
309 ActionManager::session_sensitive_actions.push_back (act);
310 act = ActionManager::register_action (editor_actions, "edit-to-playhead", _("Active Mark to Playhead"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_align), false));
311 ActionManager::session_sensitive_actions.push_back (act);
313 act = ActionManager::register_action (editor_actions, "trim-front", _("Trim Start at Edit Point"), sigc::mem_fun(*this, &Editor::trim_region_front));
314 ActionManager::session_sensitive_actions.push_back (act);
315 ActionManager::region_selection_sensitive_actions.push_back (act);
316 act = ActionManager::register_action (editor_actions, "trim-back", _("Trim End at Edit Point"), sigc::mem_fun(*this, &Editor::trim_region_back));
317 ActionManager::session_sensitive_actions.push_back (act);
318 ActionManager::region_selection_sensitive_actions.push_back (act);
320 act = ActionManager::register_action (editor_actions, "trim-from-start", _("Start to Edit Point"), sigc::mem_fun(*this, &Editor::trim_region_from_edit_point));
321 ActionManager::session_sensitive_actions.push_back (act);
322 ActionManager::region_selection_sensitive_actions.push_back (act);
323 act = ActionManager::register_action (editor_actions, "trim-to-end", _("Edit Point to End"), sigc::mem_fun(*this, &Editor::trim_region_to_edit_point));
324 ActionManager::session_sensitive_actions.push_back (act);
325 ActionManager::region_selection_sensitive_actions.push_back (act);
326 act = ActionManager::register_action (editor_actions, "trim-region-to-loop", _("Trim to Loop"), sigc::mem_fun(*this, &Editor::trim_region_to_loop));
327 ActionManager::session_sensitive_actions.push_back (act);
328 ActionManager::region_selection_sensitive_actions.push_back (act);
329 act = ActionManager::register_action (editor_actions, "trim-region-to-punch", _("Trim to Punch"), sigc::mem_fun(*this, &Editor::trim_region_to_punch));
330 ActionManager::session_sensitive_actions.push_back (act);
331 ActionManager::region_selection_sensitive_actions.push_back (act);
333 act = ActionManager::register_action (editor_actions, "trim-to-previous-region", _("Trim to Previous"), sigc::mem_fun(*this, &Editor::trim_region_to_previous_region_end));
334 ActionManager::session_sensitive_actions.push_back (act);
335 ActionManager::region_selection_sensitive_actions.push_back (act);
336 act = ActionManager::register_action (editor_actions, "trim-to-next-region", _("Trim to Next"), sigc::mem_fun(*this, &Editor::trim_region_to_next_region_start));
337 ActionManager::session_sensitive_actions.push_back (act);
338 ActionManager::region_selection_sensitive_actions.push_back (act);
340 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));
341 ActionManager::session_sensitive_actions.push_back (act);
342 act = ActionManager::register_action (editor_actions, "set-loop-from-region", _("Set Loop from Region"), sigc::bind (sigc::mem_fun(*this, &Editor::set_loop_from_region), false));
343 ActionManager::session_sensitive_actions.push_back (act);
344 ActionManager::region_selection_sensitive_actions.push_back (act);
345 act = ActionManager::register_action (editor_actions, "loop-region", _("Loop Region"), sigc::bind (sigc::mem_fun(*this, &Editor::set_loop_from_region), true));
346 ActionManager::session_sensitive_actions.push_back (act);
347 ActionManager::region_selection_sensitive_actions.push_back (act);
348 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));
349 ActionManager::session_sensitive_actions.push_back (act);
350 ActionManager::region_selection_sensitive_actions.push_back (act);
351 act = ActionManager::register_action (editor_actions, "set-punch-from-region", _("Set Punch From Region"), sigc::mem_fun(*this, &Editor::set_punch_from_region));
352 ActionManager::session_sensitive_actions.push_back (act);
353 ActionManager::region_selection_sensitive_actions.push_back (act);
354 act = ActionManager::register_action (editor_actions, "pitch-shift-region", _("Transpose"), sigc::mem_fun(*this, &Editor::pitch_shift_regions));
355 ActionManager::session_sensitive_actions.push_back (act);
356 ActionManager::region_selection_sensitive_actions.push_back (act);
357 act = ActionManager::register_action (editor_actions, "toggle-opaque-region", _("Toggle Opaque"), sigc::mem_fun(*this, &Editor::toggle_region_opaque));
358 ActionManager::session_sensitive_actions.push_back (act);
359 ActionManager::region_selection_sensitive_actions.push_back (act);
360 act = ActionManager::register_action (editor_actions, "add-range-marker-from-region", _("Add 1 Range Marker"), sigc::mem_fun(*this, &Editor::add_location_from_audio_region));
361 ActionManager::session_sensitive_actions.push_back (act);
362 ActionManager::region_selection_sensitive_actions.push_back (act);
363 act = ActionManager::register_action (editor_actions, "add-range-markers-from-region", _("Add Range Marker(s)"), sigc::mem_fun(*this, &Editor::add_locations_from_audio_region));
364 ActionManager::session_sensitive_actions.push_back (act);
365 ActionManager::region_selection_sensitive_actions.push_back (act);
367 act = ActionManager::register_action (editor_actions, "set-fade-in-length", _("Set Fade In Length"), sigc::bind (sigc::mem_fun(*this, &Editor::set_fade_length), true));
368 ActionManager::session_sensitive_actions.push_back (act);
369 act = ActionManager::register_action (editor_actions, "toggle-fade-in-active", _("Toggle Fade In Active"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_fade_active), true));
370 ActionManager::session_sensitive_actions.push_back (act);
371 act = ActionManager::register_action (editor_actions, "set-fade-out-length", _("Set Fade Out Length"), sigc::bind (sigc::mem_fun(*this, &Editor::set_fade_length), false));
372 ActionManager::session_sensitive_actions.push_back (act);
373 act = ActionManager::register_action (editor_actions, "toggle-fade-out-active", _("Toggle Fade Out Active"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_fade_active), false));
374 ActionManager::session_sensitive_actions.push_back (act);
376 act = ActionManager::register_action (editor_actions, "align-regions-start", _("Align Regions Start"), sigc::bind (sigc::mem_fun(*this, &Editor::align), ARDOUR::Start));
377 ActionManager::session_sensitive_actions.push_back (act);
378 ActionManager::region_selection_sensitive_actions.push_back (act);
379 act = ActionManager::register_action (editor_actions, "align-regions-start-relative", _("Align Regions Start Relative"), sigc::bind (sigc::mem_fun(*this, &Editor::align_relative), ARDOUR::Start));
380 ActionManager::session_sensitive_actions.push_back (act);
381 ActionManager::region_selection_sensitive_actions.push_back (act);
382 act = ActionManager::register_action (editor_actions, "align-regions-end", _("Align Regions End"), sigc::bind (sigc::mem_fun(*this, &Editor::align), ARDOUR::End));
383 ActionManager::session_sensitive_actions.push_back (act);
384 ActionManager::region_selection_sensitive_actions.push_back (act);
385 act = ActionManager::register_action (editor_actions, "align-regions-end-relative", _("Align Regions End Relative"), sigc::bind (sigc::mem_fun(*this, &Editor::align_relative), ARDOUR::End));
386 ActionManager::session_sensitive_actions.push_back (act);
387 ActionManager::region_selection_sensitive_actions.push_back (act);
389 act = ActionManager::register_action (editor_actions, "align-regions-sync", _("Align Regions Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::align), ARDOUR::SyncPoint));
390 ActionManager::session_sensitive_actions.push_back (act);
391 ActionManager::region_selection_sensitive_actions.push_back (act);
392 act = ActionManager::register_action (editor_actions, "align-regions-sync-relative", _("Align Regions Sync Relative"), sigc::bind (sigc::mem_fun(*this, &Editor::align_relative), ARDOUR::SyncPoint));
393 ActionManager::session_sensitive_actions.push_back (act);
394 ActionManager::region_selection_sensitive_actions.push_back (act);
396 act = ActionManager::register_action (editor_actions, "play-from-edit-point", _("Play From Edit Point"), sigc::mem_fun(*this, &Editor::play_from_edit_point));
397 ActionManager::session_sensitive_actions.push_back (act);
398 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));
399 ActionManager::session_sensitive_actions.push_back (act);
401 act = ActionManager::register_action (editor_actions, "play-edit-range", _("Play Edit Range"), sigc::mem_fun(*this, &Editor::play_edit_range));
402 act = ActionManager::register_action (editor_actions, "play-selected-regions", _("Play Selected Region(s)"), sigc::mem_fun(*this, &Editor::play_selected_region));
403 ActionManager::session_sensitive_actions.push_back (act);
404 ActionManager::region_selection_sensitive_actions.push_back (act);
405 act = ActionManager::register_action (editor_actions, "brush-at-mouse", _("Brush at Mouse"), sigc::mem_fun(*this, &Editor::kbd_brush));
406 ActionManager::session_sensitive_actions.push_back (act);
408 act = ActionManager::register_action (editor_actions, "set-playhead", _("Playhead to Mouse"), sigc::mem_fun(*this, &Editor::set_playhead_cursor));
409 ActionManager::session_sensitive_actions.push_back (act);
410 act = ActionManager::register_action (editor_actions, "set-edit-point", _("Active Marker to Mouse"), sigc::mem_fun(*this, &Editor::set_edit_point));
411 ActionManager::session_sensitive_actions.push_back (act);
413 act = ActionManager::register_action (editor_actions, "duplicate-region", _("Duplicate Region"), sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_dialog), false));
414 ActionManager::session_sensitive_actions.push_back (act);
415 ActionManager::region_selection_sensitive_actions.push_back (act);
416 act = ActionManager::register_action (editor_actions, "multi-duplicate-region", _("Multi-Duplicate Region"), sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_dialog), true));
417 ActionManager::session_sensitive_actions.push_back (act);
418 ActionManager::region_selection_sensitive_actions.push_back (act);
419 act = ActionManager::register_action (editor_actions, "duplicate-range", _("Duplicate Range"), sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_dialog), false));
420 ActionManager::session_sensitive_actions.push_back (act);
421 ActionManager::region_selection_sensitive_actions.push_back (act);
422 act = ActionManager::register_action (editor_actions, "insert-region", _("Insert Region"), sigc::mem_fun(*this, &Editor::keyboard_insert_region_list_selection));
423 ActionManager::session_sensitive_actions.push_back (act);
424 ActionManager::region_selection_sensitive_actions.push_back (act);
425 act = ActionManager::register_action (editor_actions, "normalize-region", _("Normalize Region"), sigc::mem_fun(*this, &Editor::normalize_region));
426 ActionManager::session_sensitive_actions.push_back (act);
427 ActionManager::region_selection_sensitive_actions.push_back (act);
428 act = ActionManager::register_action (editor_actions, "rename-region", _("Rename"), sigc::mem_fun(*this, &Editor::rename_region));
429 ActionManager::session_sensitive_actions.push_back (act);
430 ActionManager::region_selection_sensitive_actions.push_back (act);
431 act = ActionManager::register_action (editor_actions, "auto-rename-region", _("Auto-Rename"), sigc::mem_fun(*this, &Editor::rename_region));
432 ActionManager::session_sensitive_actions.push_back (act);
433 ActionManager::region_selection_sensitive_actions.push_back (act);
434 act = ActionManager::register_action (editor_actions, "boost-region-gain", _("Boost Region Gain"), sigc::bind (sigc::mem_fun(*this, &Editor::adjust_region_scale_amplitude), true));
435 ActionManager::session_sensitive_actions.push_back (act);
436 ActionManager::region_selection_sensitive_actions.push_back (act);
437 act = ActionManager::register_action (editor_actions, "cut-region-gain", _("Cut Region Gain"), sigc::bind (sigc::mem_fun(*this, &Editor::adjust_region_scale_amplitude), false));
438 ActionManager::session_sensitive_actions.push_back (act);
439 ActionManager::region_selection_sensitive_actions.push_back (act);
440 act = ActionManager::register_action (editor_actions, "split-region", _("Split Region"), sigc::mem_fun(*this, &Editor::split));
441 ActionManager::session_sensitive_actions.push_back (act);
442 ActionManager::region_selection_sensitive_actions.push_back (act);
443 act = ActionManager::register_action (editor_actions, "set-region-sync-position", _("Set Region Sync Position"), sigc::mem_fun(*this, &Editor::set_region_sync_from_edit_point));
444 ActionManager::session_sensitive_actions.push_back (act);
445 ActionManager::region_selection_sensitive_actions.push_back (act);
446 act = ActionManager::register_action (editor_actions, "remove-region-sync", _("Remove Region Sync"), sigc::mem_fun(*this, &Editor::remove_region_sync));
447 ActionManager::session_sensitive_actions.push_back (act);
448 ActionManager::region_selection_sensitive_actions.push_back (act);
449 act = ActionManager::register_action (editor_actions, "raise-region", _("Raise Region"), sigc::mem_fun(*this, &Editor::raise_region));
450 ActionManager::session_sensitive_actions.push_back (act);
451 ActionManager::region_selection_sensitive_actions.push_back (act);
452 act = ActionManager::register_action (editor_actions, "lower-region", _("Lower Region"), sigc::mem_fun(*this, &Editor::lower_region));
453 ActionManager::session_sensitive_actions.push_back (act);
454 ActionManager::region_selection_sensitive_actions.push_back (act);
455 act = ActionManager::register_action (editor_actions, "export-region", _("Export Region"), sigc::mem_fun(*this, &Editor::export_region));
456 ActionManager::session_sensitive_actions.push_back (act);
457 ActionManager::region_selection_sensitive_actions.push_back (act);
458 act = ActionManager::register_toggle_action (editor_actions, "lock-region", _("Lock Region"), sigc::mem_fun(*this, &Editor::toggle_region_lock));
459 ActionManager::session_sensitive_actions.push_back (act);
460 ActionManager::region_selection_sensitive_actions.push_back (act);
461 act = ActionManager::register_toggle_action (editor_actions, "glue-region", _("Glue Region to Bars and Beats"), sigc::bind (sigc::mem_fun (*this, &Editor::set_region_lock_style), Region::MusicTime));
462 ActionManager::session_sensitive_actions.push_back (act);
463 ActionManager::region_selection_sensitive_actions.push_back (act);
464 act = ActionManager::register_action (editor_actions, "naturalize-region", _("Move to Original Position"), sigc::mem_fun (*this, &Editor::naturalize));
465 ActionManager::session_sensitive_actions.push_back (act);
466 ActionManager::region_selection_sensitive_actions.push_back (act);
467 act = ActionManager::register_action (editor_actions, "reverse-region", _("Reverse"), sigc::mem_fun (*this, &Editor::reverse_region));
468 ActionManager::session_sensitive_actions.push_back (act);
469 ActionManager::region_selection_sensitive_actions.push_back (act);
470 act = ActionManager::register_action (editor_actions, "monoize-region", _("Make Mono Regions"), (sigc::mem_fun(*this, &Editor::split_multichannel_region)));
471 ActionManager::session_sensitive_actions.push_back (act);
472 ActionManager::region_selection_sensitive_actions.push_back (act);
473 act = ActionManager::register_action (editor_actions, "region-fill-track", _("Fill Track"), (sigc::mem_fun(*this, &Editor::region_fill_track)));
474 ActionManager::session_sensitive_actions.push_back (act);
475 ActionManager::region_selection_sensitive_actions.push_back (act);
476 act = ActionManager::register_action (editor_actions, "mute-unmute-region", _("Mute/Unmute Region"), sigc::mem_fun(*this, &Editor::kbd_mute_unmute_region));
477 ActionManager::session_sensitive_actions.push_back (act);
478 ActionManager::region_selection_sensitive_actions.push_back (act);
480 undo_action = act = ActionManager::register_action (editor_actions, "undo", _("Undo"), sigc::bind (sigc::mem_fun(*this, &Editor::undo), 1U));
481 ActionManager::session_sensitive_actions.push_back (act);
482 redo_action = act = ActionManager::register_action (editor_actions, "redo", _("Redo"), sigc::bind (sigc::mem_fun(*this, &Editor::redo), 1U));
483 ActionManager::session_sensitive_actions.push_back (act);
485 act = ActionManager::register_action (editor_actions, "export-audio", _("Export Audio"), sigc::mem_fun(*this, &Editor::export_audio));
486 ActionManager::session_sensitive_actions.push_back (act);
487 act = ActionManager::register_action (editor_actions, "export-range", _("Export Range"), sigc::mem_fun(*this, &Editor::export_range));
488 ActionManager::session_sensitive_actions.push_back (act);
490 act = ActionManager::register_action (editor_actions, "editor-separate", _("Separate"), sigc::mem_fun(*this, &Editor::separate_region_from_selection));
491 ActionManager::session_sensitive_actions.push_back (act);
492 ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
493 act = ActionManager::register_action (editor_actions, "separate-from-punch", _("Separate Using Punch Range"), sigc::mem_fun(*this, &Editor::separate_region_from_punch));
494 ActionManager::session_sensitive_actions.push_back (act);
495 ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
496 act = ActionManager::register_action (editor_actions, "separate-from-loop", _("Separate Using Loop Range"), sigc::mem_fun(*this, &Editor::separate_region_from_loop));
497 ActionManager::session_sensitive_actions.push_back (act);
498 ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
499 act = ActionManager::register_action (editor_actions, "editor-crop", _("Crop"), sigc::mem_fun(*this, &Editor::crop_region_to_selection));
500 ActionManager::session_sensitive_actions.push_back (act);
501 ActionManager::mouse_edit_point_requires_canvas_actions.push_back (act);
502 act = ActionManager::register_action (editor_actions, "editor-cut", _("Cut"), sigc::mem_fun(*this, &Editor::cut));
503 ActionManager::session_sensitive_actions.push_back (act);
504 /* Note: for now, editor-delete does the exact same thing as editor-cut */
505 act = ActionManager::register_action (editor_actions, "editor-delete", _("Delete"), sigc::mem_fun(*this, &Editor::cut));
506 ActionManager::session_sensitive_actions.push_back (act);
507 act = ActionManager::register_action (editor_actions, "editor-copy", _("Copy"), sigc::mem_fun(*this, &Editor::copy));
508 ActionManager::session_sensitive_actions.push_back (act);
509 act = ActionManager::register_action (editor_actions, "editor-paste", _("Paste"), sigc::mem_fun(*this, &Editor::keyboard_paste));
510 ActionManager::session_sensitive_actions.push_back (act);
512 act = ActionManager::register_action (editor_actions, "quantize-region", _("Quantize Region"), sigc::mem_fun(*this, &Editor::quantize_region));
513 ActionManager::session_sensitive_actions.push_back (act);
514 ActionManager::region_selection_sensitive_actions.push_back (act);
516 act = ActionManager::register_action (editor_actions, "set-tempo-from-region", _("Set Tempo from Region=Bar"), sigc::mem_fun(*this, &Editor::use_region_as_bar));
517 ActionManager::session_sensitive_actions.push_back (act);
518 ActionManager::region_selection_sensitive_actions.push_back (act);
519 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));
520 ActionManager::session_sensitive_actions.push_back (act);
522 act = ActionManager::register_action (editor_actions, "split-region-at-transients", _("Split Regions At Percussion Onsets"), sigc::mem_fun(*this, &Editor::split_region_at_transients));
523 ActionManager::session_sensitive_actions.push_back (act);
524 ActionManager::region_selection_sensitive_actions.push_back (act);
525 act = ActionManager::register_action (editor_actions, "toggle-rhythm-ferret", _("Rhythm Ferret"), sigc::mem_fun(*this, &Editor::show_rhythm_ferret));
526 ActionManager::session_sensitive_actions.push_back (act);
527 act = ActionManager::register_action (editor_actions, "toggle-audio-connection-manager", _("Audio Connection Manager"), sigc::bind (sigc::mem_fun (*this, &Editor::show_global_port_matrix), ARDOUR::DataType::AUDIO));
528 ActionManager::session_sensitive_actions.push_back (act);
529 act = ActionManager::register_action (editor_actions, "toggle-midi-connection-manager", _("MIDI Connection Manager"), sigc::bind (sigc::mem_fun (*this, &Editor::show_global_port_matrix), ARDOUR::DataType::MIDI));
530 ActionManager::session_sensitive_actions.push_back (act);
531 act = ActionManager::register_action (editor_actions, "toggle-log-window", _("Log"),
532 sigc::mem_fun (ARDOUR_UI::instance(), &ARDOUR_UI::toggle_errors));
533 ActionManager::session_sensitive_actions.push_back (act);
535 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));
536 ActionManager::session_sensitive_actions.push_back (act);
537 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));
538 ActionManager::session_sensitive_actions.push_back (act);
540 act = ActionManager::register_action (editor_actions, "crop", _("Crop"), sigc::mem_fun(*this, &Editor::crop_region_to_selection));
541 ActionManager::session_sensitive_actions.push_back (act);
543 act = ActionManager::register_action (editor_actions, "start-range", _("Start Range"), sigc::mem_fun(*this, &Editor::keyboard_selection_begin));
544 ActionManager::session_sensitive_actions.push_back (act);
545 act = ActionManager::register_action (editor_actions, "finish-range", _("Finish Range"), sigc::bind (sigc::mem_fun(*this, &Editor::keyboard_selection_finish), false));
546 ActionManager::session_sensitive_actions.push_back (act);
547 act = ActionManager::register_action (editor_actions, "finish-add-range", _("Finish Add Range"), sigc::bind (sigc::mem_fun(*this, &Editor::keyboard_selection_finish), true));
548 ActionManager::session_sensitive_actions.push_back (act);
550 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));
551 ActionManager::session_sensitive_actions.push_back (act);
552 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));
553 ActionManager::session_sensitive_actions.push_back (act);
555 act = ActionManager::register_toggle_action (editor_actions, "toggle-follow-playhead", _("Follow Playhead"), (sigc::mem_fun(*this, &Editor::toggle_follow_playhead)));
556 ActionManager::session_sensitive_actions.push_back (act);
557 act = ActionManager::register_action (editor_actions, "remove-last-capture", _("Remove Last Capture"), (sigc::mem_fun(*this, &Editor::remove_last_capture)));
558 ActionManager::session_sensitive_actions.push_back (act);
560 ActionManager::register_toggle_action (editor_actions, "toggle-stationary-playhead", _("Stationary Playhead"), (mem_fun(*this, &Editor::toggle_stationary_playhead)));
562 act = ActionManager::register_action (editor_actions, "insert-time", _("Insert Time"), (sigc::mem_fun(*this, &Editor::do_insert_time)));
563 ActionManager::session_sensitive_actions.push_back (act);
564 ActionManager::track_selection_sensitive_actions.push_back (act);
566 act = ActionManager::register_action (editor_actions, "toggle-track-active", _("Toggle Active"), (sigc::mem_fun(*this, &Editor::toggle_tracks_active)));
567 ActionManager::session_sensitive_actions.push_back (act);
568 ActionManager::track_selection_sensitive_actions.push_back (act);
569 if (Profile->get_sae()) {
570 act = ActionManager::register_action (editor_actions, "remove-track", _("Delete"), (sigc::mem_fun(*this, &Editor::remove_tracks)));
571 } else {
572 act = ActionManager::register_action (editor_actions, "remove-track", _("Remove"), (sigc::mem_fun(*this, &Editor::remove_tracks)));
574 ActionManager::session_sensitive_actions.push_back (act);
575 ActionManager::track_selection_sensitive_actions.push_back (act);
577 act = ActionManager::register_action (editor_actions, "fit-tracks", _("Fit Selected Tracks"), sigc::mem_fun(*this, &Editor::fit_selected_tracks));
578 ActionManager::session_sensitive_actions.push_back (act);
579 ActionManager::track_selection_sensitive_actions.push_back (act);
580 act = ActionManager::register_action (editor_actions, "track-height-largest", _("Largest"), sigc::bind (
581 sigc::mem_fun(*this, &Editor::set_track_height), TimeAxisView::hLargest));
582 ActionManager::session_sensitive_actions.push_back (act);
583 ActionManager::track_selection_sensitive_actions.push_back (act);
584 act = ActionManager::register_action (editor_actions, "track-height-larger", _("Larger"), sigc::bind (
585 sigc::mem_fun(*this, &Editor::set_track_height), TimeAxisView::hLarger));
586 ActionManager::session_sensitive_actions.push_back (act);
587 ActionManager::track_selection_sensitive_actions.push_back (act);
588 act = ActionManager::register_action (editor_actions, "track-height-large", _("Large"), sigc::bind (
589 sigc::mem_fun(*this, &Editor::set_track_height), TimeAxisView::hLarge));
590 ActionManager::session_sensitive_actions.push_back (act);
591 ActionManager::track_selection_sensitive_actions.push_back (act);
592 act = ActionManager::register_action (editor_actions, "track-height-normal", _("Normal"), sigc::bind (
593 sigc::mem_fun(*this, &Editor::set_track_height), TimeAxisView::hNormal));
594 ActionManager::session_sensitive_actions.push_back (act);
595 ActionManager::track_selection_sensitive_actions.push_back (act);
596 act = ActionManager::register_action (editor_actions, "track-height-small", _("Small"), sigc::bind (
597 sigc::mem_fun(*this, &Editor::set_track_height), TimeAxisView::hSmall));
598 ActionManager::track_selection_sensitive_actions.push_back (act);
599 ActionManager::session_sensitive_actions.push_back (act);
600 ActionManager::track_selection_sensitive_actions.push_back (act);
601 act = ActionManager::register_action (editor_actions, "track-height-smaller", _("Smaller"), sigc::bind (
602 sigc::mem_fun(*this, &Editor::set_track_height), TimeAxisView::hSmaller));
603 ActionManager::session_sensitive_actions.push_back (act);
604 ActionManager::track_selection_sensitive_actions.push_back (act);
606 Glib::RefPtr<ActionGroup> zoom_actions = ActionGroup::create (X_("Zoom"));
607 RadioAction::Group zoom_group;
609 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));
610 ActionManager::session_sensitive_actions.push_back (act);
611 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));
612 ActionManager::session_sensitive_actions.push_back (act);
613 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));
614 ActionManager::session_sensitive_actions.push_back (act);
615 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));
616 ActionManager::session_sensitive_actions.push_back (act);
617 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));
618 ActionManager::session_sensitive_actions.push_back (act);
619 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));
620 ActionManager::session_sensitive_actions.push_back (act);
622 Glib::RefPtr<ActionGroup> mouse_mode_actions = ActionGroup::create (X_("MouseMode"));
623 RadioAction::Group mouse_mode_group;
625 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));
626 act->connect_proxy (mouse_move_button);
627 mouse_move_button.set_image (*(manage (new Image (::get_icon("tool_object")))));
628 mouse_move_button.set_label ("");
629 mouse_move_button.set_name ("MouseModeButton");
630 mouse_move_button.get_image ()->show ();
632 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));
633 act->connect_proxy (mouse_select_button);
634 mouse_select_button.set_image (*(manage (new Image (::get_icon("tool_range")))));
635 mouse_select_button.set_label ("");
636 mouse_select_button.set_name ("MouseModeButton");
637 mouse_select_button.get_image ()->show ();
639 join_object_range_button.set_image (*(manage (new Image (::get_icon ("tool_object_range")))));
640 join_object_range_button.set_label ("");
641 join_object_range_button.set_name ("MouseModeButton");
642 join_object_range_button.get_image ()->show ();
644 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));
645 act->connect_proxy (mouse_gain_button);
646 mouse_gain_button.set_image (*(manage (new Image (::get_icon("tool_gain")))));
647 mouse_gain_button.set_label ("");
648 mouse_gain_button.set_name ("MouseModeButton");
649 mouse_gain_button.get_image ()->show ();
651 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));
652 act->connect_proxy (mouse_zoom_button);
653 mouse_zoom_button.set_image (*(manage (new Image (::get_icon("tool_zoom")))));
654 mouse_zoom_button.set_label ("");
655 mouse_zoom_button.set_name ("MouseModeButton");
656 mouse_zoom_button.get_image ()->show ();
658 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));
659 act->connect_proxy (mouse_audition_button);
660 mouse_audition_button.set_image (*(manage (new Image (::get_icon("tool_audition")))));
661 mouse_audition_button.set_label ("");
662 mouse_audition_button.set_name ("MouseModeButton");
663 mouse_audition_button.get_image ()->show ();
665 act = ActionManager::register_radio_action (mouse_mode_actions, mouse_mode_group, "set-mouse-mode-timefx", _("Timefx Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled), Editing::MouseTimeFX));
666 act->connect_proxy (mouse_timefx_button);
667 mouse_timefx_button.set_image (*(manage (new Image (::get_icon("tool_stretch")))));
668 mouse_timefx_button.set_label ("");
669 mouse_timefx_button.set_name ("MouseModeButton");
670 mouse_timefx_button.get_image ()->show ();
672 ActionManager::register_action (editor_actions, "step-mouse-mode", _("Step Mouse Mode"), sigc::bind (sigc::mem_fun(*this, &Editor::step_mouse_mode), true));
674 act = ActionManager::register_toggle_action (mouse_mode_actions, "toggle-internal-edit", _("Edit MIDI"), sigc::mem_fun(*this, &Editor::toggle_internal_editing));
675 act->connect_proxy (internal_edit_button);
676 internal_edit_button.set_image (*(manage (new Image (::get_icon("tool_note")))));
677 internal_edit_button.set_label ("");
678 internal_edit_button.set_name ("MouseModeButton");
679 internal_edit_button.get_image ()->show ();
681 RadioAction::Group edit_point_group;
682 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)));
683 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)));
684 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)));
686 ActionManager::register_action (editor_actions, "cycle-edit-point", _("PropertyChange Edit Point"), sigc::bind (sigc::mem_fun (*this, &Editor::cycle_edit_point), false));
687 ActionManager::register_action (editor_actions, "cycle-edit-point-with-marker", _("PropertyChange Edit Point Including Marker"), sigc::bind (sigc::mem_fun (*this, &Editor::cycle_edit_point), true));
688 if (!Profile->get_sae()) {
689 ActionManager::register_action (editor_actions, "set-edit-splice", _("Splice"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Splice));
691 ActionManager::register_action (editor_actions, "set-edit-slide", _("Slide"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Slide));
692 ActionManager::register_action (editor_actions, "set-edit-lock", _("Lock"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode), Lock));
693 ActionManager::register_action (editor_actions, "toggle-edit-mode", _("Toggle Edit Mode"), sigc::mem_fun (*this, &Editor::cycle_edit_mode));
695 ActionManager::register_action (editor_actions, X_("SnapTo"), _("Snap to"));
696 ActionManager::register_action (editor_actions, X_("SnapMode"), _("Snap Mode"));
698 RadioAction::Group snap_mode_group;
699 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)));
700 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)));
701 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)));
703 ActionManager::register_action (editor_actions, X_("cycle-snap-mode"), _("Next Snap Mode"), sigc::mem_fun (*this, &Editor::cycle_snap_mode));
704 ActionManager::register_action (editor_actions, X_("cycle-snap-choice"), _("Next Snap Choice"), sigc::mem_fun (*this, &Editor::cycle_snap_choice));
706 Glib::RefPtr<ActionGroup> snap_actions = ActionGroup::create (X_("Snap"));
707 RadioAction::Group snap_choice_group;
709 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)));
710 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)));
711 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)));
712 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)));
713 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)));
714 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)));
715 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::SnapToAThirtysecondBeat)));
716 ActionManager::register_radio_action (snap_actions, snap_choice_group, X_("snap-to-asixteenthbeat"), _("Snap to A Sixteenth Beat"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen), Editing::SnapToASixteenthBeat)));
717 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::SnapToAEighthBeat)));
718 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::SnapToAQuarterBeat)));
719 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::SnapToAThirdBeat)));
720 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)));
721 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)));
722 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)));
723 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)));
724 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)));
725 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)));
726 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)));
728 /* RULERS */
730 Glib::RefPtr<ActionGroup> ruler_actions = ActionGroup::create (X_("Rulers"));
731 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)));
732 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)));
733 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)));
734 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)));
735 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)));
736 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)));
737 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_frames)));
738 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_bbt)));
739 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)));
740 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)));
742 /* set defaults here */
744 no_ruler_shown_update = true;
745 ruler_meter_action->set_active (true);
746 ruler_tempo_action->set_active (true);
747 ruler_marker_action->set_active (true);
748 ruler_range_action->set_active (false);
749 ruler_loop_punch_action->set_active (true);
750 ruler_loop_punch_action->set_active (true);
751 if (Profile->get_sae()) {
752 ruler_bbt_action->set_active (true);
753 ruler_cd_marker_action->set_active (false);
754 ruler_timecode_action->set_active (false);
755 ruler_minsec_action->set_active (true);
756 } else {
757 ruler_bbt_action->set_active (false);
758 ruler_cd_marker_action->set_active (true);
759 ruler_timecode_action->set_active (true);
760 ruler_minsec_action->set_active (false);
762 ruler_samples_action->set_active (false);
763 no_ruler_shown_update = false;
765 /* REGION LIST */
767 Glib::RefPtr<ActionGroup> rl_actions = ActionGroup::create (X_("RegionList"));
768 RadioAction::Group sort_type_group;
769 RadioAction::Group sort_order_group;
771 /* the region list popup menu */
772 ActionManager::register_action (rl_actions, X_("RegionListSort"), _("Sort"));
774 act = ActionManager::register_action (rl_actions, X_("rlAudition"), _("Audition"), sigc::mem_fun(*this, &Editor::audition_region_from_region_list));
775 ActionManager::region_list_selection_sensitive_actions.push_back (act);
776 act = ActionManager::register_action (rl_actions, X_("rlHide"), _("Hide"), sigc::mem_fun(*this, &Editor::hide_region_from_region_list));
777 ActionManager::region_list_selection_sensitive_actions.push_back (act);
778 act = ActionManager::register_action (rl_actions, X_("rlRemove"), _("Remove"), sigc::mem_fun (*_regions, &EditorRegions::remove_region));
779 ActionManager::region_list_selection_sensitive_actions.push_back (act);
780 ActionManager::register_toggle_action (rl_actions, X_("rlShowAll"), _("Show All"), sigc::mem_fun(*_regions, &EditorRegions::toggle_full));
781 ActionManager::register_toggle_action (rl_actions, X_("rlShowAuto"), _("Show Automatic Regions"), sigc::mem_fun (*_regions, &EditorRegions::toggle_show_auto_regions));
783 ActionManager::register_radio_action (rl_actions, sort_order_group, X_("SortAscending"), _("Ascending"),
784 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_direction), true));
785 ActionManager::register_radio_action (rl_actions, sort_order_group, X_("SortDescending"), _("Descending"),
786 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_direction), false));
788 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionName"), _("By Region Name"),
789 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByName, false));
790 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionLength"), _("By Region Length"),
791 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByLength, false));
792 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionPosition"), _("By Region Position"),
793 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByPosition, false));
794 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionTimestamp"), _("By Region Timestamp"),
795 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByTimestamp, false));
796 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionStartinFile"), _("By Region Start in File"),
797 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByStartInFile, false));
798 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortByRegionEndinFile"), _("By Region End in File"),
799 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), ByEndInFile, false));
800 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileName"), _("By Source File Name"),
801 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileName, false));
802 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileLength"), _("By Source File Length"),
803 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileLength, false));
804 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFileCreationDate"), _("By Source File Creation Date"),
805 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileCreationDate, false));
806 ActionManager::register_radio_action (rl_actions, sort_type_group, X_("SortBySourceFilesystem"), _("By Source Filesystem"),
807 sigc::bind (sigc::mem_fun (*_regions, &EditorRegions::reset_sort_type), BySourceFileFS, false));
810 /* the next two are duplicate items with different names for use in two different contexts */
812 act = ActionManager::register_action (editor_actions, X_("addExistingAudioFiles"), _("Import"), sigc::mem_fun (*this, &Editor::external_audio_dialog));
813 ActionManager::session_sensitive_actions.push_back (act);
814 ActionManager::write_sensitive_actions.push_back (act);
816 act = ActionManager::register_action (editor_actions, X_("addExternalAudioToRegionList"), _("Import to Region List"), sigc::bind (sigc::mem_fun(*this, &Editor::add_external_audio_action), ImportAsRegion));
817 ActionManager::session_sensitive_actions.push_back (act);
818 ActionManager::write_sensitive_actions.push_back (act);
820 act = ActionManager::register_action (editor_actions, X_("importFromSession"), _("Import From Session"), sigc::mem_fun(*this, &Editor::session_import_dialog));
821 ActionManager::write_sensitive_actions.push_back (act);
823 ActionManager::register_toggle_action (editor_actions, X_("ToggleWaveformsWhileRecording"), _("Show Waveforms While Recording"), sigc::mem_fun (*this, &Editor::toggle_waveforms_while_recording));
825 ActionManager::register_toggle_action (editor_actions, X_("ToggleSummary"), _("Show Summary"), sigc::mem_fun (*this, &Editor::set_summary));
827 ActionManager::register_toggle_action (editor_actions, X_("ToggleGroupTabs"), _("Show Group Tabs"), sigc::mem_fun (*this, &Editor::set_group_tabs));
829 ActionManager::register_toggle_action (editor_actions, X_("ToggleMeasureVisibility"), _("Show Measures"), sigc::mem_fun (*this, &Editor::toggle_measure_visibility));
831 /* if there is a logo in the editor canvas, its always visible at startup */
833 act = ActionManager::register_toggle_action (editor_actions, X_("ToggleLogoVisibility"), _("Show Logo"), sigc::mem_fun (*this, &Editor::toggle_logo_visibility));
834 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
835 tact->set_active (true);
837 /* MIDI */
839 Glib::RefPtr<ActionGroup> midi_actions = ActionGroup::create (X_("MIDI"));
840 ActionManager::register_action (midi_actions, X_("panic"), _("Panic"), sigc::mem_fun(*this, &Editor::midi_panic));
842 ActionManager::add_action_group (rl_actions);
843 ActionManager::add_action_group (ruler_actions);
844 ActionManager::add_action_group (zoom_actions);
845 ActionManager::add_action_group (mouse_mode_actions);
846 ActionManager::add_action_group (snap_actions);
847 ActionManager::add_action_group (editor_actions);
848 ActionManager::add_action_group (midi_actions);
851 void
852 Editor::toggle_ruler_visibility (RulerType rt)
854 const char* action = 0;
856 if (no_ruler_shown_update) {
857 return;
860 switch (rt) {
861 case ruler_metric_timecode:
862 action = "toggle-timecode-ruler";
863 break;
864 case ruler_metric_bbt:
865 action = "toggle-bbt-ruler";
866 break;
867 case ruler_metric_frames:
868 action = "toggle-samples-ruler";
869 break;
870 case ruler_metric_minsec:
871 action = "toggle-minsec-ruler";
872 break;
873 case ruler_time_tempo:
874 action = "toggle-tempo-ruler";
875 break;
876 case ruler_time_meter:
877 action = "toggle-meter-ruler";
878 break;
879 case ruler_time_marker:
880 action = "toggle-marker-ruler";
881 break;
882 case ruler_time_range_marker:
883 action = "toggle-range-ruler";
884 break;
885 case ruler_time_transport_marker:
886 action = "toggle-loop-punch-ruler";
887 break;
888 case ruler_time_cd_marker:
889 action = "toggle-cd-marker-ruler";
890 break;
893 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Rulers"), action);
894 if (act) {
895 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
896 update_ruler_visibility ();
897 store_ruler_visibility ();
901 void
902 Editor::toggle_waveforms_while_recording ()
904 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleWaveformsWhileRecording"));
905 if (act) {
906 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
907 set_show_waveforms_recording (tact->get_active());
911 void
912 Editor::set_summary ()
914 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleSummary"));
915 if (act) {
916 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
917 _session->config.set_show_summary (tact->get_active ());
921 void
922 Editor::set_group_tabs ()
924 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleGroupTabs"));
925 if (act) {
926 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
927 _session->config.set_show_group_tabs (tact->get_active ());
931 void
932 Editor::toggle_measure_visibility ()
934 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleMeasureVisibility"));
935 if (act) {
936 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
937 set_show_measures (tact->get_active());
941 void
942 Editor::toggle_logo_visibility ()
944 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleLogoVisibility"));
946 if (act) {
947 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
948 if (logo_item) {
949 if (tact->get_active()) {
950 logo_item->show ();
951 } else {
952 logo_item->hide ();
958 RefPtr<RadioAction>
959 Editor::snap_type_action (SnapType type)
962 const char* action = 0;
963 RefPtr<Action> act;
965 switch (type) {
966 case Editing::SnapToCDFrame:
967 action = "snap-to-cd-frame";
968 break;
969 case Editing::SnapToTimecodeFrame:
970 action = "snap-to-timecode-frame";
971 break;
972 case Editing::SnapToTimecodeSeconds:
973 action = "snap-to-timecode-seconds";
974 break;
975 case Editing::SnapToTimecodeMinutes:
976 action = "snap-to-timecode-minutes";
977 break;
978 case Editing::SnapToSeconds:
979 action = "snap-to-seconds";
980 break;
981 case Editing::SnapToMinutes:
982 action = "snap-to-minutes";
983 break;
984 case Editing::SnapToAThirtysecondBeat:
985 action = "snap-to-thirtyseconds";
986 break;
987 case Editing::SnapToASixteenthBeat:
988 action = "snap-to-asixteenthbeat";
989 break;
990 case Editing::SnapToAEighthBeat:
991 action = "snap-to-eighths";
992 break;
993 case Editing::SnapToAQuarterBeat:
994 action = "snap-to-quarters";
995 break;
996 case Editing::SnapToAThirdBeat:
997 action = "snap-to-thirds";
998 break;
999 case Editing::SnapToBeat:
1000 action = "snap-to-beat";
1001 break;
1002 case Editing::SnapToBar:
1003 action = "snap-to-bar";
1004 break;
1005 case Editing::SnapToMark:
1006 action = "snap-to-mark";
1007 break;
1008 case Editing::SnapToRegionStart:
1009 action = "snap-to-region-start";
1010 break;
1011 case Editing::SnapToRegionEnd:
1012 action = "snap-to-region-end";
1013 break;
1014 case Editing::SnapToRegionSync:
1015 action = "snap-to-region-sync";
1016 break;
1017 case Editing::SnapToRegionBoundary:
1018 action = "snap-to-region-boundary";
1019 break;
1020 default:
1021 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible snap-to type", (int) type) << endmsg;
1022 /*NOTREACHED*/
1025 act = ActionManager::get_action (X_("Snap"), action);
1027 if (act) {
1028 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1029 return ract;
1031 } else {
1032 error << string_compose (_("programming error: %1"), "Editor::snap_type_chosen could not find action to match type.") << endmsg;
1033 return RefPtr<RadioAction>();
1037 void
1038 Editor::cycle_snap_choice()
1040 switch (_snap_type) {
1041 case Editing::SnapToCDFrame:
1042 set_snap_to (Editing::SnapToTimecodeFrame);
1043 break;
1044 case Editing::SnapToTimecodeFrame:
1045 set_snap_to (Editing::SnapToTimecodeSeconds);
1046 break;
1047 case Editing::SnapToTimecodeSeconds:
1048 set_snap_to (Editing::SnapToTimecodeMinutes);
1049 break;
1050 case Editing::SnapToTimecodeMinutes:
1051 set_snap_to (Editing::SnapToSeconds);
1052 break;
1053 case Editing::SnapToSeconds:
1054 set_snap_to (Editing::SnapToMinutes);
1055 break;
1056 case Editing::SnapToMinutes:
1057 set_snap_to (Editing::SnapToAThirtysecondBeat);
1058 break;
1059 case Editing::SnapToAThirtysecondBeat:
1060 set_snap_to (Editing::SnapToASixteenthBeat);
1061 break;
1062 case Editing::SnapToASixteenthBeat:
1063 set_snap_to (Editing::SnapToAEighthBeat);
1064 break;
1065 case Editing::SnapToAEighthBeat:
1066 set_snap_to (Editing::SnapToAQuarterBeat);
1067 break;
1068 case Editing::SnapToAQuarterBeat:
1069 set_snap_to (Editing::SnapToAThirdBeat);
1070 break;
1071 case Editing::SnapToAThirdBeat:
1072 set_snap_to (Editing::SnapToBeat);
1073 break;
1074 case Editing::SnapToBeat:
1075 set_snap_to (Editing::SnapToBar);
1076 break;
1077 case Editing::SnapToBar:
1078 set_snap_to (Editing::SnapToMark);
1079 break;
1080 case Editing::SnapToMark:
1081 set_snap_to (Editing::SnapToRegionStart);
1082 break;
1083 case Editing::SnapToRegionStart:
1084 set_snap_to (Editing::SnapToRegionEnd);
1085 break;
1086 case Editing::SnapToRegionEnd:
1087 set_snap_to (Editing::SnapToRegionSync);
1088 break;
1089 case Editing::SnapToRegionSync:
1090 set_snap_to (Editing::SnapToRegionBoundary);
1091 break;
1092 case Editing::SnapToRegionBoundary:
1093 set_snap_to (Editing::SnapToCDFrame);
1094 break;
1098 void
1099 Editor::snap_type_chosen (SnapType type)
1101 /* this is driven by a toggle on a radio group, and so is invoked twice,
1102 once for the item that became inactive and once for the one that became
1103 active.
1106 RefPtr<RadioAction> ract = snap_type_action (type);
1108 if (ract && ract->get_active()) {
1109 set_snap_to (type);
1113 RefPtr<RadioAction>
1114 Editor::snap_mode_action (SnapMode mode)
1116 const char* action = 0;
1117 RefPtr<Action> act;
1119 switch (mode) {
1120 case Editing::SnapOff:
1121 action = X_("snap-off");
1122 break;
1123 case Editing::SnapNormal:
1124 action = X_("snap-normal");
1125 break;
1126 case Editing::SnapMagnetic:
1127 action = X_("snap-magnetic");
1128 break;
1129 default:
1130 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible snap mode type", (int) mode) << endmsg;
1131 /*NOTREACHED*/
1134 act = ActionManager::get_action (X_("Editor"), action);
1136 if (act) {
1137 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1138 return ract;
1140 } else {
1141 error << string_compose (_("programming error: %1: %2"), "Editor::snap_mode_chosen could not find action to match mode.", action) << endmsg;
1142 return RefPtr<RadioAction> ();
1146 void
1147 Editor::cycle_snap_mode ()
1149 switch (_snap_mode) {
1150 case SnapOff:
1151 set_snap_mode (SnapNormal);
1152 break;
1153 case SnapNormal:
1154 set_snap_mode (SnapMagnetic);
1155 break;
1156 case SnapMagnetic:
1157 set_snap_mode (SnapOff);
1158 break;
1162 void
1163 Editor::snap_mode_chosen (SnapMode mode)
1165 /* this is driven by a toggle on a radio group, and so is invoked twice,
1166 once for the item that became inactive and once for the one that became
1167 active.
1170 RefPtr<RadioAction> ract = snap_mode_action (mode);
1172 if (ract && ract->get_active()) {
1173 set_snap_mode (mode);
1177 RefPtr<RadioAction>
1178 Editor::edit_point_action (EditPoint ep)
1180 const char* action = 0;
1181 RefPtr<Action> act;
1183 switch (ep) {
1184 case Editing::EditAtPlayhead:
1185 action = X_("edit-at-playhead");
1186 break;
1187 case Editing::EditAtSelectedMarker:
1188 action = X_("edit-at-selected-marker");
1189 break;
1190 case Editing::EditAtMouse:
1191 action = X_("edit-at-mouse");
1192 break;
1193 default:
1194 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible edit point type", (int) ep) << endmsg;
1195 /*NOTREACHED*/
1198 act = ActionManager::get_action (X_("Editor"), action);
1200 if (act) {
1201 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1202 return ract;
1204 } else {
1205 error << string_compose (_("programming error: %1: %2"), "Editor::edit_point_action could not find action to match edit point.", action) << endmsg;
1206 return RefPtr<RadioAction> ();
1210 void
1211 Editor::edit_point_chosen (EditPoint ep)
1213 /* this is driven by a toggle on a radio group, and so is invoked twice,
1214 once for the item that became inactive and once for the one that became
1215 active.
1218 RefPtr<RadioAction> ract = edit_point_action (ep);
1220 if (ract && ract->get_active()) {
1221 set_edit_point_preference (ep);
1226 RefPtr<RadioAction>
1227 Editor::zoom_focus_action (ZoomFocus focus)
1229 const char* action = 0;
1230 RefPtr<Action> act;
1232 switch (focus) {
1233 case ZoomFocusLeft:
1234 action = X_("zoom-focus-left");
1235 break;
1236 case ZoomFocusRight:
1237 action = X_("zoom-focus-right");
1238 break;
1239 case ZoomFocusCenter:
1240 action = X_("zoom-focus-center");
1241 break;
1242 case ZoomFocusPlayhead:
1243 action = X_("zoom-focus-playhead");
1244 break;
1245 case ZoomFocusMouse:
1246 action = X_("zoom-focus-mouse");
1247 break;
1248 case ZoomFocusEdit:
1249 action = X_("zoom-focus-edit");
1250 break;
1251 default:
1252 fatal << string_compose (_("programming error: %1: %2"), "Editor: impossible focus type", (int) focus) << endmsg;
1253 /*NOTREACHED*/
1256 act = ActionManager::get_action (X_("Zoom"), action);
1258 if (act) {
1259 RefPtr<RadioAction> ract = RefPtr<RadioAction>::cast_dynamic(act);
1260 return ract;
1261 } else {
1262 error << string_compose (_("programming error: %1: %2"), "Editor::zoom_focus_action could not find action to match focus.", action) << endmsg;
1265 return RefPtr<RadioAction> ();
1268 void
1269 Editor::zoom_focus_chosen (ZoomFocus focus)
1271 /* this is driven by a toggle on a radio group, and so is invoked twice,
1272 once for the item that became inactive and once for the one that became
1273 active.
1276 RefPtr<RadioAction> ract = zoom_focus_action (focus);
1278 if (ract && ract->get_active()) {
1279 set_zoom_focus (focus);
1283 /** A Configuration parameter has changed.
1284 * @param parameter_name Name of the changed parameter.
1286 void
1287 Editor::parameter_changed (std::string p)
1289 ENSURE_GUI_THREAD (*this, &Editor::parameter_changed, p)
1291 if (p == "auto-loop") {
1292 update_loop_range_view (true);
1293 } else if (p == "punch-in") {
1294 update_punch_range_view (true);
1295 } else if (p == "punch-out") {
1296 update_punch_range_view (true);
1297 } else if (p == "timecode-format") {
1298 update_just_timecode ();
1299 } else if (p == "xfades-visible") {
1300 update_xfade_visibility ();
1301 } else if (p == "show-region-fades") {
1302 update_region_fade_visibility ();
1303 } else if (p == "edit-mode") {
1304 edit_mode_selector.set_active_text (edit_mode_to_string (Config->get_edit_mode()));
1305 } else if (p == "subframes-per-frame") {
1306 update_just_timecode ();
1307 } else if (p == "show-track-meters") {
1308 toggle_meter_updating();
1309 } else if (p == "show-summary") {
1311 bool const s = _session->config.get_show_summary ();
1312 if (s) {
1313 _summary_hbox.show ();
1314 } else {
1315 _summary_hbox.hide ();
1318 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleSummary"));
1319 if (act) {
1320 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1321 if (tact->get_active () != s) {
1322 tact->set_active (s);
1325 } else if (p == "show-group-tabs") {
1327 bool const s = _session->config.get_show_group_tabs ();
1328 if (s) {
1329 _group_tabs->show ();
1330 } else {
1331 _group_tabs->hide ();
1334 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("ToggleGroupTabs"));
1335 if (act) {
1336 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1337 if (tact->get_active () != s) {
1338 tact->set_active (s);
1344 void
1345 Editor::reset_focus ()
1347 track_canvas->grab_focus();
1350 void
1351 Editor::reset_canvas_action_sensitivity (bool onoff)
1353 if (_edit_point != EditAtMouse) {
1354 onoff = true;
1357 for (vector<Glib::RefPtr<Action> >::iterator x = ActionManager::mouse_edit_point_requires_canvas_actions.begin();
1358 x != ActionManager::mouse_edit_point_requires_canvas_actions.end(); ++x) {
1359 (*x)->set_sensitive (onoff);
1363 void
1364 Editor::toggle_internal_editing ()
1366 Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("MouseMode"), X_("toggle-internal-edit"));
1367 if (act) {
1368 Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
1369 set_internal_edit (tact->get_active());