tracks build ... backends are hard-coded
[ardour.git] / gtk2_ardour / ardour_ui.cc
index e346fbcefcfc0db2dfcd993f4a5173b5b81ed048..0d646c8add46e24811c95fec8035b2d42e948632 100644 (file)
@@ -97,6 +97,7 @@
 typedef uint64_t microseconds_t;
 
 #include "about.h"
+#include "editing.h"
 #include "actions.h"
 #include "add_route_dialog.h"
 #include "ambiguous_file_dialog.h"
@@ -105,6 +106,8 @@ typedef uint64_t microseconds_t;
 #include "big_clock_window.h"
 #include "bundle_manager.h"
 #include "engine_dialog.h"
+#include "export_video_dialog.h"
+#include "export_video_infobox.h"
 #include "gain_meter.h"
 #include "global_port_matrix.h"
 #include "gui_object.h"
@@ -126,6 +129,7 @@ typedef uint64_t microseconds_t;
 #include "rc_option_editor.h"
 #include "route_time_axis.h"
 #include "route_params_ui.h"
+#include "save_as_dialog.h"
 #include "session_dialog.h"
 #include "session_metadata_dialog.h"
 #include "session_option_editor.h"
@@ -149,36 +153,51 @@ using namespace PBD;
 using namespace Gtkmm2ext;
 using namespace Gtk;
 using namespace std;
+using namespace Editing;
 
 ARDOUR_UI *ARDOUR_UI::theArdourUI = 0;
 
 sigc::signal<void, framepos_t, bool, framepos_t> ARDOUR_UI::Clock;
 sigc::signal<void>      ARDOUR_UI::CloseAllDialogs;
 
-ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
+float ARDOUR_UI::ui_scale = 1.0;
 
-       : Gtkmm2ext::UI (PROGRAM_NAME, argcp, argvp)
-       , ui_config (new UIConfiguration)
-       , gui_object_state (new GUIObjectState)
+static bool
+ask_about_configuration_copy (string const & old_dir, string const & new_dir, int version)
+{
+       MessageDialog msg (string_compose (_("%1 %2.x has discovered configuration files from %1 %3.x.\n\n"
+                                            "Would you like these files to be copied and used for %1 %2.x?\n\n"
+                                            "(This will require you to restart %1.)"),
+                                          PROGRAM_NAME, PROGRAM_VERSION, version),
+                          false, /* no markup */
+                          Gtk::MESSAGE_INFO,
+                          Gtk::BUTTONS_YES_NO,
+                          true /* modal, though it hardly matters since it is the only window */
+               );
+
+       msg.set_default_response (Gtk::RESPONSE_YES);
+       msg.show_all ();
+
+       return (msg.run() == Gtk::RESPONSE_YES);
+}
 
-       , primary_clock (new MainClock (X_("primary"), false, X_("transport"), true, true, true, false, true))
-       , secondary_clock (new MainClock (X_("secondary"), false, X_("secondary"), true, true, false, false, true))
-         
-         /* big clock */
+ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir, UIConfiguration* uic)
 
+       : Gtkmm2ext::UI (PROGRAM_NAME, argcp, argvp)
+       , ui_config (uic->post_gui_init ())
+       , session_loaded (false)
+       , gui_object_state (new GUIObjectState)
+       , primary_clock   (new MainClock (X_("primary"),   X_("transport"), true ))
+       , secondary_clock (new MainClock (X_("secondary"), X_("secondary"), false))
        , big_clock (new AudioClock (X_("bigclock"), false, "big", true, true, false, false))
        , video_timeline(0)
-
-         /* start of private members */
+       , ignore_dual_punch (false)
        , editor (0)
        , mixer (0)
        , nsm (0)
        , _was_dirty (false)
        , _mixer_on_top (false)
        , first_time_engine_run (true)
-
-         /* transport */
-
        , roll_controllable (new TransportControllable ("transport roll", *this, TransportControllable::Roll))
        , stop_controllable (new TransportControllable ("transport stop", *this, TransportControllable::Stop))
        , goto_start_controllable (new TransportControllable ("transport goto start", *this, TransportControllable::GotoStart))
@@ -186,18 +205,22 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        , auto_loop_controllable (new TransportControllable ("transport auto loop", *this, TransportControllable::AutoLoop))
        , play_selection_controllable (new TransportControllable ("transport play selection", *this, TransportControllable::PlaySelection))
        , rec_controllable (new TransportControllable ("transport rec-enable", *this, TransportControllable::RecordEnable))
-
        , auto_return_button (ArdourButton::led_default_elements)
        , follow_edits_button (ArdourButton::led_default_elements)
        , auto_input_button (ArdourButton::led_default_elements)
-
        , auditioning_alert_button (_("Audition"))
        , solo_alert_button (_("Solo"))
        , feedback_alert_button (_("Feedback"))
