put the issue of using a monitor section into ~/.config/ardour.rc, not the session...
[ardour2.git] / gtk2_ardour / ardour_ui_ed.cc
blobf3bc96c6c53b32e56d66b8f8c15446e66a222d77
1 /*
2 Copyright (C) 20002-2004 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 /* This file contains any ARDOUR_UI methods that require knowledge of
21 the editor, and exists so that no compilation dependency exists
22 between the main ARDOUR_UI modules and the PublicEditor class. This
23 is to cut down on the nasty compile times for both these classes.
26 #include <cmath>
28 #include <glibmm/miscutils.h>
29 #include <gtk/gtk.h>
31 #include "gtkmm2ext/utils.h"
32 #include "gtkmm2ext/window_title.h"
33 #include "gtkmm2ext/tearoff.h"
35 #include "pbd/file_utils.h"
36 #include "pbd/fpu.h"
37 #include "pbd/convert.h"
39 #include "ardour_ui.h"
40 #include "public_editor.h"
41 #include "audio_clock.h"
42 #include "keyboard.h"
43 #include "monitor_section.h"
44 #include "engine_dialog.h"
45 #include "editor.h"
46 #include "actions.h"
47 #include "mixer_ui.h"
48 #include "startup.h"
49 #include "utils.h"
51 #ifdef GTKOSX
52 #include <gtkmm2ext/sync-menu.h>
53 #endif
55 #include "ardour/session.h"
56 #include "ardour/profile.h"
57 #include "ardour/audioengine.h"
58 #include "ardour/control_protocol_manager.h"
60 #include "control_protocol/control_protocol.h"
62 #include "i18n.h"
64 using namespace std;
65 using namespace ARDOUR;
66 using namespace PBD;
67 using namespace Gtkmm2ext;
68 using namespace Gtk;
69 using namespace Glib;
71 int
72 ARDOUR_UI::create_editor ()
75 try {
76 editor = new Editor ();
79 catch (failed_constructor& err) {
80 return -1;
83 editor->Realized.connect (sigc::mem_fun (*this, &ARDOUR_UI::editor_realized));
84 editor->signal_window_state_event().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::main_window_state_event_handler), true));
86 return 0;
89 void
90 ARDOUR_UI::install_actions ()
92 Glib::RefPtr<ActionGroup> main_actions = ActionGroup::create (X_("Main"));
93 Glib::RefPtr<Action> act;
95 /* menus + submenus that need action items */
97 ActionManager::register_action (main_actions, X_("Session"), _("Session"));
98 act = ActionManager::register_action (main_actions, X_("Cleanup"), _("Cleanup"));
99 ActionManager::write_sensitive_actions.push_back (act);
100 ActionManager::register_action (main_actions, X_("Sync"), _("Sync"));
101 ActionManager::register_action (main_actions, X_("TransportOptions"), _("Options"));
102 ActionManager::register_action (main_actions, X_("Help"), _("Help"));
103 ActionManager::register_action (main_actions, X_("KeyMouseActions"), _("Misc. Shortcuts"));
104 ActionManager::register_action (main_actions, X_("AudioFileFormat"), _("Audio File Format"));
105 ActionManager::register_action (main_actions, X_("AudioFileFormatHeader"), _("File Type"));
106 ActionManager::register_action (main_actions, X_("AudioFileFormatData"), _("Sample Format"));
107 ActionManager::register_action (main_actions, X_("ControlSurfaces"), _("Control Surfaces"));
108 ActionManager::register_action (main_actions, X_("Plugins"), _("Plugins"));
109 ActionManager::register_action (main_actions, X_("Metering"), _("Metering"));
110 ActionManager::register_action (main_actions, X_("MeteringFallOffRate"), _("Fall Off Rate"));
111 ActionManager::register_action (main_actions, X_("MeteringHoldTime"), _("Hold Time"));
112 ActionManager::register_action (main_actions, X_("Denormals"), _("Denormal Handling"));
114 /* the real actions */
116 act = ActionManager::register_action (main_actions, X_("New"), _("New..."), hide_return (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::get_session_parameters), false, true)));
118 ActionManager::register_action (main_actions, X_("Open"), _("Open..."), sigc::mem_fun(*this, &ARDOUR_UI::open_session));
119 ActionManager::register_action (main_actions, X_("Recent"), _("Recent..."), sigc::mem_fun(*this, &ARDOUR_UI::open_recent_session));
120 act = ActionManager::register_action (main_actions, X_("Close"), _("Close"), sigc::mem_fun(*this, &ARDOUR_UI::close_session));
121 ActionManager::session_sensitive_actions.push_back (act);
123 act = ActionManager::register_action (main_actions, X_("AddTrackBus"), _("Add Track/Bus..."),
124 sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::add_route), (Gtk::Window*) 0));
125 ActionManager::session_sensitive_actions.push_back (act);
126 ActionManager::write_sensitive_actions.push_back (act);
128 #ifdef WITH_CMT
130 sys::path anicomp_file_path;
132 if (PBD::find_file_in_search_path (Glib::getenv("PATH"), "AniComp", anicomp_file_path)) {
133 act = ActionManager::register_action (main_actions, X_("aniConnect"), _("Connect"), (sigc::mem_fun (*editor, &PublicEditor::connect_to_image_compositor)));
134 ActionManager::session_sensitive_actions.push_back (act);
137 #endif
139 act = ActionManager::register_action (main_actions, X_("Snapshot"), _("Snapshot..."), sigc::mem_fun(*this, &ARDOUR_UI::snapshot_session));
140 ActionManager::session_sensitive_actions.push_back (act);
141 ActionManager::write_sensitive_actions.push_back (act);
143 act = ActionManager::register_action (main_actions, X_("SaveTemplate"), _("Save Template..."), sigc::mem_fun(*this, &ARDOUR_UI::save_template));
144 ActionManager::session_sensitive_actions.push_back (act);
146 act = ActionManager::register_action (main_actions, X_("Metadata"), _("Metadata"));
147 ActionManager::session_sensitive_actions.push_back (act);
149 act = ActionManager::register_action (main_actions, X_("EditMetadata"), _("Edit Metadata..."), sigc::mem_fun(*this, &ARDOUR_UI::edit_metadata));
150 ActionManager::session_sensitive_actions.push_back (act);
152 act = ActionManager::register_action (main_actions, X_("ImportMetadata"), _("Import Metadata..."), sigc::mem_fun(*this, &ARDOUR_UI::import_metadata));
153 ActionManager::session_sensitive_actions.push_back (act);
155 act = ActionManager::register_action (main_actions, X_("ExportAudio"), _("Export To Audio File(s)..."), sigc::mem_fun (*editor, &PublicEditor::export_audio));
156 ActionManager::session_sensitive_actions.push_back (act);
158 act = ActionManager::register_action (main_actions, X_("Export"), _("Export"));
159 ActionManager::session_sensitive_actions.push_back (act);
161 act = ActionManager::register_action (main_actions, X_("CleanupUnused"), _("Cleanup Unused Sources..."), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::cleanup));
162 ActionManager::session_sensitive_actions.push_back (act);
163 ActionManager::write_sensitive_actions.push_back (act);
165 act = ActionManager::register_action (main_actions, X_("FlushWastebasket"), _("Flush Wastebasket"), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::flush_trash));
166 ActionManager::write_sensitive_actions.push_back (act);
167 ActionManager::session_sensitive_actions.push_back (act);
169 /* JACK actions for controlling ... JACK */
171 Glib::RefPtr<ActionGroup> jack_actions = ActionGroup::create (X_("JACK"));
172 ActionManager::register_action (jack_actions, X_("JACK"), _("JACK"));
173 ActionManager::register_action (jack_actions, X_("Latency"), _("Latency"));
175 act = ActionManager::register_action (jack_actions, X_("JACKReconnect"), _("Reconnect"), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::reconnect_to_jack));
176 ActionManager::jack_opposite_sensitive_actions.push_back (act);
178 act = ActionManager::register_action (jack_actions, X_("JACKDisconnect"), _("Disconnect"), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::disconnect_from_jack));
179 ActionManager::jack_sensitive_actions.push_back (act);
181 RadioAction::Group jack_latency_group;
183 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency32"), X_("32"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 32));
184 ActionManager::jack_sensitive_actions.push_back (act);
185 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency64"), X_("64"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 64));
186 ActionManager::jack_sensitive_actions.push_back (act);
187 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency128"), X_("128"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 128));
188 ActionManager::jack_sensitive_actions.push_back (act);
189 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency256"), X_("256"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 256));
190 ActionManager::jack_sensitive_actions.push_back (act);
191 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency512"), X_("512"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 512));
192 ActionManager::jack_sensitive_actions.push_back (act);
193 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency1024"), X_("1024"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 1024));
194 ActionManager::jack_sensitive_actions.push_back (act);
195 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency2048"), X_("2048"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 2048));
196 ActionManager::jack_sensitive_actions.push_back (act);
197 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency4096"), X_("4096"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 4096));
198 ActionManager::jack_sensitive_actions.push_back (act);
199 act = ActionManager::register_radio_action (jack_actions, jack_latency_group, X_("JACKLatency8192"), X_("8192"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::set_jack_buffer_size), (nframes_t) 8192));
200 ActionManager::jack_sensitive_actions.push_back (act);
202 /* these actions are intended to be shared across all windows */
204 common_actions = ActionGroup::create (X_("Common"));
205 ActionManager::register_action (main_actions, X_("WindowMenu"), _("Window"));
206 ActionManager::register_action (common_actions, X_("Quit"), _("Quit"), (hide_return (sigc::mem_fun(*this, &ARDOUR_UI::finish))));
208 /* windows visibility actions */
210 ActionManager::register_toggle_action (common_actions, X_("ToggleMaximalEditor"), _("Maximise Editor Space"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_editing_space));
212 ActionManager::register_action (common_actions, X_("goto-editor"), _("Show Editor"), sigc::mem_fun(*this, &ARDOUR_UI::goto_editor_window));
213 ActionManager::register_action (common_actions, X_("goto-mixer"), _("Show Mixer"), sigc::mem_fun(*this, &ARDOUR_UI::goto_mixer_window));
214 ActionManager::register_action (common_actions, X_("toggle-editor-mixer-on-top"), _("Toggle Editor Mixer on Top"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_editor_mixer_on_top));
215 ActionManager::register_toggle_action (common_actions, X_("ToggleRCOptionsEditor"), _("Preferences"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_rc_options_window));
216 ActionManager::register_toggle_action (common_actions, X_("ToggleSessionOptionsEditor"), _("Preferences"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_session_options_window));
217 act = ActionManager::register_toggle_action (common_actions, X_("ToggleInspector"), _("Track/Bus Inspector"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_route_params_window));
218 ActionManager::session_sensitive_actions.push_back (act);
219 ActionManager::session_sensitive_actions.push_back (act);
220 act = ActionManager::register_toggle_action (common_actions, X_("ToggleLocations"), _("Locations"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_location_window));
221 ActionManager::session_sensitive_actions.push_back (act);
222 act = ActionManager::register_toggle_action (common_actions, X_("ToggleBigClock"), _("Big Clock"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_big_clock_window));
223 ActionManager::session_sensitive_actions.push_back (act);
224 ActionManager::register_action (common_actions, X_("About"), _("About"), sigc::mem_fun(*this, &ARDOUR_UI::show_about));
225 ActionManager::register_action (common_actions, X_("Chat"), _("Chat"), sigc::mem_fun(*this, &ARDOUR_UI::launch_chat));
226 ActionManager::register_toggle_action (common_actions, X_("ToggleThemeManager"), _("Theme Manager"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_theme_manager));
227 ActionManager::register_toggle_action (common_actions, X_("ToggleKeyEditor"), _("Key Bindings"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_key_editor));
228 ActionManager::register_toggle_action (common_actions, X_("ToggleBundleManager"), _("Bundle Manager"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_bundle_manager));
230 #if 0
231 act = ActionManager::register_action (common_actions, X_("AddAudioTrack"), _("Add Audio Track"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::session_add_audio_track), 1, 1, ARDOUR::Normal, (ARDOUR::RouteGroup *) 0, 1));
232 ActionManager::session_sensitive_actions.push_back (act);
233 act = ActionManager::register_action (common_actions, X_("AddAudioBus"), _("Add Audio Bus"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::session_add_audio_bus), 1, 1, (ARDOUR::RouteGroup *) 0, 1));
234 ActionManager::session_sensitive_actions.push_back (act);
235 act = ActionManager::register_action (common_actions, X_("AddMIDITrack"), _("Add MIDI Track"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::session_add_midi_track), (ARDOUR::RouteGroup *) 0, 1));
236 ActionManager::session_sensitive_actions.push_back (act);
237 //act = ActionManager::register_action (common_actions, X_("AddMidiBus"), _("Add Midi Bus"), sigc::mem_fun(*this, &ARDOUR_UI::session_add_midi_bus));
238 //ActionManager::session_sensitive_actions.push_back (act);
239 #endif
240 act = ActionManager::register_action (common_actions, X_("Save"), _("Save"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::save_state), string("")));
241 ActionManager::session_sensitive_actions.push_back (act);
242 ActionManager::write_sensitive_actions.push_back (act);
243 act = ActionManager::register_action (common_actions, X_("RemoveLastCapture"), _("Remove Last Capture"), sigc::mem_fun(*this, &ARDOUR_UI::remove_last_capture));
244 ActionManager::session_sensitive_actions.push_back (act);
246 Glib::RefPtr<ActionGroup> transport_actions = ActionGroup::create (X_("Transport"));
248 /* do-nothing action for the "transport" menu bar item */
250 ActionManager::register_action (transport_actions, X_("Transport"), _("Transport"));
252 /* these two are not used by key bindings, instead use ToggleRoll for that. these two do show up in
253 menus and via button proxies.
256 act = ActionManager::register_action (transport_actions, X_("Stop"), _("Stop"), sigc::mem_fun(*this, &ARDOUR_UI::transport_stop));
257 ActionManager::session_sensitive_actions.push_back (act);
258 ActionManager::transport_sensitive_actions.push_back (act);
259 act = ActionManager::register_action (transport_actions, X_("Roll"), _("Roll"), sigc::mem_fun(*this, &ARDOUR_UI::transport_roll));
260 ActionManager::session_sensitive_actions.push_back (act);
261 ActionManager::transport_sensitive_actions.push_back (act);
263 act = ActionManager::register_action (transport_actions, X_("ToggleRoll"), _("Start/Stop"), sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::toggle_roll), false, false));
264 ActionManager::session_sensitive_actions.push_back (act);
265 ActionManager::transport_sensitive_actions.push_back (act);
266 act = ActionManager::register_action (transport_actions, X_("ToggleRollMaybe"), _("Start/Continue/Stop"), sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::toggle_roll), false, true));
267 ActionManager::session_sensitive_actions.push_back (act);
268 ActionManager::transport_sensitive_actions.push_back (act);
269 act = ActionManager::register_action (transport_actions, X_("ToggleRollForgetCapture"), _("Stop and Forget Capture"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::toggle_roll), true, false));
270 ActionManager::session_sensitive_actions.push_back (act);
271 ActionManager::transport_sensitive_actions.push_back (act);
273 /* these two behave as follows:
275 - if transport speed != 1.0 or != -1.0, change speed to 1.0 or -1.0 (respectively)
276 - otherwise do nothing
279 act = ActionManager::register_action (transport_actions, X_("TransitionToRoll"), _("Transition To Roll"), sigc::bind (sigc::mem_fun (*editor, &PublicEditor::transition_to_rolling), true));
280 ActionManager::session_sensitive_actions.push_back (act);
281 ActionManager::transport_sensitive_actions.push_back (act);
283 act = ActionManager::register_action (transport_actions, X_("TransitionToReverse"), _("Transition To Reverse"), sigc::bind (sigc::mem_fun (*editor, &PublicEditor::transition_to_rolling), false));
284 ActionManager::session_sensitive_actions.push_back (act);
285 ActionManager::transport_sensitive_actions.push_back (act);
287 act = ActionManager::register_action (transport_actions, X_("Loop"), _("Play Loop Range"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_session_auto_loop));
288 ActionManager::session_sensitive_actions.push_back (act);
289 ActionManager::transport_sensitive_actions.push_back (act);
290 act = ActionManager::register_action (transport_actions, X_("PlaySelection"), _("Play Selection"), sigc::mem_fun(*this, &ARDOUR_UI::transport_play_selection));
291 ActionManager::session_sensitive_actions.push_back (act);
292 ActionManager::transport_sensitive_actions.push_back (act);
294 act = ActionManager::register_action (transport_actions, X_("Record"), _("Enable Record"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_record), false));
295 ActionManager::session_sensitive_actions.push_back (act);
296 ActionManager::write_sensitive_actions.push_back (act);
297 act = ActionManager::register_action (transport_actions, X_("record-roll"), _("Start Recording"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_record), true));
298 ActionManager::session_sensitive_actions.push_back (act);
299 ActionManager::write_sensitive_actions.push_back (act);
300 ActionManager::transport_sensitive_actions.push_back (act);
301 act = ActionManager::register_action (transport_actions, X_("Rewind"), _("Rewind"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_rewind), 0));
302 ActionManager::session_sensitive_actions.push_back (act);
303 ActionManager::transport_sensitive_actions.push_back (act);
304 act = ActionManager::register_action (transport_actions, X_("RewindSlow"), _("Rewind (Slow)"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_rewind), -1));
305 ActionManager::session_sensitive_actions.push_back (act);
306 ActionManager::transport_sensitive_actions.push_back (act);
307 act = ActionManager::register_action (transport_actions, X_("RewindFast"), _("Rewind (Fast)"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_rewind), 1));
308 ActionManager::session_sensitive_actions.push_back (act);
309 ActionManager::transport_sensitive_actions.push_back (act);
310 act = ActionManager::register_action (transport_actions, X_("Forward"), _("Forward"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_forward), 0));
311 ActionManager::session_sensitive_actions.push_back (act);
312 ActionManager::transport_sensitive_actions.push_back (act);
313 act = ActionManager::register_action (transport_actions, X_("ForwardSlow"), _("Forward (Slow)"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_forward), -1));
314 ActionManager::session_sensitive_actions.push_back (act);
315 ActionManager::transport_sensitive_actions.push_back (act);
316 act = ActionManager::register_action (transport_actions, X_("ForwardFast"), _("Forward (Fast)"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_forward), 1));
317 ActionManager::session_sensitive_actions.push_back (act);
318 ActionManager::transport_sensitive_actions.push_back (act);
319 act = ActionManager::register_action (transport_actions, X_("GotoZero"), _("Goto Zero"), sigc::mem_fun(*this, &ARDOUR_UI::transport_goto_zero));
320 ActionManager::session_sensitive_actions.push_back (act);
321 ActionManager::transport_sensitive_actions.push_back (act);
322 act = ActionManager::register_action (transport_actions, X_("GotoStart"), _("Goto Start"), sigc::mem_fun(*this, &ARDOUR_UI::transport_goto_start));
323 ActionManager::session_sensitive_actions.push_back (act);
324 ActionManager::transport_sensitive_actions.push_back (act);
325 act = ActionManager::register_action (transport_actions, X_("GotoEnd"), _("Goto End"), sigc::mem_fun(*this, &ARDOUR_UI::transport_goto_end));
326 ActionManager::session_sensitive_actions.push_back (act);
327 ActionManager::transport_sensitive_actions.push_back (act);
328 act = ActionManager::register_action (transport_actions, X_("GotoWallClock"), _("Goto Wall Clock"), sigc::mem_fun(*this, &ARDOUR_UI::transport_goto_wallclock));
329 ActionManager::session_sensitive_actions.push_back (act);
330 ActionManager::transport_sensitive_actions.push_back (act);
332 act = ActionManager::register_action (transport_actions, X_("focus-on-clock"), _("Focus On Clock"), sigc::mem_fun(primary_clock, &AudioClock::focus));
333 ActionManager::session_sensitive_actions.push_back (act);
334 ActionManager::transport_sensitive_actions.push_back (act);
336 act = ActionManager::register_action (transport_actions, X_("primary-clock-bbt"), _("Bars & Beats"), sigc::bind (sigc::mem_fun(primary_clock, &AudioClock::set_mode), AudioClock::BBT));
337 ActionManager::session_sensitive_actions.push_back (act);
338 act = ActionManager::register_action (transport_actions, X_("primary-clock-minsec"), _("Minutes & Seconds"), sigc::bind (sigc::mem_fun(primary_clock, &AudioClock::set_mode), AudioClock::MinSec));
339 ActionManager::session_sensitive_actions.push_back (act);
340 act = ActionManager::register_action (transport_actions, X_("primary-clock-samples"), _("Samples"), sigc::bind (sigc::mem_fun(primary_clock, &AudioClock::set_mode), AudioClock::Frames));
341 ActionManager::session_sensitive_actions.push_back (act);
342 act = ActionManager::register_action (transport_actions, X_("primary-clock-off"), _("Off"), sigc::bind (sigc::mem_fun(primary_clock, &AudioClock::set_mode), AudioClock::Off));
343 ActionManager::session_sensitive_actions.push_back (act);
345 act = ActionManager::register_action (transport_actions, X_("secondary-clock-bbt"), _("Bars & Beats"), sigc::bind (sigc::mem_fun(secondary_clock, &AudioClock::set_mode), AudioClock::BBT));
346 ActionManager::session_sensitive_actions.push_back (act);
347 act = ActionManager::register_action (transport_actions, X_("secondary-clock-minsec"), _("Minutes & Seconds"), sigc::bind (sigc::mem_fun(secondary_clock, &AudioClock::set_mode), AudioClock::MinSec));
348 ActionManager::session_sensitive_actions.push_back (act);
349 act = ActionManager::register_action (transport_actions, X_("secondary-clock-samples"), _("Samples"), sigc::bind (sigc::mem_fun(secondary_clock, &AudioClock::set_mode), AudioClock::Frames));
350 ActionManager::session_sensitive_actions.push_back (act);
351 act = ActionManager::register_action (transport_actions, X_("secondary-clock-off"), _("Off"), sigc::bind (sigc::mem_fun(secondary_clock, &AudioClock::set_mode), AudioClock::Off));
352 ActionManager::session_sensitive_actions.push_back (act);
354 act = ActionManager::register_toggle_action (transport_actions, X_("TogglePunchIn"), _("Punch In"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_punch_in));
355 ActionManager::session_sensitive_actions.push_back (act);
356 ActionManager::transport_sensitive_actions.push_back (act);
357 act = ActionManager::register_toggle_action (transport_actions, X_("TogglePunchOut"), _("Punch Out"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_punch_out));
358 ActionManager::session_sensitive_actions.push_back (act);
359 ActionManager::transport_sensitive_actions.push_back (act);
360 act = ActionManager::register_toggle_action (transport_actions, X_("TogglePunch"), _("Punch In/Out"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_punch));
361 ActionManager::session_sensitive_actions.push_back (act);
362 ActionManager::transport_sensitive_actions.push_back (act);
363 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleClick"), _("Click"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_click));
364 ActionManager::session_sensitive_actions.push_back (act);
365 ActionManager::transport_sensitive_actions.push_back (act);
366 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleAutoInput"), _("Auto Input"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_auto_input));
367 ActionManager::session_sensitive_actions.push_back (act);
368 ActionManager::transport_sensitive_actions.push_back (act);
369 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleAutoPlay"), _("Auto Play"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_auto_play));
370 ActionManager::session_sensitive_actions.push_back (act);
371 ActionManager::transport_sensitive_actions.push_back (act);
372 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleAutoReturn"), _("Auto Return"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_auto_return));
373 ActionManager::session_sensitive_actions.push_back (act);
374 ActionManager::transport_sensitive_actions.push_back (act);
376 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleVideoSync"), _("Sync Startup to Video"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_video_sync));
377 ActionManager::session_sensitive_actions.push_back (act);
378 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleTimeMaster"), _("Time Master"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_time_master));
379 ActionManager::session_sensitive_actions.push_back (act);
380 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleExternalSync"), _(""), sigc::mem_fun(*this, &ARDOUR_UI::toggle_external_sync));
381 ActionManager::session_sensitive_actions.push_back (act);
383 for (int i = 1; i <= 32; ++i) {
384 string const a = string_compose (X_("ToggleRecordEnableTrack%1"), i);
385 string const n = string_compose (_("Toggle Record Enable Track %1"), i);
386 act = ActionManager::register_action (common_actions, a.c_str(), n.c_str(), sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::toggle_record_enable), i - 1));
387 ActionManager::session_sensitive_actions.push_back (act);
390 Glib::RefPtr<ActionGroup> shuttle_actions = ActionGroup::create ("ShuttleActions");
392 shuttle_actions->add (Action::create (X_("SetShuttleUnitsPercentage"), _("Percentage")), hide_return (sigc::bind (sigc::mem_fun (*Config, &RCConfiguration::set_shuttle_units), Percentage)));
393 shuttle_actions->add (Action::create (X_("SetShuttleUnitsSemitones"), _("Semitones")), hide_return (sigc::bind (sigc::mem_fun (*Config, &RCConfiguration::set_shuttle_units), Semitones)));
395 Glib::RefPtr<ActionGroup> option_actions = ActionGroup::create ("options");
397 act = ActionManager::register_toggle_action (option_actions, X_("SendMTC"), _("Send MTC"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_send_mtc));
398 ActionManager::session_sensitive_actions.push_back (act);
399 act = ActionManager::register_toggle_action (option_actions, X_("SendMMC"), _("Send MMC"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_send_mmc));
400 ActionManager::session_sensitive_actions.push_back (act);
401 act = ActionManager::register_toggle_action (option_actions, X_("UseMMC"), _("Use MMC"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_use_mmc));
402 ActionManager::session_sensitive_actions.push_back (act);
403 act = ActionManager::register_toggle_action (option_actions, X_("SendMidiClock"), _("Send MIDI Clock"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_send_midi_clock));
404 ActionManager::session_sensitive_actions.push_back (act);
405 act = ActionManager::register_toggle_action (option_actions, X_("SendMIDIfeedback"), _("Send MIDI Feedback"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_send_midi_feedback));
406 ActionManager::session_sensitive_actions.push_back (act);
408 ActionManager::add_action_group (shuttle_actions);
409 ActionManager::add_action_group (option_actions);
410 ActionManager::add_action_group (jack_actions);
411 ActionManager::add_action_group (transport_actions);
412 ActionManager::add_action_group (main_actions);
413 ActionManager::add_action_group (common_actions);
416 void
417 ARDOUR_UI::set_jack_buffer_size (nframes_t nframes)
419 Glib::RefPtr<Action> action;
420 const char* action_name = 0;
422 switch (nframes) {
423 case 32:
424 action_name = X_("JACKLatency32");
425 break;
426 case 64:
427 action_name = X_("JACKLatency64");
428 break;
429 case 128:
430 action_name = X_("JACKLatency128");
431 break;
432 case 256:
433 action_name = X_("JACKLatency256");
434 break;
435 case 512:
436 action_name = X_("JACKLatency512");
437 break;
438 case 1024:
439 action_name = X_("JACKLatency1024");
440 break;
441 case 2048:
442 action_name = X_("JACKLatency2048");
443 break;
444 case 4096:
445 action_name = X_("JACKLatency4096");
446 break;
447 case 8192:
448 action_name = X_("JACKLatency8192");
449 break;
450 default:
451 /* XXX can we do anything useful ? */
452 break;
455 if (action_name) {
457 action = ActionManager::get_action (X_("JACK"), action_name);
459 if (action) {
460 Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic (action);
462 if (ract && ract->get_active()) {
463 engine->request_buffer_size (nframes);
464 update_sample_rate (0);
470 void
471 ARDOUR_UI::build_menu_bar ()
473 menu_bar = dynamic_cast<MenuBar*> (ActionManager::get_widget (X_("/Main")));
474 menu_bar->set_name ("MainMenuBar");
477 * This is needed because this property does not get installed
478 * until the Menu GObject class is registered, which happens
479 * when the first menu instance is created.
481 // XXX bug in gtkmm causes this to popup an error message
482 // Gtk::Settings::get_default()->property_gtk_can_change_accels() = true;
483 // so use this instead ...
484 gtk_settings_set_long_property (gtk_settings_get_default(), "gtk-can-change-accels", 1, "Ardour:designers");
486 wall_clock_box.add (wall_clock_label);
487 wall_clock_box.set_name ("WallClock");
488 wall_clock_label.set_name ("WallClock");
490 disk_space_box.add (disk_space_label);
491 disk_space_box.set_name ("WallClock");
492 disk_space_label.set_name ("WallClock");
494 cpu_load_box.add (cpu_load_label);
495 cpu_load_box.set_name ("CPULoad");
496 cpu_load_label.set_name ("CPULoad");
498 buffer_load_box.add (buffer_load_label);
499 buffer_load_box.set_name ("BufferLoad");
500 buffer_load_label.set_name ("BufferLoad");
502 sample_rate_box.add (sample_rate_label);
503 sample_rate_box.set_name ("SampleRate");
504 sample_rate_label.set_name ("SampleRate");
506 #ifndef TOP_MENUBAR
507 menu_hbox.pack_start (*menu_bar, true, true);
508 #else
509 use_menubar_as_top_menubar ();
510 #endif
512 if (!Profile->get_small_screen()) {
513 #ifndef GTKOSX
514 // OSX provides its own wallclock, thank you very much
515 menu_hbox.pack_end (wall_clock_box, false, false, 2);
516 #endif
517 menu_hbox.pack_end (disk_space_box, false, false, 4);
520 menu_hbox.pack_end (cpu_load_box, false, false, 4);
521 menu_hbox.pack_end (buffer_load_box, false, false, 4);
522 menu_hbox.pack_end (sample_rate_box, false, false, 4);
524 menu_bar_base.set_name ("MainMenuBar");
525 menu_bar_base.add (menu_hbox);
528 void
529 ARDOUR_UI::use_menubar_as_top_menubar ()
531 #ifdef GTKOSX
532 ige_mac_menu_set_menu_bar ((GtkMenuShell*) menu_bar->gobj());
533 // ige_mac_menu_set_quit_menu_item (some_item->gobj());
534 #endif
537 void
538 ARDOUR_UI::setup_clock ()
540 ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (big_clock, &AudioClock::set), false));
542 big_clock_window = new Window (WINDOW_TOPLEVEL);
544 big_clock_window->set_keep_above (true);
545 big_clock_window->set_border_width (0);
546 big_clock_window->add (big_clock);
548 big_clock_window->set_title (_("Big Clock"));
549 big_clock_window->set_type_hint (Gdk::WINDOW_TYPE_HINT_UTILITY);
550 big_clock_window->signal_realize().connect (sigc::mem_fun (*this, &ARDOUR_UI::big_clock_realized));
551 big_clock_window->signal_unmap().connect (sigc::bind (sigc::ptr_fun(&ActionManager::uncheck_toggleaction), X_("<Actions>/Common/ToggleBigClock")));
552 big_clock_window->signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), big_clock_window), false);
553 big_clock_window->signal_size_allocate().connect (sigc::mem_fun (*this, &ARDOUR_UI::big_clock_size_allocate));
555 manage_window (*big_clock_window);
558 void
559 ARDOUR_UI::big_clock_realized ()
561 int x, y, w, d;
563 set_decoration (big_clock_window, (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH));
564 big_clock_window->get_window()->get_geometry (x, y, w, big_clock_height, d);
566 original_big_clock_height = big_clock_height;
567 original_big_clock_width = w;
569 Pango::FontDescription fd (big_clock.get_style()->get_font());
570 original_big_clock_font_size = fd.get_size ();
572 if (!fd.get_size_is_absolute ()) {
573 original_big_clock_font_size /= PANGO_SCALE;
576 /* we can't set the real size until we know the original one, with the UI rc-file-set font
577 size, so do this here.
580 XMLNode* node = Config->extra_xml (X_("UI"));
582 if (node) {
584 const XMLProperty* prop;
585 int w, h, x, y;
586 int have_pos = 0;
588 w = h = x = y = 0;
590 if ((prop = node->property ("big-clock-x-size")) != 0) {
591 w = atoi (prop->value());
593 if ((prop = node->property ("big-clock-y-size")) != 0) {
594 h = atoi (prop->value());
597 if (w && h) {
598 big_clock_window->set_default_size (w, h);
601 if ((prop = node->property ("big-clock-x-off")) != 0) {
602 x = atoi (prop->value());
603 have_pos++;
605 if ((prop = node->property ("big-clock-y-off")) != 0) {
606 y = atoi (prop->value());
607 have_pos++;
610 if (have_pos == 2) {
611 big_clock_window->move (x, y);
616 void
617 ARDOUR_UI::float_big_clock (Gtk::Window* parent)
619 if (big_clock_window) {
620 if (parent) {
621 big_clock_window->set_transient_for (*parent);
622 } else {
623 gtk_window_set_transient_for (big_clock_window->gobj(), (GtkWindow*) 0);
628 void
629 ARDOUR_UI::big_clock_size_allocate (Gtk::Allocation& allocation)
631 if (!big_clock_resize_in_progress) {
632 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::idle_big_clock_text_resizer), 0, 0));
633 big_clock_resize_in_progress = true;
637 bool
638 ARDOUR_UI::idle_big_clock_text_resizer (int win_w, int win_h)
640 big_clock_resize_in_progress = false;
642 Glib::RefPtr<Gdk::Window> win = big_clock_window->get_window();
643 Pango::FontDescription fd (big_clock.get_style()->get_font());
644 int current_size = fd.get_size ();
645 int x, y, w, h, d;
647 if (!fd.get_size_is_absolute ()) {
648 current_size /= PANGO_SCALE;
651 win->get_geometry (x, y, w, h, d);
653 double scale = min (((double) w / (double) original_big_clock_width),
654 ((double) h / (double) original_big_clock_height));
656 int size = (int) lrintf (original_big_clock_font_size * scale);
658 if (size != current_size) {
660 string family = fd.get_family();
661 char buf[family.length()+16];
662 snprintf (buf, family.length()+16, "%s %d", family.c_str(), size);
664 try {
665 Pango::FontDescription fd (buf);
666 Glib::RefPtr<Gtk::RcStyle> rcstyle = big_clock.get_modifier_style ();
667 rcstyle->set_font (fd);
668 big_clock.modify_style (rcstyle);
671 catch (...) {
672 /* oh well, do nothing */
676 return false;
679 void
680 ARDOUR_UI::save_ardour_state ()
682 if (!keyboard || !mixer || !editor) {
683 return;
686 /* XXX this is all a bit dubious. add_extra_xml() uses
687 a different lifetime model from add_instant_xml().
690 XMLNode* node = new XMLNode (keyboard->get_state());
691 Config->add_extra_xml (*node);
692 Config->add_extra_xml (get_transport_controllable_state());
694 XMLNode* window_node = new XMLNode (X_("UI"));
696 window_node->add_property ("show-big-clock", (big_clock_window && big_clock_window->is_visible() ? "yes" : "no"));
698 Glib::RefPtr<Gdk::Window> win;
700 if (big_clock_window && (win = big_clock_window->get_window())) {
702 int w, h;
703 int xoff, yoff;
704 char buf[32];
706 win->get_size (w, h);
707 win->get_position (xoff, yoff);
709 snprintf (buf, sizeof (buf), "%d", w);
710 window_node->add_property ("big-clock-x-size", buf);
711 snprintf (buf, sizeof (buf), "%d", h);
712 window_node->add_property ("big-clock-y-size", buf);
713 snprintf (buf, sizeof (buf), "%d", xoff);
714 window_node->add_property ("big-clock-x-off", buf);
715 snprintf (buf, sizeof (buf), "%d", yoff);
716 window_node->add_property ("big-clock-y-off", buf);
719 /* tearoffs */
721 XMLNode* tearoff_node = new XMLNode (X_("Tearoffs"));
723 if (transport_tearoff) {
724 XMLNode* t = new XMLNode (X_("transport"));
725 transport_tearoff->add_state (*t);
726 tearoff_node->add_child_nocopy (*t);
729 if (mixer && mixer->monitor_section()) {
730 XMLNode* t = new XMLNode (X_("monitor-section"));
731 mixer->monitor_section()->tearoff().add_state (*t);
732 tearoff_node->add_child_nocopy (*t);
735 if (editor && editor->mouse_mode_tearoff()) {
736 XMLNode* t = new XMLNode (X_("mouse-mode"));
737 editor->mouse_mode_tearoff ()->add_state (*t);
738 tearoff_node->add_child_nocopy (*t);
741 window_node->add_child_nocopy (*tearoff_node);
743 Config->add_extra_xml (*window_node);
745 if (_startup && _startup->engine_control() && _startup->engine_control()->was_used()) {
746 Config->add_extra_xml (_startup->engine_control()->get_state());
748 Config->save_state();
749 ui_config->save_state ();
751 XMLNode enode(static_cast<Stateful*>(editor)->get_state());
752 XMLNode mnode(mixer->get_state());
754 if (_session) {
755 _session->add_instant_xml (enode);
756 _session->add_instant_xml (mnode);
757 } else {
758 Config->add_instant_xml (enode);
759 Config->add_instant_xml (mnode);
762 Keyboard::save_keybindings ();