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