-
+       , error_alert_button ( ArdourButton::just_led_default_elements )
        , editor_meter(0)
        , editor_meter_peak_display()
-
+       , session_selector_window (0)
+       , open_session_selector (0)
+       , _numpad_locate_happening (false)
+       , _session_is_new (false)
+       , last_key_press_time (0)
+       , save_as_dialog (0)
+       , meterbridge (0)
        , speaker_config_window (X_("speaker-config"), _("Speaker Configuration"))
        , key_editor (X_("key-editor"), _("Key Bindings"))
        , rc_option_editor (X_("rc-options-editor"), _("Preferences"))
@@ -206,24 +229,32 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        , location_ui (X_("locations"), _("Locations"))
        , route_params (X_("inspector"), _("Tracks and Busses"))
        , audio_midi_setup (X_("audio-midi-setup"), _("Audio/MIDI Setup"))
+       , export_video_dialog (X_("video-export"), _("Video Export Dialog"))
        , session_option_editor (X_("session-options-editor"), _("Properties"), boost::bind (&ARDOUR_UI::create_session_option_editor, this))
        , add_video_dialog (X_("add-video"), _("Add Tracks/Busses"), boost::bind (&ARDOUR_UI::create_add_video_dialog, this))
        , bundle_manager (X_("bundle-manager"), _("Bundle Manager"), boost::bind (&ARDOUR_UI::create_bundle_manager, this))
        , big_clock_window (X_("big-clock"), _("Big Clock"), boost::bind (&ARDOUR_UI::create_big_clock_window, this))
        , audio_port_matrix (X_("audio-connection-manager"), _("Audio Connections"), boost::bind (&ARDOUR_UI::create_global_port_matrix, this, ARDOUR::DataType::AUDIO))
        , midi_port_matrix (X_("midi-connection-manager"), _("MIDI Connections"), boost::bind (&ARDOUR_UI::create_global_port_matrix, this, ARDOUR::DataType::MIDI))
-
-       , error_log_button (_("Errors"))
-
+       , video_server_process (0)
+       , splash (0)
+       , have_configure_timeout (false)
+       , last_configure_time (0)
+       , last_peak_grab (0)
+       , have_disk_speed_dialog_displayed (false)
        , _status_bar_visibility (X_("status-bar"))
        , _feedback_exists (false)
+       , _log_not_acknowledged (LogLevelNone)
 {
-       Gtkmm2ext::init(localedir);
-
-       splash = 0;
-
-       _numpad_locate_happening = false;
+       Gtkmm2ext::init (localedir);
 
+       if (ARDOUR::handle_old_configuration_files (boost::bind (ask_about_configuration_copy, _1, _2, _3))) {
+               MessageDialog msg (string_compose (_("Your configuration files were copied. You can now restart %1."), PROGRAM_NAME), true);
+               msg.run ();
+               /* configuration was modified, exit immediately */
+               _exit (0);
+       }
+       
        if (theArdourUI == 0) {
                theArdourUI = this;
        }
@@ -232,20 +263,6 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
        ui_config->map_parameters (pc);
 
-       editor = 0;
-       mixer = 0;
-       meterbridge = 0;
-       editor = 0;
-       _session_is_new = false;
-       session_selector_window = 0;
-       last_key_press_time = 0;
-       video_server_process = 0;
-       open_session_selector = 0;
-       have_configure_timeout = false;
-       have_disk_speed_dialog_displayed = false;
-       session_loaded = false;
-       ignore_dual_punch = false;
-
        roll_button.set_controllable (roll_controllable);
        stop_button.set_controllable (stop_controllable);
        goto_start_button.set_controllable (goto_start_controllable);
@@ -263,9 +280,6 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        rec_button.set_name ("transport recenable button");
        midi_panic_button.set_name ("transport button");
 
-       last_configure_time= 0;
-       last_peak_grab = 0;
-
        ARDOUR::Diskstream::DiskOverrun.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::disk_overrun_handler, this), gui_context());
        ARDOUR::Diskstream::DiskUnderrun.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::disk_underrun_handler, this), gui_context());
 
@@ -358,6 +372,7 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
                big_clock_window.set_state (*ui_xml);
                audio_port_matrix.set_state (*ui_xml);
                midi_port_matrix.set_state (*ui_xml);
+               export_video_dialog.set_state (*ui_xml);
        }
 
        WM::Manager::instance().register_window (&key_editor);
@@ -369,6 +384,7 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        WM::Manager::instance().register_window (&add_video_dialog);
        WM::Manager::instance().register_window (&route_params);
        WM::Manager::instance().register_window (&audio_midi_setup);
+       WM::Manager::instance().register_window (&export_video_dialog);
        WM::Manager::instance().register_window (&bundle_manager);
        WM::Manager::instance().register_window (&location_ui);
        WM::Manager::instance().register_window (&big_clock_window);
