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.
21 #include <gtk/gtkiconfactory.h>
23 #include "gtkmm2ext/tearoff.h"
25 #include "ardour/ardour.h"
26 #include "ardour/profile.h"
27 #include "ardour/session.h"
30 #include "ardour_ui.h"
33 #include "gui_thread.h"
34 #include "time_axis_view.h"
37 #include "audio_time_axis.h"
38 #include "editor_group_tabs.h"
39 #include "editor_routes.h"
40 #include "editor_regions.h"
45 using namespace ARDOUR
;
47 using namespace Editing
;
50 Editor::register_actions ()
54 editor_actions
= ActionGroup::create (X_("Editor"));
56 /* non-operative menu items for menu bar */
58 ActionManager::register_action (editor_actions
, X_("AlignMenu"), _("Align"));
59 ActionManager::register_action (editor_actions
, X_("Autoconnect"), _("Autoconnect"));
60 ActionManager::register_action (editor_actions
, X_("Crossfades"), _("Crossfades"));
61 ActionManager::register_action (editor_actions
, X_("Edit"), _("Edit"));
62 ActionManager::register_action (editor_actions
, X_("EditCursorMovementOptions"), _("Move Selected Marker"));
63 ActionManager::register_action (editor_actions
, X_("EditSelectRangeOptions"), _("Select Range Operations"));
64 ActionManager::register_action (editor_actions
, X_("EditSelectRegionOptions"), _("Select Regions"));
65 ActionManager::register_action (editor_actions
, X_("EditPointMenu"), _("Edit Point"));
66 ActionManager::register_action (editor_actions
, X_("FadeMenu"), _("Fade"));
67 ActionManager::register_action (editor_actions
, X_("LatchMenu"), _("Latch"));
68 ActionManager::register_action (editor_actions
, X_("RegionMenu"), _("Region"));
69 ActionManager::register_action (editor_actions
, X_("RegionMenuLayering"), _("Layering"));
70 ActionManager::register_action (editor_actions
, X_("RegionMenuNudge"), _("Nudge"));
71 ActionManager::register_action (editor_actions
, X_("RegionMenuTrim"), _("Trim"));
72 ActionManager::register_action (editor_actions
, X_("RegionMenuGain"), _("Gain"));
73 ActionManager::register_action (editor_actions
, X_("RegionMenuRanges"), _("Ranges"));
74 ActionManager::register_action (editor_actions
, X_("RegionMenuFades"), _("Fades"));
75 ActionManager::register_action (editor_actions
, X_("RegionMenuMIDI"), _("MIDI"));
76 ActionManager::register_action (editor_actions
, X_("RegionMenuDuplicate"), _("Duplicate"));
77 ActionManager::register_action (editor_actions
, X_("Link"), _("Link"));
78 ActionManager::register_action (editor_actions
, X_("ZoomFocusMenu"), _("Zoom Focus"));
79 ActionManager::register_action (editor_actions
, X_("KeyMouseActions"), _("Key Mouse"));
80 ActionManager::register_action (editor_actions
, X_("LocateToMarker"), _("Locate to Markers"));
81 ActionManager::register_action (editor_actions
, X_("MarkerMenu"), _("Markers"));
82 ActionManager::register_action (editor_actions
, X_("MeterFalloff"), _("Meter falloff"));
83 ActionManager::register_action (editor_actions
, X_("MeterHold"), _("Meter hold"));
84 ActionManager::register_action (editor_actions
, X_("MiscOptions"), _("Misc Options"));
85 ActionManager::register_action (editor_actions
, X_("Monitoring"), _("Monitoring"));
86 ActionManager::register_action (editor_actions
, X_("MoveActiveMarkMenu"), _("Active Mark"));
87 ActionManager::register_action (editor_actions
, X_("MovePlayHeadMenu"), _("Playhead"));
88 ActionManager::register_action (editor_actions
, X_("PlayMenu"), _("Play"));
89 ActionManager::register_action (editor_actions
, X_("PrimaryClockMenu"), _("Primary Clock"));
90 ActionManager::register_action (editor_actions
, X_("Pullup"), _("Pullup / Pulldown"));
91 ActionManager::register_action (editor_actions
, X_("RegionEditOps"), _("Region operations"));
92 ActionManager::register_action (editor_actions
, X_("RegionGainMenu"), _("Gain"));
93 ActionManager::register_action (editor_actions
, X_("RulerMenu"), _("Rulers"));
94 ActionManager::register_action (editor_actions
, X_("SavedViewMenu"), _("Views"));
95 ActionManager::register_action (editor_actions
, X_("ScrollMenu"), _("Scroll"));
96 ActionManager::register_action (editor_actions
, X_("SecondaryClockMenu"), _("Secondary Clock"));
97 ActionManager::register_action (editor_actions
, X_("Select"), _("Select"));
98 ActionManager::register_action (editor_actions
, X_("SelectMenu"), _("Select"));
99 ActionManager::register_action (editor_actions
, X_("SeparateMenu"), _("Separate"));
100 ActionManager::register_action (editor_actions
, X_("SetLoopMenu"), _("Loop"));
101 ActionManager::register_action (editor_actions
, X_("SetPunchMenu"), _("Punch"));
102 ActionManager::register_action (editor_actions
, X_("Solo"), _("Solo"));
103 ActionManager::register_action (editor_actions
, X_("Subframes"), _("Subframes"));
104 ActionManager::register_action (editor_actions
, X_("SyncMenu"), _("Sync"));
105 ActionManager::register_action (editor_actions
, X_("TempoMenu"), _("Tempo"));
106 ActionManager::register_action (editor_actions
, X_("Timecode"), _("Timecode fps"));
107 ActionManager::register_action (editor_actions
, X_("TrackHeightMenu"), _("Height"));
108 ActionManager::register_action (editor_actions
, X_("TrackMenu"), _("Track"));
109 ActionManager::register_action (editor_actions
, X_("Tools"), _("Tools"));
110 ActionManager::register_action (editor_actions
, X_("View"), _("View"));
111 ActionManager::register_action (editor_actions
, X_("ZoomFocus"), _("Zoom Focus"));
112 ActionManager::register_action (editor_actions
, X_("ZoomMenu"), _("Zoom"));
114 register_region_actions ();
116 /* add named actions for the editor */
118 ActionManager::register_action (editor_actions
, "escape", _("Break drag or deselect all"), sigc::mem_fun (*this, &Editor::escape
));
120 act
= ActionManager::register_toggle_action (editor_actions
, "show-editor-mixer", _("Show Editor Mixer"), sigc::mem_fun (*this, &Editor::editor_mixer_button_toggled
));
121 ActionManager::session_sensitive_actions
.push_back (act
);
122 act
= ActionManager::register_toggle_action (editor_actions
, "show-editor-list", _("Show Editor List"), sigc::mem_fun (*this, &Editor::editor_list_button_toggled
));
123 ActionManager::session_sensitive_actions
.push_back (act
);
125 act
= ActionManager::register_action (editor_actions
, "playhead-to-next-region-boundary", _("Playhead to Next Region Boundary"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_boundary
), true ));
126 ActionManager::session_sensitive_actions
.push_back (act
);
127 act
= ActionManager::register_action (editor_actions
, "playhead-to-next-region-boundary-noselection", _("Playhead to Next Region Boundary (No Track Selection)"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_boundary
), false ));
128 ActionManager::session_sensitive_actions
.push_back (act
);
129 act
= ActionManager::register_action (editor_actions
, "playhead-to-previous-region-boundary", _("Playhead to Previous Region Boundary"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_boundary
), true));
130 ActionManager::session_sensitive_actions
.push_back (act
);
131 act
= ActionManager::register_action (editor_actions
, "playhead-to-previous-region-boundary-noselection", _("Playhead to Previous Region Boundary (No Track Selection)"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_boundary
), false));
132 ActionManager::session_sensitive_actions
.push_back (act
);
134 act
= ActionManager::register_action (editor_actions
, "playhead-to-next-region-start", _("Playhead to Next Region Start"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_point
), playhead_cursor
, RegionPoint (Start
)));
135 ActionManager::session_sensitive_actions
.push_back (act
);
136 act
= ActionManager::register_action (editor_actions
, "playhead-to-next-region-end", _("Playhead to Next Region End"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_point
), playhead_cursor
, RegionPoint (End
)));
137 ActionManager::session_sensitive_actions
.push_back (act
);
138 act
= ActionManager::register_action (editor_actions
, "playhead-to-next-region-sync", _("Playhead to Next Region Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_next_region_point
), playhead_cursor
, RegionPoint (SyncPoint
)));
139 ActionManager::session_sensitive_actions
.push_back (act
);
141 act
= ActionManager::register_action (editor_actions
, "playhead-to-previous-region-start", _("Playhead to Previous Region Start"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_point
), playhead_cursor
, RegionPoint (Start
)));
142 ActionManager::session_sensitive_actions
.push_back (act
);
143 act
= ActionManager::register_action (editor_actions
, "playhead-to-previous-region-end", _("Playhead to Previous Region End"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_point
), playhead_cursor
, RegionPoint (End
)));
144 ActionManager::session_sensitive_actions
.push_back (act
);
145 act
= ActionManager::register_action (editor_actions
, "playhead-to-previous-region-sync", _("Playhead to Previous Region Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_previous_region_point
), playhead_cursor
, RegionPoint (SyncPoint
)));
146 ActionManager::session_sensitive_actions
.push_back (act
);
148 act
= ActionManager::register_action (editor_actions
, "selected-marker-to-next-region-boundary", _("To Next Region Boundary"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_boundary
), true));
149 ActionManager::session_sensitive_actions
.push_back (act
);
150 act
= ActionManager::register_action (editor_actions
, "selected-marker-to-next-region-boundary-noselection", _("To Next Region Boundary (No Track Selection)"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_boundary
), false));
151 ActionManager::session_sensitive_actions
.push_back (act
);
152 act
= ActionManager::register_action (editor_actions
, "selected-marker-to-previous-region-boundary", _("To Previous Region Boundary"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_boundary
), true));
153 ActionManager::session_sensitive_actions
.push_back (act
);
154 act
= ActionManager::register_action (editor_actions
, "selected-marker-to-previous-region-boundary-noselection", _("to Previous Region Boundary (No Track Selection)"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_boundary
), false));
155 ActionManager::session_sensitive_actions
.push_back (act
);
157 act
= ActionManager::register_action (editor_actions
, "edit-cursor-to-next-region-start", _("To Next Region Start"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_point
), RegionPoint (Start
)));
158 ActionManager::session_sensitive_actions
.push_back (act
);
159 act
= ActionManager::register_action (editor_actions
, "edit-cursor-to-next-region-end", _("To Next Region End"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_point
), RegionPoint (End
)));
160 ActionManager::session_sensitive_actions
.push_back (act
);
161 act
= ActionManager::register_action (editor_actions
, "edit-cursor-to-next-region-sync", _("To Next Region Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_next_region_point
), RegionPoint (SyncPoint
)));
162 ActionManager::session_sensitive_actions
.push_back (act
);
164 act
= ActionManager::register_action (editor_actions
, "edit-cursor-to-previous-region-start", _("To Previous Region Start"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_point
), RegionPoint (Start
)));
165 ActionManager::session_sensitive_actions
.push_back (act
);
166 act
= ActionManager::register_action (editor_actions
, "edit-cursor-to-previous-region-end", _("To Previous Region End"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_point
), RegionPoint (End
)));
167 ActionManager::session_sensitive_actions
.push_back (act
);
168 act
= ActionManager::register_action (editor_actions
, "edit-cursor-to-previous-region-sync", _("To Previous Region Sync"), sigc::bind (sigc::mem_fun(*this, &Editor::selected_marker_to_previous_region_point
), RegionPoint (SyncPoint
)));
169 ActionManager::session_sensitive_actions
.push_back (act
);
171 act
= ActionManager::register_action (editor_actions
, "edit-cursor-to-range-start", _("To Range Start"), sigc::mem_fun(*this, &Editor::selected_marker_to_selection_start
));
172 ActionManager::session_sensitive_actions
.push_back (act
);
173 act
= ActionManager::register_action (editor_actions
, "edit-cursor-to-range-end", _("To Range End"), sigc::mem_fun(*this, &Editor::selected_marker_to_selection_end
));
174 ActionManager::session_sensitive_actions
.push_back (act
);
176 act
= ActionManager::register_action (editor_actions
, "playhead-to-range-start", _("Playhead to Range Start"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_selection_start
), playhead_cursor
));
177 ActionManager::session_sensitive_actions
.push_back (act
);
178 act
= ActionManager::register_action (editor_actions
, "playhead-to-range-end", _("Playhead to Range End"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_to_selection_end
), playhead_cursor
));
179 ActionManager::session_sensitive_actions
.push_back (act
);
181 act
= ActionManager::register_action (editor_actions
, "select-all", _("Select All"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all
), Selection::Set
));
182 ActionManager::session_sensitive_actions
.push_back (act
);
183 act
= ActionManager::register_action (editor_actions
, "deselect-all", _("Deselect All"), sigc::mem_fun(*this, &Editor::deselect_all
));
184 ActionManager::session_sensitive_actions
.push_back (act
);
185 act
= ActionManager::register_action (editor_actions
, "invert-selection", _("Invert Selection"), sigc::mem_fun(*this, &Editor::invert_selection
));
186 ActionManager::session_sensitive_actions
.push_back (act
);
187 act
= ActionManager::register_action (editor_actions
, "select-all-after-edit-cursor", _("Select All After Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_using_edit
), true));
188 ActionManager::session_sensitive_actions
.push_back (act
);
189 act
= ActionManager::register_action (editor_actions
, "select-all-before-edit-cursor", _("Select All Before Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_using_edit
), false));
190 ActionManager::session_sensitive_actions
.push_back (act
);
192 act
= ActionManager::register_action (editor_actions
, "select-all-between-cursors", _("Select All Overlapping Edit Range"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_between
), false));
193 ActionManager::session_sensitive_actions
.push_back (act
);
194 act
= ActionManager::register_action (editor_actions
, "select-all-within-cursors", _("Select All Inside Edit Range"), sigc::bind (sigc::mem_fun(*this, &Editor::select_all_selectables_between
), true));
195 ActionManager::session_sensitive_actions
.push_back (act
);
197 act
= ActionManager::register_action (editor_actions
, "select-range-between-cursors", _("Select Edit Range"), sigc::mem_fun(*this, &Editor::select_range_between
));
198 ActionManager::session_sensitive_actions
.push_back (act
);
200 act
= ActionManager::register_action (editor_actions
, "select-all-in-punch-range", _("Select All in Punch Range"), sigc::mem_fun(*this, &Editor::select_all_selectables_using_punch
));
201 ActionManager::session_sensitive_actions
.push_back (act
);
202 act
= ActionManager::register_action (editor_actions
, "select-all-in-loop-range", _("Select All in Loop Range"), sigc::mem_fun(*this, &Editor::select_all_selectables_using_loop
));
203 ActionManager::session_sensitive_actions
.push_back (act
);
205 act
= ActionManager::register_action (editor_actions
, "select-next-route", _("Select Next Track or Bus"), sigc::mem_fun(*this, &Editor::select_next_route
));
206 ActionManager::session_sensitive_actions
.push_back (act
);
207 act
= ActionManager::register_action (editor_actions
, "select-prev-route", _("Select Previous Track or Bus"), sigc::mem_fun(*this, &Editor::select_prev_route
));
208 ActionManager::session_sensitive_actions
.push_back (act
);
210 act
= ActionManager::register_action (editor_actions
, "track-record-enable-toggle", _("Toggle Record Enable"), sigc::mem_fun(*this, &Editor::toggle_record_enable
));
211 ActionManager::session_sensitive_actions
.push_back (act
);
212 ActionManager::track_selection_sensitive_actions
.push_back (act
);
214 for (int i
= 1; i
<= 12; ++i
) {
215 string
const a
= string_compose (X_("save-visual-state-%1"), i
);
216 string
const n
= string_compose (_("Save View %1"), i
);
217 act
= ActionManager::register_action (editor_actions
, a
.c_str(), n
.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::start_visual_state_op
), i
- 1));
218 ActionManager::session_sensitive_actions
.push_back (act
);
221 for (int i
= 1; i
<= 12; ++i
) {
222 string
const a
= string_compose (X_("goto-visual-state-%1"), i
);
223 string
const n
= string_compose (_("Goto View %1"), i
);
224 act
= ActionManager::register_action (editor_actions
, a
.c_str(), n
.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::cancel_visual_state_op
), i
- 1));
225 ActionManager::session_sensitive_actions
.push_back (act
);
228 for (int i
= 1; i
<= 9; ++i
) {
229 string
const a
= string_compose (X_("goto-mark-%1"), i
);
230 string
const n
= string_compose (_("Locate to Mark %1"), i
);
231 act
= ActionManager::register_action (editor_actions
, a
.c_str(), n
.c_str(), sigc::bind (sigc::mem_fun (*this, &Editor::goto_nth_marker
), i
- 1));
232 ActionManager::session_sensitive_actions
.push_back (act
);
235 act
= ActionManager::register_action (editor_actions
, "jump-forward-to-mark", _("Jump Forward to Mark"), sigc::mem_fun(*this, &Editor::jump_forward_to_mark
));
236 ActionManager::session_sensitive_actions
.push_back (act
);
237 act
= ActionManager::register_action (editor_actions
, "jump-backward-to-mark", _("Jump Backward to Mark"), sigc::mem_fun(*this, &Editor::jump_backward_to_mark
));
238 ActionManager::session_sensitive_actions
.push_back (act
);
239 act
= ActionManager::register_action (editor_actions
, "add-location-from-playhead", _("Add Mark from Playhead"), sigc::mem_fun(*this, &Editor::add_location_from_playhead_cursor
));
240 ActionManager::session_sensitive_actions
.push_back (act
);
242 act
= ActionManager::register_action (editor_actions
, "nudge-next-forward", _("Nudge Next Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_forward
), true, false));
243 ActionManager::session_sensitive_actions
.push_back (act
);
244 act
= ActionManager::register_action (editor_actions
, "nudge-next-backward", _("Nudge Next Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_backward
), true, false));
245 ActionManager::session_sensitive_actions
.push_back (act
);
247 act
= ActionManager::register_action (editor_actions
, "nudge-playhead-forward", _("Nudge Playhead Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_forward
), false, true));
248 ActionManager::session_sensitive_actions
.push_back (act
);
249 act
= ActionManager::register_action (editor_actions
, "nudge-playhead-backward", _("Nudge Playhead Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::nudge_backward
), false, true));
250 ActionManager::session_sensitive_actions
.push_back (act
);
251 act
= ActionManager::register_action (editor_actions
, "playhead-forward-to-grid", _("Forward to Grid"), sigc::mem_fun(*this, &Editor::playhead_forward_to_grid
));
252 ActionManager::session_sensitive_actions
.push_back (act
);
253 act
= ActionManager::register_action (editor_actions
, "playhead-backward-to-grid", _("Backward to Grid"), sigc::mem_fun(*this, &Editor::playhead_backward_to_grid
));
254 ActionManager::session_sensitive_actions
.push_back (act
);
257 act
= ActionManager::register_action (editor_actions
, "temporal-zoom-out", _("Zoom Out"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_step
), true));
258 ActionManager::session_sensitive_actions
.push_back (act
);
259 act
= ActionManager::register_action (editor_actions
, "temporal-zoom-in", _("Zoom In"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_step
), false));
260 ActionManager::session_sensitive_actions
.push_back (act
);
261 act
= ActionManager::register_action (editor_actions
, "zoom-to-session", _("Zoom to Session"), sigc::mem_fun(*this, &Editor::temporal_zoom_session
));
262 ActionManager::session_sensitive_actions
.push_back (act
);
263 act
= ActionManager::register_action (editor_actions
, "zoom-to-region", _("Zoom to Region"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_to_region
), false));
264 ActionManager::session_sensitive_actions
.push_back (act
);
265 act
= ActionManager::register_action (editor_actions
, "zoom-to-region-both-axes", _("Zoom to Region (Width and Height)"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_to_region
), true));
266 ActionManager::session_sensitive_actions
.push_back (act
);
267 act
= ActionManager::register_action (editor_actions
, "toggle-zoom", _("Toggle Zoom State"), sigc::mem_fun(*this, &Editor::swap_visual_state
));
268 ActionManager::session_sensitive_actions
.push_back (act
);
270 act
= ActionManager::register_action (editor_actions
, "move-selected-tracks-up", _("Move Selected Tracks Up"), sigc::bind (sigc::mem_fun(*_routes
, &EditorRoutes::move_selected_tracks
), true));
271 ActionManager::session_sensitive_actions
.push_back (act
);
272 ActionManager::track_selection_sensitive_actions
.push_back (act
);
273 act
= ActionManager::register_action (editor_actions
, "move-selected-tracks-down", _("Move Selected Tracks Down"), sigc::bind (sigc::mem_fun(*_routes
, &EditorRoutes::move_selected_tracks
), false));
274 ActionManager::session_sensitive_actions
.push_back (act
);
275 ActionManager::track_selection_sensitive_actions
.push_back (act
);
277 act
= ActionManager::register_action (editor_actions
, "scroll-tracks-up", _("Scroll Tracks Up"), sigc::mem_fun(*this, &Editor::scroll_tracks_up
));
278 ActionManager::session_sensitive_actions
.push_back (act
);
279 ActionManager::track_selection_sensitive_actions
.push_back (act
);
280 act
= ActionManager::register_action (editor_actions
, "scroll-tracks-down", _("Scroll Tracks Down"), sigc::mem_fun(*this, &Editor::scroll_tracks_down
));
281 ActionManager::track_selection_sensitive_actions
.push_back (act
);
282 ActionManager::session_sensitive_actions
.push_back (act
);
283 act
= ActionManager::register_action (editor_actions
, "step-tracks-up", _("Step Tracks Up"), sigc::mem_fun(*this, &Editor::scroll_tracks_up_line
));
284 ActionManager::track_selection_sensitive_actions
.push_back (act
);
285 ActionManager::session_sensitive_actions
.push_back (act
);
286 act
= ActionManager::register_action (editor_actions
, "step-tracks-down", _("Step Tracks Down"), sigc::mem_fun(*this, &Editor::scroll_tracks_down_line
));
287 ActionManager::session_sensitive_actions
.push_back (act
);
288 ActionManager::track_selection_sensitive_actions
.push_back (act
);
290 act
= ActionManager::register_action (editor_actions
, "scroll-backward", _("Scroll Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_backward
), 0.8f
));
291 ActionManager::session_sensitive_actions
.push_back (act
);
292 act
= ActionManager::register_action (editor_actions
, "scroll-forward", _("Scroll Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_forward
), 0.8f
));
293 ActionManager::session_sensitive_actions
.push_back (act
);
294 act
= ActionManager::register_action (editor_actions
, "goto", _("goto"), sigc::mem_fun(*this, &Editor::goto_frame
));
295 ActionManager::session_sensitive_actions
.push_back (act
);
296 act
= ActionManager::register_action (editor_actions
, "center-playhead", _("Center Playhead"), sigc::mem_fun(*this, &Editor::center_playhead
));
297 ActionManager::session_sensitive_actions
.push_back (act
);
298 act
= ActionManager::register_action (editor_actions
, "center-edit-cursor", _("Center Active Marker"), sigc::mem_fun(*this, &Editor::center_edit_point
));
299 ActionManager::session_sensitive_actions
.push_back (act
);
301 act
= ActionManager::register_action (editor_actions
, "scroll-playhead-forward", _("Playhead Forward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_playhead
), true));;
302 ActionManager::session_sensitive_actions
.push_back (act
);
303 act
= ActionManager::register_action (editor_actions
, "scroll-playhead-backward", _("Playhead Backward"), sigc::bind (sigc::mem_fun(*this, &Editor::scroll_playhead
), false));
304 ActionManager::session_sensitive_actions
.push_back (act
);
306 act
= ActionManager::register_action (editor_actions
, "playhead-to-edit", _("Playhead to Active Mark"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_align
), true));
307 ActionManager::session_sensitive_actions
.push_back (act
);
308 act
= ActionManager::register_action (editor_actions
, "edit-to-playhead", _("Active Mark to Playhead"), sigc::bind (sigc::mem_fun(*this, &Editor::cursor_align
), false));
309 ActionManager::session_sensitive_actions
.push_back (act
);
311 act
= ActionManager::register_action (editor_actions
, "set-loop-from-edit-range", _("Set Loop from Edit Range"), sigc::bind (sigc::mem_fun(*this, &Editor::set_loop_from_edit_range
), false));
312 ActionManager::session_sensitive_actions
.push_back (act
);
313 act
= ActionManager::register_action (editor_actions
, "set-punch-from-edit-range", _("Set Punch from Edit Range"), sigc::mem_fun(*this, &Editor::set_punch_from_edit_range
));
314 ActionManager::session_sensitive_actions
.push_back (act
);
316 act
= ActionManager::register_action (editor_actions
, "play-from-edit-point", _("Play From Edit Point"), sigc::mem_fun(*this, &Editor::play_from_edit_point
));
317 ActionManager::session_sensitive_actions
.push_back (act
);
318 act
= ActionManager::register_action (editor_actions
, "play-from-edit-point-and-return", _("Play from Edit Point and Return"), sigc::mem_fun(*this, &Editor::play_from_edit_point_and_return
));
319 ActionManager::session_sensitive_actions
.push_back (act
);
321 act
= ActionManager::register_action (editor_actions
, "play-edit-range", _("Play Edit Range"), sigc::mem_fun(*this, &Editor::play_edit_range
));
322 act
= ActionManager::register_action (editor_actions
, "brush-at-mouse", _("Brush at Mouse"), sigc::mem_fun(*this, &Editor::kbd_brush
));
323 ActionManager::session_sensitive_actions
.push_back (act
);
325 act
= ActionManager::register_action (editor_actions
, "set-playhead", _("Playhead to Mouse"), sigc::mem_fun(*this, &Editor::set_playhead_cursor
));
326 ActionManager::session_sensitive_actions
.push_back (act
);
327 act
= ActionManager::register_action (editor_actions
, "set-edit-point", _("Active Marker to Mouse"), sigc::mem_fun(*this, &Editor::set_edit_point
));
328 ActionManager::session_sensitive_actions
.push_back (act
);
330 act
= ActionManager::register_action (editor_actions
, "duplicate-range", _("Duplicate Range"), sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_dialog
), false));
331 ActionManager::session_sensitive_actions
.push_back (act
);
333 undo_action
= act
= ActionManager::register_action (editor_actions
, "undo", _("Undo"), sigc::bind (sigc::mem_fun(*this, &Editor::undo
), 1U));
334 ActionManager::session_sensitive_actions
.push_back (act
);
335 redo_action
= act
= ActionManager::register_action (editor_actions
, "redo", _("Redo"), sigc::bind (sigc::mem_fun(*this, &Editor::redo
), 1U));
336 ActionManager::session_sensitive_actions
.push_back (act
);
338 act
= ActionManager::register_action (editor_actions
, "export-audio", _("Export Audio"), sigc::mem_fun(*this, &Editor::export_audio
));
339 ActionManager::session_sensitive_actions
.push_back (act
);
340 act
= ActionManager::register_action (editor_actions
, "export-range", _("Export Range"), sigc::mem_fun(*this, &Editor::export_range
));
341 ActionManager::session_sensitive_actions
.push_back (act
);
343 act
= ActionManager::register_action (editor_actions
, "editor-separate", _("Separate"), sigc::mem_fun(*this, &Editor::separate_region_from_selection
));
344 ActionManager::session_sensitive_actions
.push_back (act
);
345 ActionManager::mouse_edit_point_requires_canvas_actions
.push_back (act
);
347 act
= ActionManager::register_action (editor_actions
, "separate-from-punch", _("Separate Using Punch Range"), sigc::mem_fun(*this, &Editor::separate_region_from_punch
));
348 ActionManager::session_sensitive_actions
.push_back (act
);
349 ActionManager::mouse_edit_point_requires_canvas_actions
.push_back (act
);
351 act
= ActionManager::register_action (editor_actions
, "separate-from-loop", _("Separate Using Loop Range"), sigc::mem_fun(*this, &Editor::separate_region_from_loop
));
352 ActionManager::session_sensitive_actions
.push_back (act
);
353 ActionManager::mouse_edit_point_requires_canvas_actions
.push_back (act
);
355 act
= ActionManager::register_action (editor_actions
, "editor-crop", _("Crop"), sigc::mem_fun(*this, &Editor::crop_region_to_selection
));
356 ActionManager::session_sensitive_actions
.push_back (act
);
357 ActionManager::mouse_edit_point_requires_canvas_actions
.push_back (act
);
359 act
= ActionManager::register_action (editor_actions
, "editor-cut", _("Cut"), sigc::mem_fun(*this, &Editor::cut
));
360 ActionManager::session_sensitive_actions
.push_back (act
);
362 /* Note: for now, editor-delete does the exact same thing as editor-cut */
363 act
= ActionManager::register_action (editor_actions
, "editor-delete", _("Delete"), sigc::mem_fun(*this, &Editor::cut
));
364 ActionManager::session_sensitive_actions
.push_back (act
);
365 act
= ActionManager::register_action (editor_actions
, "editor-copy", _("Copy"), sigc::mem_fun(*this, &Editor::copy
));
366 ActionManager::session_sensitive_actions
.push_back (act
);
367 act
= ActionManager::register_action (editor_actions
, "editor-paste", _("Paste"), sigc::mem_fun(*this, &Editor::keyboard_paste
));
368 ActionManager::session_sensitive_actions
.push_back (act
);
370 act
= ActionManager::register_action (editor_actions
, "set-tempo-from-edit-range", _("Set Tempo from Edit Range=Bar"), sigc::mem_fun(*this, &Editor::use_range_as_bar
));
371 ActionManager::session_sensitive_actions
.push_back (act
);
373 act
= ActionManager::register_toggle_action (editor_actions
, "toggle-log-window", _("Log"),
374 sigc::mem_fun (ARDOUR_UI::instance(), &ARDOUR_UI::toggle_errors
));
375 ActionManager::session_sensitive_actions
.push_back (act
);
377 act
= ActionManager::register_action (editor_actions
, "tab-to-transient-forwards", _("Move Forward to Transient"), sigc::bind (sigc::mem_fun(*this, &Editor::tab_to_transient
), true));
378 ActionManager::session_sensitive_actions
.push_back (act
);
379 act
= ActionManager::register_action (editor_actions
, "tab-to-transient-backwards", _("Move Backwards to Transient"), sigc::bind (sigc::mem_fun(*this, &Editor::tab_to_transient
), false));
380 ActionManager::session_sensitive_actions
.push_back (act
);
382 act
= ActionManager::register_action (editor_actions
, "crop", _("Crop"), sigc::mem_fun(*this, &Editor::crop_region_to_selection
));
383 ActionManager::session_sensitive_actions
.push_back (act
);
385 act
= ActionManager::register_action (editor_actions
, "start-range", _("Start Range"), sigc::mem_fun(*this, &Editor::keyboard_selection_begin
));
386 ActionManager::session_sensitive_actions
.push_back (act
);
387 act
= ActionManager::register_action (editor_actions
, "finish-range", _("Finish Range"), sigc::bind (sigc::mem_fun(*this, &Editor::keyboard_selection_finish
), false));
388 ActionManager::session_sensitive_actions
.push_back (act
);
389 act
= ActionManager::register_action (editor_actions
, "finish-add-range", _("Finish Add Range"), sigc::bind (sigc::mem_fun(*this, &Editor::keyboard_selection_finish
), true));
390 ActionManager::session_sensitive_actions
.push_back (act
);
392 act
= ActionManager::register_action (editor_actions
, "extend-range-to-end-of-region", _("Extend Range to End of Region"), sigc::bind (sigc::mem_fun(*this, &Editor::extend_selection_to_end_of_region
), false));
393 ActionManager::session_sensitive_actions
.push_back (act
);
394 act
= ActionManager::register_action (editor_actions
, "extend-range-to-start-of-region", _("Extend Range to Start of Region"), sigc::bind (sigc::mem_fun(*this, &Editor::extend_selection_to_start_of_region
), false));
395 ActionManager::session_sensitive_actions
.push_back (act
);
397 act
= ActionManager::register_toggle_action (editor_actions
, "toggle-follow-playhead", _("Follow Playhead"), (sigc::mem_fun(*this, &Editor::toggle_follow_playhead
)));
398 ActionManager::session_sensitive_actions
.push_back (act
);
399 act
= ActionManager::register_action (editor_actions
, "remove-last-capture", _("Remove Last Capture"), (sigc::mem_fun(*this, &Editor::remove_last_capture
)));
400 ActionManager::session_sensitive_actions
.push_back (act
);
402 ActionManager::register_toggle_action (editor_actions
, "toggle-stationary-playhead", _("Stationary Playhead"), (mem_fun(*this, &Editor::toggle_stationary_playhead
)));
404 act
= ActionManager::register_action (editor_actions
, "insert-time", _("Insert Time"), (sigc::mem_fun(*this, &Editor::do_insert_time
)));
405 ActionManager::session_sensitive_actions
.push_back (act
);
406 ActionManager::track_selection_sensitive_actions
.push_back (act
);
408 act
= ActionManager::register_action (editor_actions
, "toggle-track-active", _("Toggle Active"), (sigc::mem_fun(*this, &Editor::toggle_tracks_active
)));
409 ActionManager::session_sensitive_actions
.push_back (act
);
410 ActionManager::track_selection_sensitive_actions
.push_back (act
);
411 if (Profile
->get_sae()) {
412 act
= ActionManager::register_action (editor_actions
, "remove-track", _("Delete"), (sigc::mem_fun(*this, &Editor::remove_tracks
)));
414 act
= ActionManager::register_action (editor_actions
, "remove-track", _("Remove"), (sigc::mem_fun(*this, &Editor::remove_tracks
)));
416 ActionManager::session_sensitive_actions
.push_back (act
);
417 ActionManager::track_selection_sensitive_actions
.push_back (act
);
419 act
= ActionManager::register_action (editor_actions
, "fit-tracks", _("Fit Selected Tracks"), sigc::mem_fun(*this, &Editor::fit_selected_tracks
));
420 ActionManager::session_sensitive_actions
.push_back (act
);
421 ActionManager::track_selection_sensitive_actions
.push_back (act
);
422 act
= ActionManager::register_action (editor_actions
, "track-height-largest", _("Largest"), sigc::bind (
423 sigc::mem_fun(*this, &Editor::set_track_height
), HeightLargest
));
424 ActionManager::session_sensitive_actions
.push_back (act
);
425 ActionManager::track_selection_sensitive_actions
.push_back (act
);
426 act
= ActionManager::register_action (editor_actions
, "track-height-larger", _("Larger"), sigc::bind (
427 sigc::mem_fun(*this, &Editor::set_track_height
), HeightLarger
));
428 ActionManager::session_sensitive_actions
.push_back (act
);
429 ActionManager::track_selection_sensitive_actions
.push_back (act
);
430 act
= ActionManager::register_action (editor_actions
, "track-height-large", _("Large"), sigc::bind (
431 sigc::mem_fun(*this, &Editor::set_track_height
), HeightLarge
));
432 ActionManager::session_sensitive_actions
.push_back (act
);
433 ActionManager::track_selection_sensitive_actions
.push_back (act
);
434 act
= ActionManager::register_action (editor_actions
, "track-height-normal", _("Normal"), sigc::bind (
435 sigc::mem_fun(*this, &Editor::set_track_height
), HeightNormal
));
436 ActionManager::session_sensitive_actions
.push_back (act
);
437 ActionManager::track_selection_sensitive_actions
.push_back (act
);
438 act
= ActionManager::register_action (editor_actions
, "track-height-small", _("Small"), sigc::bind (
439 sigc::mem_fun(*this, &Editor::set_track_height
), HeightSmall
));
440 ActionManager::track_selection_sensitive_actions
.push_back (act
);
441 ActionManager::session_sensitive_actions
.push_back (act
);
442 ActionManager::track_selection_sensitive_actions
.push_back (act
);
443 act
= ActionManager::register_action (editor_actions
, "track-height-smaller", _("Smaller"), sigc::bind (
444 sigc::mem_fun(*this, &Editor::set_track_height
), HeightSmaller
));
445 ActionManager::session_sensitive_actions
.push_back (act
);
446 ActionManager::track_selection_sensitive_actions
.push_back (act
);
448 Glib::RefPtr
<ActionGroup
> zoom_actions
= ActionGroup::create (X_("Zoom"));
449 RadioAction::Group zoom_group
;
451 ActionManager::register_radio_action (zoom_actions
, zoom_group
, "zoom-focus-left", _("Zoom Focus Left"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen
), Editing::ZoomFocusLeft
));
452 ActionManager::session_sensitive_actions
.push_back (act
);
453 ActionManager::register_radio_action (zoom_actions
, zoom_group
, "zoom-focus-right", _("Zoom Focus Right"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen
), Editing::ZoomFocusRight
));
454 ActionManager::session_sensitive_actions
.push_back (act
);
455 ActionManager::register_radio_action (zoom_actions
, zoom_group
, "zoom-focus-center", _("Zoom Focus Center"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen
), Editing::ZoomFocusCenter
));
456 ActionManager::session_sensitive_actions
.push_back (act
);
457 ActionManager::register_radio_action (zoom_actions
, zoom_group
, "zoom-focus-playhead", _("Zoom Focus Playhead"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen
), Editing::ZoomFocusPlayhead
));
458 ActionManager::session_sensitive_actions
.push_back (act
);
459 ActionManager::register_radio_action (zoom_actions
, zoom_group
, "zoom-focus-mouse", _("Zoom Focus Mouse"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen
), Editing::ZoomFocusMouse
));
460 ActionManager::session_sensitive_actions
.push_back (act
);
461 ActionManager::register_radio_action (zoom_actions
, zoom_group
, "zoom-focus-edit", _("Zoom Focus Edit Point"), sigc::bind (sigc::mem_fun(*this, &Editor::zoom_focus_chosen
), Editing::ZoomFocusEdit
));
462 ActionManager::session_sensitive_actions
.push_back (act
);
464 Glib::RefPtr
<ActionGroup
> mouse_mode_actions
= ActionGroup::create (X_("MouseMode"));
465 RadioAction::Group mouse_mode_group
;
467 act
= ActionManager::register_radio_action (mouse_mode_actions
, mouse_mode_group
, "set-mouse-mode-object", _("Object Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled
), Editing::MouseObject
));
468 act
->connect_proxy (mouse_move_button
);
469 mouse_move_button
.set_image (*(manage (new Image (::get_icon("tool_object")))));
470 mouse_move_button
.set_label ("");
471 mouse_move_button
.set_name ("MouseModeButton");
472 mouse_move_button
.get_image ()->show ();
474 act
= ActionManager::register_radio_action (mouse_mode_actions
, mouse_mode_group
, "set-mouse-mode-range", _("Range Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled
), Editing::MouseRange
));
475 act
->connect_proxy (mouse_select_button
);
476 mouse_select_button
.set_image (*(manage (new Image (::get_icon("tool_range")))));
477 mouse_select_button
.set_label ("");
478 mouse_select_button
.set_name ("MouseModeButton");
479 mouse_select_button
.get_image ()->show ();
481 act
= ActionManager::register_toggle_action (mouse_mode_actions
, "set-mouse-mode-object-range", _("Link Object / Range Tools"), sigc::mem_fun (*this, &Editor::mouse_mode_object_range_toggled
));
482 act
->connect_proxy (join_object_range_button
);
483 join_object_range_button
.set_image (*(manage (new Image (::get_icon ("tool_object_range")))));
484 join_object_range_button
.set_label ("");
485 join_object_range_button
.set_name ("MouseModeButton");
486 join_object_range_button
.get_image ()->show ();
488 act
= ActionManager::register_radio_action (mouse_mode_actions
, mouse_mode_group
, "set-mouse-mode-gain", _("Gain Tool"), sigc::bind (mem_fun(*this, &Editor::mouse_mode_toggled
), Editing::MouseGain
));
489 act
->connect_proxy (mouse_gain_button
);
490 mouse_gain_button
.set_image (*(manage (new Image (::get_icon("tool_gain")))));
491 mouse_gain_button
.set_label ("");
492 mouse_gain_button
.set_name ("MouseModeButton");
493 mouse_gain_button
.get_image ()->show ();
495 act
= ActionManager::register_radio_action (mouse_mode_actions
, mouse_mode_group
, "set-mouse-mode-zoom", _("Zoom Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled
), Editing::MouseZoom
));
496 act
->connect_proxy (mouse_zoom_button
);
497 mouse_zoom_button
.set_image (*(manage (new Image (::get_icon("tool_zoom")))));
498 mouse_zoom_button
.set_label ("");
499 mouse_zoom_button
.set_name ("MouseModeButton");
500 mouse_zoom_button
.get_image ()->show ();
502 act
= ActionManager::register_radio_action (mouse_mode_actions
, mouse_mode_group
, "set-mouse-mode-audition", _("Audition Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled
), Editing::MouseAudition
));
503 act
->connect_proxy (mouse_audition_button
);
504 mouse_audition_button
.set_image (*(manage (new Image (::get_icon("tool_audition")))));
505 mouse_audition_button
.set_label ("");
506 mouse_audition_button
.set_name ("MouseModeButton");
507 mouse_audition_button
.get_image ()->show ();
509 act
= ActionManager::register_radio_action (mouse_mode_actions
, mouse_mode_group
, "set-mouse-mode-timefx", _("Time FX Tool"), sigc::bind (sigc::mem_fun(*this, &Editor::mouse_mode_toggled
), Editing::MouseTimeFX
));
510 act
->connect_proxy (mouse_timefx_button
);
511 mouse_timefx_button
.set_image (*(manage (new Image (::get_icon("tool_stretch")))));
512 mouse_timefx_button
.set_label ("");
513 mouse_timefx_button
.set_name ("MouseModeButton");
514 mouse_timefx_button
.get_image ()->show ();
516 ActionManager::register_action (editor_actions
, "step-mouse-mode", _("Step Mouse Mode"), sigc::bind (sigc::mem_fun(*this, &Editor::step_mouse_mode
), true));
518 act
= ActionManager::register_toggle_action (mouse_mode_actions
, "toggle-internal-edit", _("Edit MIDI"), sigc::mem_fun(*this, &Editor::toggle_internal_editing
));
519 act
->connect_proxy (internal_edit_button
);
520 internal_edit_button
.set_image (*(manage (new Image (::get_icon("tool_note")))));
521 internal_edit_button
.set_label ("");
522 internal_edit_button
.set_name ("MouseModeButton");
523 internal_edit_button
.get_image ()->show ();
525 RadioAction::Group edit_point_group
;
526 ActionManager::register_radio_action (editor_actions
, edit_point_group
, X_("edit-at-playhead"), _("Playhead"), (sigc::bind (sigc::mem_fun(*this, &Editor::edit_point_chosen
), Editing::EditAtPlayhead
)));
527 ActionManager::register_radio_action (editor_actions
, edit_point_group
, X_("edit-at-mouse"), _("Mouse"), (sigc::bind (sigc::mem_fun(*this, &Editor::edit_point_chosen
), Editing::EditAtPlayhead
)));
528 ActionManager::register_radio_action (editor_actions
, edit_point_group
, X_("edit-at-selected-marker"), _("Marker"), (sigc::bind (sigc::mem_fun(*this, &Editor::edit_point_chosen
), Editing::EditAtPlayhead
)));
530 ActionManager::register_action (editor_actions
, "cycle-edit-point", _("Change Edit Point"), sigc::bind (sigc::mem_fun (*this, &Editor::cycle_edit_point
), false));
531 ActionManager::register_action (editor_actions
, "cycle-edit-point-with-marker", _("Change Edit Point Including Marker"), sigc::bind (sigc::mem_fun (*this, &Editor::cycle_edit_point
), true));
532 if (!Profile
->get_sae()) {
533 ActionManager::register_action (editor_actions
, "set-edit-splice", _("Splice"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode
), Splice
));
535 ActionManager::register_action (editor_actions
, "set-edit-slide", _("Slide"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode
), Slide
));
536 ActionManager::register_action (editor_actions
, "set-edit-lock", _("Lock"), sigc::bind (sigc::mem_fun (*this, &Editor::set_edit_mode
), Lock
));
537 ActionManager::register_action (editor_actions
, "toggle-edit-mode", _("Toggle Edit Mode"), sigc::mem_fun (*this, &Editor::cycle_edit_mode
));
539 ActionManager::register_action (editor_actions
, X_("SnapTo"), _("Snap to"));
540 ActionManager::register_action (editor_actions
, X_("SnapMode"), _("Snap Mode"));
542 RadioAction::Group snap_mode_group
;
543 ActionManager::register_radio_action (editor_actions
, snap_mode_group
, X_("snap-off"), _("No Grid"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_mode_chosen
), Editing::SnapOff
)));
544 ActionManager::register_radio_action (editor_actions
, snap_mode_group
, X_("snap-normal"), _("Grid"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_mode_chosen
), Editing::SnapNormal
)));
545 ActionManager::register_radio_action (editor_actions
, snap_mode_group
, X_("snap-magnetic"), _("Magnetic"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_mode_chosen
), Editing::SnapMagnetic
)));
547 ActionManager::register_action (editor_actions
, X_("cycle-snap-mode"), _("Next Snap Mode"), sigc::mem_fun (*this, &Editor::cycle_snap_mode
));
548 ActionManager::register_action (editor_actions
, X_("cycle-snap-choice"), _("Next Snap Choice"), sigc::mem_fun (*this, &Editor::cycle_snap_choice
));
550 Glib::RefPtr
<ActionGroup
> snap_actions
= ActionGroup::create (X_("Snap"));
551 RadioAction::Group snap_choice_group
;
553 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-cd-frame"), _("Snap to CD Frame"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToCDFrame
)));
554 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-timecode-frame"), _("Snap to Timecode Frame"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToTimecodeFrame
)));
555 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-timecode-seconds"), _("Snap to Timecode Seconds"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToTimecodeSeconds
)));
556 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-timecode-minutes"), _("Snap to Timecode Minutes"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToTimecodeMinutes
)));
557 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-seconds"), _("Snap to Seconds"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToSeconds
)));
558 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-minutes"), _("Snap to Minutes"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToMinutes
)));
560 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-thirtyseconds"), _("Snap to Thirty Seconds"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv32
)));
561 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-twentyeighths"), _("Snap to Twenty Eighths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv28
)));
562 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-twentyfourths"), _("Snap to Twenty Fourths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv24
)));
563 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-twentieths"), _("Snap to Twentieths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv20
)));
564 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-asixteenthbeat"), _("Snap to Sixteenths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv16
)));
565 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-fourteenths"), _("Snap to Fourteenths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv14
)));
566 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-twelfths"), _("Snap to Tweflths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv12
)));
567 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-tenths"), _("Snap to Tenths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv10
)));
568 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-eighths"), _("Snap to Eighths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv8
)));
569 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-sevenths"), _("Snap to Sevenths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv7
)));
570 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-sixths"), _("Snap to Sixths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv6
)));
571 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-fifths"), _("Snap to Fifths"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv5
)));
572 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-quarters"), _("Snap to Quarters"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv4
)));
573 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-thirds"), _("Snap to Thirds"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv3
)));
574 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-halves"), _("Snap to Halves"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeatDiv2
)));
576 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-beat"), _("Snap to Beat"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBeat
)));
577 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-bar"), _("Snap to Bar"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToBar
)));
578 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-mark"), _("Snap to Mark"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToMark
)));
579 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-region-start"), _("Snap to Region Start"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToRegionStart
)));
580 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-region-end"), _("Snap to Region End"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToRegionEnd
)));
581 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-region-sync"), _("Snap to Region Sync"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToRegionSync
)));
582 ActionManager::register_radio_action (snap_actions
, snap_choice_group
, X_("snap-to-region-boundary"), _("Snap to Region Boundary"), (sigc::bind (sigc::mem_fun(*this, &Editor::snap_type_chosen
), Editing::SnapToRegionBoundary
)));
584 ActionManager::register_toggle_action (editor_actions
, X_("show-marker-lines"), _("Show Marker Lines"), sigc::mem_fun (*this, &Editor::toggle_marker_lines
));
588 Glib::RefPtr
<ActionGroup
> ruler_actions
= ActionGroup::create (X_("Rulers"));
589 ruler_tempo_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-tempo-ruler"), _("Tempo"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_time_tempo
)));
590 ruler_meter_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-meter-ruler"), _("Meter"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_time_meter
)));
591 ruler_range_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-range-ruler"), _("Ranges"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_time_range_marker
)));
592 ruler_marker_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-marker-ruler"), _("Markers"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_time_marker
)));
593 ruler_cd_marker_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-cd-marker-ruler"), _("CD Markers"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_time_cd_marker
)));
594 ruler_loop_punch_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-loop-punch-ruler"), _("Loop/Punch"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_time_transport_marker
)));
595 ruler_bbt_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-bbt-ruler"), _("Bars & Beats"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_metric_bbt
)));
596 ruler_samples_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-samples-ruler"), _("Samples"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_metric_samples
)));
597 ruler_timecode_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-timecode-ruler"), _("Timecode"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_metric_timecode
)));
598 ruler_minsec_action
= Glib::RefPtr
<ToggleAction
>::cast_static (ActionManager::register_toggle_action (ruler_actions
, X_("toggle-minsec-ruler"), _("Min:Sec"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_ruler_visibility
), ruler_metric_minsec
)));
600 /* set defaults here */
602 no_ruler_shown_update
= true;
603 ruler_meter_action
->set_active (true);
604 ruler_tempo_action
->set_active (true);
605 ruler_marker_action
->set_active (true);
606 ruler_range_action
->set_active (false);
607 ruler_loop_punch_action
->set_active (true);
608 ruler_loop_punch_action
->set_active (true);
609 if (Profile
->get_sae()) {
610 ruler_bbt_action
->set_active (true);
611 ruler_cd_marker_action
->set_active (false);
612 ruler_timecode_action
->set_active (false);
613 ruler_minsec_action
->set_active (true);
615 ruler_bbt_action
->set_active (false);
616 ruler_cd_marker_action
->set_active (true);
617 ruler_timecode_action
->set_active (true);
618 ruler_minsec_action
->set_active (false);
620 ruler_samples_action
->set_active (false);
621 no_ruler_shown_update
= false;
625 Glib::RefPtr
<ActionGroup
> rl_actions
= ActionGroup::create (X_("RegionList"));
626 RadioAction::Group sort_type_group
;
627 RadioAction::Group sort_order_group
;
629 /* the region list popup menu */
630 ActionManager::register_action (rl_actions
, X_("RegionListSort"), _("Sort"));
632 act
= ActionManager::register_action (rl_actions
, X_("rlAudition"), _("Audition"), sigc::mem_fun(*this, &Editor::audition_region_from_region_list
));
633 ActionManager::region_list_selection_sensitive_actions
.push_back (act
);
634 act
= ActionManager::register_action (rl_actions
, X_("rlHide"), _("Hide"), sigc::mem_fun(*this, &Editor::hide_region_from_region_list
));
635 ActionManager::region_list_selection_sensitive_actions
.push_back (act
);
636 act
= ActionManager::register_action (rl_actions
, X_("rlShow"), _("Show"), sigc::mem_fun(*this, &Editor::show_region_in_region_list
));
637 ActionManager::region_list_selection_sensitive_actions
.push_back (act
);
638 ActionManager::register_toggle_action (rl_actions
, X_("rlShowAll"), _("Show All"), sigc::mem_fun(*_regions
, &EditorRegions::toggle_full
));
639 ActionManager::register_toggle_action (rl_actions
, X_("rlShowAuto"), _("Show Automatic Regions"), sigc::mem_fun (*_regions
, &EditorRegions::toggle_show_auto_regions
));
641 ActionManager::register_radio_action (rl_actions
, sort_order_group
, X_("SortAscending"), _("Ascending"),
642 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_direction
), true));
643 ActionManager::register_radio_action (rl_actions
, sort_order_group
, X_("SortDescending"), _("Descending"),
644 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_direction
), false));
646 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortByRegionName"), _("By Region Name"),
647 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), ByName
, false));
648 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortByRegionLength"), _("By Region Length"),
649 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), ByLength
, false));
650 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortByRegionPosition"), _("By Region Position"),
651 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), ByPosition
, false));
652 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortByRegionTimestamp"), _("By Region Timestamp"),
653 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), ByTimestamp
, false));
654 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortByRegionStartinFile"), _("By Region Start in File"),
655 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), ByStartInFile
, false));
656 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortByRegionEndinFile"), _("By Region End in File"),
657 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), ByEndInFile
, false));
658 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortBySourceFileName"), _("By Source File Name"),
659 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), BySourceFileName
, false));
660 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortBySourceFileLength"), _("By Source File Length"),
661 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), BySourceFileLength
, false));
662 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortBySourceFileCreationDate"), _("By Source File Creation Date"),
663 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), BySourceFileCreationDate
, false));
664 ActionManager::register_radio_action (rl_actions
, sort_type_group
, X_("SortBySourceFilesystem"), _("By Source Filesystem"),
665 sigc::bind (sigc::mem_fun (*_regions
, &EditorRegions::reset_sort_type
), BySourceFileFS
, false));
668 /* the next two are duplicate items with different names for use in two different contexts */
670 act
= ActionManager::register_action (editor_actions
, X_("addExistingAudioFiles"), _("Import"), sigc::mem_fun (*this, &Editor::external_audio_dialog
));
671 ActionManager::session_sensitive_actions
.push_back (act
);
672 ActionManager::write_sensitive_actions
.push_back (act
);
674 act
= ActionManager::register_action (editor_actions
, X_("addExternalAudioToRegionList"), _("Import to Region List..."), sigc::bind (sigc::mem_fun(*this, &Editor::add_external_audio_action
), ImportAsRegion
));
675 ActionManager::session_sensitive_actions
.push_back (act
);
676 ActionManager::write_sensitive_actions
.push_back (act
);
678 act
= ActionManager::register_action (editor_actions
, X_("importFromSession"), _("Import From Session"), sigc::mem_fun(*this, &Editor::session_import_dialog
));
679 ActionManager::write_sensitive_actions
.push_back (act
);
681 ActionManager::register_toggle_action (editor_actions
, X_("ToggleSummary"), _("Show Summary"), sigc::mem_fun (*this, &Editor::set_summary
));
683 ActionManager::register_toggle_action (editor_actions
, X_("ToggleGroupTabs"), _("Show Group Tabs"), sigc::mem_fun (*this, &Editor::set_group_tabs
));
685 ActionManager::register_toggle_action (editor_actions
, X_("ToggleMeasureVisibility"), _("Show Measures"), sigc::mem_fun (*this, &Editor::toggle_measure_visibility
));
687 /* if there is a logo in the editor canvas, its always visible at startup */
689 act
= ActionManager::register_toggle_action (editor_actions
, X_("ToggleLogoVisibility"), _("Show Logo"), sigc::mem_fun (*this, &Editor::toggle_logo_visibility
));
690 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic(act
);
691 tact
->set_active (true);
695 Glib::RefPtr
<ActionGroup
> midi_actions
= ActionGroup::create (X_("MIDI"));
696 ActionManager::register_action (midi_actions
, X_("panic"), _("Panic"), sigc::mem_fun(*this, &Editor::midi_panic
));
698 ActionManager::add_action_group (rl_actions
);
699 ActionManager::add_action_group (ruler_actions
);
700 ActionManager::add_action_group (zoom_actions
);
701 ActionManager::add_action_group (mouse_mode_actions
);
702 ActionManager::add_action_group (snap_actions
);
703 ActionManager::add_action_group (editor_actions
);
704 ActionManager::add_action_group (midi_actions
);
708 Editor::toggle_ruler_visibility (RulerType rt
)
710 const char* action
= 0;
712 if (no_ruler_shown_update
) {
717 case ruler_metric_timecode
:
718 action
= "toggle-timecode-ruler";
720 case ruler_metric_bbt
:
721 action
= "toggle-bbt-ruler";
723 case ruler_metric_samples
:
724 action
= "toggle-samples-ruler";
726 case ruler_metric_minsec
:
727 action
= "toggle-minsec-ruler";
729 case ruler_time_tempo
:
730 action
= "toggle-tempo-ruler";
732 case ruler_time_meter
:
733 action
= "toggle-meter-ruler";
735 case ruler_time_marker
:
736 action
= "toggle-marker-ruler";
738 case ruler_time_range_marker
:
739 action
= "toggle-range-ruler";
741 case ruler_time_transport_marker
:
742 action
= "toggle-loop-punch-ruler";
744 case ruler_time_cd_marker
:
745 action
= "toggle-cd-marker-ruler";
749 Glib::RefPtr
<Action
> act
= ActionManager::get_action (X_("Rulers"), action
);
751 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic(act
);
752 update_ruler_visibility ();
753 store_ruler_visibility ();
758 Editor::set_summary ()
760 Glib::RefPtr
<Action
> act
= ActionManager::get_action (X_("Editor"), X_("ToggleSummary"));
762 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic (act
);
763 _session
->config
.set_show_summary (tact
->get_active ());
768 Editor::set_group_tabs ()
770 Glib::RefPtr
<Action
> act
= ActionManager::get_action (X_("Editor"), X_("ToggleGroupTabs"));
772 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic (act
);
773 _session
->config
.set_show_group_tabs (tact
->get_active ());
778 Editor::toggle_measure_visibility ()
780 Glib::RefPtr
<Action
> act
= ActionManager::get_action (X_("Editor"), X_("ToggleMeasureVisibility"));
782 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic(act
);
783 set_show_measures (tact
->get_active());
788 Editor::toggle_logo_visibility ()
790 Glib::RefPtr
<Action
> act
= ActionManager::get_action (X_("Editor"), X_("ToggleLogoVisibility"));
793 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic(act
);
795 if (tact
->get_active()) {
805 Editor::snap_type_action (SnapType type
)
807 const char* action
= 0;
811 case Editing::SnapToCDFrame
:
812 action
= "snap-to-cd-frame";
814 case Editing::SnapToTimecodeFrame
:
815 action
= "snap-to-timecode-frame";
817 case Editing::SnapToTimecodeSeconds
:
818 action
= "snap-to-timecode-seconds";
820 case Editing::SnapToTimecodeMinutes
:
821 action
= "snap-to-timecode-minutes";
823 case Editing::SnapToSeconds
:
824 action
= "snap-to-seconds";
826 case Editing::SnapToMinutes
:
827 action
= "snap-to-minutes";
829 case Editing::SnapToBeatDiv32
:
830 action
= "snap-to-thirtyseconds";
832 case Editing::SnapToBeatDiv28
:
833 action
= "snap-to-twentyeighths";
835 case Editing::SnapToBeatDiv24
:
836 action
= "snap-to-twentyfourths";
838 case Editing::SnapToBeatDiv20
:
839 action
= "snap-to-twentieths";
841 case Editing::SnapToBeatDiv16
:
842 action
= "snap-to-asixteenthbeat";
844 case Editing::SnapToBeatDiv14
:
845 action
= "snap-to-fourteenths";
847 case Editing::SnapToBeatDiv12
:
848 action
= "snap-to-twelfths";
850 case Editing::SnapToBeatDiv10
:
851 action
= "snap-to-tenths";
853 case Editing::SnapToBeatDiv8
:
854 action
= "snap-to-eighths";
856 case Editing::SnapToBeatDiv7
:
857 action
= "snap-to-sevenths";
859 case Editing::SnapToBeatDiv6
:
860 action
= "snap-to-sixths";
862 case Editing::SnapToBeatDiv5
:
863 action
= "snap-to-fifths";
865 case Editing::SnapToBeatDiv4
:
866 action
= "snap-to-quarters";
868 case Editing::SnapToBeatDiv3
:
869 action
= "snap-to-thirds";
871 case Editing::SnapToBeatDiv2
:
872 action
= "snap-to-halves";
874 case Editing::SnapToBeat
:
875 action
= "snap-to-beat";
877 case Editing::SnapToBar
:
878 action
= "snap-to-bar";
880 case Editing::SnapToMark
:
881 action
= "snap-to-mark";
883 case Editing::SnapToRegionStart
:
884 action
= "snap-to-region-start";
886 case Editing::SnapToRegionEnd
:
887 action
= "snap-to-region-end";
889 case Editing::SnapToRegionSync
:
890 action
= "snap-to-region-sync";
892 case Editing::SnapToRegionBoundary
:
893 action
= "snap-to-region-boundary";
896 fatal
<< string_compose (_("programming error: %1: %2"), "Editor: impossible snap-to type", (int) type
) << endmsg
;
900 act
= ActionManager::get_action (X_("Snap"), action
);
903 RefPtr
<RadioAction
> ract
= RefPtr
<RadioAction
>::cast_dynamic(act
);
907 error
<< string_compose (_("programming error: %1"), "Editor::snap_type_chosen could not find action to match type.") << endmsg
;
908 return RefPtr
<RadioAction
>();
913 Editor::cycle_snap_choice()
915 switch (_snap_type
) {
916 case Editing::SnapToCDFrame
:
917 set_snap_to (Editing::SnapToTimecodeFrame
);
919 case Editing::SnapToTimecodeFrame
:
920 set_snap_to (Editing::SnapToTimecodeSeconds
);
922 case Editing::SnapToTimecodeSeconds
:
923 set_snap_to (Editing::SnapToTimecodeMinutes
);
925 case Editing::SnapToTimecodeMinutes
:
926 set_snap_to (Editing::SnapToSeconds
);
928 case Editing::SnapToSeconds
:
929 set_snap_to (Editing::SnapToMinutes
);
931 case Editing::SnapToMinutes
:
932 set_snap_to (Editing::SnapToBeatDiv32
);
934 case Editing::SnapToBeatDiv32
:
935 set_snap_to (Editing::SnapToBeatDiv28
);
937 case Editing::SnapToBeatDiv28
:
938 set_snap_to (Editing::SnapToBeatDiv24
);
940 case Editing::SnapToBeatDiv24
:
941 set_snap_to (Editing::SnapToBeatDiv20
);
943 case Editing::SnapToBeatDiv20
:
944 set_snap_to (Editing::SnapToBeatDiv16
);
946 case Editing::SnapToBeatDiv16
:
947 set_snap_to (Editing::SnapToBeatDiv14
);
949 case Editing::SnapToBeatDiv14
:
950 set_snap_to (Editing::SnapToBeatDiv12
);
952 case Editing::SnapToBeatDiv12
:
953 set_snap_to (Editing::SnapToBeatDiv10
);
955 case Editing::SnapToBeatDiv10
:
956 set_snap_to (Editing::SnapToBeatDiv8
);
958 case Editing::SnapToBeatDiv8
:
959 set_snap_to (Editing::SnapToBeatDiv7
);
961 case Editing::SnapToBeatDiv7
:
962 set_snap_to (Editing::SnapToBeatDiv6
);
964 case Editing::SnapToBeatDiv6
:
965 set_snap_to (Editing::SnapToBeatDiv5
);
967 case Editing::SnapToBeatDiv5
:
968 set_snap_to (Editing::SnapToBeatDiv4
);
970 case Editing::SnapToBeatDiv4
:
971 set_snap_to (Editing::SnapToBeatDiv3
);
973 case Editing::SnapToBeatDiv3
:
974 set_snap_to (Editing::SnapToBeatDiv2
);
976 case Editing::SnapToBeatDiv2
:
977 set_snap_to (Editing::SnapToBeat
);
979 case Editing::SnapToBeat
:
980 set_snap_to (Editing::SnapToBar
);
982 case Editing::SnapToBar
:
983 set_snap_to (Editing::SnapToMark
);
985 case Editing::SnapToMark
:
986 set_snap_to (Editing::SnapToRegionStart
);
988 case Editing::SnapToRegionStart
:
989 set_snap_to (Editing::SnapToRegionEnd
);
991 case Editing::SnapToRegionEnd
:
992 set_snap_to (Editing::SnapToRegionSync
);
994 case Editing::SnapToRegionSync
:
995 set_snap_to (Editing::SnapToRegionBoundary
);
997 case Editing::SnapToRegionBoundary
:
998 set_snap_to (Editing::SnapToCDFrame
);
1004 Editor::snap_type_chosen (SnapType type
)
1006 /* this is driven by a toggle on a radio group, and so is invoked twice,
1007 once for the item that became inactive and once for the one that became
1011 RefPtr
<RadioAction
> ract
= snap_type_action (type
);
1013 if (ract
&& ract
->get_active()) {
1019 Editor::snap_mode_action (SnapMode mode
)
1021 const char* action
= 0;
1025 case Editing::SnapOff
:
1026 action
= X_("snap-off");
1028 case Editing::SnapNormal
:
1029 action
= X_("snap-normal");
1031 case Editing::SnapMagnetic
:
1032 action
= X_("snap-magnetic");
1035 fatal
<< string_compose (_("programming error: %1: %2"), "Editor: impossible snap mode type", (int) mode
) << endmsg
;
1039 act
= ActionManager::get_action (X_("Editor"), action
);
1042 RefPtr
<RadioAction
> ract
= RefPtr
<RadioAction
>::cast_dynamic(act
);
1046 error
<< string_compose (_("programming error: %1: %2"), "Editor::snap_mode_chosen could not find action to match mode.", action
) << endmsg
;
1047 return RefPtr
<RadioAction
> ();
1052 Editor::cycle_snap_mode ()
1054 switch (_snap_mode
) {
1056 set_snap_mode (SnapNormal
);
1059 set_snap_mode (SnapMagnetic
);
1062 set_snap_mode (SnapOff
);
1068 Editor::snap_mode_chosen (SnapMode mode
)
1070 /* this is driven by a toggle on a radio group, and so is invoked twice,
1071 once for the item that became inactive and once for the one that became
1075 RefPtr
<RadioAction
> ract
= snap_mode_action (mode
);
1077 if (ract
&& ract
->get_active()) {
1078 set_snap_mode (mode
);
1083 Editor::edit_point_action (EditPoint ep
)
1085 const char* action
= 0;
1089 case Editing::EditAtPlayhead
:
1090 action
= X_("edit-at-playhead");
1092 case Editing::EditAtSelectedMarker
:
1093 action
= X_("edit-at-selected-marker");
1095 case Editing::EditAtMouse
:
1096 action
= X_("edit-at-mouse");
1099 fatal
<< string_compose (_("programming error: %1: %2"), "Editor: impossible edit point type", (int) ep
) << endmsg
;
1103 act
= ActionManager::get_action (X_("Editor"), action
);
1106 RefPtr
<RadioAction
> ract
= RefPtr
<RadioAction
>::cast_dynamic(act
);
1110 error
<< string_compose (_("programming error: %1: %2"), "Editor::edit_point_action could not find action to match edit point.", action
) << endmsg
;
1111 return RefPtr
<RadioAction
> ();
1116 Editor::edit_point_chosen (EditPoint ep
)
1118 /* this is driven by a toggle on a radio group, and so is invoked twice,
1119 once for the item that became inactive and once for the one that became
1123 RefPtr
<RadioAction
> ract
= edit_point_action (ep
);
1125 if (ract
&& ract
->get_active()) {
1126 set_edit_point_preference (ep
);
1132 Editor::zoom_focus_action (ZoomFocus focus
)
1134 const char* action
= 0;
1139 action
= X_("zoom-focus-left");
1141 case ZoomFocusRight
:
1142 action
= X_("zoom-focus-right");
1144 case ZoomFocusCenter
:
1145 action
= X_("zoom-focus-center");
1147 case ZoomFocusPlayhead
:
1148 action
= X_("zoom-focus-playhead");
1150 case ZoomFocusMouse
:
1151 action
= X_("zoom-focus-mouse");
1154 action
= X_("zoom-focus-edit");
1157 fatal
<< string_compose (_("programming error: %1: %2"), "Editor: impossible focus type", (int) focus
) << endmsg
;
1161 act
= ActionManager::get_action (X_("Zoom"), action
);
1164 RefPtr
<RadioAction
> ract
= RefPtr
<RadioAction
>::cast_dynamic(act
);
1167 error
<< string_compose (_("programming error: %1: %2"), "Editor::zoom_focus_action could not find action to match focus.", action
) << endmsg
;
1170 return RefPtr
<RadioAction
> ();
1174 Editor::zoom_focus_chosen (ZoomFocus focus
)
1176 /* this is driven by a toggle on a radio group, and so is invoked twice,
1177 once for the item that became inactive and once for the one that became
1181 RefPtr
<RadioAction
> ract
= zoom_focus_action (focus
);
1183 if (ract
&& ract
->get_active()) {
1184 set_zoom_focus (focus
);
1188 /** A Configuration parameter has changed.
1189 * @param parameter_name Name of the changed parameter.
1192 Editor::parameter_changed (std::string p
)
1194 ENSURE_GUI_THREAD (*this, &Editor::parameter_changed
, p
)
1196 if (p
== "auto-loop") {
1197 update_loop_range_view (true);
1198 } else if (p
== "punch-in") {
1199 update_punch_range_view (true);
1200 } else if (p
== "punch-out") {
1201 update_punch_range_view (true);
1202 } else if (p
== "timecode-format") {
1203 update_just_timecode ();
1204 } else if (p
== "xfades-visible") {
1205 update_xfade_visibility ();
1206 } else if (p
== "show-region-fades") {
1207 update_region_fade_visibility ();
1208 } else if (p
== "edit-mode") {
1209 edit_mode_selector
.set_active_text (edit_mode_to_string (Config
->get_edit_mode()));
1210 } else if (p
== "subframes-per-frame") {
1211 update_just_timecode ();
1212 } else if (p
== "show-track-meters") {
1213 toggle_meter_updating();
1214 } else if (p
== "show-summary") {
1216 bool const s
= _session
->config
.get_show_summary ();
1218 _summary_hbox
.show ();
1220 _summary_hbox
.hide ();
1223 Glib::RefPtr
<Action
> act
= ActionManager::get_action (X_("Editor"), X_("ToggleSummary"));
1225 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic (act
);
1226 if (tact
->get_active () != s
) {
1227 tact
->set_active (s
);
1230 } else if (p
== "show-group-tabs") {
1232 bool const s
= _session
->config
.get_show_group_tabs ();
1234 _group_tabs
->show ();
1236 _group_tabs
->hide ();
1239 reset_controls_layout_width ();
1241 Glib::RefPtr
<Action
> act
= ActionManager::get_action (X_("Editor"), X_("ToggleGroupTabs"));
1243 Glib::RefPtr
<ToggleAction
> tact
= Glib::RefPtr
<ToggleAction
>::cast_dynamic (act
);
1244 if (tact
->get_active () != s
) {
1245 tact
->set_active (s
);
1248 } else if (p
== "timecode-offset" || p
== "timecode-offset-negative") {
1249 update_just_timecode ();
1250 } else if (p
== "show-zoom-tools") {
1251 _zoom_tearoff
->set_visible (Config
->get_show_zoom_tools(), true);
1256 Editor::reset_focus ()
1258 track_canvas
->grab_focus();
1262 Editor::reset_canvas_action_sensitivity (bool onoff
)
1264 if (_edit_point
!= EditAtMouse
) {
1268 for (vector
<Glib::RefPtr
<Action
> >::iterator x
= ActionManager::mouse_edit_point_requires_canvas_actions
.begin();
1269 x
!= ActionManager::mouse_edit_point_requires_canvas_actions
.end(); ++x
) {
1270 (*x
)->set_sensitive (onoff
);
1275 Editor::toggle_internal_editing ()
1277 Glib::RefPtr
<Gtk::Action
> act
= ActionManager::get_action (X_("MouseMode"), X_("toggle-internal-edit"));
1279 Glib::RefPtr
<Gtk::ToggleAction
> tact
= Glib::RefPtr
<Gtk::ToggleAction
>::cast_dynamic(act
);
1280 set_internal_edit (tact
->get_active());
1284 /* Convenience functions to slightly reduce verbosity below */
1286 static RefPtr
<Action
>
1287 reg_sens (RefPtr
<ActionGroup
> group
, char const * name
, char const * label
, sigc::slot
<void> slot
)
1289 RefPtr
<Action
> act
= ActionManager::register_action (group
, name
, label
, slot
);
1290 ActionManager::session_sensitive_actions
.push_back (act
);
1295 toggle_reg_sens (RefPtr
<ActionGroup
> group
, char const * name
, char const * label
, sigc::slot
<void> slot
)
1297 RefPtr
<Action
> act
= ActionManager::register_toggle_action (group
, name
, label
, slot
);
1298 ActionManager::session_sensitive_actions
.push_back (act
);
1302 Editor::register_region_actions ()
1304 _region_actions
= ActionGroup::create (X_("Region"));
1306 /* PART 1: actions that operate on the selection, and for which the edit point type and location is irrelevant */
1308 /* Remove selected regions */
1309 reg_sens (_region_actions
, "remove-region", _("Remove"), sigc::mem_fun (*this, &Editor::remove_selected_regions
));
1311 /* Offer dialogue box to rename the first selected region */
1312 reg_sens (_region_actions
, "rename-region", _("Rename..."), sigc::mem_fun (*this, &Editor::rename_region
));
1314 /* Raise all selected regions by 1 layer */
1315 reg_sens (_region_actions
, "raise-region", _("Raise"), sigc::mem_fun (*this, &Editor::raise_region
));
1317 /* Raise all selected regions to the top */
1318 reg_sens (_region_actions
, "raise-region-to-top", _("Raise to Top"), sigc::mem_fun (*this, &Editor::raise_region_to_top
));
1320 /* Lower all selected regions by 1 layer */
1321 reg_sens (_region_actions
, "lower-region", _("Lower"), sigc::mem_fun (*this, &Editor::lower_region
));
1323 /* Lower all selected regions to the bottom */
1324 reg_sens (_region_actions
, "lower-region-to-bottom", _("Lower to Bottom"), sigc::mem_fun (*this, &Editor::lower_region_to_bottom
));
1326 /* Move selected regions to their original (`natural') position */
1327 reg_sens (_region_actions
, "naturalize-region", _("Move to Original Position"), sigc::mem_fun (*this, &Editor::naturalize_region
));
1329 /* Toggle `locked' status of selected regions */
1330 toggle_reg_sens (_region_actions
, "toggle-region-lock", _("Lock"), sigc::mem_fun(*this, &Editor::toggle_region_lock
));
1334 "toggle-region-lock-style",
1335 _("Glue to Bars and Beats"),
1336 sigc::mem_fun (*this, &Editor::toggle_region_lock_style
)
1339 /* Remove sync points from selected regions */
1340 reg_sens (_region_actions
, "remove-region-sync", _("Remove Sync"), sigc::mem_fun(*this, &Editor::remove_region_sync
));
1342 /* Mute or unmute selected regions */
1343 toggle_reg_sens (_region_actions
, "toggle-region-mute", _("Mute"), sigc::mem_fun(*this, &Editor::toggle_region_mute
));
1345 /* Open the normalize dialogue to operate on the selected regions */
1346 reg_sens (_region_actions
, "normalize-region", _("Normalize..."), sigc::mem_fun(*this, &Editor::normalize_region
));
1348 /* Reverse selected regions */
1349 reg_sens (_region_actions
, "reverse-region", _("Reverse"), sigc::mem_fun (*this, &Editor::reverse_region
));
1351 /* Split selected multi-channel regions into mono regions */
1352 reg_sens (_region_actions
, "split-multichannel-region", _("Make Mono Regions"), sigc::mem_fun (*this, &Editor::split_multichannel_region
));
1354 /* Boost selected region gain */
1355 reg_sens (_region_actions
, "boost-region-gain", _("Boost Gain"), sigc::bind (sigc::mem_fun(*this, &Editor::adjust_region_gain
), true));
1357 /* Cut selected region gain */
1358 reg_sens (_region_actions
, "cut-region-gain", _("Cut Gain"), sigc::bind (sigc::mem_fun(*this, &Editor::adjust_region_gain
), false));
1360 /* Open the pitch shift dialogue for the selected regions */
1361 reg_sens (_region_actions
, "pitch-shift-region", _("Transpose"), sigc::mem_fun (*this, &Editor::pitch_shift_region
));
1363 /* Toggle selected region opacity */
1364 toggle_reg_sens (_region_actions
, "toggle-opaque-region", _("Opaque"), sigc::mem_fun (*this, &Editor::toggle_opaque_region
));
1366 /* Toggle active status of selected regions' fade in */
1368 _region_actions
, "toggle-region-fade-in", _("Fade In"), sigc::bind (sigc::mem_fun (*this, &Editor::toggle_region_fades
), 1)
1371 /* Toggle active status of selected regions' fade out */
1373 _region_actions
, "toggle-region-fade-out", _("Fade Out"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_region_fades
), -1)
1376 /* Toggle active status of selected regions' fade in and out */
1378 _region_actions
, "toggle-region-fades", _("Fades"), sigc::bind (sigc::mem_fun(*this, &Editor::toggle_region_fades
), 0)
1381 /* Open the dialogue to duplicate selected regions */
1382 reg_sens (_region_actions
, "duplicate-region", _("Duplicate"), sigc::bind (sigc::mem_fun (*this, &Editor::duplicate_dialog
), false));
1384 /* Open the dialogue to duplicate selected regions multiple times */
1387 "multi-duplicate-region",
1388 _("Multi-Duplicate..."),
1389 sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_dialog
), true)
1392 /* Fill tracks with selected regions */
1393 reg_sens (_region_actions
, "region-fill-track", _("Fill Track"), sigc::mem_fun (*this, &Editor::region_fill_track
));
1395 /* Set up the loop range from the selected regions */
1397 _region_actions
, "set-loop-from-region", _("Set Loop Range"), sigc::bind (sigc::mem_fun (*this, &Editor::set_loop_from_region
), false)
1400 /* Set up the loop range from the selected regions, and start playback of it */
1401 reg_sens (_region_actions
, "loop-region", _("Loop"), sigc::bind (sigc::mem_fun(*this, &Editor::set_loop_from_region
), true));
1403 /* Set the punch range from the selected regions */
1404 reg_sens (_region_actions
, "set-punch-from-region", _("Set Punch"), sigc::mem_fun (*this, &Editor::set_punch_from_region
));
1406 /* Add a single range marker around all selected regions */
1408 _region_actions
, "add-range-marker-from-region", _("Add 1 Range Marker"), sigc::mem_fun (*this, &Editor::add_location_from_region
)
1411 /* Add a range marker around each selected region */
1413 _region_actions
, "add-range-markers-from-region", _("Add Range Marker(s)"), sigc::mem_fun (*this, &Editor::add_locations_from_region
)
1416 /* Snap selected regions to the grid */
1417 reg_sens (_region_actions
, "snap-regions-to-grid", _("Snap to Grid"), sigc::mem_fun (*this, &Editor::snap_regions_to_grid
));
1419 /* Close gaps in selected regions */
1420 reg_sens (_region_actions
, "close-region-gaps", _("Close Gaps"), sigc::mem_fun (*this, &Editor::close_region_gaps
));
1422 /* Open the Rhythm Ferret dialogue for the selected regions */
1423 reg_sens (_region_actions
, "show-rhythm-ferret", _("Rhythm Ferret..."), sigc::mem_fun (*this, &Editor::show_rhythm_ferret
));
1425 /* Export the first selected region */
1426 reg_sens (_region_actions
, "export-region", _("Export..."), sigc::mem_fun (*this, &Editor::export_region
));
1428 /* Separate under selected regions: XXX not sure what this does */
1431 "separate-under-region",
1432 _("Separate Under"),
1433 sigc::mem_fun (*this, &Editor::separate_under_selected_regions
)
1436 reg_sens (_region_actions
, "set-fade-in-length", _("Set Fade In Length"), sigc::bind (sigc::mem_fun (*this, &Editor::set_fade_length
), true));
1437 reg_sens (_region_actions
, "set-fade-out-length", _("Set Fade Out Length"), sigc::bind (sigc::mem_fun (*this, &Editor::set_fade_length
), false));
1438 reg_sens (_region_actions
, "set-tempo-from-region", _("Set Tempo from Region = Bar"), sigc::mem_fun (*this, &Editor::set_tempo_from_region
));
1442 "split-region-at-transients",
1443 _("Split at Percussion Onsets"),
1444 sigc::mem_fun(*this, &Editor::split_region_at_transients
)
1447 /* Open the list editor dialogue for the selected regions */
1448 reg_sens (_region_actions
, "show-region-list-editor", _("List Editor..."), sigc::mem_fun (*this, &Editor::show_midi_list_editor
));
1450 /* Open the region properties dialogue for the selected regions */
1451 reg_sens (_region_actions
, "show-region-properties", _("Properties..."), sigc::mem_fun (*this, &Editor::show_region_properties
));
1453 reg_sens (_region_actions
, "play-selected-regions", _("Play"), sigc::mem_fun(*this, &Editor::play_selected_region
));
1455 reg_sens (_region_actions
, "bounce-region", _("Bounce"), sigc::mem_fun (*this, &Editor::bounce_region_selection
));
1457 reg_sens (_region_actions
, "analyze-region", _("Spectral Analysis..."), sigc::mem_fun (*this, &Editor::analyze_region_selection
));
1459 reg_sens (_region_actions
, "reset-region-gain-envelopes", _("Reset Envelope"), sigc::mem_fun (*this, &Editor::reset_region_gain_envelopes
));
1461 reg_sens (_region_actions
, "reset-region-scale-amplitude", _("Reset Gain"), sigc::mem_fun (*this, &Editor::reset_region_scale_amplitude
));
1465 "toggle-region-gain-envelope-visible",
1466 _("Envelope Visible"),
1467 sigc::mem_fun (*this, &Editor::toggle_gain_envelope_visibility
)
1472 "toggle-region-gain-envelope-active",
1473 _("Envelope Active"),
1474 sigc::mem_fun (*this, &Editor::toggle_gain_envelope_active
)
1477 reg_sens (_region_actions
, "quantize-region", _("Quantize"), sigc::mem_fun (*this, &Editor::quantize_region
));
1478 reg_sens (_region_actions
, "insert-patch-change", _("Insert Patch Change..."), sigc::mem_fun (*this, &Editor::insert_patch_change
));
1479 reg_sens (_region_actions
, "fork-region", _("Fork"), sigc::mem_fun (*this, &Editor::fork_region
));
1480 reg_sens (_region_actions
, "strip-region-silence", _("Strip Silence..."), sigc::mem_fun (*this, &Editor::strip_region_silence
));
1481 reg_sens (_region_actions
, "set-selection-from-region", _("Set Range Selection"), sigc::mem_fun (*this, &Editor::set_selection_from_region
));
1483 reg_sens (_region_actions
, "nudge-forward", _("Nudge Forward"), sigc::bind (sigc::mem_fun (*this, &Editor::nudge_forward
), false, false));
1484 reg_sens (_region_actions
, "nudge-backward", _("Nudge Backward"), sigc::bind (sigc::mem_fun (*this, &Editor::nudge_backward
), false, false));
1488 "nudge-forward-by-capture-offset",
1489 _("Nudge Forward by Capture Offset"),
1490 sigc::mem_fun (*this, &Editor::nudge_forward_capture_offset
)
1495 "nudge-backward-by-capture-offset",
1496 _("Nudge Backward by Capture Offset"),
1497 sigc::mem_fun (*this, &Editor::nudge_backward_capture_offset
)
1500 reg_sens (_region_actions
, "trim-region-to-loop", _("Trim to Loop"), sigc::mem_fun (*this, &Editor::trim_region_to_loop
));
1501 reg_sens (_region_actions
, "trim-region-to-punch", _("Trim to Punch"), sigc::mem_fun (*this, &Editor::trim_region_to_punch
));
1503 reg_sens (_region_actions
, "trim-to-previous-region", _("Trim to Previous"), sigc::mem_fun(*this, &Editor::trim_region_to_previous_region_end
));
1504 reg_sens (_region_actions
, "trim-to-next-region", _("Trim to Next"), sigc::mem_fun(*this, &Editor::trim_region_to_next_region_start
));
1506 /* PART 2: actions that are not related to the selection, but for which the edit point type and location is important */
1510 "insert-region-from-region-list",
1511 _("Insert Region From Region List"),
1512 sigc::bind (sigc::mem_fun (*this, &Editor::insert_region_list_selection
), 1)
1515 /* PART 3: actions that operate on the selection and also require the edit point location */
1517 reg_sens (_region_actions
, "set-region-sync-position", _("Set Sync Position"), sigc::mem_fun (*this, &Editor::set_region_sync_position
));
1518 reg_sens (_region_actions
, "place-transient", _("Place Transient"), sigc::mem_fun (*this, &Editor::place_transient
));
1519 reg_sens (_region_actions
, "split-region", _("Split"), sigc::mem_fun (*this, &Editor::split_region
));
1520 reg_sens (_region_actions
, "trim-front", _("Trim Start at Edit Point"), sigc::mem_fun (*this, &Editor::trim_region_front
));
1521 reg_sens (_region_actions
, "trim-back", _("Trim End at Edit Point"), sigc::mem_fun (*this, &Editor::trim_region_back
));
1525 "align-regions-start",
1527 sigc::bind (sigc::mem_fun(*this, &Editor::align_regions
), ARDOUR::Start
)
1532 "align-regions-start-relative",
1533 _("Align Start Relative"),
1534 sigc::bind (sigc::mem_fun (*this, &Editor::align_regions_relative
), ARDOUR::Start
)
1537 reg_sens (_region_actions
, "align-regions-end", _("Align End"), sigc::bind (sigc::mem_fun (*this, &Editor::align_regions
), ARDOUR::End
));
1541 "align-regions-end-relative",
1542 _("Align End Relative"),
1543 sigc::bind (sigc::mem_fun(*this, &Editor::align_regions_relative
), ARDOUR::End
)
1548 "align-regions-sync",
1550 sigc::bind (sigc::mem_fun(*this, &Editor::align_regions
), ARDOUR::SyncPoint
)
1555 "align-regions-sync-relative",
1556 _("Align Sync Relative"),
1557 sigc::bind (sigc::mem_fun (*this, &Editor::align_regions_relative
), ARDOUR::SyncPoint
)
1560 Glib::RefPtr
<Action
> a
= reg_sens (_region_actions
, "choose-top-region", _("Choose Top..."), mem_fun (*this, &Editor::change_region_layering_order
));
1561 a
->set_accel_group (get_accel_group ());
1563 _all_region_actions_sensitized
= true;
1565 ActionManager::add_action_group (_region_actions
);