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