@@ -419,8 +435,12 @@ ARDOUR_UI::engine_running ()
                first_time_engine_run = false;
        } 
        
+       if (_session) {
+               _session->reset_xrun_count ();
+       }
        update_disk_space ();
        update_cpu_load ();
+       update_xrun_count ();
        update_sample_rate (AudioEngine::instance()->sample_rate());
        update_timecode_format ();
 }
@@ -434,7 +454,7 @@ ARDOUR_UI::engine_halted (const char* reason, bool free_reason)
                   free it later.
                */
                char *copy = strdup (reason);
-               Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&ARDOUR_UI::engine_halted, this, copy, true));
+               Gtkmm2ext::UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_halted, this, copy, true));
                return;
        }
 
@@ -461,7 +481,6 @@ the audio backend and save the session."), PROGRAM_NAME);
 
        MessageDialog msg (*editor, msgstr);
        pop_back_splash (msg);
-       msg.set_keep_above (true);
        msg.run ();
        
        if (free_reason) {
@@ -489,7 +508,9 @@ ARDOUR_UI::post_engine ()
 
        AudioEngine::instance()->Stopped.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_stopped, this), gui_context());
        AudioEngine::instance()->SampleRateChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::update_sample_rate, this, _1), gui_context());
+       AudioEngine::instance()->BufferSizeChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::update_sample_rate, this, _1), gui_context());
        AudioEngine::instance()->Halted.connect_same_thread (halt_connection, boost::bind (&ARDOUR_UI::engine_halted, this, _1, false));
+       AudioEngine::instance()->BecameSilent.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::audioengine_became_silent, this), gui_context());
 
        _tooltips.enable();
 
@@ -676,6 +697,13 @@ ARDOUR_UI::get_transport_controllable_state ()
        return *node;
 }
 
+void
+ARDOUR_UI::save_session_at_its_request (std::string snapshot_name)
+{
+       if (_session) {
+               _session->save_state (snapshot_name);
+       }
+}
 
 gint
 ARDOUR_UI::autosave_session ()
@@ -754,7 +782,7 @@ ARDOUR_UI::starting ()
        bool brand_new_user = ArdourStartup::required ();
 
        app->ShouldQuit.connect (sigc::mem_fun (*this, &ARDOUR_UI::queue_finish));
-       app->ShouldLoad.connect (sigc::mem_fun (*this, &ARDOUR_UI::idle_load));
+       app->ShouldLoad.connect (sigc::mem_fun (*this, &ARDOUR_UI::load_from_application_api));
 
        if (ARDOUR_COMMAND_LINE::check_announcements) {
                check_announcements ();
@@ -776,7 +804,16 @@ ARDOUR_UI::starting ()
        if ((nsm_url = g_getenv ("NSM_URL")) != 0) {
                nsm = new NSM_Client;
                if (!nsm->init (nsm_url)) {
-                       nsm->announce (PROGRAM_NAME, ":dirty:", "ardour3");
+                       /* the ardour executable may have different names:
+                        *
+                        * waf's obj.target for distro versions: eg ardour4, ardourvst4
+                        * Ardour4, Mixbus3 for bundled versions + full path on OSX & windows
+                        * argv[0] does not apply since we need the wrapper-script (not the binary itself)
+                        *
+                        * The wrapper startup script should set the environment variable 'ARDOUR_SELF'
+                        */
+                       const char *process_name = g_getenv ("ARDOUR_SELF");
+                       nsm->announce (PROGRAM_NAME, ":dirty:", process_name ? process_name : "ardour4");
 
                        unsigned int i = 0;
                        // wait for announce reply from nsm server
@@ -851,6 +888,50 @@ ARDOUR_UI::starting ()
                        }
                }
 
+#ifdef NO_PLUGIN_STATE
+
+               ARDOUR::RecentSessions rs;
+               ARDOUR::read_recent_sessions (rs);
+
+               string path = Glib::build_filename (user_config_directory(), ".iknowaboutfreeversion");
+               
+               if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS) && !rs.empty()) {
+                       
+                       /* already used Ardour, have sessions ... warn about plugin state */
+                       
+                       ArdourDialog d (_("Free/Demo Version Warning"), true);
+                       Label l;
+                       Button b (string_compose (_("Subscribe and support development of %1"), PROGRAM_NAME));
+                       CheckButton c (_("Don't warn me about this again"));
+                       
+                       l.set_markup (string_compose (_("<span weight=\"bold\" size=\"large\">%1</span>\n\n<b>%2</b>\n\n<i>%3</i>\n\n%4"),
+                                                     string_compose (_("This is a free/demo version of %1"), PROGRAM_NAME),
+                                                     _("It will not restore OR save any plugin settings"),
+                                                     _("If you load an existing session with plugin settings\n"
+                                                       "they will not be used and will be lost."),
+                                                     _("To get full access to updates without this limitation\n"
+                                                       "consider becoming a subscriber for a low cost every month.")));
+                       l.set_justify (JUSTIFY_CENTER);
+                       
+                       b.signal_clicked().connect (mem_fun(*this, &ARDOUR_UI::launch_subscribe));
+                       
+                       d.get_vbox()->pack_start (l, true, true);
+                       d.get_vbox()->pack_start (b, false, false, 12);
+                       d.get_vbox()->pack_start (c, false, false, 12);
+                       
+                       d.add_button (_("Quit now"), RESPONSE_CANCEL);
+                       d.add_button (string_compose (_("Continue using %1"), PROGRAM_NAME), RESPONSE_OK);
+                       
+                       d.show_all ();
+
+                       c.signal_toggled().connect (sigc::hide_return (sigc::bind (sigc::ptr_fun (toggle_file_existence), path)));
+                       
+                       if (d.run () != RESPONSE_OK) {
+                               _exit (0);
+                       }
+               }
+#endif
+                       
                /* go get a session */
 
                const bool new_session_required = (ARDOUR_COMMAND_LINE::new_session || brand_new_user);
