add initial code/stubs, actions, menu items for save as
[ardour.git] / gtk2_ardour / ardour_ui.cc
1 /*
2     Copyright (C) 1999-2013 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #include "gtk2ardour-version.h"
23 #endif
24
25 #include <algorithm>
26 #include <cmath>
27 #include <iostream>
28 #include <cerrno>
29 #include <fstream>
30
31 #ifndef PLATFORM_WINDOWS
32 #include <sys/resource.h>
33 #endif
34
35 #include <stdint.h>
36 #include <fcntl.h>
37 #include <signal.h>
38 #include <unistd.h>
39 #include <time.h>
40
41 #include <glib.h>
42 #include <glib/gstdio.h>
43
44 #include <gtkmm/messagedialog.h>
45 #include <gtkmm/accelmap.h>
46
47 #include "pbd/error.h"
48 #include "pbd/basename.h"
49 #include "pbd/compose.h"
50 #include "pbd/failed_constructor.h"
51 #include "pbd/enumwriter.h"
52 #include "pbd/memento_command.h"
53 #include "pbd/openuri.h"
54 #include "pbd/stl_delete.h"
55 #include "pbd/file_utils.h"
56 #include "pbd/localtime_r.h"
57 #include "pbd/pthread_utils.h"
58
59 #include "gtkmm2ext/application.h"
60 #include "gtkmm2ext/bindings.h"
61 #include "gtkmm2ext/gtk_ui.h"
62 #include "gtkmm2ext/utils.h"
63 #include "gtkmm2ext/click_box.h"
64 #include "gtkmm2ext/fastmeter.h"
65 #include "gtkmm2ext/popup.h"
66 #include "gtkmm2ext/window_title.h"
67
68 #include "ardour/ardour.h"
69 #include "ardour/audio_backend.h"
70 #include "ardour/audioengine.h"
71 #include "ardour/audiofilesource.h"
72 #include "ardour/automation_watch.h"
73 #include "ardour/diskstream.h"
74 #include "ardour/filename_extensions.h"
75 #include "ardour/filesystem_paths.h"
76 #include "ardour/port.h"
77 #include "ardour/plugin_manager.h"
78 #include "ardour/process_thread.h"
79 #include "ardour/profile.h"
80 #include "ardour/recent_sessions.h"
81 #include "ardour/session_directory.h"
82 #include "ardour/session_route.h"
83 #include "ardour/session_state_utils.h"
84 #include "ardour/session_utils.h"
85 #include "ardour/slave.h"
86 #include "ardour/system_exec.h"
87
88 #ifdef WINDOWS_VST_SUPPORT
89 #include <fst.h>
90 #endif
91 #ifdef AUDIOUNIT_SUPPORT
92 #include "ardour/audio_unit.h"
93 #endif
94
95 #include "timecode/time.h"
96
97 typedef uint64_t microseconds_t;
98
99 #include "about.h"
100 #include "actions.h"
101 #include "add_route_dialog.h"
102 #include "ambiguous_file_dialog.h"
103 #include "ardour_ui.h"
104 #include "audio_clock.h"
105 #include "big_clock_window.h"
106 #include "bundle_manager.h"
107 #include "engine_dialog.h"
108 #include "gain_meter.h"
109 #include "global_port_matrix.h"
110 #include "gui_object.h"
111 #include "gui_thread.h"
112 #include "keyboard.h"
113 #include "keyeditor.h"
114 #include "location_ui.h"
115 #include "main_clock.h"
116 #include "missing_file_dialog.h"
117 #include "missing_plugin_dialog.h"
118 #include "mixer_ui.h"
119 #include "mouse_cursors.h"
120 #include "nsm.h"
121 #include "opts.h"
122 #include "pingback.h"
123 #include "processor_box.h"
124 #include "prompter.h"
125 #include "public_editor.h"
126 #include "rc_option_editor.h"
127 #include "route_time_axis.h"
128 #include "route_params_ui.h"
129 #include "session_dialog.h"
130 #include "session_metadata_dialog.h"
131 #include "session_option_editor.h"
132 #include "shuttle_control.h"
133 #include "speaker_dialog.h"
134 #include "splash.h"
135 #include "startup.h"
136 #include "theme_manager.h"
137 #include "time_axis_view_item.h"
138 #include "timers.h"
139 #include "utils.h"
140 #include "video_server_dialog.h"
141 #include "add_video_dialog.h"
142 #include "transcode_video_dialog.h"
143
144 #include "i18n.h"
145
146 using namespace ARDOUR;
147 using namespace ARDOUR_UI_UTILS;
148 using namespace PBD;
149 using namespace Gtkmm2ext;
150 using namespace Gtk;
151 using namespace std;
152
153 ARDOUR_UI *ARDOUR_UI::theArdourUI = 0;
154
155 sigc::signal<void, framepos_t, bool, framepos_t> ARDOUR_UI::Clock;
156 sigc::signal<void>      ARDOUR_UI::CloseAllDialogs;
157
158 ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
159
160         : Gtkmm2ext::UI (PROGRAM_NAME, argcp, argvp)
161         , ui_config (new UIConfiguration)
162         , gui_object_state (new GUIObjectState)
163
164         , primary_clock (new MainClock (X_("primary"), false, X_("transport"), true, true, true, false, true))
165         , secondary_clock (new MainClock (X_("secondary"), false, X_("secondary"), true, true, false, false, true))
166           
167           /* big clock */
168
169         , big_clock (new AudioClock (X_("bigclock"), false, "big", true, true, false, false))
170         , video_timeline(0)
171
172           /* start of private members */
173         , editor (0)
174         , mixer (0)
175         , nsm (0)
176         , _was_dirty (false)
177         , _mixer_on_top (false)
178         , first_time_engine_run (true)
179
180           /* transport */
181
182         , roll_controllable (new TransportControllable ("transport roll", *this, TransportControllable::Roll))
183         , stop_controllable (new TransportControllable ("transport stop", *this, TransportControllable::Stop))
184         , goto_start_controllable (new TransportControllable ("transport goto start", *this, TransportControllable::GotoStart))
185         , goto_end_controllable (new TransportControllable ("transport goto end", *this, TransportControllable::GotoEnd))
186         , auto_loop_controllable (new TransportControllable ("transport auto loop", *this, TransportControllable::AutoLoop))
187         , play_selection_controllable (new TransportControllable ("transport play selection", *this, TransportControllable::PlaySelection))
188         , rec_controllable (new TransportControllable ("transport rec-enable", *this, TransportControllable::RecordEnable))
189
190         , auto_return_button (ArdourButton::led_default_elements)
191         , follow_edits_button (ArdourButton::led_default_elements)
192         , auto_input_button (ArdourButton::led_default_elements)
193
194         , auditioning_alert_button (_("Audition"))
195         , solo_alert_button (_("Solo"))
196         , feedback_alert_button (_("Feedback"))
197
198         , editor_meter(0)
199         , editor_meter_peak_display()
200
201         , speaker_config_window (X_("speaker-config"), _("Speaker Configuration"))
202         , key_editor (X_("key-editor"), _("Key Bindings"))
203         , rc_option_editor (X_("rc-options-editor"), _("Preferences"))
204         , add_route_dialog (X_("add-routes"), _("Add Tracks/Busses"))
205         , about (X_("about"), _("About"))
206         , location_ui (X_("locations"), _("Locations"))
207         , route_params (X_("inspector"), _("Tracks and Busses"))
208         , audio_midi_setup (X_("audio-midi-setup"), _("Audio/MIDI Setup"))
209         , session_option_editor (X_("session-options-editor"), _("Properties"), boost::bind (&ARDOUR_UI::create_session_option_editor, this))
210         , add_video_dialog (X_("add-video"), _("Add Tracks/Busses"), boost::bind (&ARDOUR_UI::create_add_video_dialog, this))
211         , bundle_manager (X_("bundle-manager"), _("Bundle Manager"), boost::bind (&ARDOUR_UI::create_bundle_manager, this))
212         , big_clock_window (X_("big-clock"), _("Big Clock"), boost::bind (&ARDOUR_UI::create_big_clock_window, this))
213         , audio_port_matrix (X_("audio-connection-manager"), _("Audio Connections"), boost::bind (&ARDOUR_UI::create_global_port_matrix, this, ARDOUR::DataType::AUDIO))
214         , midi_port_matrix (X_("midi-connection-manager"), _("MIDI Connections"), boost::bind (&ARDOUR_UI::create_global_port_matrix, this, ARDOUR::DataType::MIDI))
215
216         , error_log_button (_("Errors"))
217
218         , _status_bar_visibility (X_("status-bar"))
219         , _feedback_exists (false)
220 {
221         Gtkmm2ext::init(localedir);
222
223         splash = 0;
224
225         _numpad_locate_happening = false;
226
227         if (theArdourUI == 0) {
228                 theArdourUI = this;
229         }
230
231         ui_config->ParameterChanged.connect (sigc::mem_fun (*this, &ARDOUR_UI::parameter_changed));
232         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
233         ui_config->map_parameters (pc);
234
235         editor = 0;
236         mixer = 0;
237         meterbridge = 0;
238         editor = 0;
239         _session_is_new = false;
240         session_selector_window = 0;
241         last_key_press_time = 0;
242         video_server_process = 0;
243         open_session_selector = 0;
244         have_configure_timeout = false;
245         have_disk_speed_dialog_displayed = false;
246         session_loaded = false;
247         ignore_dual_punch = false;
248
249         roll_button.set_controllable (roll_controllable);
250         stop_button.set_controllable (stop_controllable);
251         goto_start_button.set_controllable (goto_start_controllable);
252         goto_end_button.set_controllable (goto_end_controllable);
253         auto_loop_button.set_controllable (auto_loop_controllable);
254         play_selection_button.set_controllable (play_selection_controllable);
255         rec_button.set_controllable (rec_controllable);
256
257         roll_button.set_name ("transport button");
258         stop_button.set_name ("transport button");
259         goto_start_button.set_name ("transport button");
260         goto_end_button.set_name ("transport button");
261         auto_loop_button.set_name ("transport button");
262         play_selection_button.set_name ("transport button");
263         rec_button.set_name ("transport recenable button");
264         midi_panic_button.set_name ("transport button");
265
266         last_configure_time= 0;
267         last_peak_grab = 0;
268
269         ARDOUR::Diskstream::DiskOverrun.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::disk_overrun_handler, this), gui_context());
270         ARDOUR::Diskstream::DiskUnderrun.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::disk_underrun_handler, this), gui_context());
271
272         ARDOUR::Session::VersionMismatch.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::session_format_mismatch, this, _1, _2), gui_context());
273
274         /* handle dialog requests */
275
276         ARDOUR::Session::Dialog.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::session_dialog, this, _1), gui_context());
277
278         /* handle pending state with a dialog (PROBLEM: needs to return a value and thus cannot be x-thread) */
279
280         ARDOUR::Session::AskAboutPendingState.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::pending_state_dialog, this));
281
282         /* handle Audio/MIDI setup when session requires it */
283
284         ARDOUR::Session::AudioEngineSetupRequired.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::do_audio_midi_setup, this, _1));
285
286         /* handle sr mismatch with a dialog (PROBLEM: needs to return a value and thus cannot be x-thread) */
287
288         ARDOUR::Session::AskAboutSampleRateMismatch.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::sr_mismatch_dialog, this, _1, _2));
289
290         /* handle requests to quit (coming from JACK session) */
291
292         ARDOUR::Session::Quit.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::finish, this), gui_context ());
293
294         /* tell the user about feedback */
295
296         ARDOUR::Session::FeedbackDetected.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::feedback_detected, this), gui_context ());
297         ARDOUR::Session::SuccessfulGraphSort.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::successful_graph_sort, this), gui_context ());
298
299         /* handle requests to deal with missing files */
300
301         ARDOUR::Session::MissingFile.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::missing_file, this, _1, _2, _3));
302
303         /* and ambiguous files */
304
305         ARDOUR::FileSource::AmbiguousFileName.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::ambiguous_file, this, _1, _2));
306
307         /* also plugin scan messages */
308         ARDOUR::PluginScanMessage.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::plugin_scan_dialog, this, _1, _2, _3), gui_context());
309         ARDOUR::PluginScanTimeout.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::plugin_scan_timeout, this, _1), gui_context());
310
311         ARDOUR::GUIIdle.connect (forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::gui_idle_handler, this), gui_context());
312
313         Config->ParameterChanged.connect ( forever_connections, MISSING_INVALIDATOR, boost::bind(&ARDOUR_UI::set_flat_buttons, this), gui_context() );
314         set_flat_buttons();
315
316         /* lets get this party started */
317
318         setup_gtk_ardour_enums ();
319         setup_profile ();
320
321         SessionEvent::create_per_thread_pool ("GUI", 512);
322
323         /* we like keyboards */
324
325         keyboard = new ArdourKeyboard(*this);
326
327         XMLNode* node = ARDOUR_UI::instance()->keyboard_settings();
328         if (node) {
329                 keyboard->set_state (*node, Stateful::loading_state_version);
330         }
331
332         /* we don't like certain modifiers */
333         Bindings::set_ignored_state (GDK_LOCK_MASK|GDK_MOD2_MASK|GDK_MOD3_MASK);
334
335         reset_dpi();
336
337         TimeAxisViewItem::set_constant_heights ();
338
339         /* Set this up so that our window proxies can register actions */
340
341         ActionManager::init ();
342
343         /* The following must happen after ARDOUR::init() so that Config is set up */
344
345         const XMLNode* ui_xml = Config->extra_xml (X_("UI"));
346
347         if (ui_xml) {
348                 key_editor.set_state (*ui_xml);
349                 rc_option_editor.set_state (*ui_xml);
350                 session_option_editor.set_state (*ui_xml);
351                 speaker_config_window.set_state (*ui_xml);
352                 about.set_state (*ui_xml);
353                 add_route_dialog.set_state (*ui_xml);
354                 add_video_dialog.set_state (*ui_xml);
355                 route_params.set_state (*ui_xml);
356                 bundle_manager.set_state (*ui_xml);
357                 location_ui.set_state (*ui_xml);
358                 big_clock_window.set_state (*ui_xml);
359                 audio_port_matrix.set_state (*ui_xml);
360                 midi_port_matrix.set_state (*ui_xml);
361         }
362
363         WM::Manager::instance().register_window (&key_editor);
364         WM::Manager::instance().register_window (&rc_option_editor);
365         WM::Manager::instance().register_window (&session_option_editor);
366         WM::Manager::instance().register_window (&speaker_config_window);
367         WM::Manager::instance().register_window (&about);
368         WM::Manager::instance().register_window (&add_route_dialog);
369         WM::Manager::instance().register_window (&add_video_dialog);
370         WM::Manager::instance().register_window (&route_params);
371         WM::Manager::instance().register_window (&audio_midi_setup);
372         WM::Manager::instance().register_window (&bundle_manager);
373         WM::Manager::instance().register_window (&location_ui);
374         WM::Manager::instance().register_window (&big_clock_window);
375         WM::Manager::instance().register_window (&audio_port_matrix);
376         WM::Manager::instance().register_window (&midi_port_matrix);
377
378         /* Trigger setting up the color scheme and loading the GTK RC file */
379
380         ARDOUR_UI::config()->load_rc_file (false);
381         
382         _process_thread = new ProcessThread ();
383         _process_thread->init ();
384
385         DPIReset.connect (sigc::mem_fun (*this, &ARDOUR_UI::resize_text_widgets));
386
387         attach_to_engine ();
388 }
389
390 GlobalPortMatrixWindow*
391 ARDOUR_UI::create_global_port_matrix (ARDOUR::DataType type)
392 {
393         if (!_session) {
394                 return 0;
395         }
396         return new GlobalPortMatrixWindow (_session, type);
397 }
398
399 void
400 ARDOUR_UI::attach_to_engine ()
401 {
402         AudioEngine::instance()->Running.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_running, this), gui_context());
403         ARDOUR::Port::set_connecting_blocked (ARDOUR_COMMAND_LINE::no_connect_ports);
404 }
405
406 void
407 ARDOUR_UI::engine_stopped ()
408 {
409         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::engine_stopped)
410         ActionManager::set_sensitive (ActionManager::engine_sensitive_actions, false);
411         ActionManager::set_sensitive (ActionManager::engine_opposite_sensitive_actions, true);
412 }
413
414 void
415 ARDOUR_UI::engine_running ()
416 {
417         if (first_time_engine_run) {
418                 post_engine();
419                 first_time_engine_run = false;
420         } 
421         
422         update_disk_space ();
423         update_cpu_load ();
424         update_sample_rate (AudioEngine::instance()->sample_rate());
425         update_timecode_format ();
426 }
427
428 void
429 ARDOUR_UI::engine_halted (const char* reason, bool free_reason)
430 {
431         if (!Gtkmm2ext::UI::instance()->caller_is_ui_thread()) {
432                 /* we can't rely on the original string continuing to exist when we are called
433                    again in the GUI thread, so make a copy and note that we need to
434                    free it later.
435                 */
436                 char *copy = strdup (reason);
437                 Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&ARDOUR_UI::engine_halted, this, copy, true));
438                 return;
439         }
440
441         ActionManager::set_sensitive (ActionManager::engine_sensitive_actions, false);
442         ActionManager::set_sensitive (ActionManager::engine_opposite_sensitive_actions, true);
443
444         update_sample_rate (0);
445
446         string msgstr;
447
448         /* if the reason is a non-empty string, it means that the backend was shutdown
449            rather than just Ardour.
450         */
451
452         if (strlen (reason)) {
453                 msgstr = string_compose (_("The audio backend was shutdown because:\n\n%1"), reason);
454         } else {
455                 msgstr = string_compose (_("\
456 The audio backend has either been shutdown or it\n\
457 disconnected %1 because %1\n\
458 was not fast enough. Try to restart\n\
459 the audio backend and save the session."), PROGRAM_NAME);
460         }
461
462         MessageDialog msg (*editor, msgstr);
463         pop_back_splash (msg);
464         msg.set_keep_above (true);
465         msg.run ();
466         
467         if (free_reason) {
468                 free (const_cast<char*> (reason));
469         }
470 }
471
472 void
473 ARDOUR_UI::post_engine ()
474 {
475         /* Things to be done once (and once ONLY) after we have a backend running in the AudioEngine
476          */
477 #ifdef AUDIOUNIT_SUPPORT
478         std::string au_msg;
479         if (AUPluginInfo::au_get_crashlog(au_msg)) {
480                 popup_error(_("Audio Unit Plugin Scan Failed. Automatic AU scanning has been disabled. Please see the log window for further details."));
481                 error << _("Audio Unit Plugin Scan Failed:") << endmsg;
482                 info << au_msg << endmsg;
483         }
484 #endif
485
486         ARDOUR::init_post_engine ();
487         
488         /* connect to important signals */
489
490         AudioEngine::instance()->Stopped.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_stopped, this), gui_context());
491         AudioEngine::instance()->SampleRateChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::update_sample_rate, this, _1), gui_context());
492         AudioEngine::instance()->Halted.connect_same_thread (halt_connection, boost::bind (&ARDOUR_UI::engine_halted, this, _1, false));
493
494         _tooltips.enable();
495
496         if (setup_windows ()) {
497                 throw failed_constructor ();
498         }
499
500         /* Do this after setup_windows (), as that's when the _status_bar_visibility is created */
501         XMLNode* n = Config->extra_xml (X_("UI"));
502         if (n) {
503                 _status_bar_visibility.set_state (*n);
504         }
505         
506         check_memory_locking();
507
508         /* this is the first point at which all the keybindings are available */
509
510         if (ARDOUR_COMMAND_LINE::show_key_actions) {
511                 vector<string> names;
512                 vector<string> paths;
513                 vector<string> tooltips;
514                 vector<string> keys;
515                 vector<AccelKey> bindings;
516
517                 ActionManager::get_all_actions (names, paths, tooltips, keys, bindings);
518
519                 vector<string>::iterator n;
520                 vector<string>::iterator k;
521                 vector<string>::iterator p;
522                 for (n = names.begin(), k = keys.begin(), p = paths.begin(); n != names.end(); ++n, ++k, ++p) {
523                         cout << "Action: '" << (*n) << "' bound to '" << (*k) << "' Path: '" << (*p) << "'" << endl;
524                 }
525
526                 halt_connection.disconnect ();
527                 AudioEngine::instance()->stop ();
528                 exit (0);
529         }
530
531         /* this being a GUI and all, we want peakfiles */
532
533         AudioFileSource::set_build_peakfiles (true);
534         AudioFileSource::set_build_missing_peakfiles (true);
535
536         /* set default clock modes */
537
538         if (Profile->get_sae()) {
539                 primary_clock->set_mode (AudioClock::BBT);
540                 secondary_clock->set_mode (AudioClock::MinSec);
541         }  else {
542                 primary_clock->set_mode (AudioClock::Timecode);
543                 secondary_clock->set_mode (AudioClock::BBT);
544         }
545
546         /* start the time-of-day-clock */
547
548 #ifndef GTKOSX
549         /* OS X provides a nearly-always visible wallclock, so don't be stupid */
550         update_wall_clock ();
551         Glib::signal_timeout().connect_seconds (sigc::mem_fun(*this, &ARDOUR_UI::update_wall_clock), 1);
552 #endif
553
554         {
555                 DisplaySuspender ds;
556                 Config->ParameterChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::parameter_changed, this, _1), gui_context());
557                 boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
558                 Config->map_parameters (pc);
559
560                 ui_config->map_parameters (pc);
561         }
562 }
563
564 ARDOUR_UI::~ARDOUR_UI ()
565 {
566         ui_config->save_state();
567
568         stop_video_server();
569
570         if (getenv ("ARDOUR_RUNNING_UNDER_VALGRIND")) {
571                 // don't bother at 'real' exit. the OS cleans up for us.
572                 delete big_clock;
573                 delete primary_clock;
574                 delete secondary_clock;
575                 delete _process_thread;
576                 delete gui_object_state;
577                 FastMeter::flush_pattern_cache ();
578         }
579 }
580
581 void
582 ARDOUR_UI::pop_back_splash (Gtk::Window& win)
583 {
584         if (Splash::instance()) {
585                 Splash::instance()->pop_back_for (win);
586         }
587 }
588
589 gint
590 ARDOUR_UI::configure_timeout ()
591 {
592         if (last_configure_time == 0) {
593                 /* no configure events yet */
594                 return true;
595         }
596
597         /* force a gap of 0.5 seconds since the last configure event
598          */
599
600         if (get_microseconds() - last_configure_time < 500000) {
601                 return true;
602         } else {
603                 have_configure_timeout = false;
604                 save_ardour_state ();
605                 return false;
606         }
607 }
608
609 gboolean
610 ARDOUR_UI::configure_handler (GdkEventConfigure* /*conf*/)
611 {
612         if (have_configure_timeout) {
613                 last_configure_time = get_microseconds();
614         } else {
615                 Glib::signal_timeout().connect (sigc::mem_fun(*this, &ARDOUR_UI::configure_timeout), 100);
616                 have_configure_timeout = true;
617         }
618
619         return FALSE;
620 }
621
622 void
623 ARDOUR_UI::set_transport_controllable_state (const XMLNode& node)
624 {
625         const XMLProperty* prop;
626
627         if ((prop = node.property ("roll")) != 0) {
628                 roll_controllable->set_id (prop->value());
629         }
630         if ((prop = node.property ("stop")) != 0) {
631                 stop_controllable->set_id (prop->value());
632         }
633         if ((prop = node.property ("goto-start")) != 0) {
634                 goto_start_controllable->set_id (prop->value());
635         }
636         if ((prop = node.property ("goto-end")) != 0) {
637                 goto_end_controllable->set_id (prop->value());
638         }
639         if ((prop = node.property ("auto-loop")) != 0) {
640                 auto_loop_controllable->set_id (prop->value());
641         }
642         if ((prop = node.property ("play-selection")) != 0) {
643                 play_selection_controllable->set_id (prop->value());
644         }
645         if ((prop = node.property ("rec")) != 0) {
646                 rec_controllable->set_id (prop->value());
647         }
648         if ((prop = node.property ("shuttle")) != 0) {
649                 shuttle_box->controllable()->set_id (prop->value());
650         }
651 }
652
653 XMLNode&
654 ARDOUR_UI::get_transport_controllable_state ()
655 {
656         XMLNode* node = new XMLNode(X_("TransportControllables"));
657         char buf[64];
658
659         roll_controllable->id().print (buf, sizeof (buf));
660         node->add_property (X_("roll"), buf);
661         stop_controllable->id().print (buf, sizeof (buf));
662         node->add_property (X_("stop"), buf);
663         goto_start_controllable->id().print (buf, sizeof (buf));
664         node->add_property (X_("goto_start"), buf);
665         goto_end_controllable->id().print (buf, sizeof (buf));
666         node->add_property (X_("goto_end"), buf);
667         auto_loop_controllable->id().print (buf, sizeof (buf));
668         node->add_property (X_("auto_loop"), buf);
669         play_selection_controllable->id().print (buf, sizeof (buf));
670         node->add_property (X_("play_selection"), buf);
671         rec_controllable->id().print (buf, sizeof (buf));
672         node->add_property (X_("rec"), buf);
673         shuttle_box->controllable()->id().print (buf, sizeof (buf));
674         node->add_property (X_("shuttle"), buf);
675
676         return *node;
677 }
678
679
680 gint
681 ARDOUR_UI::autosave_session ()
682 {
683         if (g_main_depth() > 1) {
684                 /* inside a recursive main loop,
685                    give up because we may not be able to
686                    take a lock.
687                 */
688                 return 1;
689         }
690
691         if (!Config->get_periodic_safety_backups()) {
692                 return 1;
693         }
694
695         if (_session) {
696                 _session->maybe_write_autosave();
697         }
698
699         return 1;
700 }
701
702 void
703 ARDOUR_UI::update_autosave ()
704 {
705         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::update_autosave)
706
707         if (_session && _session->dirty()) {
708                 if (_autosave_connection.connected()) {
709                         _autosave_connection.disconnect();
710                 }
711
712                 _autosave_connection = Glib::signal_timeout().connect (sigc::mem_fun (*this, &ARDOUR_UI::autosave_session),
713                                 Config->get_periodic_safety_backup_interval() * 1000);
714
715         } else {
716                 if (_autosave_connection.connected()) {
717                         _autosave_connection.disconnect();
718                 }
719         }
720 }
721
722 void
723 ARDOUR_UI::check_announcements ()
724 {
725 #ifdef PHONE_HOME
726         string _annc_filename;
727
728 #ifdef __APPLE__
729         _annc_filename = PROGRAM_NAME "_announcements_osx_";
730 #else
731         _annc_filename = PROGRAM_NAME "_announcements_linux_";
732 #endif
733         _annc_filename.append (VERSIONSTRING);
734
735         std::string path = Glib::build_filename (user_config_directory(), _annc_filename);
736         std::ifstream announce_file (path.c_str());
737         if ( announce_file.fail() )
738                 _announce_string = "";
739         else {
740                 std::stringstream oss;
741                 oss << announce_file.rdbuf();
742                 _announce_string = oss.str();
743         }
744
745         pingback (VERSIONSTRING, path);
746 #endif
747 }
748
749 int
750 ARDOUR_UI::starting ()
751 {
752         Application* app = Application::instance ();
753         const char *nsm_url;
754         bool brand_new_user = ArdourStartup::required ();
755
756         app->ShouldQuit.connect (sigc::mem_fun (*this, &ARDOUR_UI::queue_finish));
757         app->ShouldLoad.connect (sigc::mem_fun (*this, &ARDOUR_UI::idle_load));
758
759         if (ARDOUR_COMMAND_LINE::check_announcements) {
760                 check_announcements ();
761         }
762
763         app->ready ();
764
765         /* we need to create this early because it may need to set the
766          *  audio backend end up.
767          */
768         
769         try {
770                 audio_midi_setup.get (true);
771         } catch (...) {
772                 std::cerr << "audio-midi engine setup failed."<< std::endl;
773                 return -1;
774         }
775
776         if ((nsm_url = g_getenv ("NSM_URL")) != 0) {
777                 nsm = new NSM_Client;
778                 if (!nsm->init (nsm_url)) {
779                         nsm->announce (PROGRAM_NAME, ":dirty:", "ardour3");
780
781                         unsigned int i = 0;
782                         // wait for announce reply from nsm server
783                         for ( i = 0; i < 5000; ++i) {
784                                 nsm->check ();
785
786                                 Glib::usleep (i);
787                                 if (nsm->is_active()) {
788                                         break;
789                                 }
790                         }
791                         if (i == 5000) {
792                                 error << _("NSM server did not announce itself") << endmsg;
793                                 return -1;
794                         }
795                         // wait for open command from nsm server
796                         for ( i = 0; i < 5000; ++i) {
797                                 nsm->check ();
798                                 Glib::usleep (1000);
799                                 if (nsm->client_id ()) {
800                                         break;
801                                 }
802                         }
803
804                         if (i == 5000) {
805                                 error << _("NSM: no client ID provided") << endmsg;
806                                 return -1;
807                         }
808
809                         if (_session && nsm) {
810                                 _session->set_nsm_state( nsm->is_active() );
811                         } else {
812                                 error << _("NSM: no session created") << endmsg;
813                                 return -1;
814                         }
815
816                         // nsm requires these actions disabled
817                         vector<string> action_names;
818                         action_names.push_back("SaveAs");
819                         action_names.push_back("Rename");
820                         action_names.push_back("New");
821                         action_names.push_back("Open");
822                         action_names.push_back("Recent");
823                         action_names.push_back("Close");
824
825                         for (vector<string>::const_iterator n = action_names.begin(); n != action_names.end(); ++n) {
826                                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Main"), (*n).c_str());
827                                 if (act) {
828                                         act->set_sensitive (false);
829                                 }
830                         }
831
832                 } else {
833                         delete nsm;
834                         nsm = 0;
835                         error << _("NSM: initialization failed") << endmsg;
836                         return -1;
837                 }
838
839         } else  {
840                 
841                 if (brand_new_user) {
842                         ArdourStartup s;
843                         s.present ();
844                         main().run();
845                         s.hide ();
846                         switch (s.response ()) {
847                         case Gtk::RESPONSE_OK:
848                                 break;
849                         default:
850                                 return -1;
851                         }
852                 }
853
854                 /* go get a session */
855
856                 const bool new_session_required = (ARDOUR_COMMAND_LINE::new_session || brand_new_user);
857
858                 if (get_session_parameters (false, new_session_required, ARDOUR_COMMAND_LINE::load_template)) {
859                         std::cerr << "Cannot get session parameters."<< std::endl;
860                         return -1;
861                 }
862         }
863
864         use_config ();
865
866         goto_editor_window ();
867
868         WM::Manager::instance().show_visible ();
869
870         /* We have to do this here since goto_editor_window() ends up calling show_all() on the
871          * editor window, and we may want stuff to be hidden.
872          */
873         _status_bar_visibility.update ();
874
875         BootMessage (string_compose (_("%1 is ready for use"), PROGRAM_NAME));
876         return 0;
877 }
878
879 void
880 ARDOUR_UI::check_memory_locking ()
881 {
882 #if defined(__APPLE__) || defined(PLATFORM_WINDOWS)
883         /* OS X doesn't support mlockall(2), and so testing for memory locking capability there is pointless */
884         return;
885 #else // !__APPLE__
886
887         XMLNode* memory_warning_node = Config->instant_xml (X_("no-memory-warning"));
888
889         if (AudioEngine::instance()->is_realtime() && memory_warning_node == 0) {
890
891                 struct rlimit limits;
892                 int64_t ram;
893                 long pages, page_size;
894 #ifdef __FreeBSD__
895                 size_t pages_len=sizeof(pages);
896                 if ((page_size = getpagesize()) < 0 ||
897                                 sysctlbyname("hw.availpages", &pages, &pages_len, NULL, 0))
898 #else
899                 if ((page_size = sysconf (_SC_PAGESIZE)) < 0 ||(pages = sysconf (_SC_PHYS_PAGES)) < 0)
900 #endif
901                 {
902                         ram = 0;
903                 } else {
904                         ram = (int64_t) pages * (int64_t) page_size;
905                 }
906
907                 if (getrlimit (RLIMIT_MEMLOCK, &limits)) {
908                         return;
909                 }
910
911                 if (limits.rlim_cur != RLIM_INFINITY) {
912
913                         if (ram == 0 || ((double) limits.rlim_cur / ram) < 0.75) {
914
915                                 MessageDialog msg (
916                                         string_compose (
917                                                 _("WARNING: Your system has a limit for maximum amount of locked memory. "
918                                                   "This might cause %1 to run out of memory before your system "
919                                                   "runs out of memory. \n\n"
920                                                   "You can view the memory limit with 'ulimit -l', "
921                                                   "and it is normally controlled by %2"),
922                                                 PROGRAM_NAME, 
923 #ifdef __FreeBSD__
924                                                 X_("/etc/login.conf")
925 #else
926                                                 X_(" /etc/security/limits.conf")
927 #endif
928                                         ).c_str());
929
930                                 msg.set_default_response (RESPONSE_OK);
931
932                                 VBox* vbox = msg.get_vbox();
933                                 HBox hbox;
934                                 CheckButton cb (_("Do not show this window again"));
935                                 hbox.pack_start (cb, true, false);
936                                 vbox->pack_start (hbox);
937                                 cb.show();
938                                 vbox->show();
939                                 hbox.show ();
940
941                                 pop_back_splash (msg);
942
943                                 editor->ensure_float (msg);
944                                 msg.run ();
945
946                                 if (cb.get_active()) {
947                                         XMLNode node (X_("no-memory-warning"));
948                                         Config->add_instant_xml (node);
949                                 }
950                         }
951                 }
952         }
953 #endif // !__APPLE__
954 }
955
956
957 void
958 ARDOUR_UI::queue_finish ()
959 {
960         Glib::signal_idle().connect (mem_fun (*this, &ARDOUR_UI::idle_finish));
961 }
962
963 bool
964 ARDOUR_UI::idle_finish ()
965 {
966         finish ();
967         return false; /* do not call again */
968 }
969
970 void
971 ARDOUR_UI::finish()
972 {
973         if (_session) {
974                 ARDOUR_UI::instance()->video_timeline->sync_session_state();
975
976                 if (_session->dirty()) {
977                         vector<string> actions;
978                         actions.push_back (_("Don't quit"));
979                         actions.push_back (_("Just quit"));
980                         actions.push_back (_("Save and quit"));
981                         switch (ask_about_saving_session(actions)) {
982                         case -1:
983                                 return;
984                                 break;
985                         case 1:
986                                 /* use the default name */
987                                 if (save_state_canfail ("")) {
988                                         /* failed - don't quit */
989                                         MessageDialog msg (*editor,
990                                                            string_compose (_("\
991 %1 was unable to save your session.\n\n\
992 If you still wish to quit, please use the\n\n\
993 \"Just quit\" option."), PROGRAM_NAME));
994                                         pop_back_splash(msg);
995                                         msg.run ();
996                                         return;
997                                 }
998                                 break;
999                         case 0:
1000                                 break;
1001                         }
1002                 }
1003
1004                 second_connection.disconnect ();
1005                 point_one_second_connection.disconnect ();
1006                 point_zero_something_second_connection.disconnect();
1007                 fps_connection.disconnect();
1008         }
1009
1010         delete ARDOUR_UI::instance()->video_timeline;
1011         ARDOUR_UI::instance()->video_timeline = NULL;
1012         stop_video_server();
1013
1014         /* Save state before deleting the session, as that causes some
1015            windows to be destroyed before their visible state can be
1016            saved.
1017         */
1018         save_ardour_state ();
1019
1020         close_all_dialogs ();
1021
1022         if (_session) {
1023                 // _session->set_deletion_in_progress ();
1024                 _session->set_clean ();
1025                 _session->remove_pending_capture_state ();
1026                 delete _session;
1027                 _session = 0;
1028         }
1029
1030         halt_connection.disconnect ();
1031         AudioEngine::instance()->stop ();
1032 #ifdef WINDOWS_VST_SUPPORT
1033         fst_stop_threading();
1034 #endif
1035         quit ();
1036 }
1037
1038 int
1039 ARDOUR_UI::ask_about_saving_session (const vector<string>& actions)
1040 {
1041         ArdourDialog window (_("Unsaved Session"));
1042         Gtk::HBox dhbox;  // the hbox for the image and text
1043         Gtk::Label  prompt_label;
1044         Gtk::Image* dimage = manage (new Gtk::Image(Stock::DIALOG_WARNING,  Gtk::ICON_SIZE_DIALOG));
1045
1046         string msg;
1047
1048         assert (actions.size() >= 3);
1049
1050         window.add_button (actions[0], RESPONSE_REJECT);
1051         window.add_button (actions[1], RESPONSE_APPLY);
1052         window.add_button (actions[2], RESPONSE_ACCEPT);
1053
1054         window.set_default_response (RESPONSE_ACCEPT);
1055
1056         Gtk::Button noquit_button (msg);
1057         noquit_button.set_name ("EditorGTKButton");
1058
1059         string prompt;
1060
1061         if (_session->snap_name() == _session->name()) {
1062                 prompt = string_compose(_("The session \"%1\"\nhas not been saved.\n\nAny changes made this time\nwill be lost unless you save it.\n\nWhat do you want to do?"),
1063                                         _session->snap_name());
1064         } else {
1065                 prompt = string_compose(_("The snapshot \"%1\"\nhas not been saved.\n\nAny changes made this time\nwill be lost unless you save it.\n\nWhat do you want to do?"),
1066                                         _session->snap_name());
1067         }
1068
1069         prompt_label.set_text (prompt);
1070         prompt_label.set_name (X_("PrompterLabel"));
1071         prompt_label.set_alignment(ALIGN_LEFT, ALIGN_TOP);
1072
1073         dimage->set_alignment(ALIGN_CENTER, ALIGN_TOP);
1074         dhbox.set_homogeneous (false);
1075         dhbox.pack_start (*dimage, false, false, 5);
1076         dhbox.pack_start (prompt_label, true, false, 5);
1077         window.get_vbox()->pack_start (dhbox);
1078
1079         window.set_name (_("Prompter"));
1080         window.set_modal (true);
1081         window.set_resizable (false);
1082
1083         dhbox.show();
1084         prompt_label.show();
1085         dimage->show();
1086         window.show();
1087         window.set_keep_above (true);
1088         window.present ();
1089
1090         ResponseType r = (ResponseType) window.run();
1091
1092         window.hide ();
1093
1094         switch (r) {
1095         case RESPONSE_ACCEPT: // save and get out of here
1096                 return 1;
1097         case RESPONSE_APPLY:  // get out of here
1098                 return 0;
1099         default:
1100                 break;
1101         }
1102
1103         return -1;
1104 }
1105
1106
1107 void
1108 ARDOUR_UI::every_second ()
1109 {
1110         update_cpu_load ();
1111         update_buffer_load ();
1112         update_disk_space ();
1113         update_timecode_format ();
1114
1115         if (nsm && nsm->is_active ()) {
1116                 nsm->check ();
1117
1118                 if (!_was_dirty && _session->dirty ()) {
1119                         nsm->is_dirty ();
1120                         _was_dirty = true;
1121                 }
1122                 else if (_was_dirty && !_session->dirty ()){
1123                         nsm->is_clean ();
1124                         _was_dirty = false;
1125                 }
1126         }
1127 }
1128
1129 void
1130 ARDOUR_UI::every_point_one_seconds ()
1131 {
1132         shuttle_box->update_speed_display ();
1133 }
1134
1135 void
1136 ARDOUR_UI::every_point_zero_something_seconds ()
1137 {
1138         // august 2007: actual update frequency: 25Hz (40ms), not 100Hz
1139
1140         if (editor_meter && ARDOUR_UI::config()->get_show_editor_meter()) {
1141                 float mpeak = editor_meter->update_meters();
1142                 if (mpeak > editor_meter_max_peak) {
1143                         if (mpeak >= ARDOUR_UI::config()->get_meter_peak()) {
1144                                 editor_meter_peak_display.set_active_state ( Gtkmm2ext::ExplicitActive );
1145                         }
1146                 }
1147         }
1148 }
1149
1150 void
1151 ARDOUR_UI::set_fps_timeout_connection ()
1152 {
1153         unsigned int interval = 40;
1154         if (!_session) return;
1155         if (_session->timecode_frames_per_second() != 0) {
1156                 /* ideally we'll use a select() to sleep and not accumulate
1157                  * idle time to provide a regular periodic signal.
1158                  * See linux_vst_gui_support.cc 'elapsed_time_ms'.
1159                  * However, that'll require a dedicated thread and cross-thread
1160                  * signals to the GUI Thread..
1161                  */
1162                 interval = floor(500. /* update twice per FPS, since Glib::signal_timeout is very irregular */
1163                                 * _session->frame_rate() / _session->nominal_frame_rate()
1164                                 / _session->timecode_frames_per_second()
1165                                 );
1166 #ifdef PLATFORM_WINDOWS
1167                 // the smallest windows scheduler time-slice is ~15ms.
1168                 // periodic GUI timeouts shorter than that will cause
1169                 // WaitForSingleObject to spinlock (100% of one CPU Core)
1170                 // and gtk never enters idle mode.
1171                 // also changing timeBeginPeriod(1) does not affect that in
1172                 // any beneficial way, so we just limit the max rate for now.
1173                 interval = std::max(30u, interval); // at most ~33Hz.
1174 #else
1175                 interval = std::max(8u, interval); // at most 120Hz.
1176 #endif
1177         }
1178         fps_connection.disconnect();
1179         Timers::set_fps_interval (interval);
1180 }
1181
1182 void
1183 ARDOUR_UI::update_sample_rate (framecnt_t)
1184 {
1185         char buf[64];
1186
1187         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::update_sample_rate, ignored)
1188
1189         if (!AudioEngine::instance()->connected()) {
1190
1191                 snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"red\">none</span>"));
1192
1193         } else {
1194
1195                 framecnt_t rate = AudioEngine::instance()->sample_rate();
1196
1197                 if (rate == 0) {
1198                         /* no sample rate available */
1199                         snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"red\">none</span>"));
1200                 } else {
1201
1202                         if (fmod (rate, 1000.0) != 0.0) {
1203                                 snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"green\">%.1f kHz / %4.1f ms</span>"),
1204                                           (float) rate / 1000.0f,
1205                                           (AudioEngine::instance()->usecs_per_cycle() / 1000.0f));
1206                         } else {
1207                                 snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"green\">%" PRId64 " kHz / %4.1f ms</span>"),
1208                                           rate/1000,
1209                                           (AudioEngine::instance()->usecs_per_cycle() / 1000.0f));
1210                         }
1211                 }
1212         }
1213         sample_rate_label.set_markup (buf);
1214 }
1215
1216 void
1217 ARDOUR_UI::update_format ()
1218 {
1219         if (!_session) {
1220                 format_label.set_text ("");
1221                 return;
1222         }
1223
1224         stringstream s;
1225         s << _("File:") << X_(" <span foreground=\"green\">");
1226
1227         switch (_session->config.get_native_file_header_format ()) {
1228         case BWF:
1229                 s << _("BWF");
1230                 break;
1231         case WAVE:
1232                 s << _("WAV");
1233                 break;
1234         case WAVE64:
1235                 s << _("WAV64");
1236                 break;
1237         case CAF:
1238                 s << _("CAF");
1239                 break;
1240         case AIFF:
1241                 s << _("AIFF");
1242                 break;
1243         case iXML:
1244                 s << _("iXML");
1245                 break;
1246         case RF64:
1247                 s << _("RF64");
1248                 break;
1249         }
1250
1251         s << " ";
1252         
1253         switch (_session->config.get_native_file_data_format ()) {
1254         case FormatFloat:
1255                 s << _("32-float");
1256                 break;
1257         case FormatInt24:
1258                 s << _("24-int");
1259                 break;
1260         case FormatInt16:
1261                 s << _("16-int");
1262                 break;
1263         }
1264
1265         s << X_("</span>");
1266
1267         format_label.set_markup (s.str ());
1268 }
1269
1270 void
1271 ARDOUR_UI::update_cpu_load ()
1272 {
1273         char buf[64];
1274
1275         /* If this text is changed, the set_size_request_to_display_given_text call in ARDOUR_UI::resize_text_widgets
1276            should also be changed.
1277         */
1278
1279         double const c = AudioEngine::instance()->get_dsp_load ();
1280         snprintf (buf, sizeof (buf), _("DSP: <span foreground=\"%s\">%5.1f%%</span>"), c >= 90 ? X_("red") : X_("green"), c);
1281         cpu_load_label.set_markup (buf);
1282 }
1283
1284 void
1285 ARDOUR_UI::update_buffer_load ()
1286 {
1287         char buf[256];
1288
1289         uint32_t const playback = _session ? _session->playback_load () : 100;
1290         uint32_t const capture = _session ? _session->capture_load () : 100;
1291
1292         /* If this text is changed, the set_size_request_to_display_given_text call in ARDOUR_UI::resize_text_widgets
1293            should also be changed.
1294         */
1295         
1296         if (_session) {
1297                 snprintf (
1298                         buf, sizeof (buf),
1299                         _("Buffers: <span foreground=\"green\">p:</span><span foreground=\"%s\">%" PRIu32 "%%</span> "
1300                                    "<span foreground=\"green\">c:</span><span foreground=\"%s\">%" PRIu32 "%%</span>"),
1301                         playback <= 5 ? X_("red") : X_("green"),
1302                         playback,
1303                         capture <= 5 ? X_("red") : X_("green"),
1304                         capture
1305                         );
1306
1307                 buffer_load_label.set_markup (buf);
1308         } else {
1309                 buffer_load_label.set_text ("");
1310         }
1311 }
1312
1313 void
1314 ARDOUR_UI::count_recenabled_streams (Route& route)
1315 {
1316         Track* track = dynamic_cast<Track*>(&route);
1317         if (track && track->record_enabled()) {
1318                 rec_enabled_streams += track->n_inputs().n_total();
1319         }
1320 }
1321
1322 void
1323 ARDOUR_UI::update_disk_space()
1324 {
1325         if (_session == 0) {
1326                 return;
1327         }
1328
1329         boost::optional<framecnt_t> opt_frames = _session->available_capture_duration();
1330         char buf[64];
1331         framecnt_t fr = _session->frame_rate();
1332
1333         if (fr == 0) {
1334                 /* skip update - no SR available */
1335                 return;
1336         }
1337
1338         if (!opt_frames) {
1339                 /* Available space is unknown */
1340                 snprintf (buf, sizeof (buf), "%s", _("Disk: <span foreground=\"green\">Unknown</span>"));
1341         } else if (opt_frames.get_value_or (0) == max_framecnt) {
1342                 snprintf (buf, sizeof (buf), "%s", _("Disk: <span foreground=\"green\">24hrs+</span>"));
1343         } else {
1344                 rec_enabled_streams = 0;
1345                 _session->foreach_route (this, &ARDOUR_UI::count_recenabled_streams);
1346
1347                 framecnt_t frames = opt_frames.get_value_or (0);
1348
1349                 if (rec_enabled_streams) {
1350                         frames /= rec_enabled_streams;
1351                 }
1352
1353                 int hrs;
1354                 int mins;
1355                 int secs;
1356
1357                 hrs  = frames / (fr * 3600);
1358
1359                 if (hrs > 24) {
1360                         snprintf (buf, sizeof (buf), "%s", _("Disk: <span foreground=\"green\">&gt;24 hrs</span>"));
1361                 } else {
1362                         frames -= hrs * fr * 3600;
1363                         mins = frames / (fr * 60);
1364                         frames -= mins * fr * 60;
1365                         secs = frames / fr;
1366                         
1367                         bool const low = (hrs == 0 && mins <= 30);
1368                         
1369                         snprintf (
1370                                 buf, sizeof(buf),
1371                                 _("Disk: <span foreground=\"%s\">%02dh:%02dm:%02ds</span>"),
1372                                 low ? X_("red") : X_("green"),
1373                                 hrs, mins, secs
1374                                 );
1375                 }
1376         }
1377
1378         disk_space_label.set_markup (buf);
1379 }
1380
1381 void
1382 ARDOUR_UI::update_timecode_format ()
1383 {
1384         char buf[64];
1385
1386         if (_session) {
1387                 bool matching;
1388                 TimecodeSlave* tcslave;
1389                 SyncSource sync_src = Config->get_sync_source();
1390
1391                 if ((sync_src == LTC || sync_src == MTC) && (tcslave = dynamic_cast<TimecodeSlave*>(_session->slave())) != 0) {
1392                         matching = (tcslave->apparent_timecode_format() == _session->config.get_timecode_format());
1393                 } else {
1394                         matching = true;
1395                 }
1396                         
1397                 snprintf (buf, sizeof (buf), S_("Timecode|TC: <span foreground=\"%s\">%s</span>"),
1398                           matching ? X_("green") : X_("red"),
1399                           Timecode::timecode_format_name (_session->config.get_timecode_format()).c_str());
1400         } else {
1401                 snprintf (buf, sizeof (buf), "TC: n/a");
1402         }
1403
1404         timecode_format_label.set_markup (buf);
1405 }       
1406
1407 gint
1408 ARDOUR_UI::update_wall_clock ()
1409 {
1410         time_t now;
1411         struct tm *tm_now;
1412         static int last_min = -1;
1413
1414         time (&now);
1415         tm_now = localtime (&now);
1416         if (last_min != tm_now->tm_min) {
1417                 char buf[16];
1418                 sprintf (buf, "%02d:%02d", tm_now->tm_hour, tm_now->tm_min);
1419                 wall_clock_label.set_text (buf);
1420                 last_min = tm_now->tm_min;
1421         }
1422
1423         return TRUE;
1424 }
1425
1426 void
1427 ARDOUR_UI::redisplay_recent_sessions ()
1428 {
1429         std::vector<std::string> session_directories;
1430         RecentSessionsSorter cmp;
1431
1432         recent_session_display.set_model (Glib::RefPtr<TreeModel>(0));
1433         recent_session_model->clear ();
1434
1435         ARDOUR::RecentSessions rs;
1436         ARDOUR::read_recent_sessions (rs);
1437
1438         if (rs.empty()) {
1439                 recent_session_display.set_model (recent_session_model);
1440                 return;
1441         }
1442
1443         // sort them alphabetically
1444         sort (rs.begin(), rs.end(), cmp);
1445
1446         for (ARDOUR::RecentSessions::iterator i = rs.begin(); i != rs.end(); ++i) {
1447                 session_directories.push_back ((*i).second);
1448         }
1449
1450         for (vector<std::string>::const_iterator i = session_directories.begin();
1451                         i != session_directories.end(); ++i)
1452         {
1453                 std::vector<std::string> state_file_paths;
1454
1455                 // now get available states for this session
1456
1457                 get_state_files_in_directory (*i, state_file_paths);
1458
1459                 vector<string> states;
1460                 vector<const gchar*> item;
1461                 string fullpath = *i;
1462
1463                 /* remove any trailing / */
1464
1465                 if (fullpath[fullpath.length() - 1] == '/') {
1466                         fullpath = fullpath.substr (0, fullpath.length() - 1);
1467                 }
1468
1469                 /* check whether session still exists */
1470                 if (!Glib::file_test(fullpath.c_str(), Glib::FILE_TEST_EXISTS)) {
1471                         /* session doesn't exist */
1472                         continue;
1473                 }
1474
1475                 /* now get available states for this session */
1476                 states = Session::possible_states (fullpath);
1477
1478                 if (states.empty()) {
1479                         /* no state file? */
1480                         continue;
1481                 }
1482
1483                 std::vector<string> state_file_names(get_file_names_no_extension (state_file_paths));
1484
1485                 Gtk::TreeModel::Row row = *(recent_session_model->append());
1486
1487                 row[recent_session_columns.fullpath] = fullpath;
1488                 row[recent_session_columns.tip] = Glib::Markup::escape_text (fullpath);
1489
1490                 if (state_file_names.size() > 1) {
1491                         // multiple session files in the session directory - show the directory name.
1492                         row[recent_session_columns.visible_name] = Glib::path_get_basename (fullpath);
1493
1494                         // add the children
1495                         for (std::vector<std::string>::iterator i2 = state_file_names.begin();
1496                                         i2 != state_file_names.end(); ++i2)
1497                         {
1498
1499                                 Gtk::TreeModel::Row child_row = *(recent_session_model->append (row.children()));
1500
1501                                 child_row[recent_session_columns.visible_name] = *i2;
1502                                 child_row[recent_session_columns.fullpath] = fullpath;
1503                                 child_row[recent_session_columns.tip] = Glib::Markup::escape_text (fullpath);
1504                         }
1505                 } else {
1506                         // only a single session file in the directory - show its actual name.
1507                         row[recent_session_columns.visible_name] = state_file_names.front ();
1508                 }
1509         }
1510
1511         recent_session_display.set_tooltip_column(1); // recent_session_columns.tip
1512         recent_session_display.set_model (recent_session_model);
1513 }
1514
1515 void
1516 ARDOUR_UI::build_session_selector ()
1517 {
1518         session_selector_window = new ArdourDialog (_("Recent Sessions"));
1519
1520         Gtk::ScrolledWindow *scroller = manage (new Gtk::ScrolledWindow);
1521
1522         session_selector_window->add_button (Stock::CANCEL, RESPONSE_CANCEL);
1523         session_selector_window->add_button (Stock::OPEN, RESPONSE_ACCEPT);
1524         session_selector_window->set_default_response (RESPONSE_ACCEPT);
1525         recent_session_model = TreeStore::create (recent_session_columns);
1526         recent_session_display.set_model (recent_session_model);
1527         recent_session_display.append_column (_("Recent Sessions"), recent_session_columns.visible_name);
1528         recent_session_display.set_headers_visible (false);
1529         recent_session_display.get_selection()->set_mode (SELECTION_BROWSE);
1530         recent_session_display.signal_row_activated().connect (sigc::mem_fun (*this, &ARDOUR_UI::recent_session_row_activated));
1531
1532         scroller->add (recent_session_display);
1533         scroller->set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
1534
1535         session_selector_window->set_name ("SessionSelectorWindow");
1536         session_selector_window->set_size_request (200, 400);
1537         session_selector_window->get_vbox()->pack_start (*scroller);
1538
1539         recent_session_display.show();
1540         scroller->show();
1541 }
1542
1543 void
1544 ARDOUR_UI::recent_session_row_activated (const TreePath& /*path*/, TreeViewColumn* /*col*/)
1545 {
1546         session_selector_window->response (RESPONSE_ACCEPT);
1547 }
1548
1549 void
1550 ARDOUR_UI::open_recent_session ()
1551 {
1552         bool can_return = (_session != 0);
1553
1554         if (session_selector_window == 0) {
1555                 build_session_selector ();
1556         }
1557
1558         redisplay_recent_sessions ();
1559
1560         while (true) {
1561
1562                 ResponseType r = (ResponseType) session_selector_window->run ();
1563
1564                 switch (r) {
1565                 case RESPONSE_ACCEPT:
1566                         break;
1567                 default:
1568                         if (can_return) {
1569                                 session_selector_window->hide();
1570                                 return;
1571                         } else {
1572                                 exit (1);
1573                         }
1574                 }
1575
1576                 if (recent_session_display.get_selection()->count_selected_rows() == 0) {
1577                         continue;
1578                 }
1579
1580                 session_selector_window->hide();
1581
1582                 Gtk::TreeModel::iterator i = recent_session_display.get_selection()->get_selected();
1583
1584                 if (i == recent_session_model->children().end()) {
1585                         return;
1586                 }
1587
1588                 std::string path = (*i)[recent_session_columns.fullpath];
1589                 std::string state = (*i)[recent_session_columns.visible_name];
1590
1591                 _session_is_new = false;
1592
1593                 if (load_session (path, state) == 0) {
1594                         break;
1595                 }
1596
1597                 can_return = false;
1598         }
1599 }
1600
1601 bool
1602 ARDOUR_UI::check_audioengine ()
1603 {
1604         if (!AudioEngine::instance()->connected()) {
1605                 MessageDialog msg (string_compose (
1606                                            _("%1 is not connected to any audio backend.\n"
1607                                              "You cannot open or close sessions in this condition"),
1608                                            PROGRAM_NAME));
1609                 pop_back_splash (msg);
1610                 msg.run ();
1611                 return false;
1612         }
1613         return true;
1614 }
1615
1616 void
1617 ARDOUR_UI::open_session ()
1618 {
1619         if (!check_audioengine()) {
1620                 return;
1621
1622         }
1623
1624         /* popup selector window */
1625
1626         if (open_session_selector == 0) {
1627
1628                 /* ardour sessions are folders */
1629
1630                 open_session_selector = new Gtk::FileChooserDialog (_("Open Session"), FILE_CHOOSER_ACTION_OPEN);
1631                 open_session_selector->add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1632                 open_session_selector->add_button (Gtk::Stock::OPEN, Gtk::RESPONSE_ACCEPT);
1633                 open_session_selector->set_default_response(Gtk::RESPONSE_ACCEPT);
1634                 
1635                 if (_session) {
1636                         string session_parent_dir = Glib::path_get_dirname(_session->path());
1637                         string::size_type last_dir_sep = session_parent_dir.rfind(G_DIR_SEPARATOR);
1638                         session_parent_dir = session_parent_dir.substr(0, last_dir_sep);
1639                         open_session_selector->set_current_folder(session_parent_dir);
1640                 } else {
1641                         open_session_selector->set_current_folder(Config->get_default_session_parent_dir());
1642                 }
1643
1644                 string default_session_folder = Config->get_default_session_parent_dir();
1645                 try {
1646                         /* add_shortcut_folder throws an exception if the folder being added already has a shortcut */
1647                         open_session_selector->add_shortcut_folder (default_session_folder);
1648                 }
1649                 catch (Glib::Error & e) {
1650                         std::cerr << "open_session_selector->add_shortcut_folder (" << default_session_folder << ") threw Glib::Error " << e.what() << std::endl;
1651                 }
1652
1653                 FileFilter session_filter;
1654                 session_filter.add_pattern (string_compose(X_("*%1"), ARDOUR::statefile_suffix));
1655                 session_filter.set_name (string_compose (_("%1 sessions"), PROGRAM_NAME));
1656                 open_session_selector->add_filter (session_filter);
1657                 open_session_selector->set_filter (session_filter);
1658         }
1659
1660         int response = open_session_selector->run();
1661         open_session_selector->hide ();
1662
1663         switch (response) {
1664         case RESPONSE_ACCEPT:
1665                 break;
1666         default:
1667                 open_session_selector->hide();
1668                 return;
1669         }
1670
1671         open_session_selector->hide();
1672         string session_path = open_session_selector->get_filename();
1673         string path, name;
1674         bool isnew;
1675
1676         if (session_path.length() > 0) {
1677                 if (ARDOUR::find_session (session_path, path, name, isnew) == 0) {
1678                         _session_is_new = isnew;
1679                         load_session (path, name);
1680                 }
1681         }
1682 }
1683
1684
1685 void
1686 ARDOUR_UI::session_add_mixed_track (const ChanCount& input, const ChanCount& output, RouteGroup* route_group, 
1687                                     uint32_t how_many, const string& name_template, PluginInfoPtr instrument)
1688 {
1689         list<boost::shared_ptr<MidiTrack> > tracks;
1690
1691         if (_session == 0) {
1692                 warning << _("You cannot add a track without a session already loaded.") << endmsg;
1693                 return;
1694         }
1695
1696         try {
1697                 tracks = _session->new_midi_track (input, output, instrument, ARDOUR::Normal, route_group, how_many, name_template);
1698                 
1699                 if (tracks.size() != how_many) {
1700                         error << string_compose(P_("could not create %1 new mixed track", "could not create %1 new mixed tracks", how_many), how_many) << endmsg;
1701                 }
1702         }
1703
1704         catch (...) {
1705                 MessageDialog msg (*editor,
1706                                    string_compose (_("There are insufficient ports available\n\
1707 to create a new track or bus.\n\
1708 You should save %1, exit and\n\
1709 restart with more ports."), PROGRAM_NAME));
1710                 msg.run ();
1711         }
1712 }
1713         
1714
1715 void
1716 ARDOUR_UI::session_add_midi_route (bool disk, RouteGroup* route_group, uint32_t how_many, const string& name_template, PluginInfoPtr instrument)
1717 {
1718         ChanCount one_midi_channel;
1719         one_midi_channel.set (DataType::MIDI, 1);
1720
1721         if (disk) {
1722                 session_add_mixed_track (one_midi_channel, one_midi_channel, route_group, how_many, name_template, instrument);
1723         }
1724 }
1725
1726 void
1727 ARDOUR_UI::session_add_audio_route (
1728         bool track,
1729         int32_t input_channels,
1730         int32_t output_channels,
1731         ARDOUR::TrackMode mode,
1732         RouteGroup* route_group,
1733         uint32_t how_many,
1734         string const & name_template
1735         )
1736 {
1737         list<boost::shared_ptr<AudioTrack> > tracks;
1738         RouteList routes;
1739
1740         if (_session == 0) {
1741                 warning << _("You cannot add a track or bus without a session already loaded.") << endmsg;
1742                 return;
1743         }
1744
1745         try {
1746                 if (track) {
1747                         tracks = _session->new_audio_track (input_channels, output_channels, mode, route_group, how_many, name_template);
1748
1749                         if (tracks.size() != how_many) {
1750                                 error << string_compose (P_("could not create %1 new audio track", "could not create %1 new audio tracks", how_many), how_many) 
1751                                       << endmsg;
1752                         }
1753
1754                 } else {
1755
1756                         routes = _session->new_audio_route (input_channels, output_channels, route_group, how_many, name_template);
1757
1758                         if (routes.size() != how_many) {
1759                                 error << string_compose (P_("could not create %1 new audio bus", "could not create %1 new audio busses", how_many), how_many)
1760                                       << endmsg;
1761                         }
1762                 }
1763         }
1764
1765         catch (...) {
1766                 MessageDialog msg (*editor,
1767                                    string_compose (_("There are insufficient ports available\n\
1768 to create a new track or bus.\n\
1769 You should save %1, exit and\n\
1770 restart with more ports."), PROGRAM_NAME));
1771                 pop_back_splash (msg);
1772                 msg.run ();
1773         }
1774 }
1775
1776 void
1777 ARDOUR_UI::transport_goto_start ()
1778 {
1779         if (_session) {
1780                 _session->goto_start();
1781
1782                 /* force displayed area in editor to start no matter
1783                    what "follow playhead" setting is.
1784                 */
1785
1786                 if (editor) {
1787                         editor->center_screen (_session->current_start_frame ());
1788                 }
1789         }
1790 }
1791
1792 void
1793 ARDOUR_UI::transport_goto_zero ()
1794 {
1795         if (_session) {
1796                 _session->request_locate (0);
1797
1798                 /* force displayed area in editor to start no matter
1799                    what "follow playhead" setting is.
1800                 */
1801
1802                 if (editor) {
1803                         editor->reset_x_origin (0);
1804                 }
1805         }
1806 }
1807
1808 void
1809 ARDOUR_UI::transport_goto_wallclock ()
1810 {
1811         if (_session && editor) {
1812
1813                 time_t now;
1814                 struct tm tmnow;
1815                 framepos_t frames;
1816
1817                 time (&now);
1818                 localtime_r (&now, &tmnow);
1819                 
1820                 int frame_rate = _session->frame_rate();
1821                 
1822                 if (frame_rate == 0) {
1823                         /* no frame rate available */
1824                         return;
1825                 }
1826
1827                 frames = tmnow.tm_hour * (60 * 60 * frame_rate);
1828                 frames += tmnow.tm_min * (60 * frame_rate);
1829                 frames += tmnow.tm_sec * frame_rate;
1830
1831                 _session->request_locate (frames, _session->transport_rolling ());
1832
1833                 /* force displayed area in editor to start no matter
1834                    what "follow playhead" setting is.
1835                 */
1836
1837                 if (editor) {
1838                         editor->center_screen (frames);
1839                 }
1840         }
1841 }
1842
1843 void
1844 ARDOUR_UI::transport_goto_end ()
1845 {
1846         if (_session) {
1847                 framepos_t const frame = _session->current_end_frame();
1848                 _session->request_locate (frame);
1849
1850                 /* force displayed area in editor to start no matter
1851                    what "follow playhead" setting is.
1852                 */
1853
1854                 if (editor) {
1855                         editor->center_screen (frame);
1856                 }
1857         }
1858 }
1859
1860 void
1861 ARDOUR_UI::transport_stop ()
1862 {
1863         if (!_session) {
1864                 return;
1865         }
1866
1867         if (_session->is_auditioning()) {
1868                 _session->cancel_audition ();
1869                 return;
1870         }
1871
1872         _session->request_stop (false, true);
1873 }
1874
1875 /** Check if any tracks are record enabled. If none are, record enable all of them.
1876  * @return true if track record-enabled status was changed, false otherwise.
1877  */  
1878 bool
1879 ARDOUR_UI::trx_record_enable_all_tracks ()
1880 {
1881         if (!_session) {
1882                 return false;
1883         }
1884
1885         boost::shared_ptr<RouteList> rl = _session->get_tracks ();
1886         bool none_record_enabled = true;
1887
1888         for (RouteList::iterator r = rl->begin(); r != rl->end(); ++r) {
1889                 boost::shared_ptr<Track> t = boost::dynamic_pointer_cast<Track> (*r);
1890                 assert (t);
1891
1892                 if (t->record_enabled()) {
1893                         none_record_enabled = false;
1894                         break;
1895                 }
1896         }
1897
1898         if (none_record_enabled) {
1899                 _session->set_record_enabled (rl, true, Session::rt_cleanup);
1900         } 
1901
1902         return none_record_enabled;
1903 }
1904
1905 void
1906 ARDOUR_UI::transport_record (bool roll)
1907 {
1908         if (_session) {
1909                 switch (_session->record_status()) {
1910                 case Session::Disabled:
1911                         if (_session->ntracks() == 0) {
1912                                 MessageDialog msg (*editor, _("Please create one or more tracks before trying to record.\nYou can do this with the \"Add Track or Bus\" option in the Session menu."));
1913                                 msg.run ();
1914                                 return;
1915                         }
1916                         if (Profile->get_trx()) {
1917                                 roll = trx_record_enable_all_tracks ();
1918                         }
1919                         _session->maybe_enable_record ();
1920                         if (roll) {
1921                                 transport_roll ();
1922                         }
1923                         break;
1924                 case Session::Recording:
1925                         if (roll) {
1926                                 _session->request_stop();
1927                         } else {
1928                                 _session->disable_record (false, true);
1929                         }
1930                         break;
1931
1932                 case Session::Enabled:
1933                         _session->disable_record (false, true);
1934                 }
1935         }
1936 }
1937
1938 void
1939 ARDOUR_UI::transport_roll ()
1940 {
1941         if (!_session) {
1942                 return;
1943         }
1944
1945         if (_session->is_auditioning()) {
1946                 return;
1947         }
1948
1949 #if 0
1950         if (_session->config.get_external_sync()) {
1951                 switch (Config->get_sync_source()) {
1952                 case Engine:
1953                         break;
1954                 default:
1955                         /* transport controlled by the master */
1956                         return;
1957                 }
1958         }
1959 #endif
1960
1961         bool rolling = _session->transport_rolling();
1962
1963         if (_session->get_play_loop()) {
1964
1965                 /* If loop playback is not a mode, then we should cancel
1966                    it when this action is requested. If it is a mode
1967                    we just leave it in place.
1968                 */
1969
1970                 if (!Config->get_loop_is_mode()) {
1971                         /* XXX it is not possible to just leave seamless loop and keep
1972                            playing at present (nov 4th 2009)
1973                         */
1974                         if (!Config->get_seamless_loop()) {
1975                                 /* stop loop playback and stop rolling */
1976                                 _session->request_play_loop (false, true);
1977                         } else if (rolling) {
1978                                 /* stop loop playback but keep rolling */
1979                                 _session->request_play_loop (false, false);
1980                         }
1981                 } 
1982
1983         } else if (_session->get_play_range () ) {
1984                 /* stop playing a range if we currently are */
1985                 _session->request_play_range (0, true);
1986         }
1987
1988         if (!rolling) {
1989                 _session->request_transport_speed (1.0f);
1990         }
1991 }
1992
1993 bool
1994 ARDOUR_UI::get_smart_mode() const
1995 {
1996         return ( editor->get_smart_mode() );
1997 }
1998
1999
2000 void
2001 ARDOUR_UI::toggle_roll (bool with_abort, bool roll_out_of_bounded_mode)
2002 {
2003
2004         if (!_session) {
2005                 return;
2006         }
2007
2008         if (_session->is_auditioning()) {
2009                 _session->cancel_audition ();
2010                 return;
2011         }
2012
2013         if (_session->config.get_external_sync()) {
2014                 switch (Config->get_sync_source()) {
2015                 case Engine:
2016                         break;
2017                 default:
2018                         /* transport controlled by the master */
2019                         return;
2020                 }
2021         }
2022
2023         bool rolling = _session->transport_rolling();
2024         bool affect_transport = true;
2025
2026         if (rolling && roll_out_of_bounded_mode) {
2027                 /* drop out of loop/range playback but leave transport rolling */
2028                 if (_session->get_play_loop()) {
2029                         if (Config->get_seamless_loop()) {
2030                                 /* the disk buffers contain copies of the loop - we can't
2031                                    just keep playing, so stop the transport. the user
2032                                    can restart as they wish.
2033                                 */
2034                                 affect_transport = true;
2035                         } else {
2036                                 /* disk buffers are normal, so we can keep playing */
2037                                 affect_transport = false;
2038                         }
2039                         _session->request_play_loop (false, affect_transport);
2040                 } else if (_session->get_play_range ()) {
2041                         affect_transport = false;
2042                         _session->request_play_range (0, true);
2043                 }
2044         }
2045
2046         if (affect_transport) {
2047                 if (rolling) {
2048                         _session->request_stop (with_abort, true);
2049                 } else {
2050                         if (ARDOUR_UI::config()->get_follow_edits() && ( editor->get_selection().time.front().start == _session->transport_frame() ) ) {  //if playhead is exactly at the start of a range, we can assume it was placed there by follow_edits
2051                                 _session->request_play_range (&editor->get_selection().time, true);
2052                                 _session->set_requested_return_frame( editor->get_selection().time.front().start );  //force an auto-return here
2053                         }
2054                         _session->request_transport_speed (1.0f);
2055                 }
2056         }
2057 }
2058
2059 void
2060 ARDOUR_UI::toggle_session_auto_loop ()
2061 {
2062         Location * looploc = _session->locations()->auto_loop_location();
2063
2064         if (!_session || !looploc) {
2065                 return;
2066         }
2067
2068         if (_session->get_play_loop()) {
2069
2070                 /* looping enabled, our job is to disable it */
2071
2072                 _session->request_play_loop (false);
2073
2074         } else {
2075
2076                 /* looping not enabled, our job is to enable it.
2077
2078                    loop-is-NOT-mode: this action always starts the transport rolling.
2079                    loop-IS-mode:     this action simply sets the loop play mechanism, but
2080                                         does not start transport.
2081                 */
2082                 if (Config->get_loop_is_mode()) {
2083                         _session->request_play_loop (true, false);
2084                 } else {
2085                         _session->request_play_loop (true, true);
2086                 }
2087         }
2088         
2089         //show the loop markers
2090         looploc->set_hidden (false, this);
2091 }
2092
2093 void
2094 ARDOUR_UI::transport_play_selection ()
2095 {
2096         if (!_session) {
2097                 return;
2098         }
2099
2100         editor->play_selection ();
2101 }
2102
2103 void
2104 ARDOUR_UI::transport_play_preroll ()
2105 {
2106         if (!_session) {
2107                 return;
2108         }
2109         editor->play_with_preroll ();
2110 }
2111
2112 void
2113 ARDOUR_UI::transport_rewind (int option)
2114 {
2115         float current_transport_speed;
2116
2117         if (_session) {
2118                 current_transport_speed = _session->transport_speed();
2119
2120                 if (current_transport_speed >= 0.0f) {
2121                         switch (option) {
2122                         case 0:
2123                                 _session->request_transport_speed (-1.0f);
2124                                 break;
2125                         case 1:
2126                                 _session->request_transport_speed (-4.0f);
2127                                 break;
2128                         case -1:
2129                                 _session->request_transport_speed (-0.5f);
2130                                 break;
2131                         }
2132                 } else {
2133                         /* speed up */
2134                         _session->request_transport_speed (current_transport_speed * 1.5f);
2135                 }
2136         }
2137 }
2138
2139 void
2140 ARDOUR_UI::transport_forward (int option)
2141 {
2142         if (!_session) {
2143                 return;
2144         }
2145         
2146         float current_transport_speed = _session->transport_speed();
2147         
2148         if (current_transport_speed <= 0.0f) {
2149                 switch (option) {
2150                 case 0:
2151                         _session->request_transport_speed (1.0f);
2152                         break;
2153                 case 1:
2154                         _session->request_transport_speed (4.0f);
2155                         break;
2156                 case -1:
2157                         _session->request_transport_speed (0.5f);
2158                         break;
2159                 }
2160         } else {
2161                 /* speed up */
2162                 _session->request_transport_speed (current_transport_speed * 1.5f);
2163         }
2164 }
2165
2166 void
2167 ARDOUR_UI::toggle_record_enable (uint32_t rid)
2168 {
2169         if (!_session) {
2170                 return;
2171         }
2172
2173         boost::shared_ptr<Route> r;
2174
2175         if ((r = _session->route_by_remote_id (rid)) != 0) {
2176
2177                 Track* t;
2178
2179                 if ((t = dynamic_cast<Track*>(r.get())) != 0) {
2180                         t->set_record_enabled (!t->record_enabled(), this);
2181                 }
2182         }
2183 }
2184
2185 void
2186 ARDOUR_UI::map_transport_state ()
2187 {
2188         if (!_session) {
2189                 auto_loop_button.unset_active_state ();
2190                 play_selection_button.unset_active_state ();
2191                 roll_button.unset_active_state ();
2192                 stop_button.set_active_state (Gtkmm2ext::ExplicitActive);
2193                 return;
2194         }
2195
2196         shuttle_box->map_transport_state ();
2197
2198         float sp = _session->transport_speed();
2199
2200         if (sp != 0.0f) {
2201
2202                 /* we're rolling */
2203
2204                 if (_session->get_play_range()) {
2205
2206                         play_selection_button.set_active_state (Gtkmm2ext::ExplicitActive);
2207                         roll_button.unset_active_state ();
2208                         auto_loop_button.unset_active_state ();
2209
2210                 } else if (_session->get_play_loop ()) {
2211
2212                         auto_loop_button.set_active (true);
2213                         play_selection_button.set_active (false);
2214                         if (Config->get_loop_is_mode()) {
2215                                 roll_button.set_active (true);
2216                         } else {
2217                                 roll_button.set_active (false);
2218                         }
2219
2220                 } else {
2221
2222                         roll_button.set_active (true);
2223                         play_selection_button.set_active (false);
2224                         auto_loop_button.set_active (false);
2225                 }
2226
2227                 if (ARDOUR_UI::config()->get_follow_edits()) {
2228                         /* light up both roll and play-selection if they are joined */
2229                         roll_button.set_active (true);
2230                         play_selection_button.set_active (true);
2231                 }
2232
2233                 stop_button.set_active (false);
2234
2235         } else {
2236
2237                 stop_button.set_active (true);
2238                 roll_button.set_active (false);
2239                 play_selection_button.set_active (false);
2240                 if (Config->get_loop_is_mode ()) {
2241                         auto_loop_button.set_active (_session->get_play_loop());
2242                 } else {
2243                         auto_loop_button.set_active (false);
2244                 }
2245                 update_disk_space ();
2246         }
2247 }
2248
2249 void
2250 ARDOUR_UI::blink_handler (bool blink_on)
2251 {
2252         transport_rec_enable_blink (blink_on);
2253         solo_blink (blink_on);
2254         sync_blink (blink_on);
2255         audition_blink (blink_on);
2256         feedback_blink (blink_on);
2257 }
2258
2259 void
2260 ARDOUR_UI::update_clocks ()
2261 {
2262         if (!_session) return;
2263
2264         if (editor && !editor->dragging_playhead()) {
2265                 Clock (_session->audible_frame(), false, editor->get_preferred_edit_position()); /* EMIT_SIGNAL */
2266         }
2267 }
2268
2269 void
2270 ARDOUR_UI::start_clocking ()
2271 {
2272         if (ui_config->get_super_rapid_clock_update()) {
2273                 clock_signal_connection = Timers::fps_connect (sigc::mem_fun(*this, &ARDOUR_UI::update_clocks));
2274         } else {
2275                 clock_signal_connection = Timers::rapid_connect (sigc::mem_fun(*this, &ARDOUR_UI::update_clocks));
2276         }
2277 }
2278
2279 void
2280 ARDOUR_UI::stop_clocking ()
2281 {
2282         clock_signal_connection.disconnect ();
2283 }
2284
2285 void
2286 ARDOUR_UI::save_session_as ()
2287 {
2288         
2289 }
2290
2291 /** Ask the user for the name of a new snapshot and then take it.
2292  */
2293
2294 void
2295 ARDOUR_UI::snapshot_session (bool switch_to_it)
2296 {
2297         ArdourPrompter prompter (true);
2298         string snapname;
2299
2300         prompter.set_name ("Prompter");
2301         prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
2302         if (switch_to_it) {
2303                 prompter.set_title (_("Save as..."));
2304                 prompter.set_prompt (_("New session name"));
2305         } else {
2306                 prompter.set_title (_("Take Snapshot"));
2307                 prompter.set_prompt (_("Name of new snapshot"));
2308         }
2309
2310         if (!switch_to_it) {
2311                 char timebuf[128];
2312                 time_t n;
2313                 struct tm local_time;
2314
2315                 time (&n);
2316                 localtime_r (&n, &local_time);
2317                 strftime (timebuf, sizeof(timebuf), "%FT%H.%M.%S", &local_time);
2318                 prompter.set_initial_text (timebuf);
2319         }
2320
2321   again:
2322         switch (prompter.run()) {
2323         case RESPONSE_ACCEPT:
2324         {
2325                 prompter.get_result (snapname);
2326
2327                 bool do_save = (snapname.length() != 0);
2328
2329                 if (do_save) {
2330                         char illegal = Session::session_name_is_legal(snapname);
2331                         if (illegal) {
2332                                 MessageDialog msg (string_compose (_("To ensure compatibility with various systems\n"
2333                                                      "snapshot names may not contain a '%1' character"), illegal));
2334                                 msg.run ();
2335                                 goto again;
2336                         }
2337                 }
2338
2339                 vector<std::string> p;
2340                 get_state_files_in_directory (_session->session_directory().root_path(), p);
2341                 vector<string> n = get_file_names_no_extension (p);
2342                 if (find (n.begin(), n.end(), snapname) != n.end()) {
2343
2344                         ArdourDialog confirm (_("Confirm Snapshot Overwrite"), true);
2345                         Label m (_("A snapshot already exists with that name.  Do you want to overwrite it?"));
2346                         confirm.get_vbox()->pack_start (m, true, true);
2347                         confirm.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2348                         confirm.add_button (_("Overwrite"), Gtk::RESPONSE_ACCEPT);
2349                         confirm.show_all ();
2350                         switch (confirm.run()) {
2351                         case RESPONSE_CANCEL:
2352                                 do_save = false;
2353                         }
2354                 }
2355
2356                 if (do_save) {
2357                         save_state (snapname, switch_to_it);
2358                 }
2359                 break;
2360         }
2361
2362         default:
2363                 break;
2364         }
2365 }
2366
2367 /** Ask the user for a new session name and then rename the session to it.
2368  */
2369
2370 void
2371 ARDOUR_UI::rename_session ()
2372 {
2373         if (!_session) {
2374                 return;
2375         }
2376
2377         ArdourPrompter prompter (true);
2378         string name;
2379
2380         prompter.set_name ("Prompter");
2381         prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
2382         prompter.set_title (_("Rename Session"));
2383         prompter.set_prompt (_("New session name"));
2384
2385   again:
2386         switch (prompter.run()) {
2387         case RESPONSE_ACCEPT:
2388         {
2389                 prompter.get_result (name);
2390
2391                 bool do_rename = (name.length() != 0);
2392
2393                 if (do_rename) {
2394                         char illegal = Session::session_name_is_legal (name);
2395
2396                         if (illegal) {
2397                                 MessageDialog msg (string_compose (_("To ensure compatibility with various systems\n"
2398                                                                      "session names may not contain a '%1' character"), illegal));
2399                                 msg.run ();
2400                                 goto again;
2401                         }
2402
2403                         switch (_session->rename (name)) {
2404                         case -1: {
2405                                 MessageDialog msg (_("That name is already in use by another directory/folder. Please try again."));
2406                                 msg.set_position (WIN_POS_MOUSE);
2407                                 msg.run ();
2408                                 goto again;
2409                                 break;
2410                         }
2411                         case 0:
2412                                 break;
2413                         default: {
2414                                 MessageDialog msg (_("Renaming this session failed.\nThings could be seriously messed up at this point"));
2415                                 msg.set_position (WIN_POS_MOUSE);
2416                                 msg.run ();
2417                                 break;
2418                         }
2419                         }
2420                 }
2421                 
2422                 break;
2423         }
2424
2425         default:
2426                 break;
2427         }
2428 }
2429
2430 void
2431 ARDOUR_UI::save_state (const string & name, bool switch_to_it)
2432 {
2433         XMLNode* node = new XMLNode (X_("UI"));
2434
2435         WM::Manager::instance().add_state (*node);
2436
2437         node->add_child_nocopy (gui_object_state->get_state());
2438
2439         _session->add_extra_xml (*node);
2440
2441         save_state_canfail (name, switch_to_it);
2442 }
2443
2444 int
2445 ARDOUR_UI::save_state_canfail (string name, bool switch_to_it)
2446 {
2447         if (_session) {
2448                 int ret;
2449
2450                 if (name.length() == 0) {
2451                         name = _session->snap_name();
2452                 }
2453
2454                 if ((ret = _session->save_state (name, false, switch_to_it)) != 0) {
2455                         return ret;
2456                 }
2457         }
2458
2459         save_ardour_state (); /* XXX cannot fail? yeah, right ... */
2460         return 0;
2461 }
2462
2463 void
2464 ARDOUR_UI::primary_clock_value_changed ()
2465 {
2466         if (_session) {
2467                 _session->request_locate (primary_clock->current_time ());
2468         }
2469 }
2470
2471 void
2472 ARDOUR_UI::big_clock_value_changed ()
2473 {
2474         if (_session) {
2475                 _session->request_locate (big_clock->current_time ());
2476         }
2477 }
2478
2479 void
2480 ARDOUR_UI::secondary_clock_value_changed ()
2481 {
2482         if (_session) {
2483                 _session->request_locate (secondary_clock->current_time ());
2484         }
2485 }
2486
2487 void
2488 ARDOUR_UI::transport_rec_enable_blink (bool onoff)
2489 {
2490         if (_session == 0) {
2491                 return;
2492         }
2493
2494         if (_session->step_editing()) {
2495                 return;
2496         }
2497
2498         Session::RecordState const r = _session->record_status ();
2499         bool const h = _session->have_rec_enabled_track ();
2500
2501         if (r == Session::Enabled || (r == Session::Recording && !h)) {
2502                 if (onoff) {
2503                         rec_button.set_active_state (Gtkmm2ext::ExplicitActive);
2504                 } else {
2505                         rec_button.set_active_state (Gtkmm2ext::Off);
2506                 }
2507         } else if (r == Session::Recording && h) {
2508                 rec_button.set_active_state (Gtkmm2ext::ExplicitActive);
2509         } else {
2510                 rec_button.unset_active_state ();
2511         }
2512 }
2513
2514 void
2515 ARDOUR_UI::save_template ()
2516 {
2517         ArdourPrompter prompter (true);
2518         string name;
2519
2520         if (!check_audioengine()) {
2521                 return;
2522         }
2523
2524         prompter.set_name (X_("Prompter"));
2525         prompter.set_title (_("Save Template"));
2526         prompter.set_prompt (_("Name for template:"));
2527         prompter.set_initial_text(_session->name() + _("-template"));
2528         prompter.add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
2529
2530         switch (prompter.run()) {
2531         case RESPONSE_ACCEPT:
2532                 prompter.get_result (name);
2533
2534                 if (name.length()) {
2535                         _session->save_template (name);
2536                 }
2537                 break;
2538
2539         default:
2540                 break;
2541         }
2542 }
2543
2544 void
2545 ARDOUR_UI::edit_metadata ()
2546 {
2547         SessionMetadataEditor dialog;
2548         dialog.set_session (_session);
2549         editor->ensure_float (dialog);
2550         dialog.run ();
2551 }
2552
2553 void
2554 ARDOUR_UI::import_metadata ()
2555 {
2556         SessionMetadataImporter dialog;
2557         dialog.set_session (_session);
2558         editor->ensure_float (dialog);
2559         dialog.run ();
2560 }
2561
2562 bool
2563 ARDOUR_UI::ask_about_loading_existing_session (const std::string& session_path)
2564 {
2565         std::string str = string_compose (_("This session\n%1\nalready exists. Do you want to open it?"), session_path);
2566
2567         MessageDialog msg (str,
2568                            false,
2569                            Gtk::MESSAGE_WARNING,
2570                            Gtk::BUTTONS_YES_NO,
2571                            true);
2572
2573
2574         msg.set_name (X_("OpenExistingDialog"));
2575         msg.set_title (_("Open Existing Session"));
2576         msg.set_wmclass (X_("existing_session"), PROGRAM_NAME);
2577         msg.set_position (Gtk::WIN_POS_MOUSE);
2578         pop_back_splash (msg);
2579
2580         switch (msg.run()) {
2581         case RESPONSE_YES:
2582                 return true;
2583                 break;
2584         }
2585         return false;
2586 }
2587
2588 int
2589 ARDOUR_UI::build_session_from_dialog (SessionDialog& sd, const std::string& session_path, const std::string& session_name)
2590 {
2591         BusProfile bus_profile;
2592
2593         if (nsm || Profile->get_sae()) {
2594
2595                 bus_profile.master_out_channels = 2;
2596                 bus_profile.input_ac = AutoConnectPhysical;
2597                 bus_profile.output_ac = AutoConnectMaster;
2598                 bus_profile.requested_physical_in = 0; // use all available
2599                 bus_profile.requested_physical_out = 0; // use all available
2600
2601         } else {
2602
2603                 /* get settings from advanced section of NSD */
2604
2605                 if (sd.create_master_bus()) {
2606                         bus_profile.master_out_channels = (uint32_t) sd.master_channel_count();
2607                 } else {
2608                         bus_profile.master_out_channels = 0;
2609                 }
2610
2611                 if (sd.connect_inputs()) {
2612                         bus_profile.input_ac = AutoConnectPhysical;
2613                 } else {
2614                         bus_profile.input_ac = AutoConnectOption (0);
2615                 }
2616
2617                 bus_profile.output_ac = AutoConnectOption (0);
2618
2619                 if (sd.connect_outputs ()) {
2620                         if (sd.connect_outs_to_master()) {
2621                                 bus_profile.output_ac = AutoConnectMaster;
2622                         } else if (sd.connect_outs_to_physical()) {
2623                                 bus_profile.output_ac = AutoConnectPhysical;
2624                         }
2625                 }
2626
2627                 bus_profile.requested_physical_in = (uint32_t) sd.input_limit_count();
2628                 bus_profile.requested_physical_out = (uint32_t) sd.output_limit_count();
2629         }
2630
2631         if (build_session (session_path, session_name, bus_profile)) {
2632                 return -1;
2633         }
2634
2635         return 0;
2636 }
2637
2638 void
2639 ARDOUR_UI::idle_load (const std::string& path)
2640 {
2641         if (_session) {
2642                 if (Glib::file_test (path, Glib::FILE_TEST_IS_DIR)) {
2643                         /* /path/to/foo => /path/to/foo, foo */
2644                         load_session (path, basename_nosuffix (path));
2645                 } else {
2646                         /* /path/to/foo/foo.ardour => /path/to/foo, foo */
2647                         load_session (Glib::path_get_dirname (path), basename_nosuffix (path));
2648                 }
2649
2650         } else {
2651                 ARDOUR_COMMAND_LINE::session_name = path;
2652         }
2653 }
2654
2655 /** @param quit_on_cancel true if exit() should be called if the user clicks `cancel' in the new session dialog */
2656 int
2657 ARDOUR_UI::get_session_parameters (bool quit_on_cancel, bool should_be_new, string load_template)
2658 {
2659         string session_name;
2660         string session_path;
2661         string template_name;
2662         int ret = -1;
2663         bool likely_new = false;
2664         bool cancel_not_quit;
2665
2666         /* deal with any existing DIRTY session now, rather than later. don't
2667          * treat a non-dirty session this way, so that it stays visible 
2668          * as we bring up the new session dialog.
2669          */
2670
2671         if (_session && ARDOUR_UI::instance()->video_timeline) {
2672                 ARDOUR_UI::instance()->video_timeline->sync_session_state();
2673         }
2674
2675         /* if there is already a session, relabel the button
2676            on the SessionDialog so that we don't Quit directly
2677         */
2678         cancel_not_quit = (_session != 0);
2679
2680         if (_session && _session->dirty()) {
2681                 if (unload_session (false)) {
2682                         /* unload cancelled by user */
2683                         return 0;
2684                 }
2685                 ARDOUR_COMMAND_LINE::session_name = "";
2686         }
2687
2688         if (!load_template.empty()) {
2689                 should_be_new = true;
2690                 template_name = load_template;
2691         }
2692
2693         session_name = basename_nosuffix (ARDOUR_COMMAND_LINE::session_name);
2694         session_path = ARDOUR_COMMAND_LINE::session_name;
2695         
2696         if (!session_path.empty()) {
2697                 if (Glib::file_test (session_path.c_str(), Glib::FILE_TEST_EXISTS)) {
2698                         if (Glib::file_test (session_path.c_str(), Glib::FILE_TEST_IS_REGULAR)) {
2699                                 /* session/snapshot file, change path to be dir */
2700                                 session_path = Glib::path_get_dirname (session_path);
2701                         }
2702                 }
2703         }
2704
2705         SessionDialog session_dialog (should_be_new, session_name, session_path, load_template, cancel_not_quit);
2706
2707         while (ret != 0) {
2708
2709                 if (!ARDOUR_COMMAND_LINE::session_name.empty()) {
2710
2711                         /* if they named a specific statefile, use it, otherwise they are
2712                            just giving a session folder, and we want to use it as is
2713                            to find the session.
2714                         */
2715
2716                         string::size_type suffix = ARDOUR_COMMAND_LINE::session_name.find (statefile_suffix);
2717
2718                         if (suffix != string::npos) {
2719                                 session_path = Glib::path_get_dirname (ARDOUR_COMMAND_LINE::session_name);
2720                                 session_name = ARDOUR_COMMAND_LINE::session_name.substr (0, suffix);
2721                                 session_name = Glib::path_get_basename (session_name);
2722                         } else {
2723                                 session_path = ARDOUR_COMMAND_LINE::session_name;
2724                                 session_name = Glib::path_get_basename (ARDOUR_COMMAND_LINE::session_name);
2725                         }
2726                 } else {
2727                         session_path = "";
2728                         session_name = "";
2729                         session_dialog.clear_given ();
2730                 }
2731                 
2732                 if (should_be_new || session_name.empty()) {
2733                         /* need the dialog to get info from user */
2734
2735                         cerr << "run dialog\n";
2736
2737                         switch (session_dialog.run()) {
2738                         case RESPONSE_ACCEPT:
2739                                 break;
2740                         default:
2741                                 if (quit_on_cancel) {
2742                                         // JE - Currently (July 2014) this section can only get reached if the
2743                                         // user quits from the main 'Session Setup' dialog (i.e. reaching this
2744                                         // point does NOT indicate an abnormal termination). Therefore, let's
2745                                         // behave gracefully (i.e. let's do some cleanup) before we call exit()
2746                                         ARDOUR::cleanup ();
2747                                         pthread_cancel_all ();
2748
2749                                         exit (1);
2750                                 } else {
2751                                         return ret;
2752                                 }
2753                         }
2754
2755                         session_dialog.hide ();
2756                 }
2757
2758                 /* if we run the startup dialog again, offer more than just "new session" */
2759                 
2760                 should_be_new = false;
2761                 
2762                 session_name = session_dialog.session_name (likely_new);
2763                 session_path = session_dialog.session_folder ();
2764
2765                 if (nsm) {
2766                         likely_new = true;
2767                 }
2768
2769                 string::size_type suffix = session_name.find (statefile_suffix);
2770                 
2771                 if (suffix != string::npos) {
2772                         session_name = session_name.substr (0, suffix);
2773                 }
2774                 
2775                 /* this shouldn't happen, but we catch it just in case it does */
2776                 
2777                 if (session_name.empty()) {
2778                         continue;
2779                 }
2780                 
2781                 if (session_dialog.use_session_template()) {
2782                         template_name = session_dialog.session_template_name();
2783                         _session_is_new = true;
2784                 }
2785                 
2786                 if (session_name[0] == G_DIR_SEPARATOR ||
2787 #ifdef PLATFORM_WINDOWS
2788                     (session_name.length() > 3 && session_name[1] == ':' && session_name[2] == G_DIR_SEPARATOR)
2789 #else
2790                     (session_name.length() > 2 && session_name[0] == '.' && session_name[1] == G_DIR_SEPARATOR) ||
2791                     (session_name.length() > 3 && session_name[0] == '.' && session_name[1] == '.' && session_name[2] == G_DIR_SEPARATOR)
2792 #endif
2793                          )
2794                 {
2795                         
2796                         /* absolute path or cwd-relative path specified for session name: infer session folder
2797                            from what was given.
2798                         */
2799                         
2800                         session_path = Glib::path_get_dirname (session_name);
2801                         session_name = Glib::path_get_basename (session_name);
2802                         
2803                 } else {
2804
2805                         session_path = session_dialog.session_folder();
2806                         
2807                         char illegal = Session::session_name_is_legal (session_name);
2808                         
2809                         if (illegal) {
2810                                 MessageDialog msg (session_dialog,
2811                                                    string_compose (_("To ensure compatibility with various systems\n"
2812                                                                      "session names may not contain a '%1' character"),
2813                                                                    illegal));
2814                                 msg.run ();
2815                                 ARDOUR_COMMAND_LINE::session_name = ""; // cancel that
2816                                 continue;
2817                         }
2818                 }
2819         
2820                 if (Glib::file_test (session_path, Glib::FileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))) {
2821
2822
2823                         if (likely_new && !nsm) {
2824
2825                                 std::string existing = Glib::build_filename (session_path, session_name);
2826
2827                                 if (!ask_about_loading_existing_session (existing)) {
2828                                         ARDOUR_COMMAND_LINE::session_name = ""; // cancel that
2829                                         continue;
2830                                 }
2831                         }
2832
2833                         _session_is_new = false;
2834
2835                 } else {
2836
2837                         if (!likely_new) {
2838                                 pop_back_splash (session_dialog);
2839                                 MessageDialog msg (string_compose (_("There is no existing session at \"%1\""), session_path));
2840                                 msg.run ();
2841                                 ARDOUR_COMMAND_LINE::session_name = ""; // cancel that
2842                                 continue;
2843                         }
2844
2845                         char illegal = Session::session_name_is_legal(session_name);
2846
2847                         if (illegal) {
2848                                 pop_back_splash (session_dialog);
2849                                 MessageDialog msg (session_dialog, string_compose(_("To ensure compatibility with various systems\n"
2850                                                                                     "session names may not contain a '%1' character"), illegal));
2851                                 msg.run ();
2852                                 ARDOUR_COMMAND_LINE::session_name = ""; // cancel that
2853                                 continue;
2854                         }
2855
2856                         _session_is_new = true;
2857                 }
2858
2859                 if (likely_new && template_name.empty()) {
2860
2861                         ret = build_session_from_dialog (session_dialog, session_path, session_name);
2862
2863                 } else {
2864
2865                         ret = load_session (session_path, session_name, template_name);
2866
2867                         if (ret == -2) {
2868                                 /* not connected to the AudioEngine, so quit to avoid an infinite loop */
2869                                 exit (1);
2870                         }
2871
2872                         if (!ARDOUR_COMMAND_LINE::immediate_save.empty()) {
2873                                 _session->save_state (ARDOUR_COMMAND_LINE::immediate_save, false);
2874                                 exit (1);
2875                         }
2876
2877                         /* clear this to avoid endless attempts to load the
2878                            same session.
2879                         */
2880
2881                         ARDOUR_COMMAND_LINE::session_name = "";
2882                 }
2883         }
2884
2885         return ret;
2886 }
2887
2888 void
2889 ARDOUR_UI::close_session()
2890 {
2891         if (!check_audioengine()) {
2892                 return;
2893         }
2894
2895         if (unload_session (true)) {
2896                 return;
2897         }
2898
2899         ARDOUR_COMMAND_LINE::session_name = "";
2900
2901         if (get_session_parameters (true, false)) {
2902                 exit (1);
2903         }
2904
2905         goto_editor_window ();
2906 }
2907
2908 /** @param snap_name Snapshot name (without .ardour suffix).
2909  *  @return -2 if the load failed because we are not connected to the AudioEngine.
2910  */
2911 int
2912 ARDOUR_UI::load_session (const std::string& path, const std::string& snap_name, std::string mix_template)
2913 {
2914         Session *new_session;
2915         int unload_status;
2916         int retval = -1;
2917
2918         if (_session) {
2919                 unload_status = unload_session ();
2920                 
2921                 if (unload_status < 0) {
2922                         goto out;
2923                 } else if (unload_status > 0) {
2924                         retval = 0;
2925                         goto out;
2926                 }
2927         }
2928
2929         session_loaded = false;
2930
2931         loading_message (string_compose (_("Please wait while %1 loads your session"), PROGRAM_NAME));
2932
2933         try {
2934                 new_session = new Session (*AudioEngine::instance(), path, snap_name, 0, mix_template);
2935         }
2936
2937         /* this one is special */
2938
2939         catch (AudioEngine::PortRegistrationFailure& err) {
2940
2941                 MessageDialog msg (err.what(),
2942                                    true,
2943                                    Gtk::MESSAGE_INFO,
2944                                    Gtk::BUTTONS_CLOSE);
2945
2946                 msg.set_title (_("Port Registration Error"));
2947                 msg.set_secondary_text (_("Click the Close button to try again."));
2948                 msg.set_position (Gtk::WIN_POS_CENTER);
2949                 pop_back_splash (msg);
2950                 msg.present ();
2951
2952                 int response = msg.run ();
2953
2954                 msg.hide ();
2955
2956                 switch (response) {
2957                 case RESPONSE_CANCEL:
2958                         exit (1);
2959                 default:
2960                         break;
2961                 }
2962                 goto out;
2963         }
2964
2965         catch (...) {
2966
2967                 MessageDialog msg (string_compose(
2968                                            _("Session \"%1 (snapshot %2)\" did not load successfully"),
2969                                            path, snap_name),
2970                                    true,
2971                                    Gtk::MESSAGE_INFO,
2972                                    BUTTONS_OK);
2973
2974                 msg.set_keep_above (true);
2975                 msg.set_title (_("Loading Error"));
2976                 msg.set_position (Gtk::WIN_POS_CENTER);
2977                 pop_back_splash (msg);
2978                 msg.present ();
2979                 (void) msg.run ();
2980                 msg.hide ();
2981
2982                 goto out;
2983         }
2984
2985         {
2986                 list<string> const u = new_session->unknown_processors ();
2987                 if (!u.empty()) {
2988                         MissingPluginDialog d (_session, u);
2989                         d.run ();
2990                 }
2991         }
2992
2993         if (!new_session->writable()) {
2994                 MessageDialog msg (_("This session has been opened in read-only mode.\n\nYou will not be able to record or save."),
2995                                    true,
2996                                    Gtk::MESSAGE_INFO,
2997                                    BUTTONS_OK);
2998                 
2999                 msg.set_keep_above (true);
3000                 msg.set_title (_("Read-only Session"));
3001                 msg.set_position (Gtk::WIN_POS_CENTER);
3002                 pop_back_splash (msg);
3003                 msg.present ();
3004                 (void) msg.run ();
3005                 msg.hide ();
3006         }
3007         
3008
3009         /* Now the session been created, add the transport controls */
3010         new_session->add_controllable(roll_controllable);
3011         new_session->add_controllable(stop_controllable);
3012         new_session->add_controllable(goto_start_controllable);
3013         new_session->add_controllable(goto_end_controllable);
3014         new_session->add_controllable(auto_loop_controllable);
3015         new_session->add_controllable(play_selection_controllable);
3016         new_session->add_controllable(rec_controllable);
3017
3018         set_session (new_session);
3019
3020         session_loaded = true;
3021
3022         goto_editor_window ();
3023
3024         if (_session) {
3025                 _session->set_clean ();
3026         }
3027
3028 #ifdef WINDOWS_VST_SUPPORT
3029         fst_stop_threading();
3030 #endif
3031
3032         flush_pending ();
3033
3034 #ifdef WINDOWS_VST_SUPPORT
3035         fst_start_threading();
3036 #endif
3037         retval = 0;
3038
3039   out:
3040         return retval;
3041 }
3042
3043 int
3044 ARDOUR_UI::build_session (const std::string& path, const std::string& snap_name, BusProfile& bus_profile)
3045 {
3046         Session *new_session;
3047         int x;
3048
3049         session_loaded = false;
3050         x = unload_session ();
3051
3052         if (x < 0) {
3053                 return -1;
3054         } else if (x > 0) {
3055                 return 0;
3056         }
3057
3058         _session_is_new = true;
3059
3060         try {
3061                 new_session = new Session (*AudioEngine::instance(), path, snap_name, &bus_profile);
3062         }
3063
3064         catch (...) {
3065
3066                 MessageDialog msg (string_compose(_("Could not create session in \"%1\""), path));
3067                 pop_back_splash (msg);
3068                 msg.run ();
3069                 return -1;
3070         }
3071
3072         /* Give the new session the default GUI state, if such things exist */
3073
3074         XMLNode* n;
3075         n = Config->instant_xml (X_("Editor"));
3076         if (n) {
3077                 new_session->add_instant_xml (*n, false);
3078         }
3079         n = Config->instant_xml (X_("Mixer"));
3080         if (n) {
3081                 new_session->add_instant_xml (*n, false);
3082         }
3083
3084         /* Put the playhead at 0 and scroll fully left */
3085         n = new_session->instant_xml (X_("Editor"));
3086         if (n) {
3087                 n->add_property (X_("playhead"), X_("0"));
3088                 n->add_property (X_("left-frame"), X_("0"));
3089         }
3090
3091         set_session (new_session);
3092
3093         session_loaded = true;
3094
3095         new_session->save_state(new_session->name());
3096
3097         return 0;
3098 }
3099
3100 void
3101 ARDOUR_UI::launch_chat ()
3102 {
3103 #ifdef __APPLE__
3104         open_uri("http://webchat.freenode.net/?channels=ardour-osx");
3105 #elif defined PLATFORM_WINDOWS
3106         open_uri("http://webchat.freenode.net/?channels=ardour-windows");
3107 #else
3108         open_uri("http://webchat.freenode.net/?channels=ardour");
3109 #endif
3110 }
3111
3112 void
3113 ARDOUR_UI::launch_manual ()
3114 {
3115         PBD::open_uri (Config->get_tutorial_manual_url());
3116 }
3117
3118 void
3119 ARDOUR_UI::launch_reference ()
3120 {
3121         PBD::open_uri (Config->get_reference_manual_url());
3122 }
3123
3124 void
3125 ARDOUR_UI::launch_tracker ()
3126 {
3127         PBD::open_uri ("http://tracker.ardour.org/bug_report_page.php");
3128 }
3129
3130 void
3131 ARDOUR_UI::launch_cheat_sheet ()
3132 {
3133 #ifdef __APPLE__
3134         PBD::open_uri ("http://manual.ardour.org/files/a3_mnemonic_cheat_sheet_osx.pdf");
3135 #else
3136         PBD::open_uri ("http://manual.ardour.org/files/a3_mnemonic_cheatsheet.pdf");
3137 #endif
3138 }
3139
3140 void
3141 ARDOUR_UI::launch_website ()
3142 {
3143         PBD::open_uri ("http://ardour.org");
3144 }
3145
3146 void
3147 ARDOUR_UI::launch_website_dev ()
3148 {
3149         PBD::open_uri ("http://ardour.org/development.html");
3150 }
3151
3152 void
3153 ARDOUR_UI::launch_forums ()
3154 {
3155         PBD::open_uri ("https://community.ardour.org/forums");
3156 }
3157
3158 void
3159 ARDOUR_UI::launch_howto_report ()
3160 {
3161         PBD::open_uri ("http://ardour.org/reporting_bugs");
3162 }
3163
3164 void
3165 ARDOUR_UI::loading_message (const std::string& msg)
3166 {
3167         if (ARDOUR_COMMAND_LINE::no_splash) {
3168                 return;
3169         }
3170
3171         if (!splash) {
3172                 show_splash ();
3173         }
3174
3175         splash->message (msg);
3176 }
3177
3178 void
3179 ARDOUR_UI::show_splash ()
3180 {
3181         if (splash == 0) {
3182                 try {
3183                         splash = new Splash;
3184                 } catch (...) {
3185                         return;
3186                 }
3187         }
3188
3189         splash->display ();
3190 }
3191
3192 void
3193 ARDOUR_UI::hide_splash ()
3194 {
3195         delete splash;
3196         splash = 0;
3197 }
3198
3199 void
3200 ARDOUR_UI::display_cleanup_results (ARDOUR::CleanupReport& rep, const gchar* list_title, const bool msg_delete)
3201 {
3202         size_t removed;
3203
3204         removed = rep.paths.size();
3205
3206         if (removed == 0) {
3207                 MessageDialog msgd (*editor,
3208                                     _("No files were ready for clean-up"),
3209                                     true,
3210                                     Gtk::MESSAGE_INFO,
3211                                     Gtk::BUTTONS_OK);
3212                 msgd.set_title (_("Clean-up"));
3213                 msgd.set_secondary_text (_("If this seems suprising, \n\
3214 check for any existing snapshots.\n\
3215 These may still include regions that\n\
3216 require some unused files to continue to exist."));
3217
3218                 msgd.run ();
3219                 return;
3220         }
3221
3222         ArdourDialog results (_("Clean-up"), true, false);
3223
3224         struct CleanupResultsModelColumns : public Gtk::TreeModel::ColumnRecord {
3225             CleanupResultsModelColumns() {
3226                     add (visible_name);
3227                     add (fullpath);
3228             }
3229             Gtk::TreeModelColumn<std::string> visible_name;
3230             Gtk::TreeModelColumn<std::string> fullpath;
3231         };
3232
3233
3234         CleanupResultsModelColumns results_columns;
3235         Glib::RefPtr<Gtk::ListStore> results_model;
3236         Gtk::TreeView results_display;
3237
3238         results_model = ListStore::create (results_columns);
3239         results_display.set_model (results_model);
3240         results_display.append_column (list_title, results_columns.visible_name);
3241
3242         results_display.set_name ("CleanupResultsList");
3243         results_display.set_headers_visible (true);
3244         results_display.set_headers_clickable (false);
3245         results_display.set_reorderable (false);
3246
3247         Gtk::ScrolledWindow list_scroller;
3248         Gtk::Label txt;
3249         Gtk::VBox dvbox;
3250         Gtk::HBox dhbox;  // the hbox for the image and text
3251         Gtk::HBox ddhbox; // the hbox we eventually pack into the dialog's vbox
3252         Gtk::Image* dimage = manage (new Gtk::Image(Stock::DIALOG_INFO,  Gtk::ICON_SIZE_DIALOG));
3253
3254         dimage->set_alignment(ALIGN_LEFT, ALIGN_TOP);
3255
3256         const string dead_directory = _session->session_directory().dead_path();
3257
3258         /* subst:
3259            %1 - number of files removed
3260            %2 - location of "dead"
3261            %3 - size of files affected
3262            %4 - prefix for "bytes" to produce sensible results (e.g. mega, kilo, giga)
3263         */
3264
3265         const char* bprefix;
3266         double space_adjusted = 0;
3267
3268         if (rep.space < 1000) {
3269                 bprefix = X_("");
3270                 space_adjusted = rep.space;
3271         } else if (rep.space < 1000000) {
3272                 bprefix = _("kilo");
3273                 space_adjusted = floorf((float)rep.space / 1000.0);
3274         } else if (rep.space < 1000000 * 1000) {
3275                 bprefix = _("mega");
3276                 space_adjusted = floorf((float)rep.space / (1000.0 * 1000.0));
3277         } else {
3278                 bprefix = _("giga");
3279                 space_adjusted = floorf((float)rep.space / (1000.0 * 1000 * 1000.0));
3280         }
3281
3282         if (msg_delete) {
3283                 txt.set_markup (string_compose (P_("\
3284 The following file was deleted from %2,\n\
3285 releasing %3 %4bytes of disk space", "\
3286 The following %1 files were deleted from %2,\n\
3287 releasing %3 %4bytes of disk space", removed),
3288                                         removed, Glib::Markup::escape_text (dead_directory), space_adjusted, bprefix, PROGRAM_NAME));
3289         } else {
3290                 txt.set_markup (string_compose (P_("\
3291 The following file was not in use and \n\
3292 has been moved to: %2\n\n\
3293 After a restart of %5\n\n\
3294 <span face=\"mono\">Session -> Clean-up -> Flush Wastebasket</span>\n\n\
3295 will release an additional %3 %4bytes of disk space.\n", "\
3296 The following %1 files were not in use and \n\
3297 have been moved to: %2\n\n\
3298 After a restart of %5\n\n\
3299 <span face=\"mono\">Session -> Clean-up -> Flush Wastebasket</span>\n\n\
3300 will release an additional %3 %4bytes of disk space.\n", removed),
3301                                         removed, Glib::Markup::escape_text (dead_directory), space_adjusted, bprefix, PROGRAM_NAME));
3302         }
3303
3304         dhbox.pack_start (*dimage, true, false, 5);
3305         dhbox.pack_start (txt, true, false, 5);
3306
3307         for (vector<string>::iterator i = rep.paths.begin(); i != rep.paths.end(); ++i) {
3308                 TreeModel::Row row = *(results_model->append());
3309                 row[results_columns.visible_name] = *i;
3310                 row[results_columns.fullpath] = *i;
3311         }
3312
3313         list_scroller.add (results_display);
3314         list_scroller.set_size_request (-1, 150);
3315         list_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
3316
3317         dvbox.pack_start (dhbox, true, false, 5);
3318         dvbox.pack_start (list_scroller, true, false, 5);
3319         ddhbox.pack_start (dvbox, true, false, 5);
3320
3321         results.get_vbox()->pack_start (ddhbox, true, false, 5);
3322         results.add_button (Stock::CLOSE, RESPONSE_CLOSE);
3323         results.set_default_response (RESPONSE_CLOSE);
3324         results.set_position (Gtk::WIN_POS_MOUSE);
3325
3326         results_display.show();
3327         list_scroller.show();
3328         txt.show();
3329         dvbox.show();
3330         dhbox.show();
3331         ddhbox.show();
3332         dimage->show();
3333
3334         //results.get_vbox()->show();
3335         results.set_resizable (false);
3336
3337         results.run ();
3338
3339 }
3340
3341 void
3342 ARDOUR_UI::cleanup ()
3343 {
3344         if (_session == 0) {
3345                 /* shouldn't happen: menu item is insensitive */
3346                 return;
3347         }
3348
3349
3350         MessageDialog checker (_("Are you sure you want to clean-up?"),
3351                                 true,
3352                                 Gtk::MESSAGE_QUESTION,
3353                                 Gtk::BUTTONS_NONE);
3354
3355         checker.set_title (_("Clean-up"));
3356
3357         checker.set_secondary_text(_("Clean-up is a destructive operation.\n\
3358 ALL undo/redo information will be lost if you clean-up.\n\
3359 Clean-up will move all unused files to a \"dead\" location."));
3360
3361         checker.add_button (Stock::CANCEL, RESPONSE_CANCEL);
3362         checker.add_button (_("Clean-up"), RESPONSE_ACCEPT);
3363         checker.set_default_response (RESPONSE_CANCEL);
3364
3365         checker.set_name (_("CleanupDialog"));
3366         checker.set_wmclass (X_("ardour_cleanup"), PROGRAM_NAME);
3367         checker.set_position (Gtk::WIN_POS_MOUSE);
3368
3369         switch (checker.run()) {
3370         case RESPONSE_ACCEPT:
3371                 break;
3372         default:
3373                 return;
3374         }
3375
3376         ARDOUR::CleanupReport rep;
3377
3378         editor->prepare_for_cleanup ();
3379
3380         /* do not allow flush until a session is reloaded */
3381
3382         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Main"), X_("FlushWastebasket"));
3383         if (act) {
3384                 act->set_sensitive (false);
3385         }
3386
3387         if (_session->cleanup_sources (rep)) {
3388                 editor->finish_cleanup ();
3389                 return;
3390         }
3391
3392         editor->finish_cleanup ();
3393
3394         checker.hide();
3395         display_cleanup_results (rep, _("Cleaned Files"), false);
3396 }
3397
3398 void
3399 ARDOUR_UI::flush_trash ()
3400 {
3401         if (_session == 0) {
3402                 /* shouldn't happen: menu item is insensitive */
3403                 return;
3404         }
3405
3406         ARDOUR::CleanupReport rep;
3407
3408         if (_session->cleanup_trash_sources (rep)) {
3409                 return;
3410         }
3411
3412         display_cleanup_results (rep, _("deleted file"), true);
3413 }
3414
3415 void
3416 ARDOUR_UI::setup_order_hint ()
3417 {
3418         uint32_t order_hint = 0;
3419
3420         /*
3421           we want the new routes to have their order keys set starting from 
3422           the highest order key in the selection + 1 (if available).
3423         */
3424         if (add_route_dialog->get_transient_for () == mixer->get_toplevel()) {
3425                 for (RouteUISelection::iterator s = mixer->selection().routes.begin(); s != mixer->selection().routes.end(); ++s) {
3426                         if ((*s)->route()->order_key() > order_hint) {
3427                                 order_hint = (*s)->route()->order_key();
3428                         }
3429                 }
3430
3431                 if (!mixer->selection().routes.empty()) {
3432                         order_hint++;
3433                 }
3434
3435         } else {
3436                 for (TrackSelection::iterator s = editor->get_selection().tracks.begin(); s != editor->get_selection().tracks.end(); ++s) {
3437                         RouteTimeAxisView* tav = dynamic_cast<RouteTimeAxisView*> (*s);
3438                         if (tav && tav->route() && tav->route()->order_key() > order_hint) {
3439                                 order_hint = tav->route()->order_key();
3440                         }
3441                 }
3442
3443                 if (!editor->get_selection().tracks.empty()) {
3444                         order_hint++;
3445                 }
3446         }
3447
3448         _session->set_order_hint (order_hint);
3449
3450         /* create a gap in the existing route order keys to accomodate new routes.*/
3451
3452         boost::shared_ptr <RouteList> rd = _session->get_routes();
3453         for (RouteList::iterator ri = rd->begin(); ri != rd->end(); ++ri) {
3454                 boost::shared_ptr<Route> rt (*ri);
3455                         
3456                 if (rt->is_monitor()) {
3457                         continue;
3458                 }
3459
3460                 if (rt->order_key () >= order_hint) {
3461                         rt->set_order_key (rt->order_key () + add_route_dialog->count());
3462                 }
3463         }
3464 }
3465
3466 void
3467 ARDOUR_UI::add_route (Gtk::Window* float_window)
3468 {
3469         int count;
3470
3471         if (!_session) {
3472                 return;
3473         }
3474
3475         if (add_route_dialog->is_visible()) {
3476                 /* we're already doing this */
3477                 return;
3478         }
3479
3480         if (float_window) {
3481                 add_route_dialog->unset_transient_for ();
3482                 add_route_dialog->set_transient_for (*float_window);
3483         }
3484
3485         ResponseType r = (ResponseType) add_route_dialog->run ();
3486
3487         add_route_dialog->hide();
3488
3489         switch (r) {
3490                 case RESPONSE_ACCEPT:
3491                         break;
3492                 default:
3493                         return;
3494                         break;
3495         }
3496
3497         if ((count = add_route_dialog->count()) <= 0) {
3498                 return;
3499         }
3500
3501         setup_order_hint();
3502
3503         string template_path = add_route_dialog->track_template();
3504         DisplaySuspender ds;
3505
3506         if (!template_path.empty()) {
3507                 if (add_route_dialog->name_template_is_default())  {
3508                         _session->new_route_from_template (count, template_path, string());
3509                 } else {
3510                         _session->new_route_from_template (count, template_path, add_route_dialog->name_template());
3511                 }
3512                 return;
3513         }
3514
3515         ChanCount input_chan= add_route_dialog->channels ();
3516         ChanCount output_chan;
3517         string name_template = add_route_dialog->name_template ();
3518         PluginInfoPtr instrument = add_route_dialog->requested_instrument ();
3519         RouteGroup* route_group = add_route_dialog->route_group ();
3520         AutoConnectOption oac = Config->get_output_auto_connect();
3521
3522         if (oac & AutoConnectMaster) {
3523                 output_chan.set (DataType::AUDIO, (_session->master_out() ? _session->master_out()->n_inputs().n_audio() : input_chan.n_audio()));
3524                 output_chan.set (DataType::MIDI, 0);
3525         } else {
3526                 output_chan = input_chan;
3527         }
3528
3529         /* XXX do something with name template */
3530
3531         switch (add_route_dialog->type_wanted()) {
3532         case AddRouteDialog::AudioTrack:
3533                 session_add_audio_track (input_chan.n_audio(), output_chan.n_audio(), add_route_dialog->mode(), route_group, count, name_template);
3534                 break;
3535         case AddRouteDialog::MidiTrack:
3536                 session_add_midi_track (route_group, count, name_template, instrument);
3537                 break;
3538         case AddRouteDialog::MixedTrack:
3539                 session_add_mixed_track (input_chan, output_chan, route_group, count, name_template, instrument);
3540                 break;
3541         case AddRouteDialog::AudioBus:
3542                 session_add_audio_bus (input_chan.n_audio(), output_chan.n_audio(), route_group, count, name_template);
3543                 break;
3544         }
3545 }
3546
3547 void
3548 ARDOUR_UI::stop_video_server (bool ask_confirm)
3549 {
3550         if (!video_server_process && ask_confirm) {
3551                 warning << string_compose (_("Video-Server was not launched by %1. The request to stop it is ignored."), PROGRAM_NAME) << endmsg;
3552         }
3553         if (video_server_process) {
3554                 if(ask_confirm) {
3555                         ArdourDialog confirm (_("Stop Video-Server"), true);
3556                         Label m (_("Do you really want to stop the Video Server?"));
3557                         confirm.get_vbox()->pack_start (m, true, true);
3558                         confirm.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3559                         confirm.add_button (_("Yes, Stop It"), Gtk::RESPONSE_ACCEPT);
3560                         confirm.show_all ();
3561                         if (confirm.run() == RESPONSE_CANCEL) {
3562                                 return;
3563                         }
3564                 }
3565                 delete video_server_process;
3566                 video_server_process =0;
3567         }
3568 }
3569
3570 void
3571 ARDOUR_UI::start_video_server_menu (Gtk::Window* float_window)
3572 {
3573   ARDOUR_UI::start_video_server( float_window, true);
3574 }
3575
3576 bool
3577 ARDOUR_UI::start_video_server (Gtk::Window* float_window, bool popup_msg)
3578 {
3579         if (!_session) {
3580                 return false;
3581         }
3582         if (popup_msg) {
3583                 if (ARDOUR_UI::instance()->video_timeline->check_server()) {
3584                         if (video_server_process) {
3585                                 popup_error(_("The Video Server is already started."));
3586                         } else {
3587                                 popup_error(_("An external Video Server is configured and can be reached. Not starting a new instance."));
3588                         }
3589                 }
3590         }
3591
3592         int firsttime = 0;
3593         while (!ARDOUR_UI::instance()->video_timeline->check_server()) {
3594                 if (firsttime++) {
3595                         warning << _("Could not connect to the Video Server. Start it or configure its access URL in Edit -> Preferences.") << endmsg;
3596                 }
3597                 VideoServerDialog *video_server_dialog = new VideoServerDialog (_session);
3598                 if (float_window) {
3599                         video_server_dialog->set_transient_for (*float_window);
3600                 }
3601
3602                 if (!Config->get_show_video_server_dialog() && firsttime < 2) {
3603                         video_server_dialog->hide();
3604                 } else {
3605                         ResponseType r = (ResponseType) video_server_dialog->run ();
3606                         video_server_dialog->hide();
3607                         if (r != RESPONSE_ACCEPT) { return false; }
3608                         if (video_server_dialog->show_again()) {
3609                                 Config->set_show_video_server_dialog(false);
3610                         }
3611                 }
3612
3613                 std::string icsd_exec = video_server_dialog->get_exec_path();
3614                 std::string icsd_docroot = video_server_dialog->get_docroot();
3615                 if (icsd_docroot.empty()) {
3616 #ifndef PLATFORM_WINDOWS
3617                         icsd_docroot = X_("/");
3618 #else
3619                         icsd_docroot = X_("C:\\");
3620 #endif
3621                 }
3622
3623                 GStatBuf sb;
3624                 if (g_lstat (icsd_docroot.c_str(), &sb) != 0 || !S_ISDIR(sb.st_mode)) {
3625                         warning << _("Specified docroot is not an existing directory.") << endmsg;
3626                         continue;
3627                 }
3628 #ifndef PLATFORM_WINDOWS
3629                 if ( (g_lstat (icsd_exec.c_str(), &sb) != 0)
3630                      || (sb.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH)) == 0 ) {
3631                         warning << _("Given Video Server is not an executable file.") << endmsg;
3632                         continue;
3633                 }
3634 #else
3635                 if ( (g_lstat (icsd_exec.c_str(), &sb) != 0)
3636                      || (sb.st_mode & (S_IXUSR)) == 0 ) {
3637                         warning << _("Given Video Server is not an executable file.") << endmsg;
3638                         continue;
3639                 }
3640 #endif
3641
3642                 char **argp;
3643                 argp=(char**) calloc(9,sizeof(char*));
3644                 argp[0] = strdup(icsd_exec.c_str());
3645                 argp[1] = strdup("-P");
3646                 argp[2] = (char*) calloc(16,sizeof(char)); snprintf(argp[2], 16, "%s", video_server_dialog->get_listenaddr().c_str());
3647                 argp[3] = strdup("-p");
3648                 argp[4] = (char*) calloc(6,sizeof(char)); snprintf(argp[4], 6, "%i", video_server_dialog->get_listenport());
3649                 argp[5] = strdup("-C");
3650                 argp[6] = (char*) calloc(6,sizeof(char)); snprintf(argp[6], 6, "%i", video_server_dialog->get_cachesize());
3651                 argp[7] = strdup(icsd_docroot.c_str());
3652                 argp[8] = 0;
3653                 stop_video_server();
3654
3655                 if (icsd_docroot == X_("/") || icsd_docroot == X_("C:\\")) {
3656                         Config->set_video_advanced_setup(false);
3657                 } else {
3658                         std::ostringstream osstream;
3659                         osstream << "http://localhost:" << video_server_dialog->get_listenport() << "/";
3660                         Config->set_video_server_url(osstream.str());
3661                         Config->set_video_server_docroot(icsd_docroot);
3662                         Config->set_video_advanced_setup(true);
3663                 }
3664
3665                 if (video_server_process) {
3666                         delete video_server_process;
3667                 }
3668
3669                 video_server_process = new ARDOUR::SystemExec(icsd_exec, argp);
3670                 if (video_server_process->start()) {
3671                         warning << _("Cannot launch the video-server") << endmsg;
3672                         continue;
3673                 }
3674                 int timeout = 120; // 6 sec
3675                 while (!ARDOUR_UI::instance()->video_timeline->check_server()) {
3676                         Glib::usleep (50000);
3677                         gui_idle_handler();
3678                         if (--timeout <= 0 || !video_server_process->is_running()) break;
3679                 }
3680                 if (timeout <= 0) {
3681                         warning << _("Video-server was started but does not respond to requests...") << endmsg;
3682                 } else {
3683                         if (!ARDOUR_UI::instance()->video_timeline->check_server_docroot()) {
3684                                 delete video_server_process;
3685                                 video_server_process = 0;
3686                         }
3687                 }
3688         }
3689         return true;
3690 }
3691
3692 void
3693 ARDOUR_UI::add_video (Gtk::Window* float_window)
3694 {
3695         if (!_session) {
3696                 return;
3697         }
3698
3699         if (!start_video_server(float_window, false)) {
3700                 warning << _("Could not connect to the Video Server. Start it or configure its access URL in Edit -> Preferences.") << endmsg;
3701                 return;
3702         }
3703
3704         if (float_window) {
3705                 add_video_dialog->set_transient_for (*float_window);
3706         }
3707
3708         if (add_video_dialog->is_visible()) {
3709                 /* we're already doing this */
3710                 return;
3711         }
3712
3713         ResponseType r = (ResponseType) add_video_dialog->run ();
3714         add_video_dialog->hide();
3715         if (r != RESPONSE_ACCEPT) { return; }
3716
3717         bool local_file, orig_local_file;
3718         std::string path = add_video_dialog->file_name(local_file);
3719
3720         std::string orig_path = path;
3721         orig_local_file = local_file;
3722
3723         bool auto_set_session_fps = add_video_dialog->auto_set_session_fps();
3724
3725         if (local_file && !Glib::file_test(path, Glib::FILE_TEST_EXISTS)) {
3726                 warning << string_compose(_("could not open %1"), path) << endmsg;
3727                 return;
3728         }
3729         if (!local_file && path.length() == 0) {
3730                 warning << _("no video-file selected") << endmsg;
3731                 return;
3732         }
3733
3734         switch (add_video_dialog->import_option()) {
3735                 case VTL_IMPORT_TRANSCODE:
3736                         {
3737                                 TranscodeVideoDialog *transcode_video_dialog;
3738                                 transcode_video_dialog = new TranscodeVideoDialog (_session, path);
3739                                 ResponseType r = (ResponseType) transcode_video_dialog->run ();
3740                                 transcode_video_dialog->hide();
3741                                 if (r != RESPONSE_ACCEPT) {
3742                                         delete transcode_video_dialog;
3743                                         return;
3744                                 }
3745                                 if (!transcode_video_dialog->get_audiofile().empty()) {
3746                                         editor->embed_audio_from_video(
3747                                                         transcode_video_dialog->get_audiofile(),
3748                                                         video_timeline->get_offset(),
3749                                                         (transcode_video_dialog->import_option() != VTL_IMPORT_NO_VIDEO)
3750                                                         );
3751                                 }
3752                                 switch (transcode_video_dialog->import_option()) {
3753                                         case VTL_IMPORT_TRANSCODED:
3754                                                 path = transcode_video_dialog->get_filename();
3755                                                 local_file = true;
3756                                                 break;
3757                                         case VTL_IMPORT_REFERENCE:
3758                                                 break;
3759                                         default:
3760                                                 delete transcode_video_dialog;
3761                                                 return;
3762                                 }
3763                                 delete transcode_video_dialog;
3764                         }
3765                         break;
3766                 default:
3767                 case VTL_IMPORT_NONE:
3768                         break;
3769         }
3770
3771         /* strip _session->session_directory().video_path() from video file if possible */
3772         if (local_file && !path.compare(0, _session->session_directory().video_path().size(), _session->session_directory().video_path())) {
3773                  path=path.substr(_session->session_directory().video_path().size());
3774                  if (path.at(0) == G_DIR_SEPARATOR) {
3775                          path=path.substr(1);
3776                  }
3777         }
3778
3779         video_timeline->set_update_session_fps(auto_set_session_fps);
3780         if (video_timeline->video_file_info(path, local_file)) {
3781                 XMLNode* node = new XMLNode(X_("Videotimeline"));
3782                 node->add_property (X_("Filename"), path);
3783                 node->add_property (X_("AutoFPS"), auto_set_session_fps?X_("1"):X_("0"));
3784                 node->add_property (X_("LocalFile"), local_file?X_("1"):X_("0"));
3785                 if (orig_local_file) {
3786                         node->add_property (X_("OriginalVideoFile"), orig_path);
3787                 } else {
3788                         node->remove_property (X_("OriginalVideoFile"));
3789                 }
3790                 _session->add_extra_xml (*node);
3791                 _session->set_dirty ();
3792
3793                 _session->maybe_update_session_range(
3794                         std::max(video_timeline->get_offset(), (ARDOUR::frameoffset_t) 0),
3795                         std::max(video_timeline->get_offset() + video_timeline->get_duration(), (ARDOUR::frameoffset_t) 0));
3796
3797
3798                 if (add_video_dialog->launch_xjadeo() && local_file) {
3799                         editor->set_xjadeo_sensitive(true);
3800                         editor->toggle_xjadeo_proc(1);
3801                 } else {
3802                         editor->toggle_xjadeo_proc(0);
3803                 }
3804                 editor->toggle_ruler_video(true);
3805         }
3806 }
3807
3808 void
3809 ARDOUR_UI::remove_video ()
3810 {
3811         video_timeline->close_session();
3812         editor->toggle_ruler_video(false);
3813
3814         /* reset state */
3815         video_timeline->set_offset_locked(false);
3816         video_timeline->set_offset(0);
3817
3818         /* delete session state */
3819         XMLNode* node = new XMLNode(X_("Videotimeline"));
3820         _session->add_extra_xml(*node);
3821         node = new XMLNode(X_("Videomonitor"));
3822         _session->add_extra_xml(*node);
3823         stop_video_server();
3824 }
3825
3826 void
3827 ARDOUR_UI::flush_videotimeline_cache (bool localcacheonly)
3828 {
3829         if (localcacheonly) {
3830                 video_timeline->vmon_update();
3831         } else {
3832                 video_timeline->flush_cache();
3833         }
3834         editor->queue_visual_videotimeline_update();
3835 }
3836
3837 XMLNode*
3838 ARDOUR_UI::mixer_settings () const
3839 {
3840         XMLNode* node = 0;
3841
3842         if (_session) {
3843                 node = _session->instant_xml(X_("Mixer"));
3844         } else {
3845                 node = Config->instant_xml(X_("Mixer"));
3846         }
3847
3848         if (!node) {
3849                 node = new XMLNode (X_("Mixer"));
3850         }
3851
3852         return node;
3853 }
3854
3855 XMLNode*
3856 ARDOUR_UI::editor_settings () const
3857 {
3858         XMLNode* node = 0;
3859
3860         if (_session) {
3861                 node = _session->instant_xml(X_("Editor"));
3862         } else {
3863                 node = Config->instant_xml(X_("Editor"));
3864         }
3865
3866         if (!node) {
3867                 if (getenv("ARDOUR_INSTANT_XML_PATH")) {
3868                         node = Config->instant_xml(getenv("ARDOUR_INSTANT_XML_PATH"));
3869                 }
3870         }
3871
3872         if (!node) {
3873                 node = new XMLNode (X_("Editor"));
3874         }
3875
3876         return node;
3877 }
3878
3879 XMLNode*
3880 ARDOUR_UI::keyboard_settings () const
3881 {
3882         XMLNode* node = 0;
3883
3884         node = Config->extra_xml(X_("Keyboard"));
3885
3886         if (!node) {
3887                 node = new XMLNode (X_("Keyboard"));
3888         }
3889
3890         return node;
3891 }
3892
3893 void
3894 ARDOUR_UI::create_xrun_marker (framepos_t where)
3895 {
3896         editor->mouse_add_new_marker (where, false, true);
3897 }
3898
3899 void
3900 ARDOUR_UI::halt_on_xrun_message ()
3901 {
3902         cerr << "HALT on xrun\n";
3903         MessageDialog msg (*editor, _("Recording was stopped because your system could not keep up."));
3904         msg.run ();
3905 }
3906
3907 void
3908 ARDOUR_UI::xrun_handler (framepos_t where)
3909 {
3910         if (!_session) {
3911                 return;
3912         }
3913
3914         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::xrun_handler, where)
3915
3916         if (_session && Config->get_create_xrun_marker() && _session->actively_recording()) {
3917                 create_xrun_marker(where);
3918         }
3919
3920         if (_session && Config->get_stop_recording_on_xrun() && _session->actively_recording()) {
3921                 halt_on_xrun_message ();
3922         }
3923 }
3924
3925 void
3926 ARDOUR_UI::disk_overrun_handler ()
3927 {
3928         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::disk_overrun_handler)
3929
3930         if (!have_disk_speed_dialog_displayed) {
3931                 have_disk_speed_dialog_displayed = true;
3932                 MessageDialog* msg = new MessageDialog (*editor, string_compose (_("\
3933 The disk system on your computer\n\
3934 was not able to keep up with %1.\n\
3935 \n\
3936 Specifically, it failed to write data to disk\n\
3937 quickly enough to keep up with recording.\n"), PROGRAM_NAME));
3938                 msg->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::disk_speed_dialog_gone), msg));
3939                 msg->show ();
3940         }
3941 }
3942
3943
3944 /* TODO: this is getting elaborate enough to warrant being split into a dedicated class */
3945 static MessageDialog *scan_dlg = NULL;
3946 static ProgressBar   *scan_pbar = NULL;
3947 static HBox          *scan_tbox = NULL;
3948
3949 void
3950 ARDOUR_UI::cancel_plugin_scan ()
3951 {
3952         PluginManager::instance().cancel_plugin_scan();
3953 }
3954
3955 void
3956 ARDOUR_UI::cancel_plugin_timeout ()
3957 {
3958         PluginManager::instance().cancel_plugin_timeout();
3959         scan_tbox->hide();
3960 }
3961
3962 void
3963 ARDOUR_UI::plugin_scan_timeout (int timeout)
3964 {
3965         if (!scan_dlg || !scan_dlg->is_mapped() || !scan_pbar) {
3966                 return;
3967         }
3968         if (timeout > 0) {
3969                 scan_pbar->set_fraction ((float) timeout / (float) Config->get_vst_scan_timeout());
3970                 scan_tbox->show();
3971         } else {
3972                 scan_tbox->hide();
3973         }
3974         gui_idle_handler();
3975 }
3976
3977 void
3978 ARDOUR_UI::plugin_scan_dialog (std::string type, std::string plugin, bool can_cancel)
3979 {
3980         if (type == X_("closeme") && !(scan_dlg && scan_dlg->is_mapped())) {
3981                 return;
3982         }
3983
3984         const bool cancelled = PluginManager::instance().cancelled();
3985         if (type != X_("closeme") && !ui_config->get_show_plugin_scan_window()) {
3986                 if (cancelled && scan_dlg->is_mapped()) {
3987                         scan_dlg->hide();
3988                         gui_idle_handler();
3989                         return;
3990                 }
3991                 if (cancelled || !can_cancel) {
3992                         return;
3993                 }
3994         }
3995
3996         static Gtk::Button *cancel_button;
3997         static Gtk::Button *timeout_button;
3998         if (!scan_dlg) {
3999                 scan_dlg = new MessageDialog("", false, MESSAGE_INFO, BUTTONS_NONE); // TODO manage
4000                 VBox* vbox = scan_dlg->get_vbox();
4001                 vbox->set_size_request(400,-1);
4002                 scan_dlg->set_title (_("Scanning for plugins"));
4003
4004                 cancel_button = manage(new Gtk::Button(_("Cancel plugin scan")));
4005                 cancel_button->set_name ("EditorGTKButton");
4006                 cancel_button->signal_clicked().connect ( mem_fun (*this, &ARDOUR_UI::cancel_plugin_scan) );
4007                 cancel_button->show();
4008
4009                 scan_dlg->get_vbox()->pack_start ( *cancel_button, PACK_SHRINK);
4010
4011                 scan_tbox = manage( new HBox() );
4012
4013                 timeout_button = manage(new Gtk::Button(_("Stop Timeout")));
4014                 timeout_button->set_name ("EditorGTKButton");
4015                 timeout_button->signal_clicked().connect ( mem_fun (*this, &ARDOUR_UI::cancel_plugin_timeout) );
4016                 timeout_button->show();
4017
4018                 scan_pbar = manage(new ProgressBar());
4019                 scan_pbar->set_orientation(Gtk::PROGRESS_RIGHT_TO_LEFT);
4020                 scan_pbar->set_text(_("Scan Timeout"));
4021                 scan_pbar->show();
4022
4023                 scan_tbox->pack_start (*scan_pbar, PACK_EXPAND_WIDGET, 4);
4024                 scan_tbox->pack_start (*timeout_button, PACK_SHRINK, 4);
4025
4026                 scan_dlg->get_vbox()->pack_start (*scan_tbox, PACK_SHRINK, 4);
4027         }
4028
4029         assert(scan_dlg && scan_tbox && cancel_button);
4030
4031         if (type == X_("closeme")) {
4032                 scan_dlg->hide();
4033         } else {
4034                 scan_dlg->set_message(type + ": " + Glib::path_get_basename(plugin));
4035                 scan_dlg->show();
4036         }
4037         if (!can_cancel || !cancelled) {
4038                 scan_tbox->hide();
4039         }
4040         cancel_button->set_sensitive(can_cancel && !cancelled);
4041
4042         gui_idle_handler();
4043 }
4044
4045 void
4046 ARDOUR_UI::gui_idle_handler ()
4047 {
4048         int timeout = 30;
4049         /* due to idle calls, gtk_events_pending() may always return true */
4050         while (gtk_events_pending() && --timeout) {
4051                 gtk_main_iteration ();
4052         }
4053 }
4054
4055 void
4056 ARDOUR_UI::disk_underrun_handler ()
4057 {
4058         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::disk_underrun_handler)
4059
4060         if (!have_disk_speed_dialog_displayed) {
4061                 have_disk_speed_dialog_displayed = true;
4062                 MessageDialog* msg = new MessageDialog (
4063                         *editor, string_compose (_("The disk system on your computer\n\
4064 was not able to keep up with %1.\n\
4065 \n\
4066 Specifically, it failed to read data from disk\n\
4067 quickly enough to keep up with playback.\n"), PROGRAM_NAME));
4068                 msg->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::disk_speed_dialog_gone), msg));
4069                 msg->show ();
4070         }
4071 }
4072
4073 void
4074 ARDOUR_UI::disk_speed_dialog_gone (int /*ignored_response*/, MessageDialog* msg)
4075 {
4076         have_disk_speed_dialog_displayed = false;
4077         delete msg;
4078 }
4079
4080 void
4081 ARDOUR_UI::session_dialog (std::string msg)
4082 {
4083         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::session_dialog, msg)
4084
4085         MessageDialog* d;
4086
4087         if (editor) {
4088                 d = new MessageDialog (*editor, msg, false, MESSAGE_INFO, BUTTONS_OK, true);
4089         } else {
4090                 d = new MessageDialog (msg, false, MESSAGE_INFO, BUTTONS_OK, true);
4091         }
4092
4093         d->show_all ();
4094         d->run ();
4095         delete d;
4096 }
4097
4098 int
4099 ARDOUR_UI::pending_state_dialog ()
4100 {
4101         HBox* hbox = manage (new HBox());
4102         Image* image = manage (new Image (Stock::DIALOG_QUESTION, ICON_SIZE_DIALOG));
4103         ArdourDialog dialog (_("Crash Recovery"), true);
4104         Label  message (string_compose (_("\
4105 This session appears to have been in the\n\
4106 middle of recording when %1 or\n\
4107 the computer was shutdown.\n\
4108 \n\
4109 %1 can recover any captured audio for\n\
4110 you, or it can ignore it. Please decide\n\
4111 what you would like to do.\n"), PROGRAM_NAME));
4112         image->set_alignment(ALIGN_CENTER, ALIGN_TOP);
4113         hbox->pack_start (*image, PACK_EXPAND_WIDGET, 12);
4114         hbox->pack_end (message, PACK_EXPAND_PADDING, 12);
4115         dialog.get_vbox()->pack_start(*hbox, PACK_EXPAND_PADDING, 6);
4116         dialog.add_button (_("Ignore crash data"), RESPONSE_REJECT);
4117         dialog.add_button (_("Recover from crash"), RESPONSE_ACCEPT);
4118         dialog.set_default_response (RESPONSE_ACCEPT);
4119         dialog.set_position (WIN_POS_CENTER);
4120         message.show();
4121         image->show();
4122         hbox->show();
4123
4124         switch (dialog.run ()) {
4125         case RESPONSE_ACCEPT:
4126                 return 1;
4127         default:
4128                 return 0;
4129         }
4130 }
4131
4132 int
4133 ARDOUR_UI::sr_mismatch_dialog (framecnt_t desired, framecnt_t actual)
4134 {
4135         HBox* hbox = new HBox();
4136         Image* image = new Image (Stock::DIALOG_WARNING, ICON_SIZE_DIALOG);
4137         ArdourDialog dialog (_("Sample Rate Mismatch"), true);
4138         Label  message (string_compose (_("\
4139 This session was created with a sample rate of %1 Hz, but\n\
4140 %2 is currently running at %3 Hz.  If you load this session,\n\
4141 audio may be played at the wrong sample rate.\n"), desired, PROGRAM_NAME, actual));
4142
4143         image->set_alignment(ALIGN_CENTER, ALIGN_TOP);
4144         hbox->pack_start (*image, PACK_EXPAND_WIDGET, 12);
4145         hbox->pack_end (message, PACK_EXPAND_PADDING, 12);
4146         dialog.get_vbox()->pack_start(*hbox, PACK_EXPAND_PADDING, 6);
4147         dialog.add_button (_("Do not load session"), RESPONSE_REJECT);
4148         dialog.add_button (_("Load session anyway"), RESPONSE_ACCEPT);
4149         dialog.set_default_response (RESPONSE_ACCEPT);
4150         dialog.set_position (WIN_POS_CENTER);
4151         message.show();
4152         image->show();
4153         hbox->show();
4154
4155         switch (dialog.run()) {
4156         case RESPONSE_ACCEPT:
4157                 return 0;
4158         default:
4159                 break;
4160         }
4161
4162         return 1;
4163 }
4164
4165 int
4166 ARDOUR_UI::disconnect_from_engine ()
4167 {
4168         /* drop connection to AudioEngine::Halted so that we don't act
4169          *  as if the engine unexpectedly shut down
4170          */
4171
4172         halt_connection.disconnect ();
4173         
4174         if (AudioEngine::instance()->stop ()) {
4175                 MessageDialog msg (*editor, _("Could not disconnect from Audio/MIDI engine"));
4176                 msg.run ();
4177                 return -1;
4178         } else {
4179                 AudioEngine::instance()->Halted.connect_same_thread (halt_connection, boost::bind (&ARDOUR_UI::engine_halted, this, _1, false));
4180         }
4181         
4182         update_sample_rate (0);
4183         return 0;
4184 }
4185
4186 int
4187 ARDOUR_UI::reconnect_to_engine ()
4188 {
4189         if (AudioEngine::instance()->start ()) {
4190                 if (editor) {
4191                         MessageDialog msg (*editor,  _("Could not reconnect to the Audio/MIDI engine"));
4192                         msg.run ();
4193                 } else {
4194                         MessageDialog msg (_("Could not reconnect to the Audio/MIDI engine"));
4195                         msg.run ();
4196                 }
4197                 return -1;
4198         }
4199         
4200         update_sample_rate (0);
4201         return 0;
4202 }
4203
4204 void
4205 ARDOUR_UI::use_config ()
4206 {
4207         XMLNode* node = Config->extra_xml (X_("TransportControllables"));
4208         if (node) {
4209                 set_transport_controllable_state (*node);
4210         }
4211 }
4212
4213 void
4214 ARDOUR_UI::update_transport_clocks (framepos_t pos)
4215 {
4216         if (ui_config->get_primary_clock_delta_edit_cursor()) {
4217                 primary_clock->set (pos, false, editor->get_preferred_edit_position());
4218         } else {
4219                 primary_clock->set (pos);
4220         }
4221
4222         if (ui_config->get_secondary_clock_delta_edit_cursor()) {
4223                 secondary_clock->set (pos, false, editor->get_preferred_edit_position());
4224         } else {
4225                 secondary_clock->set (pos);
4226         }
4227
4228         if (big_clock_window) {
4229                 big_clock->set (pos);
4230         }
4231         ARDOUR_UI::instance()->video_timeline->manual_seek_video_monitor(pos);
4232 }
4233
4234 void
4235 ARDOUR_UI::step_edit_status_change (bool yn)
4236 {
4237         // XXX should really store pre-step edit status of things
4238         // we make insensitive
4239
4240         if (yn) {
4241                 rec_button.set_active_state (Gtkmm2ext::ImplicitActive);
4242                 rec_button.set_sensitive (false);
4243         } else {
4244                 rec_button.unset_active_state ();;
4245                 rec_button.set_sensitive (true);
4246         }
4247 }
4248
4249 void
4250 ARDOUR_UI::record_state_changed ()
4251 {
4252         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::record_state_changed);
4253
4254         if (!_session || !big_clock_window) {
4255                 /* why bother - the clock isn't visible */
4256                 return;
4257         }
4258
4259         if (_session->record_status () == Session::Recording && _session->have_rec_enabled_track ()) {
4260                 big_clock->set_active (true);
4261         } else {
4262                 big_clock->set_active (false);
4263         }
4264 }
4265
4266 bool
4267 ARDOUR_UI::first_idle ()
4268 {
4269         if (_session) {
4270                 _session->allow_auto_play (true);
4271         }
4272
4273         if (editor) {
4274                 editor->first_idle();
4275         }
4276
4277         Keyboard::set_can_save_keybindings (true);
4278         return false;
4279 }
4280
4281 void
4282 ARDOUR_UI::store_clock_modes ()
4283 {
4284         XMLNode* node = new XMLNode(X_("ClockModes"));
4285
4286         for (vector<AudioClock*>::iterator x = AudioClock::clocks.begin(); x != AudioClock::clocks.end(); ++x) {
4287                 XMLNode* child = new XMLNode (X_("Clock"));
4288                 
4289                 child->add_property (X_("name"), (*x)->name());
4290                 child->add_property (X_("mode"), enum_2_string ((*x)->mode()));
4291                 child->add_property (X_("on"), ((*x)->off() ? X_("no") : X_("yes")));
4292
4293                 node->add_child_nocopy (*child);
4294         }
4295
4296         _session->add_extra_xml (*node);
4297         _session->set_dirty ();
4298 }
4299
4300 ARDOUR_UI::TransportControllable::TransportControllable (std::string name, ARDOUR_UI& u, ToggleType tp)
4301         : Controllable (name), ui (u), type(tp)
4302 {
4303
4304 }
4305
4306 void
4307 ARDOUR_UI::TransportControllable::set_value (double val)
4308 {
4309         if (val < 0.5) {
4310                 /* do nothing: these are radio-style actions */
4311                 return;
4312         }
4313
4314         const char *action = 0;
4315
4316         switch (type) {
4317         case Roll:
4318                 action = X_("Roll");
4319                 break;
4320         case Stop:
4321                 action = X_("Stop");
4322                 break;
4323         case GotoStart:
4324                 action = X_("GotoStart");
4325                 break;
4326         case GotoEnd:
4327                 action = X_("GotoEnd");
4328                 break;
4329         case AutoLoop:
4330                 action = X_("Loop");
4331                 break;
4332         case PlaySelection:
4333                 action = X_("PlaySelection");
4334                 break;
4335         case RecordEnable:
4336                 action = X_("Record");
4337                 break;
4338         default:
4339                 break;
4340         }
4341
4342         if (action == 0) {
4343                 return;
4344         }
4345
4346         Glib::RefPtr<Action> act = ActionManager::get_action ("Transport", action);
4347
4348         if (act) {
4349                 act->activate ();
4350         }
4351 }
4352
4353 double
4354 ARDOUR_UI::TransportControllable::get_value (void) const
4355 {
4356         float val = 0.0;
4357
4358         switch (type) {
4359         case Roll:
4360                 break;
4361         case Stop:
4362                 break;
4363         case GotoStart:
4364                 break;
4365         case GotoEnd:
4366                 break;
4367         case AutoLoop:
4368                 break;
4369         case PlaySelection:
4370                 break;
4371         case RecordEnable:
4372                 break;
4373         default:
4374                 break;
4375         }
4376
4377         return val;
4378 }
4379
4380 void
4381 ARDOUR_UI::setup_profile ()
4382 {
4383         if (gdk_screen_width() < 1200 || getenv ("ARDOUR_NARROW_SCREEN")) {
4384                 Profile->set_small_screen ();
4385         }
4386
4387         if (g_getenv ("ARDOUR_SAE")) {
4388                 Profile->set_sae ();
4389                 Profile->set_single_package ();
4390         }
4391
4392         if (g_getenv ("TRX")) {
4393                 Profile->set_trx ();
4394         }
4395
4396         if (g_getenv ("MIXBUS")) {
4397                 Profile->set_mixbus ();
4398         }
4399 }
4400
4401 int
4402 ARDOUR_UI::missing_file (Session*s, std::string str, DataType type)
4403 {
4404         MissingFileDialog dialog (s, str, type);
4405
4406         dialog.show ();
4407         dialog.present ();
4408
4409         int result = dialog.run ();
4410         dialog.hide ();
4411
4412         switch (result) {
4413         case RESPONSE_OK:
4414                 break;
4415         default:
4416                 return 1; // quit entire session load
4417         }
4418
4419         result = dialog.get_action ();
4420
4421         return result;
4422 }
4423
4424 int
4425 ARDOUR_UI::ambiguous_file (std::string file, std::vector<std::string> hits)
4426 {
4427         AmbiguousFileDialog dialog (file, hits);
4428
4429         dialog.show ();
4430         dialog.present ();
4431
4432         dialog.run ();
4433         return dialog.get_which ();
4434 }
4435
4436 /** Allocate our thread-local buffers */
4437 void
4438 ARDOUR_UI::get_process_buffers ()
4439 {
4440         _process_thread->get_buffers ();
4441 }
4442
4443 /** Drop our thread-local buffers */
4444 void
4445 ARDOUR_UI::drop_process_buffers ()
4446 {
4447         _process_thread->drop_buffers ();
4448 }
4449
4450 void
4451 ARDOUR_UI::feedback_detected ()
4452 {
4453         _feedback_exists = true;
4454 }
4455
4456 void
4457 ARDOUR_UI::successful_graph_sort ()
4458 {
4459         _feedback_exists = false;
4460 }
4461
4462 void
4463 ARDOUR_UI::midi_panic ()
4464 {
4465         if (_session) {
4466                 _session->midi_panic();
4467         }
4468 }
4469
4470 void
4471 ARDOUR_UI::session_format_mismatch (std::string xml_path, std::string backup_path)
4472 {
4473         const char* start_big = "<span size=\"x-large\" weight=\"bold\">";
4474         const char* end_big = "</span>";
4475         const char* start_mono = "<tt>";
4476         const char* end_mono = "</tt>";
4477
4478         MessageDialog msg (string_compose (_("%4This is a session from an older version of %3%5\n\n"
4479                                              "%3 has copied the old session file\n\n%6%1%7\n\nto\n\n%6%2%7\n\n"
4480                                              "From now on, use the -2000 version with older versions of %3"),
4481                                            xml_path, backup_path, PROGRAM_NAME,
4482                                            start_big, end_big,
4483                                            start_mono, end_mono), true);
4484
4485         msg.run ();
4486 }
4487
4488
4489 void
4490 ARDOUR_UI::reset_peak_display ()
4491 {
4492         if (!_session || !_session->master_out() || !editor_meter) return;
4493         editor_meter->clear_meters();
4494         editor_meter_max_peak = -INFINITY;
4495         editor_meter_peak_display.set_active_state ( Gtkmm2ext::Off );
4496 }
4497
4498 void
4499 ARDOUR_UI::reset_group_peak_display (RouteGroup* group)
4500 {
4501         if (!_session || !_session->master_out()) return;
4502         if (group == _session->master_out()->route_group()) {
4503                 reset_peak_display ();
4504         }
4505 }
4506
4507 void
4508 ARDOUR_UI::reset_route_peak_display (Route* route)
4509 {
4510         if (!_session || !_session->master_out()) return;
4511         if (_session->master_out().get() == route) {
4512                 reset_peak_display ();
4513         }
4514 }
4515
4516 int
4517 ARDOUR_UI::do_audio_midi_setup (uint32_t desired_sample_rate)
4518 {
4519         audio_midi_setup->set_desired_sample_rate (desired_sample_rate);
4520         audio_midi_setup->set_position (WIN_POS_CENTER);
4521
4522         switch (audio_midi_setup->run()) {
4523         case Gtk::RESPONSE_OK:
4524                 return 0;
4525         case Gtk::RESPONSE_APPLY:
4526                 return 0;
4527         default:
4528                 return -1;
4529         }
4530 }
4531
4532
4533 gint
4534 ARDOUR_UI::transport_numpad_timeout ()
4535 {
4536         _numpad_locate_happening = false;
4537         if (_numpad_timeout_connection.connected() )
4538                 _numpad_timeout_connection.disconnect();
4539         return 1;
4540 }
4541
4542 void
4543 ARDOUR_UI::transport_numpad_decimal ()
4544 {
4545         _numpad_timeout_connection.disconnect();
4546
4547         if (_numpad_locate_happening) {
4548                 if (editor) editor->goto_nth_marker(_pending_locate_num - 1);
4549                 _numpad_locate_happening = false;
4550         } else {
4551                 _pending_locate_num = 0;
4552                 _numpad_locate_happening = true;
4553                 _numpad_timeout_connection = Glib::signal_timeout().connect (mem_fun(*this, &ARDOUR_UI::transport_numpad_timeout), 2*1000);
4554         }
4555 }
4556
4557 void
4558 ARDOUR_UI::transport_numpad_event (int num)
4559 {
4560         if ( _numpad_locate_happening ) {
4561                 _pending_locate_num = _pending_locate_num*10 + num;
4562         } else {
4563                 switch (num) {          
4564                         case 0:  toggle_roll(false, false);             break;
4565                         case 1:  transport_rewind(1);                           break;
4566                         case 2:  transport_forward(1);                          break;
4567                         case 3:  transport_record(true);                        break;
4568                         case 4:  toggle_session_auto_loop();            break;
4569                         case 5:  transport_record(false); toggle_session_auto_loop();   break;
4570                         case 6:  toggle_punch();                                        break;
4571                         case 7:  toggle_click();                                break;
4572                         case 8:  toggle_auto_return();                  break;
4573                         case 9:  toggle_follow_edits();         break;
4574                 }
4575         }
4576 }
4577
4578 void
4579 ARDOUR_UI::set_flat_buttons ()
4580 {
4581         CairoWidget::set_flat_buttons( config()->get_flat_buttons() );
4582 }