Fix show existing automation for audio tracks (part of #3193)
[ArdourMidi.git] / gtk2_ardour / ardour_ui_ed.cc
blobfddc1a74c9b53b738fd393d1a00cb622ff6ac4ed
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 or 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::bind (sigc::mem_fun(*this, &ARDOUR_UI::snapshot_session), false));
140 ActionManager::session_sensitive_actions.push_back (act);
141 ActionManager::write_sensitive_actions.push_back (act);
143 act = ActionManager::register_action (main_actions, X_("SaveAs"), _("Save As..."), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::snapshot_session), true));
144 ActionManager::session_sensitive_actions.push_back (act);
145 ActionManager::write_sensitive_actions.push_back (act);
147 act = ActionManager::register_action (main_actions, X_("SaveTemplate"), _("Save Template..."), sigc::mem_fun(*this, &ARDOUR_UI::save_template));
148 ActionManager::session_sensitive_actions.push_back (act);
150 act = ActionManager::register_action (main_actions, X_("Metadata"), _("Metadata"));
151 ActionManager::session_sensitive_actions.push_back (act);
153 act = ActionManager::register_action (main_actions, X_("EditMetadata"), _("Edit Metadata..."), sigc::mem_fun(*this, &ARDOUR_UI::edit_metadata));
154 ActionManager::session_sensitive_actions.push_back (act);
156 act = ActionManager::register_action (main_actions, X_("ImportMetadata"), _("Import Metadata..."), sigc::mem_fun(*this, &ARDOUR_UI::import_metadata));
157 ActionManager::session_sensitive_actions.push_back (act);
159 act = ActionManager::register_action (main_actions, X_("ExportAudio"), _("Export To Audio File(s)..."), sigc::mem_fun (*editor, &PublicEditor::export_audio));
160 ActionManager::session_sensitive_actions.push_back (act);
162 act = ActionManager::register_action (main_actions, X_("Export"), _("Export"));
163 ActionManager::session_sensitive_actions.push_back (act);
165 act = ActionManager::register_action (main_actions, X_("CleanupUnused"), _("Cleanup Unused Sources..."), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::cleanup));
166 ActionManager::session_sensitive_actions.push_back (act);
167 ActionManager::write_sensitive_actions.push_back (act);
169 act = ActionManager::register_action (main_actions, X_("FlushWastebasket"), _("Flush Wastebasket"), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::flush_trash));
170 ActionManager::write_sensitive_actions.push_back (act);
171 ActionManager::session_sensitive_actions.push_back (act);
173 /* JACK actions for controlling ... JACK */
175 Glib::RefPtr<ActionGroup> jack_actions = ActionGroup::create (X_("JACK"));
176 ActionManager::register_action (jack_actions, X_("JACK"), _("JACK"));
177 ActionManager::register_action (jack_actions, X_("Latency"), _("Latency"));
179 act = ActionManager::register_action (jack_actions, X_("JACKReconnect"), _("Reconnect"), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::reconnect_to_jack));
180 ActionManager::jack_opposite_sensitive_actions.push_back (act);
182 act = ActionManager::register_action (jack_actions, X_("JACKDisconnect"), _("Disconnect"), sigc::mem_fun (*(ARDOUR_UI::instance()), &ARDOUR_UI::disconnect_from_jack));
183 ActionManager::jack_sensitive_actions.push_back (act);
185 RadioAction::Group jack_latency_group;
187 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));
188 ActionManager::jack_sensitive_actions.push_back (act);
189 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));
190 ActionManager::jack_sensitive_actions.push_back (act);
191 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));
192 ActionManager::jack_sensitive_actions.push_back (act);
193 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));
194 ActionManager::jack_sensitive_actions.push_back (act);
195 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));
196 ActionManager::jack_sensitive_actions.push_back (act);
197 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));
198 ActionManager::jack_sensitive_actions.push_back (act);
199 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));
200 ActionManager::jack_sensitive_actions.push_back (act);
201 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));
202 ActionManager::jack_sensitive_actions.push_back (act);
203 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));
204 ActionManager::jack_sensitive_actions.push_back (act);
206 /* these actions are intended to be shared across all windows */
208 common_actions = ActionGroup::create (X_("Common"));
209 ActionManager::register_action (main_actions, X_("WindowMenu"), _("Window"));
210 ActionManager::register_action (common_actions, X_("Quit"), _("Quit"), (hide_return (sigc::mem_fun(*this, &ARDOUR_UI::finish))));
212 /* windows visibility actions */
214 ActionManager::register_toggle_action (common_actions, X_("ToggleMaximalEditor"), _("Maximise Editor Space"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_editing_space));
216 ActionManager::register_action (common_actions, X_("goto-editor"), _("Show Editor"), sigc::mem_fun(*this, &ARDOUR_UI::goto_editor_window));
217 ActionManager::register_action (common_actions, X_("goto-mixer"), _("Show Mixer"), sigc::mem_fun(*this, &ARDOUR_UI::goto_mixer_window));
218 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));
219 ActionManager::register_toggle_action (common_actions, X_("ToggleRCOptionsEditor"), _("Preferences"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_rc_options_window));
220 ActionManager::register_toggle_action (common_actions, X_("ToggleSessionOptionsEditor"), _("Preferences"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_session_options_window));
221 act = ActionManager::register_toggle_action (common_actions, X_("ToggleInspector"), _("Tracks and Busses"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_route_params_window));
222 ActionManager::session_sensitive_actions.push_back (act);
223 ActionManager::session_sensitive_actions.push_back (act);
224 act = ActionManager::register_toggle_action (common_actions, X_("ToggleLocations"), _("Locations"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_location_window));
225 ActionManager::session_sensitive_actions.push_back (act);
226 act = ActionManager::register_toggle_action (common_actions, X_("ToggleBigClock"), _("Big Clock"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_big_clock_window));
227 ActionManager::session_sensitive_actions.push_back (act);
228 ActionManager::register_action (common_actions, X_("About"), _("About"), sigc::mem_fun(*this, &ARDOUR_UI::show_about));
229 ActionManager::register_action (common_actions, X_("Chat"), _("Chat"), sigc::mem_fun(*this, &ARDOUR_UI::launch_chat));
230 ActionManager::register_toggle_action (common_actions, X_("ToggleThemeManager"), _("Theme Manager"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_theme_manager));
231 ActionManager::register_toggle_action (common_actions, X_("ToggleKeyEditor"), _("Key Bindings"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_key_editor));
232 ActionManager::register_toggle_action (common_actions, X_("ToggleBundleManager"), _("Bundle Manager"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_bundle_manager));
234 #if 0
235 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));
236 ActionManager::session_sensitive_actions.push_back (act);
237 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));
238 ActionManager::session_sensitive_actions.push_back (act);
239 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));
240 ActionManager::session_sensitive_actions.push_back (act);
241 //act = ActionManager::register_action (common_actions, X_("AddMidiBus"), _("Add Midi Bus"), sigc::mem_fun(*this, &ARDOUR_UI::session_add_midi_bus));
242 //ActionManager::session_sensitive_actions.push_back (act);
243 #endif
244 act = ActionManager::register_action (common_actions, X_("Save"), _("Save"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::save_state), string(""), false));
245 ActionManager::session_sensitive_actions.push_back (act);
246 ActionManager::write_sensitive_actions.push_back (act);
247 act = ActionManager::register_action (common_actions, X_("RemoveLastCapture"), _("Remove Last Capture"), sigc::mem_fun(*this, &ARDOUR_UI::remove_last_capture));
248 ActionManager::session_sensitive_actions.push_back (act);
250 Glib::RefPtr<ActionGroup> transport_actions = ActionGroup::create (X_("Transport"));
252 /* do-nothing action for the "transport" menu bar item */
254 ActionManager::register_action (transport_actions, X_("Transport"), _("Transport"));
256 /* these two are not used by key bindings, instead use ToggleRoll for that. these two do show up in
257 menus and via button proxies.
260 act = ActionManager::register_action (transport_actions, X_("Stop"), _("Stop"), sigc::mem_fun(*this, &ARDOUR_UI::transport_stop));
261 ActionManager::session_sensitive_actions.push_back (act);
262 ActionManager::transport_sensitive_actions.push_back (act);
263 act = ActionManager::register_action (transport_actions, X_("Roll"), _("Roll"), sigc::mem_fun(*this, &ARDOUR_UI::transport_roll));
264 ActionManager::session_sensitive_actions.push_back (act);
265 ActionManager::transport_sensitive_actions.push_back (act);
267 act = ActionManager::register_action (transport_actions, X_("ToggleRoll"), _("Start/Stop"), sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::toggle_roll), false, false));
268 ActionManager::session_sensitive_actions.push_back (act);
269 ActionManager::transport_sensitive_actions.push_back (act);
270 act = ActionManager::register_action (transport_actions, X_("ToggleRollMaybe"), _("Start/Continue/Stop"), sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::toggle_roll), false, true));
271 ActionManager::session_sensitive_actions.push_back (act);
272 ActionManager::transport_sensitive_actions.push_back (act);
273 act = ActionManager::register_action (transport_actions, X_("ToggleRollForgetCapture"), _("Stop and Forget Capture"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::toggle_roll), true, false));
274 ActionManager::session_sensitive_actions.push_back (act);
275 ActionManager::transport_sensitive_actions.push_back (act);
277 /* these two behave as follows:
279 - if transport speed != 1.0 or != -1.0, change speed to 1.0 or -1.0 (respectively)
280 - otherwise do nothing
283 act = ActionManager::register_action (transport_actions, X_("TransitionToRoll"), _("Transition To Roll"), sigc::bind (sigc::mem_fun (*editor, &PublicEditor::transition_to_rolling), true));
284 ActionManager::session_sensitive_actions.push_back (act);
285 ActionManager::transport_sensitive_actions.push_back (act);
287 act = ActionManager::register_action (transport_actions, X_("TransitionToReverse"), _("Transition To Reverse"), sigc::bind (sigc::mem_fun (*editor, &PublicEditor::transition_to_rolling), false));
288 ActionManager::session_sensitive_actions.push_back (act);
289 ActionManager::transport_sensitive_actions.push_back (act);
291 act = ActionManager::register_action (transport_actions, X_("Loop"), _("Play Loop Range"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_session_auto_loop));
292 ActionManager::session_sensitive_actions.push_back (act);
293 ActionManager::transport_sensitive_actions.push_back (act);
294 act = ActionManager::register_action (transport_actions, X_("PlaySelection"), _("Play Selection"), sigc::mem_fun(*this, &ARDOUR_UI::transport_play_selection));
295 ActionManager::session_sensitive_actions.push_back (act);
296 ActionManager::transport_sensitive_actions.push_back (act);
298 act = ActionManager::register_action (transport_actions, X_("Record"), _("Enable Record"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_record), false));
299 ActionManager::session_sensitive_actions.push_back (act);
300 ActionManager::write_sensitive_actions.push_back (act);
301 act = ActionManager::register_action (transport_actions, X_("record-roll"), _("Start Recording"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_record), true));
302 ActionManager::session_sensitive_actions.push_back (act);
303 ActionManager::write_sensitive_actions.push_back (act);
304 ActionManager::transport_sensitive_actions.push_back (act);
305 act = ActionManager::register_action (transport_actions, X_("Rewind"), _("Rewind"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_rewind), 0));
306 ActionManager::session_sensitive_actions.push_back (act);
307 ActionManager::transport_sensitive_actions.push_back (act);
308 act = ActionManager::register_action (transport_actions, X_("RewindSlow"), _("Rewind (Slow)"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_rewind), -1));
309 ActionManager::session_sensitive_actions.push_back (act);
310 ActionManager::transport_sensitive_actions.push_back (act);
311 act = ActionManager::register_action (transport_actions, X_("RewindFast"), _("Rewind (Fast)"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_rewind), 1));
312 ActionManager::session_sensitive_actions.push_back (act);
313 ActionManager::transport_sensitive_actions.push_back (act);
314 act = ActionManager::register_action (transport_actions, X_("Forward"), _("Forward"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_forward), 0));
315 ActionManager::session_sensitive_actions.push_back (act);
316 ActionManager::transport_sensitive_actions.push_back (act);
317 act = ActionManager::register_action (transport_actions, X_("ForwardSlow"), _("Forward (Slow)"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_forward), -1));
318 ActionManager::session_sensitive_actions.push_back (act);
319 ActionManager::transport_sensitive_actions.push_back (act);
320 act = ActionManager::register_action (transport_actions, X_("ForwardFast"), _("Forward (Fast)"), sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::transport_forward), 1));
321 ActionManager::session_sensitive_actions.push_back (act);
322 ActionManager::transport_sensitive_actions.push_back (act);
323 act = ActionManager::register_action (transport_actions, X_("GotoZero"), _("Goto Zero"), sigc::mem_fun(*this, &ARDOUR_UI::transport_goto_zero));
324 ActionManager::session_sensitive_actions.push_back (act);
325 ActionManager::transport_sensitive_actions.push_back (act);
326 act = ActionManager::register_action (transport_actions, X_("GotoStart"), _("Goto Start"), sigc::mem_fun(*this, &ARDOUR_UI::transport_goto_start));
327 ActionManager::session_sensitive_actions.push_back (act);
328 ActionManager::transport_sensitive_actions.push_back (act);
329 act = ActionManager::register_action (transport_actions, X_("GotoEnd"), _("Goto End"), sigc::mem_fun(*this, &ARDOUR_UI::transport_goto_end));
330 ActionManager::session_sensitive_actions.push_back (act);
331 ActionManager::transport_sensitive_actions.push_back (act);
332 act = ActionManager::register_action (transport_actions, X_("GotoWallClock"), _("Goto Wall Clock"), sigc::mem_fun(*this, &ARDOUR_UI::transport_goto_wallclock));
333 ActionManager::session_sensitive_actions.push_back (act);
334 ActionManager::transport_sensitive_actions.push_back (act);
336 act = ActionManager::register_action (transport_actions, X_("focus-on-clock"), _("Focus On Clock"), sigc::mem_fun(primary_clock, &AudioClock::focus));
337 ActionManager::session_sensitive_actions.push_back (act);
338 ActionManager::transport_sensitive_actions.push_back (act);
340 act = ActionManager::register_action (transport_actions, X_("primary-clock-bbt"), _("Bars & Beats"), sigc::bind (sigc::mem_fun(primary_clock, &AudioClock::set_mode), AudioClock::BBT));
341 ActionManager::session_sensitive_actions.push_back (act);
342 act = ActionManager::register_action (transport_actions, X_("primary-clock-minsec"), _("Minutes & Seconds"), sigc::bind (sigc::mem_fun(primary_clock, &AudioClock::set_mode), AudioClock::MinSec));
343 ActionManager::session_sensitive_actions.push_back (act);
344 act = ActionManager::register_action (transport_actions, X_("primary-clock-samples"), _("Samples"), sigc::bind (sigc::mem_fun(primary_clock, &AudioClock::set_mode), AudioClock::Frames));
345 ActionManager::session_sensitive_actions.push_back (act);
346 act = ActionManager::register_action (transport_actions, X_("primary-clock-off"), _("Off"), sigc::bind (sigc::mem_fun(primary_clock, &AudioClock::set_mode), AudioClock::Off));
347 ActionManager::session_sensitive_actions.push_back (act);
349 act = ActionManager::register_action (transport_actions, X_("secondary-clock-bbt"), _("Bars & Beats"), sigc::bind (sigc::mem_fun(secondary_clock, &AudioClock::set_mode), AudioClock::BBT));
350 ActionManager::session_sensitive_actions.push_back (act);
351 act = ActionManager::register_action (transport_actions, X_("secondary-clock-minsec"), _("Minutes & Seconds"), sigc::bind (sigc::mem_fun(secondary_clock, &AudioClock::set_mode), AudioClock::MinSec));
352 ActionManager::session_sensitive_actions.push_back (act);
353 act = ActionManager::register_action (transport_actions, X_("secondary-clock-samples"), _("Samples"), sigc::bind (sigc::mem_fun(secondary_clock, &AudioClock::set_mode), AudioClock::Frames));
354 ActionManager::session_sensitive_actions.push_back (act);
355 act = ActionManager::register_action (transport_actions, X_("secondary-clock-off"), _("Off"), sigc::bind (sigc::mem_fun(secondary_clock, &AudioClock::set_mode), AudioClock::Off));
356 ActionManager::session_sensitive_actions.push_back (act);
358 act = ActionManager::register_toggle_action (transport_actions, X_("TogglePunchIn"), _("Punch In"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_punch_in));
359 ActionManager::session_sensitive_actions.push_back (act);
360 ActionManager::transport_sensitive_actions.push_back (act);
361 act = ActionManager::register_toggle_action (transport_actions, X_("TogglePunchOut"), _("Punch Out"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_punch_out));
362 ActionManager::session_sensitive_actions.push_back (act);
363 ActionManager::transport_sensitive_actions.push_back (act);
364 act = ActionManager::register_toggle_action (transport_actions, X_("TogglePunch"), _("Punch In/Out"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_punch));
365 ActionManager::session_sensitive_actions.push_back (act);
366 ActionManager::transport_sensitive_actions.push_back (act);
367 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleClick"), _("Click"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_click));
368 ActionManager::session_sensitive_actions.push_back (act);
369 ActionManager::transport_sensitive_actions.push_back (act);
370 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleAutoInput"), _("Auto Input"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_auto_input));
371 ActionManager::session_sensitive_actions.push_back (act);
372 ActionManager::transport_sensitive_actions.push_back (act);
373 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleAutoPlay"), _("Auto Play"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_auto_play));
374 ActionManager::session_sensitive_actions.push_back (act);
375 ActionManager::transport_sensitive_actions.push_back (act);
376 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleAutoReturn"), _("Auto Return"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_auto_return));
377 ActionManager::session_sensitive_actions.push_back (act);
378 ActionManager::transport_sensitive_actions.push_back (act);
380 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleVideoSync"), _("Sync Startup to Video"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_video_sync));
381 ActionManager::session_sensitive_actions.push_back (act);
382 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleTimeMaster"), _("Time Master"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_time_master));
383 ActionManager::session_sensitive_actions.push_back (act);
384 act = ActionManager::register_toggle_action (transport_actions, X_("ToggleExternalSync"), _(""), sigc::mem_fun(*this, &ARDOUR_UI::toggle_external_sync));
385 ActionManager::session_sensitive_actions.push_back (act);
387 for (int i = 1; i <= 32; ++i) {
388 string const a = string_compose (X_("ToggleRecordEnableTrack%1"), i);
389 string const n = string_compose (_("Toggle Record Enable Track %1"), i);
390 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));
391 ActionManager::session_sensitive_actions.push_back (act);
394 Glib::RefPtr<ActionGroup> shuttle_actions = ActionGroup::create ("ShuttleActions");
396 shuttle_actions->add (Action::create (X_("SetShuttleUnitsPercentage"), _("Percentage")), hide_return (sigc::bind (sigc::mem_fun (*Config, &RCConfiguration::set_shuttle_units), Percentage)));
397 shuttle_actions->add (Action::create (X_("SetShuttleUnitsSemitones"), _("Semitones")), hide_return (sigc::bind (sigc::mem_fun (*Config, &RCConfiguration::set_shuttle_units), Semitones)));
399 Glib::RefPtr<ActionGroup> option_actions = ActionGroup::create ("options");
401 act = ActionManager::register_toggle_action (option_actions, X_("SendMTC"), _("Send MTC"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_send_mtc));
402 ActionManager::session_sensitive_actions.push_back (act);
403 act = ActionManager::register_toggle_action (option_actions, X_("SendMMC"), _("Send MMC"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_send_mmc));
404 ActionManager::session_sensitive_actions.push_back (act);
405 act = ActionManager::register_toggle_action (option_actions, X_("UseMMC"), _("Use MMC"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_use_mmc));
406 ActionManager::session_sensitive_actions.push_back (act);
407 act = ActionManager::register_toggle_action (option_actions, X_("SendMidiClock"), _("Send MIDI Clock"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_send_midi_clock));
408 ActionManager::session_sensitive_actions.push_back (act);
409 act = ActionManager::register_toggle_action (option_actions, X_("SendMIDIfeedback"), _("Send MIDI Feedback"), sigc::mem_fun (*this, &ARDOUR_UI::toggle_send_midi_feedback));
410 ActionManager::session_sensitive_actions.push_back (act);
412 ActionManager::add_action_group (shuttle_actions);
413 ActionManager::add_action_group (option_actions);
414 ActionManager::add_action_group (jack_actions);
415 ActionManager::add_action_group (transport_actions);
416 ActionManager::add_action_group (main_actions);
417 ActionManager::add_action_group (common_actions);
420 void
421 ARDOUR_UI::set_jack_buffer_size (nframes_t nframes)
423 Glib::RefPtr<Action> action;
424 const char* action_name = 0;
426 switch (nframes) {
427 case 32:
428 action_name = X_("JACKLatency32");
429 break;
430 case 64:
431 action_name = X_("JACKLatency64");
432 break;
433 case 128:
434 action_name = X_("JACKLatency128");
435 break;
436 case 256:
437 action_name = X_("JACKLatency256");
438 break;
439 case 512:
440 action_name = X_("JACKLatency512");
441 break;
442 case 1024:
443 action_name = X_("JACKLatency1024");
444 break;
445 case 2048:
446 action_name = X_("JACKLatency2048");
447 break;
448 case 4096:
449 action_name = X_("JACKLatency4096");
450 break;
451 case 8192:
452 action_name = X_("JACKLatency8192");
453 break;
454 default:
455 /* XXX can we do anything useful ? */
456 break;
459 if (action_name) {
461 action = ActionManager::get_action (X_("JACK"), action_name);
463 if (action) {
464 Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic (action);
466 if (ract && ract->get_active()) {
467 engine->request_buffer_size (nframes);
468 update_sample_rate (0);
474 void
475 ARDOUR_UI::build_menu_bar ()
477 menu_bar = dynamic_cast<MenuBar*> (ActionManager::get_widget (X_("/Main")));
478 menu_bar->set_name ("MainMenuBar");
481 * This is needed because this property does not get installed
482 * until the Menu GObject class is registered, which happens
483 * when the first menu instance is created.
485 // XXX bug in gtkmm causes this to popup an error message
486 // Gtk::Settings::get_default()->property_gtk_can_change_accels() = true;
487 // so use this instead ...
488 gtk_settings_set_long_property (gtk_settings_get_default(), "gtk-can-change-accels", 1, "Ardour:designers");
490 wall_clock_box.add (wall_clock_label);
491 wall_clock_box.set_name ("WallClock");
492 wall_clock_label.set_name ("WallClock");
494 disk_space_box.add (disk_space_label);
495 disk_space_box.set_name ("WallClock");
496 disk_space_label.set_name ("WallClock");
498 cpu_load_box.add (cpu_load_label);
499 cpu_load_box.set_name ("CPULoad");
500 cpu_load_label.set_name ("CPULoad");
502 buffer_load_box.add (buffer_load_label);
503 buffer_load_box.set_name ("BufferLoad");
504 buffer_load_label.set_name ("BufferLoad");
506 sample_rate_box.add (sample_rate_label);
507 sample_rate_box.set_name ("SampleRate");
508 sample_rate_label.set_name ("SampleRate");
510 #ifndef TOP_MENUBAR
511 menu_hbox.pack_start (*menu_bar, true, true);
512 #else
513 use_menubar_as_top_menubar ();
514 #endif
516 if (!Profile->get_small_screen()) {
517 #ifndef GTKOSX
518 // OSX provides its own wallclock, thank you very much
519 menu_hbox.pack_end (wall_clock_box, false, false, 2);
520 #endif
521 menu_hbox.pack_end (disk_space_box, false, false, 4);
524 menu_hbox.pack_end (cpu_load_box, false, false, 4);
525 menu_hbox.pack_end (buffer_load_box, false, false, 4);
526 menu_hbox.pack_end (sample_rate_box, false, false, 4);
528 menu_bar_base.set_name ("MainMenuBar");
529 menu_bar_base.add (menu_hbox);
532 void
533 ARDOUR_UI::use_menubar_as_top_menubar ()
535 #ifdef GTKOSX
536 ige_mac_menu_set_menu_bar ((GtkMenuShell*) menu_bar->gobj());
537 // ige_mac_menu_set_quit_menu_item (some_item->gobj());
538 #endif
541 void
542 ARDOUR_UI::setup_clock ()
544 ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (big_clock, &AudioClock::set), false));
546 big_clock_window = new Window (WINDOW_TOPLEVEL);
548 big_clock_window->set_keep_above (true);
549 big_clock_window->set_border_width (0);
550 big_clock_window->add (big_clock);
552 big_clock_window->set_title (_("Big Clock"));
553 big_clock_window->set_type_hint (Gdk::WINDOW_TYPE_HINT_UTILITY);
554 big_clock_window->signal_realize().connect (sigc::mem_fun (*this, &ARDOUR_UI::big_clock_realized));
555 big_clock_window->signal_unmap().connect (sigc::bind (sigc::ptr_fun(&ActionManager::uncheck_toggleaction), X_("<Actions>/Common/ToggleBigClock")));
556 big_clock_window->signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), big_clock_window), false);
557 big_clock_window->signal_size_allocate().connect (sigc::mem_fun (*this, &ARDOUR_UI::big_clock_size_allocate));
559 manage_window (*big_clock_window);
562 void
563 ARDOUR_UI::big_clock_realized ()
565 int x, y, w, d;
567 set_decoration (big_clock_window, (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH));
568 big_clock_window->get_window()->get_geometry (x, y, w, big_clock_height, d);
570 original_big_clock_height = big_clock_height;
571 original_big_clock_width = w;
573 Pango::FontDescription fd (big_clock.get_style()->get_font());
574 original_big_clock_font_size = fd.get_size ();
576 if (!fd.get_size_is_absolute ()) {
577 original_big_clock_font_size /= PANGO_SCALE;
580 /* we can't set the real size until we know the original one, with the UI rc-file-set font
581 size, so do this here.
584 XMLNode* node = Config->extra_xml (X_("UI"));
586 if (node) {
588 const XMLProperty* prop;
589 int w, h, x, y;
590 int have_pos = 0;
592 w = h = x = y = 0;
594 if ((prop = node->property ("big-clock-x-size")) != 0) {
595 w = atoi (prop->value());
597 if ((prop = node->property ("big-clock-y-size")) != 0) {
598 h = atoi (prop->value());
601 if (w && h) {
602 big_clock_window->set_default_size (w, h);
605 if ((prop = node->property ("big-clock-x-off")) != 0) {
606 x = atoi (prop->value());
607 have_pos++;
609 if ((prop = node->property ("big-clock-y-off")) != 0) {
610 y = atoi (prop->value());
611 have_pos++;
614 if (have_pos == 2) {
615 big_clock_window->move (x, y);
620 void
621 ARDOUR_UI::float_big_clock (Gtk::Window* parent)
623 if (big_clock_window) {
624 if (parent) {
625 big_clock_window->set_transient_for (*parent);
626 } else {
627 gtk_window_set_transient_for (big_clock_window->gobj(), (GtkWindow*) 0);
632 void
633 ARDOUR_UI::big_clock_size_allocate (Gtk::Allocation& allocation)
635 if (!big_clock_resize_in_progress) {
636 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::idle_big_clock_text_resizer), 0, 0));
637 big_clock_resize_in_progress = true;
641 bool
642 ARDOUR_UI::idle_big_clock_text_resizer (int win_w, int win_h)
644 big_clock_resize_in_progress = false;
646 Glib::RefPtr<Gdk::Window> win = big_clock_window->get_window();
647 Pango::FontDescription fd (big_clock.get_style()->get_font());
648 int current_size = fd.get_size ();
649 int x, y, w, h, d;
651 if (!fd.get_size_is_absolute ()) {
652 current_size /= PANGO_SCALE;
655 win->get_geometry (x, y, w, h, d);
657 double scale = min (((double) w / (double) original_big_clock_width),
658 ((double) h / (double) original_big_clock_height));
660 int size = (int) lrintf (original_big_clock_font_size * scale);
662 if (size != current_size) {
664 string family = fd.get_family();
665 char buf[family.length()+16];
666 snprintf (buf, family.length()+16, "%s %d", family.c_str(), size);
668 try {
669 Pango::FontDescription fd (buf);
670 Glib::RefPtr<Gtk::RcStyle> rcstyle = big_clock.get_modifier_style ();
671 rcstyle->set_font (fd);
672 big_clock.modify_style (rcstyle);
675 catch (...) {
676 /* oh well, do nothing */
680 return false;
683 void
684 ARDOUR_UI::save_ardour_state ()
686 if (!keyboard || !mixer || !editor) {
687 return;
690 /* XXX this is all a bit dubious. add_extra_xml() uses
691 a different lifetime model from add_instant_xml().
694 XMLNode* node = new XMLNode (keyboard->get_state());
695 Config->add_extra_xml (*node);
696 Config->add_extra_xml (get_transport_controllable_state());
698 XMLNode* window_node = new XMLNode (X_("UI"));
700 window_node->add_property ("show-big-clock", (big_clock_window && big_clock_window->is_visible() ? "yes" : "no"));
702 Glib::RefPtr<Gdk::Window> win;
704 if (big_clock_window && (win = big_clock_window->get_window())) {
706 int w, h;
707 int xoff, yoff;
708 char buf[32];
710 win->get_size (w, h);
711 win->get_position (xoff, yoff);
713 snprintf (buf, sizeof (buf), "%d", w);
714 window_node->add_property ("big-clock-x-size", buf);
715 snprintf (buf, sizeof (buf), "%d", h);
716 window_node->add_property ("big-clock-y-size", buf);
717 snprintf (buf, sizeof (buf), "%d", xoff);
718 window_node->add_property ("big-clock-x-off", buf);
719 snprintf (buf, sizeof (buf), "%d", yoff);
720 window_node->add_property ("big-clock-y-off", buf);
723 /* tearoffs */
725 XMLNode* tearoff_node = new XMLNode (X_("Tearoffs"));
727 if (transport_tearoff) {
728 XMLNode* t = new XMLNode (X_("transport"));
729 transport_tearoff->add_state (*t);
730 tearoff_node->add_child_nocopy (*t);
733 if (mixer && mixer->monitor_section()) {
734 XMLNode* t = new XMLNode (X_("monitor-section"));
735 mixer->monitor_section()->tearoff().add_state (*t);
736 tearoff_node->add_child_nocopy (*t);
739 if (editor && editor->mouse_mode_tearoff()) {
740 XMLNode* t = new XMLNode (X_("mouse-mode"));
741 editor->mouse_mode_tearoff ()->add_state (*t);
742 tearoff_node->add_child_nocopy (*t);
745 window_node->add_child_nocopy (*tearoff_node);
747 Config->add_extra_xml (*window_node);
749 if (_startup && _startup->engine_control() && _startup->engine_control()->was_used()) {
750 Config->add_extra_xml (_startup->engine_control()->get_state());
752 Config->save_state();
753 ui_config->save_state ();
755 XMLNode enode(static_cast<Stateful*>(editor)->get_state());
756 XMLNode mnode(mixer->get_state());
758 if (_session) {
759 _session->add_instant_xml (enode);
760 _session->add_instant_xml (mnode);
761 } else {
762 Config->add_instant_xml (enode);
763 Config->add_instant_xml (mnode);
766 Keyboard::save_keybindings ();