@@ -1020,7 +1101,6 @@ If you still wish to quit, please use the\n\n\
        close_all_dialogs ();
 
        if (_session) {
-               // _session->set_deletion_in_progress ();
                _session->set_clean ();
                _session->remove_pending_capture_state ();
                delete _session;
@@ -1084,7 +1164,6 @@ ARDOUR_UI::ask_about_saving_session (const vector<string>& actions)
        prompt_label.show();
        dimage->show();
        window.show();
-       window.set_keep_above (true);
        window.present ();
 
        ResponseType r = (ResponseType) window.run();
@@ -1108,6 +1187,7 @@ void
 ARDOUR_UI::every_second ()
 {
        update_cpu_load ();
+       update_xrun_count ();
        update_buffer_load ();
        update_disk_space ();
        update_timecode_format ();
@@ -1129,7 +1209,8 @@ ARDOUR_UI::every_second ()
 void
 ARDOUR_UI::every_point_one_seconds ()
 {
-       shuttle_box->update_speed_display ();
+       // TODO get rid of this..
+       // ShuttleControl is updated directly via TransportStateChange signal
 }
 
 void
@@ -1188,7 +1269,7 @@ ARDOUR_UI::update_sample_rate (framecnt_t)
 
        if (!AudioEngine::instance()->connected()) {
 
-               snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"red\">none</span>"));
+               snprintf (buf, sizeof (buf), "%s", _("Audio: <span foreground=\"red\">none</span>"));
 
        } else {
 
@@ -1196,7 +1277,7 @@ ARDOUR_UI::update_sample_rate (framecnt_t)
 
                if (rate == 0) {
                        /* no sample rate available */
-                       snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"red\">none</span>"));
+                       snprintf (buf, sizeof (buf), "%s", _("Audio: <span foreground=\"red\">none</span>"));
                } else {
 
                        if (fmod (rate, 1000.0) != 0.0) {
@@ -1267,6 +1348,29 @@ ARDOUR_UI::update_format ()
        format_label.set_markup (s.str ());
 }
 
+void
+ARDOUR_UI::update_xrun_count ()
+{
+       char buf[64];
+
+       /* If this text is changed, the set_size_request_to_display_given_text call in ARDOUR_UI::resize_text_widgets
+          should also be changed.
+       */
+
+       if (_session) {
+               const unsigned int x = _session->get_xrun_count ();
+               if (x > 9999) {
+                       snprintf (buf, sizeof (buf), _("X: <span foreground=\"%s\">&gt;10K</span>"), X_("red"));
+               } else {
+                       snprintf (buf, sizeof (buf), _("X: <span foreground=\"%s\">%u</span>"), x > 0 ? X_("red") : X_("green"), x);
+               }
+       } else {
+               snprintf (buf, sizeof (buf), _("X: <span foreground=\"%s\">?</span>"), X_("yellow"));
+       }
+       xrun_label.set_markup (buf);
+       set_tip (xrun_label, _("Audio dropouts. Shift+click to reset"));
+}
+
 void
 ARDOUR_UI::update_cpu_load ()
 {
@@ -1342,7 +1446,7 @@ ARDOUR_UI::update_disk_space()
                snprintf (buf, sizeof (buf), "%s", _("Disk: <span foreground=\"green\">24hrs+</span>"));
        } else {
                rec_enabled_streams = 0;
-               _session->foreach_route (this, &ARDOUR_UI::count_recenabled_streams);
+               _session->foreach_route (this, &ARDOUR_UI::count_recenabled_streams, false);
 
                framecnt_t frames = opt_frames.get_value_or (0);
 
@@ -2000,7 +2104,6 @@ ARDOUR_UI::get_smart_mode() const
 void
 ARDOUR_UI::toggle_roll (bool with_abort, bool roll_out_of_bounded_mode)
 {
-
        if (!_session) {
                return;
        }
@@ -2254,6 +2357,7 @@ ARDOUR_UI::blink_handler (bool blink_on)
        sync_blink (blink_on);
        audition_blink (blink_on);
        feedback_blink (blink_on);
+       error_blink (blink_on);
 }
 
 void
@@ -2262,7 +2366,7 @@ ARDOUR_UI::update_clocks ()
        if (!_session) return;
 
        if (editor && !editor->dragging_playhead()) {
-               Clock (_session->audible_frame(), false, editor->get_preferred_edit_position()); /* EMIT_SIGNAL */
+               Clock (_session->audible_frame(), false, editor->get_preferred_edit_position (EDIT_IGNORE_PHEAD)); /* EMIT_SIGNAL */
        }
 }
 
@@ -2282,10 +2386,101 @@ ARDOUR_UI::stop_clocking ()
        clock_signal_connection.disconnect ();
 }
 
+bool
+ARDOUR_UI::save_as_progress_update (float fraction, int64_t cnt, int64_t total, Gtk::Label* label, Gtk::ProgressBar* bar)
+{
+       char buf[256];
+
+       snprintf (buf, sizeof (buf), _("Copied %" PRId64 " of %" PRId64), cnt, total);
+
+       label->set_text (buf);
+       bar->set_fraction (fraction);
+
+       /* process events, redraws, etc. */
+       
+       while (gtk_events_pending()) {
+               gtk_main_iteration ();
+       }
+
+       return true; /* continue with save-as */
+}
+
 void
 ARDOUR_UI::save_session_as ()
 {
+       if (!_session) {
+               return;
+       }
+
+       if (!save_as_dialog) {
+               save_as_dialog = new SaveAsDialog;
+       } else {
+               save_as_dialog->clear_name ();
+       }
+
+       int response = save_as_dialog->run ();
+
+       save_as_dialog->hide ();
+       
+       switch (response) {
+       case Gtk::RESPONSE_OK:
+               break;
+       default:
+               return;
+       }
+       
        
+       Session::SaveAs sa;
+
+       sa.new_parent_folder = save_as_dialog->new_parent_folder ();
+       sa.new_name = save_as_dialog->new_name ();
+       sa.switch_to = save_as_dialog->switch_to();
+       sa.copy_media = save_as_dialog->copy_media();
+       sa.copy_external = save_as_dialog->copy_external();
+       sa.include_media = save_as_dialog->include_media ();
+
+       /* Only bother with a progress dialog if we're going to copy
+          media into the save-as target. Without that choice, this
+          will be very fast because we're only talking about a few kB's to
+          perhaps a couple of MB's of data.
+       */
+       
+       ArdourDialog progress_dialog (_("Save As"), true);
+
+       if (sa.include_media && sa.copy_media) {
+               
+               Gtk::Label label;
+               Gtk::ProgressBar progress_bar;
+               
+               progress_dialog.get_vbox()->pack_start (label);
+               progress_dialog.get_vbox()->pack_start (progress_bar);
+               label.show ();
+               progress_bar.show ();
+
+               /* this signal will be emitted from within this, the calling thread,
+                * after every file is copied. It provides information on percentage
+                * complete (in terms of total data to copy), the number of files
+                * copied so far, and the total number to copy.
+                */
+               
+               ScopedConnection c;
+               
+               sa.Progress.connect_same_thread (c, boost::bind (&ARDOUR_UI::save_as_progress_update, this, _1, _2, _3, &label, &progress_bar));
+               
+               progress_dialog.show_all ();
+               progress_dialog.present ();
+       }
+       
+       if (_session->save_as (sa)) {
+               /* ERROR MESSAGE */
+               MessageDialog msg (string_compose (_("Save As failed: %1"), sa.failure_message));
+               msg.run ();
+       }
+
+       if (!sa.include_media) {
+               unload_session (false);
+               load_session (sa.final_session_folder_name, sa.new_name);
+       }
 }
 
 /** Ask the user for the name of a new snapshot and then take it.
@@ -2438,6 +2633,10 @@ ARDOUR_UI::save_state (const string & name, bool switch_to_it)
 
        _session->add_extra_xml (*node);
 
+       if (export_video_dialog) {
+               _session->add_extra_xml (export_video_dialog->get_state());
+       }
+
        save_state_canfail (name, switch_to_it);
 }
 
@@ -2546,7 +2745,7 @@ ARDOUR_UI::edit_metadata ()
 {
        SessionMetadataEditor dialog;
        dialog.set_session (_session);
-       editor->ensure_float (dialog);
+       dialog.grab_focus ();
        dialog.run ();
 }
 
@@ -2555,7 +2754,6 @@ ARDOUR_UI::import_metadata ()
 {
        SessionMetadataImporter dialog;
        dialog.set_session (_session);
-       editor->ensure_float (dialog);
        dialog.run ();
 }
 
@@ -2574,7 +2772,7 @@ ARDOUR_UI::ask_about_loading_existing_session (const std::string& session_path)
        msg.set_name (X_("OpenExistingDialog"));
        msg.set_title (_("Open Existing Session"));
        msg.set_wmclass (X_("existing_session"), PROGRAM_NAME);
-       msg.set_position (Gtk::WIN_POS_MOUSE);
+       msg.set_position (Gtk::WIN_POS_CENTER);
        pop_back_splash (msg);
 
        switch (msg.run()) {
@@ -2636,19 +2834,16 @@ ARDOUR_UI::build_session_from_dialog (SessionDialog& sd, const std::string& sess
 }
 
 void
-ARDOUR_UI::idle_load (const std::string& path)
+ARDOUR_UI::load_from_application_api (const std::string& path)
 {
-       if (_session) {
-               if (Glib::file_test (path, Glib::FILE_TEST_IS_DIR)) {
-                       /* /path/to/foo => /path/to/foo, foo */
-                       load_session (path, basename_nosuffix (path));
-               } else {
-                       /* /path/to/foo/foo.ardour => /path/to/foo, foo */
-                       load_session (Glib::path_get_dirname (path), basename_nosuffix (path));
-               }
+       ARDOUR_COMMAND_LINE::session_name = path;
 
+       if (Glib::file_test (path, Glib::FILE_TEST_IS_DIR)) {
+               /* /path/to/foo => /path/to/foo, foo */
+               load_session (path, basename_nosuffix (path));
        } else {
-               ARDOUR_COMMAND_LINE::session_name = path;
+               /* /path/to/foo/foo.ardour => /path/to/foo, foo */
+               load_session (Glib::path_get_dirname (path), basename_nosuffix (path));
        }
 }
 
@@ -2971,7 +3166,6 @@ ARDOUR_UI::load_session (const std::string& path, const std::string& snap_name,
                                   Gtk::MESSAGE_INFO,
                                   BUTTONS_OK);
 
-               msg.set_keep_above (true);
                msg.set_title (_("Loading Error"));
                msg.set_position (Gtk::WIN_POS_CENTER);
                pop_back_splash (msg);
@@ -2995,8 +3189,7 @@ ARDOUR_UI::load_session (const std::string& path, const std::string& snap_name,
                                   true,
                                   Gtk::MESSAGE_INFO,
                                   BUTTONS_OK);
-               
-               msg.set_keep_above (true);
+
                msg.set_title (_("Read-only Session"));
                msg.set_position (Gtk::WIN_POS_CENTER);
                pop_back_splash (msg);
@@ -3074,6 +3267,7 @@ ARDOUR_UI::build_session (const std::string& path, const std::string& snap_name,
        XMLNode* n;
        n = Config->instant_xml (X_("Editor"));
        if (n) {
+               n->remove_nodes_and_delete ("Selection"); // no not apply selection to new sessions.
                new_session->add_instant_xml (*n, false);
        }
        n = Config->instant_xml (X_("Mixer"));
@@ -3127,6 +3321,12 @@ ARDOUR_UI::launch_tracker ()
        PBD::open_uri ("http://tracker.ardour.org/bug_report_page.php");
 }
 
+void
+ARDOUR_UI::launch_subscribe ()
+{
+       PBD::open_uri ("https://community.ardour.org/s/subscribe");
+}
+
 void
 ARDOUR_UI::launch_cheat_sheet ()
 {
@@ -3413,46 +3613,50 @@ ARDOUR_UI::flush_trash ()
 }
 
 void
-ARDOUR_UI::setup_order_hint ()
+ARDOUR_UI::setup_order_hint (AddRouteDialog::InsertAt place)
 {
-       uint32_t order_hint = 0;
+       uint32_t order_hint = UINT32_MAX;
 
+       if (editor->get_selection().tracks.empty()) {
+               return;
+       }
+       
        /*
          we want the new routes to have their order keys set starting from 
          the highest order key in the selection + 1 (if available).
        */
-       if (add_route_dialog->get_transient_for () == mixer->get_toplevel()) {
-               for (RouteUISelection::iterator s = mixer->selection().routes.begin(); s != mixer->selection().routes.end(); ++s) {
-                       if ((*s)->route()->order_key() > order_hint) {
-                               order_hint = (*s)->route()->order_key();
-                       }
-               }
-
-               if (!mixer->selection().routes.empty()) {
+       
+       if (place == AddRouteDialog::AfterSelection) {
+               RouteTimeAxisView *rtav = dynamic_cast<RouteTimeAxisView*> (editor->get_selection().tracks.back());
+               if (rtav) {
+                       order_hint = rtav->route()->order_key();
                        order_hint++;
                }
-
-       } else {
-               for (TrackSelection::iterator s = editor->get_selection().tracks.begin(); s != editor->get_selection().tracks.end(); ++s) {
-                       RouteTimeAxisView* tav = dynamic_cast<RouteTimeAxisView*> (*s);
-                       if (tav && tav->route() && tav->route()->order_key() > order_hint) {
-                               order_hint = tav->route()->order_key();
-                       }
+       } else if (place == AddRouteDialog::BeforeSelection) {
+               RouteTimeAxisView *rtav = dynamic_cast<RouteTimeAxisView*> (editor->get_selection().tracks.front());
+               if (rtav) {
+                       order_hint = rtav->route()->order_key();
                }
+       } else if (place == AddRouteDialog::First) {
+               order_hint = 0;
+       } else {
+               /* leave order_hint at UINT32_MAX */
+       }
 
-               if (!editor->get_selection().tracks.empty()) {
-                       order_hint++;
-               }
+       if (order_hint == UINT32_MAX) {
+               /** AddRouteDialog::Last or selection with first/last not a RouteTimeAxisView
+                * not setting an order hint will place new routes last.
+                */
+               return;
        }
 
        _session->set_order_hint (order_hint);
 
        /* create a gap in the existing route order keys to accomodate new routes.*/
-
        boost::shared_ptr <RouteList> rd = _session->get_routes();
        for (RouteList::iterator ri = rd->begin(); ri != rd->end(); ++ri) {
                boost::shared_ptr<Route> rt (*ri);
-                       
+
                if (rt->is_monitor()) {
                        continue;
                }
@@ -3464,7 +3668,7 @@ ARDOUR_UI::setup_order_hint ()
 }
 
 void
-ARDOUR_UI::add_route (Gtk::Window* float_window)
+ARDOUR_UI::add_route (Gtk::Window* /* ignored */)
 {
        int count;
 
@@ -3477,11 +3681,6 @@ ARDOUR_UI::add_route (Gtk::Window* float_window)
                return;
        }
 
-       if (float_window) {
-               add_route_dialog->unset_transient_for ();
-               add_route_dialog->set_transient_for (*float_window);
-       }
-
        ResponseType r = (ResponseType) add_route_dialog->run ();
 
        add_route_dialog->hide();
@@ -3498,7 +3697,7 @@ ARDOUR_UI::add_route (Gtk::Window* float_window)
                return;
        }
 
-       setup_order_hint();
+       setup_order_hint(add_route_dialog->insert_at());
 
        string template_path = add_route_dialog->track_template();
        DisplaySuspender ds;
@@ -3592,7 +3791,7 @@ ARDOUR_UI::start_video_server (Gtk::Window* float_window, bool popup_msg)
        int firsttime = 0;
        while (!ARDOUR_UI::instance()->video_timeline->check_server()) {
                if (firsttime++) {
-                       warning << _("Could not connect to the Video Server. Start it or configure its access URL in Edit -> Preferences.") << endmsg;
+                       warning << _("Could not connect to the Video Server. Start it or configure its access URL in Preferences.") << endmsg;
                }
                VideoServerDialog *video_server_dialog = new VideoServerDialog (_session);
                if (float_window) {
@@ -3697,7 +3896,7 @@ ARDOUR_UI::add_video (Gtk::Window* float_window)
        }
 
        if (!start_video_server(float_window, false)) {
-               warning << _("Could not connect to the Video Server. Start it or configure its access URL in Edit -> Preferences.") << endmsg;
+               warning << _("Could not connect to the Video Server. Start it or configure its access URL in Preferences.") << endmsg;
                return;
        }
 
@@ -3820,6 +4019,8 @@ ARDOUR_UI::remove_video ()
        _session->add_extra_xml(*node);
        node = new XMLNode(X_("Videomonitor"));
        _session->add_extra_xml(*node);
+       node = new XMLNode(X_("Videoexport"));
+       _session->add_extra_xml(*node);
        stop_video_server();
 }
 
@@ -3834,6 +4035,29 @@ ARDOUR_UI::flush_videotimeline_cache (bool localcacheonly)
        editor->queue_visual_videotimeline_update();
 }
 
+void
+ARDOUR_UI::export_video (bool range)
+{
+       if (ARDOUR::Config->get_show_video_export_info()) {
+               ExportVideoInfobox infobox (_session);
+               Gtk::ResponseType rv = (Gtk::ResponseType) infobox.run();
+               if (infobox.show_again()) {
+                       ARDOUR::Config->set_show_video_export_info(false);
+               }
+               switch (rv) {
+                       case GTK_RESPONSE_YES:
+                               PBD::open_uri (ARDOUR::Config->get_reference_manual_url() + "/video-timeline/operations/#export");
+                               break;
+                       default:
+                               break;
+               }
+       }
+       export_video_dialog->set_session (_session);
+       export_video_dialog->apply_state(editor->get_selection().time, range);
+       export_video_dialog->run ();
+       export_video_dialog->hide ();
+}
+
 XMLNode*
 ARDOUR_UI::mixer_settings () const
 {
@@ -3893,7 +4117,10 @@ ARDOUR_UI::keyboard_settings () const
 void
 ARDOUR_UI::create_xrun_marker (framepos_t where)
 {
-       editor->mouse_add_new_marker (where, false, true);
+       if (_session) {
+               Location *location = new Location (*_session, where, where, _("xrun"), Location::IsMark);
+               _session->locations()->add (location);
+       }
 }
 
 void
@@ -4187,6 +4414,7 @@ int
 ARDOUR_UI::reconnect_to_engine ()
 {
        if (AudioEngine::instance()->start ()) {
+               // TODO somehow make this the topmost window (above any dialogs currently visible)
                if (editor) {
                        MessageDialog msg (*editor,  _("Could not reconnect to the Audio/MIDI engine"));
                        msg.run ();
@@ -4214,13 +4442,13 @@ void
 ARDOUR_UI::update_transport_clocks (framepos_t pos)
 {
        if (ui_config->get_primary_clock_delta_edit_cursor()) {
-               primary_clock->set (pos, false, editor->get_preferred_edit_position());
+               primary_clock->set (pos, false, editor->get_preferred_edit_position (EDIT_IGNORE_PHEAD));
        } else {
                primary_clock->set (pos);
        }
 
        if (ui_config->get_secondary_clock_delta_edit_cursor()) {
-               secondary_clock->set (pos, false, editor->get_preferred_edit_position());
+               secondary_clock->set (pos, false, editor->get_preferred_edit_position (EDIT_IGNORE_PHEAD));
        } else {
                secondary_clock->set (pos);
        }
@@ -4580,3 +4808,66 @@ ARDOUR_UI::set_flat_buttons ()
 {
        CairoWidget::set_flat_buttons( config()->get_flat_buttons() );
 }
+
+void
+ARDOUR_UI::audioengine_became_silent ()
+{
+       MessageDialog msg (string_compose (_("This is a free/demo copy of %1. It has just switched to silent mode."), PROGRAM_NAME),
+                          true,
+                          Gtk::MESSAGE_WARNING,
+                          Gtk::BUTTONS_NONE,
+                          true);
+
+       msg.set_title (string_compose (_("%1 is now silent"), PROGRAM_NAME));
+
+       Gtk::Label pay_label (string_compose (_("Please consider paying for a copy of %1 - you can pay whatever you want."), PROGRAM_NAME));
+       Gtk::Label subscribe_label (_("Better yet become a subscriber - subscriptions start at US$1 per month."));
+       Gtk::Button pay_button (_("Pay for a copy (via the web)"));
+       Gtk::Button subscribe_button (_("Become a subscriber (via the web)"));
+       Gtk::HBox pay_button_box;
+       Gtk::HBox subscribe_button_box;
+
+       pay_button_box.pack_start (pay_button, true, false);
+       subscribe_button_box.pack_start (subscribe_button, true, false);
+
+       bool (*openuri)(const char*) = PBD::open_uri; /* this forces selection of the const char* variant of PBD::open_uri(), which we need to avoid ambiguity below */
+       
+       pay_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::ptr_fun (openuri), (const char*) "https://ardour.org/download")));
+       subscribe_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::ptr_fun (openuri), (const char*) "https://community.ardour.org/s/subscribe")));
+       
+       msg.get_vbox()->pack_start (pay_label);
+       msg.get_vbox()->pack_start (pay_button_box);
+       msg.get_vbox()->pack_start (subscribe_label);
+       msg.get_vbox()->pack_start (subscribe_button_box);
+
+       msg.get_vbox()->show_all ();
+       
+       msg.add_button (_("Remain silent"), Gtk::RESPONSE_CANCEL);
+       msg.add_button (_("Save and quit"), Gtk::RESPONSE_NO);
+       msg.add_button (_("Give me more time"), Gtk::RESPONSE_YES);
+       
+       int r = msg.run ();
+
+       switch (r) {
+       case Gtk::RESPONSE_YES:
+               AudioEngine::instance()->reset_silence_countdown ();
+               break;
+
+       case Gtk::RESPONSE_NO:
+               /* save and quit */
+               save_state_canfail ("");
+               exit (0);
+               break;
+
+       case Gtk::RESPONSE_CANCEL:
+       default:
+               /* don't reset, save session and exit */
+               break;
+       }
+}
+       
+void
+ARDOUR_UI::hide_application ()
+{
+    Application::instance ()-> hide ();
+}