fix conflicts and merge with master
[ardour.git] / gtk2_ardour / ardour_ui.cc
index 1d08d65215ac3785d86cee8587724f70315f4e0c..c3d3211db1d04843a4ddcc783d35f0eb774141cf 100644 (file)
@@ -27,7 +27,9 @@
 #include <cerrno>
 #include <fstream>
 
-#include <boost/locale.hpp>
+#ifndef WIN32
+#include <sys/resource.h>
+#endif
 
 #include <stdint.h>
 #include <fcntl.h>
@@ -35,9 +37,8 @@
 #include <unistd.h>
 #include <time.h>
 
-#include <sys/resource.h>
-#include <sys/types.h>
-#include <sys/sysctl.h>
+#include <glib.h>
+#include <glib/gstdio.h>
 
 #include <gtkmm/messagedialog.h>
 #include <gtkmm/accelmap.h>
@@ -50,6 +51,7 @@
 #include "pbd/memento_command.h"
 #include "pbd/openuri.h"
 #include "pbd/file_utils.h"
+#include "pbd/localtime_r.h"
 
 #include "gtkmm2ext/application.h"
 #include "gtkmm2ext/bindings.h"
@@ -60,9 +62,8 @@
 #include "gtkmm2ext/popup.h"
 #include "gtkmm2ext/window_title.h"
 
-#include "midi++/manager.h"
-
 #include "ardour/ardour.h"
+#include "ardour/audio_backend.h"
 #include "ardour/audioengine.h"
 #include "ardour/audiofilesource.h"
 #include "ardour/automation_watch.h"
@@ -146,14 +147,24 @@ sigc::signal<void>      ARDOUR_UI::CloseAllDialogs;
 ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
 
        : Gtkmm2ext::UI (PROGRAM_NAME, argcp, argvp)
-
+       
        , gui_object_state (new GUIObjectState)
+
        , 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 */
 
        , big_clock (new AudioClock (X_("bigclock"), false, "big", true, true, false, false))
+       , video_timeline(0)
+
+         /* start of private members */
+
+       , _startup (0)
+       , nsm (0)
+       , _was_dirty (false)
+       , _mixer_on_top (false)
+       , first_time_engine_run (true)
 
          /* transport */
 
@@ -173,6 +184,9 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        , solo_alert_button (_("solo"))
        , feedback_alert_button (_("feedback"))
 
+       , editor_meter(0)
+       , editor_meter_peak_display()
+
        , speaker_config_window (X_("speaker-config"), _("Speaker Configuration"))
        , theme_manager (X_("theme-manager"), _("Theme Manager"))
        , key_editor (X_("key-editor"), _("Key Bindings"))
@@ -192,23 +206,23 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
 
        , _status_bar_visibility (X_("status-bar"))
        , _feedback_exists (false)
-
+       , _audio_midi_setup (0)
 {
        Gtkmm2ext::init(localedir);
 
        splash = 0;
-       _startup = 0;
 
        if (theArdourUI == 0) {
                theArdourUI = this;
        }
 
        ui_config = new UIConfiguration();
+       _audio_midi_setup = new EngineControl;
 
        editor = 0;
        mixer = 0;
+       meterbridge = 0;
        editor = 0;
-       engine = 0;
        _session_is_new = false;
        session_selector_window = 0;
        last_key_press_time = 0;
@@ -256,6 +270,10 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
 
        ARDOUR::Session::AskAboutPendingState.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::pending_state_dialog, this));
 
+       /* handle Audio/MIDI setup when session requires it */
+
+       ARDOUR::Session::AudioEngineSetupRequired.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::do_audio_midi_setup, this, _1));
+
        /* handle sr mismatch with a dialog (PROBLEM: needs to return a value and thus cannot be x-thread) */
 
        ARDOUR::Session::AskAboutSampleRateMismatch.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::sr_mismatch_dialog, this, _1, _2));
@@ -275,25 +293,14 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
 
        /* and ambiguous files */
 
-       ARDOUR::FileSource::AmbiguousFileName.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::ambiguous_file, this, _1, _2, _3));
+       ARDOUR::FileSource::AmbiguousFileName.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::ambiguous_file, this, _1, _2));
 
        /* lets get this party started */
 
-       try {
-               if (ARDOUR::init (ARDOUR_COMMAND_LINE::use_vst, ARDOUR_COMMAND_LINE::try_hw_optimization, localedir)) {
-                       throw failed_constructor ();
-               }
-
-               setup_gtk_ardour_enums ();
-               setup_profile ();
+       setup_gtk_ardour_enums ();
+       setup_profile ();
 
-               SessionEvent::create_per_thread_pool ("GUI", 512);
-
-       } catch (failed_constructor& err) {
-               error << string_compose (_("could not initialize %1."), PROGRAM_NAME) << endmsg;
-               // pass it on up
-               throw;
-       }
+       SessionEvent::create_per_thread_pool ("GUI", 512);
 
        /* we like keyboards */
 
@@ -311,7 +318,7 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
 
        TimeAxisViewItem::set_constant_heights ();
 
-       /* load up the UI manager */
+        /* Set this up so that our window proxies can register actions */
 
        ActionManager::init ();
 
@@ -336,20 +343,20 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
                midi_port_matrix.set_state (*ui_xml);
        }
 
-       WindowManager::instance().register_window (&theme_manager);
-       WindowManager::instance().register_window (&key_editor);
-       WindowManager::instance().register_window (&rc_option_editor);
-       WindowManager::instance().register_window (&session_option_editor);
-       WindowManager::instance().register_window (&speaker_config_window);
-       WindowManager::instance().register_window (&about);
-       WindowManager::instance().register_window (&add_route_dialog);
-       WindowManager::instance().register_window (&add_video_dialog);
-       WindowManager::instance().register_window (&route_params);
-       WindowManager::instance().register_window (&bundle_manager);
-       WindowManager::instance().register_window (&location_ui);
-       WindowManager::instance().register_window (&big_clock_window);
-       WindowManager::instance().register_window (&audio_port_matrix);
-       WindowManager::instance().register_window (&midi_port_matrix);
+       WM::Manager::instance().register_window (&theme_manager);
+       WM::Manager::instance().register_window (&key_editor);
+       WM::Manager::instance().register_window (&rc_option_editor);
+       WM::Manager::instance().register_window (&session_option_editor);
+       WM::Manager::instance().register_window (&speaker_config_window);
+       WM::Manager::instance().register_window (&about);
+       WM::Manager::instance().register_window (&add_route_dialog);
+       WM::Manager::instance().register_window (&add_video_dialog);
+       WM::Manager::instance().register_window (&route_params);
+       WM::Manager::instance().register_window (&bundle_manager);
+       WM::Manager::instance().register_window (&location_ui);
+       WM::Manager::instance().register_window (&big_clock_window);
+       WM::Manager::instance().register_window (&audio_port_matrix);
+       WM::Manager::instance().register_window (&midi_port_matrix);
 
        /* We need to instantiate the theme manager because it loads our
           theme files. This should really change so that its window
@@ -365,6 +372,8 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        _process_thread->init ();
 
        DPIReset.connect (sigc::mem_fun (*this, &ARDOUR_UI::resize_text_widgets));
+
+       attach_to_engine ();
 }
 
 GlobalPortMatrixWindow*
@@ -376,48 +385,143 @@ ARDOUR_UI::create_global_port_matrix (ARDOUR::DataType type)
        return new GlobalPortMatrixWindow (_session, type);
 }
 
-int
-ARDOUR_UI::create_engine ()
+void
+ARDOUR_UI::attach_to_engine ()
+{
+       AudioEngine::instance()->Running.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_running, this), gui_context());
+       ARDOUR::Port::set_connecting_blocked (ARDOUR_COMMAND_LINE::no_connect_ports);
+}
+
+void
+ARDOUR_UI::engine_stopped ()
 {
-       // this gets called every time by new_session()
+       ENSURE_GUI_THREAD (*this, &ARDOUR_UI::engine_stopped)
+       ActionManager::set_sensitive (ActionManager::engine_sensitive_actions, false);
+       ActionManager::set_sensitive (ActionManager::engine_opposite_sensitive_actions, true);
+}
 
-       if (engine) {
-               return 0;
+void
+ARDOUR_UI::engine_running ()
+{
+       if (first_time_engine_run) {
+               post_engine();
+               first_time_engine_run = false;
        }
+       
+       ActionManager::set_sensitive (ActionManager::engine_sensitive_actions, true);
+       ActionManager::set_sensitive (ActionManager::engine_opposite_sensitive_actions, false);
 
-       loading_message (_("Starting audio engine"));
+       Glib::RefPtr<Action> action;
+       const char* action_name = 0;
 
-       try {
-               engine = new ARDOUR::AudioEngine (ARDOUR_COMMAND_LINE::jack_client_name, ARDOUR_COMMAND_LINE::jack_session_uuid);
+       switch (AudioEngine::instance()->samples_per_cycle()) {
+       case 32:
+               action_name = X_("JACKLatency32");
+               break;
+       case 64:
+               action_name = X_("JACKLatency64");
+               break;
+       case 128:
+               action_name = X_("JACKLatency128");
+               break;
+       case 512:
+               action_name = X_("JACKLatency512");
+               break;
+       case 1024:
+               action_name = X_("JACKLatency1024");
+               break;
+       case 2048:
+               action_name = X_("JACKLatency2048");
+               break;
+       case 4096:
+               action_name = X_("JACKLatency4096");
+               break;
+       case 8192:
+               action_name = X_("JACKLatency8192");
+               break;
+       default:
+               /* XXX can we do anything useful ? */
+               break;
+       }
 
-       } catch (...) {
+       if (action_name) {
 
-               return -1;
+               action = ActionManager::get_action (X_("JACK"), action_name);
+
+               if (action) {
+                       Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic (action);
+                       ract->set_active ();
+               }
+
+               update_disk_space ();
+               update_cpu_load ();
+               update_sample_rate (AudioEngine::instance()->sample_rate());
+               update_timecode_format ();
+       }
+}
+
+void
+ARDOUR_UI::engine_halted (const char* reason, bool free_reason)
+{
+       if (!Gtkmm2ext::UI::instance()->caller_is_ui_thread()) {
+               /* we can't rely on the original string continuing to exist when we are called
+                  again in the GUI thread, so make a copy and note that we need to
+                  free it later.
+               */
+               char *copy = strdup (reason);
+               Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&ARDOUR_UI::engine_halted, this, copy, true));
+               return;
        }
 
-       engine->Stopped.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_stopped, this), gui_context());
-       engine->Running.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::engine_running, this), gui_context());
-       engine->SampleRateChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::update_sample_rate, this, _1), gui_context());
+       ActionManager::set_sensitive (ActionManager::engine_sensitive_actions, false);
+       ActionManager::set_sensitive (ActionManager::engine_opposite_sensitive_actions, true);
 
-       engine->Halted.connect_same_thread (forever_connections, boost::bind (&ARDOUR_UI::engine_halted, this, _1, false));
+       update_sample_rate (0);
 
-       ARDOUR::Port::set_connecting_blocked (ARDOUR_COMMAND_LINE::no_connect_ports);
+       string msgstr;
 
-       post_engine ();
+       /* if the reason is a non-empty string, it means that the backend was shutdown
+          rather than just Ardour.
+       */
 
-       return 0;
+       if (strlen (reason)) {
+               msgstr = string_compose (_("The audio backend (JACK) was shutdown because:\n\n%1"), reason);
+       } else {
+               msgstr = string_compose (_("\
+JACK has either been shutdown or it\n\
+disconnected %1 because %1\n\
+was not fast enough. Try to restart\n\
+JACK, reconnect and save the session."), PROGRAM_NAME);
+       }
+
+       MessageDialog msg (*editor, msgstr);
+       pop_back_splash (msg);
+       msg.set_keep_above (true);
+       msg.run ();
+       
+       if (free_reason) {
+               free (const_cast<char*> (reason));
+       }
 }
 
 void
 ARDOUR_UI::post_engine ()
 {
-       /* Things to be done once we create the AudioEngine
+       /* Things to be done once (and once ONLY) after we have a backend running in the AudioEngine
         */
 
        ARDOUR::init_post_engine ();
+       
+       /* connect to important signals */
+
+       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()->Halted.connect_same_thread (halt_connection, boost::bind (&ARDOUR_UI::engine_halted, this, _1, false));
 
        _tooltips.enable();
 
+       ActionManager::load_menus ();
+
        if (setup_windows ()) {
                throw failed_constructor ();
        }
@@ -475,25 +579,9 @@ ARDOUR_UI::post_engine ()
        Glib::signal_timeout().connect_seconds (sigc::mem_fun(*this, &ARDOUR_UI::update_wall_clock), 1);
 #endif
 
-       update_disk_space ();
-       update_cpu_load ();
-       update_sample_rate (engine->frame_rate());
-       update_timecode_format ();
-
        Config->ParameterChanged.connect (forever_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::parameter_changed, this, _1), gui_context());
        boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
        Config->map_parameters (pc);
-
-       /* now start and maybe save state */
-
-       if (do_engine_start () == 0) {
-               if (_session && _session_is_new) {
-                       /* we need to retain initial visual
-                          settings for a new session
-                       */
-                       _session->save_state ("");
-               }
-       }
 }
 
 ARDOUR_UI::~ARDOUR_UI ()
@@ -501,6 +589,7 @@ ARDOUR_UI::~ARDOUR_UI ()
        delete keyboard;
        delete editor;
        delete mixer;
+       delete meterbridge;
 
        stop_video_server();
 }
@@ -678,6 +767,7 @@ ARDOUR_UI::startup ()
 {
        Application* app = Application::instance ();
        char *nsm_url;
+
        app->ShouldQuit.connect (sigc::mem_fun (*this, &ARDOUR_UI::queue_finish));
        app->ShouldLoad.connect (sigc::mem_fun (*this, &ARDOUR_UI::idle_load));
 
@@ -688,7 +778,6 @@ ARDOUR_UI::startup ()
        app->ready ();
 
        nsm_url = getenv ("NSM_URL");
-       nsm = 0;
 
        if (nsm_url) {
                nsm = new NSM_Client;
@@ -746,7 +835,7 @@ ARDOUR_UI::startup ()
 
        goto_editor_window ();
 
-       WindowManager::instance().show_visible ();
+       WM::Manager::instance().show_visible ();
 
        /* We have to do this here since goto_editor_window() ends up calling show_all() on the
         * editor window, and we may want stuff to be hidden.
@@ -766,14 +855,14 @@ ARDOUR_UI::no_memory_warning ()
 void
 ARDOUR_UI::check_memory_locking ()
 {
-#ifdef __APPLE__
+#if defined(__APPLE__) || defined(WIN32)
        /* OS X doesn't support mlockall(2), and so testing for memory locking capability there is pointless */
        return;
 #else // !__APPLE__
 
        XMLNode* memory_warning_node = Config->instant_xml (X_("no-memory-warning"));
 
-       if (engine->is_realtime() && memory_warning_node == 0) {
+       if (AudioEngine::instance()->is_realtime() && memory_warning_node == 0) {
 
                struct rlimit limits;
                int64_t ram;
@@ -806,13 +895,13 @@ ARDOUR_UI::check_memory_locking ()
                                                  "runs out of memory. \n\n"
                                                  "You can view the memory limit with 'ulimit -l', "
                                                  "and it is normally controlled by %2"),
-                                               PROGRAM_NAME).c_str()
+                                               PROGRAM_NAME, 
 #ifdef __FreeBSD__
-                                       X_("/etc/login.conf")
+                                               X_("/etc/login.conf")
 #else
-                                       X_(" /etc/security/limits.conf")
+                                               X_(" /etc/security/limits.conf")
 #endif
-                                       );
+                                       ).c_str());
 
                                msg.set_default_response (RESPONSE_OK);
 
@@ -888,11 +977,11 @@ If you still wish to quit, please use the\n\n\
 
                second_connection.disconnect ();
                point_one_second_connection.disconnect ();
-               point_oh_five_second_connection.disconnect ();
-               point_zero_one_second_connection.disconnect();
+               point_zero_something_second_connection.disconnect();
        }
 
        delete ARDOUR_UI::instance()->video_timeline;
+       ARDOUR_UI::instance()->video_timeline = NULL;
        stop_video_server();
 
        /* Save state before deleting the session, as that causes some
@@ -913,7 +1002,8 @@ If you still wish to quit, please use the\n\n\
                _session = 0;
        }
 
-       engine->stop (true);
+       halt_connection.disconnect ();
+       AudioEngine::instance()->stop ();
        quit ();
 }
 
@@ -1018,11 +1108,20 @@ ARDOUR_UI::every_point_one_seconds ()
 }
 
 gint
-ARDOUR_UI::every_point_zero_one_seconds ()
+ARDOUR_UI::every_point_zero_something_seconds ()
 {
-       // august 2007: actual update frequency: 40Hz, not 100Hz
+       // august 2007: actual update frequency: 25Hz (40ms), not 100Hz
 
        SuperRapidScreenUpdate(); /* EMIT_SIGNAL */
+       if (editor_meter && Config->get_show_editor_meter()) {
+               float mpeak = editor_meter->update_meters();
+               if (mpeak > editor_meter_max_peak) {
+                       if (mpeak >= Config->get_meter_peak()) {
+                               editor_meter_peak_display.set_name ("meterbridge peakindicator on");
+                               editor_meter_peak_display.set_elements((ArdourButton::Element) (ArdourButton::Edge|ArdourButton::Body));
+                       }
+               }
+       }
        return TRUE;
 }
 
@@ -1033,22 +1132,28 @@ ARDOUR_UI::update_sample_rate (framecnt_t)
 
        ENSURE_GUI_THREAD (*this, &ARDOUR_UI::update_sample_rate, ignored)
 
-       if (!engine->connected()) {
+       if (!AudioEngine::instance()->connected()) {
 
-               snprintf (buf, sizeof (buf), "%s", _("disconnected"));
+               snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"red\">none</span>"));
 
        } else {
 
-               framecnt_t rate = engine->frame_rate();
+               framecnt_t rate = AudioEngine::instance()->sample_rate();
 
-               if (fmod (rate, 1000.0) != 0.0) {
-                       snprintf (buf, sizeof (buf), _("JACK: <span foreground=\"green\">%.1f kHz / %4.1f ms</span>"),
-                                 (float) rate/1000.0f,
-                                 (engine->frames_per_cycle() / (float) rate) * 1000.0f);
+               if (rate == 0) {
+                       /* no sample rate available */
+                       snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"red\">none</span>"));
                } else {
-                       snprintf (buf, sizeof (buf), _("JACK: <span foreground=\"green\">%" PRId64 " kHz / %4.1f ms</span>"),
-                                 rate/1000,
-                                 (engine->frames_per_cycle() / (float) rate) * 1000.0f);
+
+                       if (fmod (rate, 1000.0) != 0.0) {
+                               snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"green\">%.1f kHz / %4.1f ms</span>"),
+                                         (float) rate / 1000.0f,
+                                         (AudioEngine::instance()->usecs_per_cycle() / 1000.0f));
+                       } else {
+                               snprintf (buf, sizeof (buf), _("Audio: <span foreground=\"green\">%" PRId64 " kHz / %4.1f ms</span>"),
+                                         rate/1000,
+                                         (AudioEngine::instance()->usecs_per_cycle() / 1000.0f));
+                       }
                }
        }
 
@@ -1118,7 +1223,7 @@ ARDOUR_UI::update_cpu_load ()
           should also be changed.
        */
 
-       float const c = engine->get_cpu_load ();
+       float const c = AudioEngine::instance()->get_cpu_load ();
        snprintf (buf, sizeof (buf), _("DSP: <span foreground=\"%s\">%5.1f%%</span>"), c >= 90 ? X_("red") : X_("green"), c);
        cpu_load_label.set_markup (buf);
 }
@@ -1172,6 +1277,11 @@ ARDOUR_UI::update_disk_space()
        char buf[64];
        framecnt_t fr = _session->frame_rate();
 
+       if (fr == 0) {
+               /* skip update - no SR available */
+               return;
+       }
+
        if (!opt_frames) {
                /* Available space is unknown */
                snprintf (buf, sizeof (buf), "%s", _("Disk: <span foreground=\"green\">Unknown</span>"));
@@ -1434,20 +1544,16 @@ ARDOUR_UI::open_recent_session ()
 bool
 ARDOUR_UI::check_audioengine ()
 {
-       if (engine) {
-               if (!engine->connected()) {
-                       MessageDialog msg (string_compose (
-                                                  _("%1 is not connected to JACK\n"
-                                                    "You cannot open or close sessions in this condition"),
-                                                  PROGRAM_NAME));
-                       pop_back_splash (msg);
-                       msg.run ();
-                       return false;
-               }
-               return true;
-       } else {
+       if (!AudioEngine::instance()->connected()) {
+               MessageDialog msg (string_compose (
+                                          _("%1 is not connected to any audio backend.\n"
+                                            "You cannot open or close sessions in this condition"),
+                                          PROGRAM_NAME));
+               pop_back_splash (msg);
+               msg.run ();
                return false;
        }
+       return true;
 }
 
 void
@@ -1478,7 +1584,14 @@ ARDOUR_UI::open_session ()
                        open_session_selector->set_current_folder(Config->get_default_session_parent_dir());
                }
 
-               open_session_selector->add_shortcut_folder (Config->get_default_session_parent_dir());
+               string default_session_folder = Config->get_default_session_parent_dir();
+               try {
+                       /* add_shortcut_folder throws an exception if the folder being added already has a shortcut */
+                       open_session_selector->add_shortcut_folder (default_session_folder);
+               }
+               catch (Glib::Error & e) {
+                       std::cerr << "open_session_selector->add_shortcut_folder (" << default_session_folder << ") threw Glib::Error " << e.what() << std::endl;
+               }
 
                FileFilter session_filter;
                session_filter.add_pattern ("*.ardour");
@@ -1646,10 +1759,17 @@ ARDOUR_UI::transport_goto_wallclock ()
 
                time (&now);
                localtime_r (&now, &tmnow);
+               
+               int frame_rate = _session->frame_rate();
+               
+               if (frame_rate == 0) {
+                       /* no frame rate available */
+                       return;
+               }
 
-               frames = tmnow.tm_hour * (60 * 60 * _session->frame_rate());
-               frames += tmnow.tm_min * (60 * _session->frame_rate());
-               frames += tmnow.tm_sec * _session->frame_rate();
+               frames = tmnow.tm_hour * (60 * 60 * frame_rate);
+               frames += tmnow.tm_min * (60 * frame_rate);
+               frames += tmnow.tm_sec * frame_rate;
 
                _session->request_locate (frames, _session->transport_rolling ());
 
@@ -2009,127 +2129,6 @@ ARDOUR_UI::map_transport_state ()
        }
 }
 
-void
-ARDOUR_UI::engine_stopped ()
-{
-       ENSURE_GUI_THREAD (*this, &ARDOUR_UI::engine_stopped)
-       ActionManager::set_sensitive (ActionManager::jack_sensitive_actions, false);
-       ActionManager::set_sensitive (ActionManager::jack_opposite_sensitive_actions, true);
-}
-
-void
-ARDOUR_UI::engine_running ()
-{
-       ENSURE_GUI_THREAD (*this, &ARDOUR_UI::engine_running)
-       ActionManager::set_sensitive (ActionManager::jack_sensitive_actions, true);
-       ActionManager::set_sensitive (ActionManager::jack_opposite_sensitive_actions, false);
-
-       Glib::RefPtr<Action> action;
-       const char* action_name = 0;
-
-       switch (engine->frames_per_cycle()) {
-       case 32:
-               action_name = X_("JACKLatency32");
-               break;
-       case 64:
-               action_name = X_("JACKLatency64");
-               break;
-       case 128:
-               action_name = X_("JACKLatency128");
-               break;
-       case 512:
-               action_name = X_("JACKLatency512");
-               break;
-       case 1024:
-               action_name = X_("JACKLatency1024");
-               break;
-       case 2048:
-               action_name = X_("JACKLatency2048");
-               break;
-       case 4096:
-               action_name = X_("JACKLatency4096");
-               break;
-       case 8192:
-               action_name = X_("JACKLatency8192");
-               break;
-       default:
-               /* XXX can we do anything useful ? */
-               break;
-       }
-
-       if (action_name) {
-
-               action = ActionManager::get_action (X_("JACK"), action_name);
-
-               if (action) {
-                       Glib::RefPtr<RadioAction> ract = Glib::RefPtr<RadioAction>::cast_dynamic (action);
-                       ract->set_active ();
-               }
-       }
-}
-
-void
-ARDOUR_UI::engine_halted (const char* reason, bool free_reason)
-{
-       if (!Gtkmm2ext::UI::instance()->caller_is_ui_thread()) {
-               /* we can't rely on the original string continuing to exist when we are called
-                  again in the GUI thread, so make a copy and note that we need to
-                  free it later.
-               */
-               char *copy = strdup (reason);
-               Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&ARDOUR_UI::engine_halted, this, copy, true));
-               return;
-       }
-
-       ActionManager::set_sensitive (ActionManager::jack_sensitive_actions, false);
-       ActionManager::set_sensitive (ActionManager::jack_opposite_sensitive_actions, true);
-
-       update_sample_rate (0);
-
-       string msgstr;
-
-       /* if the reason is a non-empty string, it means that the backend was shutdown
-          rather than just Ardour.
-       */
-
-       if (strlen (reason)) {
-               msgstr = string_compose (_("The audio backend (JACK) was shutdown because:\n\n%1"), reason);
-       } else {
-               msgstr = string_compose (_("\
-JACK has either been shutdown or it\n\
-disconnected %1 because %1\n\
-was not fast enough. Try to restart\n\
-JACK, reconnect and save the session."), PROGRAM_NAME);
-       }
-
-       MessageDialog msg (*editor, msgstr);
-       pop_back_splash (msg);
-       msg.set_keep_above (true);
-       msg.run ();
-       
-       if (free_reason) {
-               free (const_cast<char*> (reason));
-       }
-}
-
-int32_t
-ARDOUR_UI::do_engine_start ()
-{
-       try {
-               engine->start();
-       }
-
-       catch (...) {
-               engine->stop ();
-               error << _("Unable to start the session running")
-                     << endmsg;
-               unload_session ();
-               return -2;
-       }
-
-       return 0;
-}
-
 void
 ARDOUR_UI::update_clocks ()
 {
@@ -2329,7 +2328,7 @@ ARDOUR_UI::save_state (const string & name, bool switch_to_it)
 {
        XMLNode* node = new XMLNode (X_("UI"));
 
-       WindowManager::instance().add_state (*node);
+       WM::Manager::instance().add_state (*node);
 
        node->add_child_nocopy (gui_object_state->get_state());
 
@@ -2680,10 +2679,6 @@ ARDOUR_UI::get_session_parameters (bool quit_on_cancel, bool should_be_new, stri
                        }
                }
        
-               if (create_engine ()) {
-                       break;
-               }
-
                if (Glib::file_test (session_path, Glib::FileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR))) {
 
                        if (likely_new && !nsm) {
@@ -2779,25 +2774,23 @@ ARDOUR_UI::load_session (const std::string& path, const std::string& snap_name,
        int unload_status;
        int retval = -1;
 
-       session_loaded = false;
-
-       if (!check_audioengine()) {
-               return -2;
+       if (_session) {
+               unload_status = unload_session ();
+               
+               if (unload_status < 0) {
+                       goto out;
+               } else if (unload_status > 0) {
+                       retval = 0;
+                       goto out;
+               }
        }
 
-       unload_status = unload_session ();
-
-       if (unload_status < 0) {
-               goto out;
-       } else if (unload_status > 0) {
-               retval = 0;
-               goto out;
-       }
+       session_loaded = false;
 
        loading_message (string_compose (_("Please wait while %1 loads your session"), PROGRAM_NAME));
 
        try {
-               new_session = new Session (*engine, path, snap_name, 0, mix_template);
+               new_session = new Session (*AudioEngine::instance(), path, snap_name, 0, mix_template);
        }
 
        /* this one is special */
@@ -2898,12 +2891,7 @@ ARDOUR_UI::build_session (const std::string& path, const std::string& snap_name,
        Session *new_session;
        int x;
 
-       if (!check_audioengine()) {
-               return -1;
-       }
-
        session_loaded = false;
-
        x = unload_session ();
 
        if (x < 0) {
@@ -2915,7 +2903,7 @@ ARDOUR_UI::build_session (const std::string& path, const std::string& snap_name,
        _session_is_new = true;
 
        try {
-               new_session = new Session (*engine, path, snap_name, &bus_profile);
+               new_session = new Session (*AudioEngine::instance(), path, snap_name, &bus_profile);
        }
 
        catch (...) {
@@ -3383,15 +3371,23 @@ ARDOUR_UI::start_video_server (Gtk::Window* float_window, bool popup_msg)
                if (icsd_docroot.empty()) {icsd_docroot = X_("/");}
 
                struct stat sb;
-               if (!lstat (icsd_docroot.c_str(), &sb) == 0 || !S_ISDIR(sb.st_mode)) {
+               if (!g_lstat (icsd_docroot.c_str(), &sb) == 0 || !S_ISDIR(sb.st_mode)) {
                        warning << _("Specified docroot is not an existing directory.") << endmsg;
                        continue;
                }
-               if ( (!lstat (icsd_exec.c_str(), &sb) == 0)
+#ifndef WIN32
+               if ( (!g_lstat (icsd_exec.c_str(), &sb) == 0)
                     || (sb.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH)) == 0 ) {
                        warning << _("Given Video Server is not an executable file.") << endmsg;
                        continue;
                }
+#else
+               if ( (!g_lstat (icsd_exec.c_str(), &sb) == 0)
+                    || (sb.st_mode & (S_IXUSR)) == 0 ) {
+                       warning << _("Given Video Server is not an executable file.") << endmsg;
+                       continue;
+               }
+#endif
 
                char **argp;
                argp=(char**) calloc(9,sizeof(char*));
@@ -3416,9 +3412,28 @@ ARDOUR_UI::start_video_server (Gtk::Window* float_window, bool popup_msg)
                        Config->set_video_advanced_setup(true);
                }
 
+               if (video_server_process) {
+                       delete video_server_process;
+               }
+
                video_server_process = new SystemExec(icsd_exec, argp);
-               video_server_process->start();
-               sleep(1);
+               if (video_server_process->start()) {
+                       warning << _("Cannot launch the video-server") << endmsg;
+                       continue;
+               }
+               int timeout = 120; // 6 sec
+               while (!ARDOUR_UI::instance()->video_timeline->check_server()) {
+                       usleep (50000);
+                       if (--timeout <= 0 || !video_server_process->is_running()) break;
+               }
+               if (timeout <= 0) {
+                       warning << _("Video-server was started but does not respond to requests...") << endmsg;
+               } else {
+                       if (!ARDOUR_UI::instance()->video_timeline->check_server_docroot()) {
+                               delete video_server_process;
+                               video_server_process = 0;
+                       }
+               }
        }
        return true;
 }
@@ -3448,8 +3463,12 @@ ARDOUR_UI::add_video (Gtk::Window* float_window)
        add_video_dialog->hide();
        if (r != RESPONSE_ACCEPT) { return; }
 
-       bool local_file;
+       bool local_file, orig_local_file;
        std::string path = add_video_dialog->file_name(local_file);
+
+       std::string orig_path = path;
+       orig_local_file = local_file;
+
        bool auto_set_session_fps = add_video_dialog->auto_set_session_fps();
 
        if (local_file && !Glib::file_test(path, Glib::FILE_TEST_EXISTS)) {
@@ -3473,7 +3492,10 @@ ARDOUR_UI::add_video (Gtk::Window* float_window)
                                        return;
                                }
                                if (!transcode_video_dialog->get_audiofile().empty()) {
-                                       editor->embed_audio_from_video(transcode_video_dialog->get_audiofile());
+                                       editor->embed_audio_from_video(
+                                                       transcode_video_dialog->get_audiofile(),
+                                                       video_timeline->get_offset()
+                                                       );
                                }
                                switch (transcode_video_dialog->import_option()) {
                                        case VTL_IMPORT_TRANSCODED:
@@ -3508,6 +3530,11 @@ ARDOUR_UI::add_video (Gtk::Window* float_window)
                node->add_property (X_("Filename"), path);
                node->add_property (X_("AutoFPS"), auto_set_session_fps?X_("1"):X_("0"));
                node->add_property (X_("LocalFile"), local_file?X_("1"):X_("0"));
+               if (orig_local_file) {
+                       node->add_property (X_("OriginalVideoFile"), orig_path);
+               } else {
+                       node->remove_property (X_("OriginalVideoFile"));
+               }
                _session->add_extra_xml (*node);
                _session->set_dirty ();
 
@@ -3532,6 +3559,10 @@ ARDOUR_UI::remove_video ()
        video_timeline->close_session();
        editor->toggle_ruler_video(false);
 
+       /* reset state */
+       video_timeline->set_offset_locked(false);
+       video_timeline->set_offset(0);
+
        /* delete session state */
        XMLNode* node = new XMLNode(X_("Videotimeline"));
        _session->add_extra_xml(*node);
@@ -3767,31 +3798,33 @@ audio may be played at the wrong sample rate.\n"), desired, PROGRAM_NAME, actual
         return 1;
 }
 
-
 void
-ARDOUR_UI::disconnect_from_jack ()
+ARDOUR_UI::disconnect_from_engine ()
 {
-       if (engine) {
-               if (engine->disconnect_from_jack ()) {
-                       MessageDialog msg (*editor, _("Could not disconnect from JACK"));
-                       msg.run ();
-               }
-
-               update_sample_rate (0);
+       /* drop connection to AudioEngine::Halted so that we don't act
+        *  as if the engine unexpectedly shut down
+        */
+       halt_connection.disconnect ();
+       
+       if (AudioEngine::instance()->stop ()) {
+               MessageDialog msg (*editor, _("Could not disconnect from JACK"));
+               msg.run ();
+       } else {
+               AudioEngine::instance()->Halted.connect_same_thread (halt_connection, boost::bind (&ARDOUR_UI::engine_halted, this, _1, false));
        }
+       
+       update_sample_rate (0);
 }
 
 void
-ARDOUR_UI::reconnect_to_jack ()
+ARDOUR_UI::reconnect_to_engine ()
 {
-       if (engine) {
-               if (engine->reconnect_to_jack ()) {
-                       MessageDialog msg (*editor,  _("Could not reconnect to JACK"));
-                       msg.run ();
-               }
-
-               update_sample_rate (0);
+       if (AudioEngine::instance()->start ()) {
+               MessageDialog msg (*editor,  _("Could not reconnect to JACK"));
+               msg.run ();
        }
+       
+       update_sample_rate (0);
 }
 
 void
@@ -4007,7 +4040,7 @@ ARDOUR_UI::missing_file (Session*s, std::string str, DataType type)
 }
 
 int
-ARDOUR_UI::ambiguous_file (std::string file, std::string /*path*/, std::vector<std::string> hits)
+ARDOUR_UI::ambiguous_file (std::string file, std::vector<std::string> hits)
 {
        AmbiguousFileDialog dialog (file, hits);
 
@@ -4069,3 +4102,76 @@ ARDOUR_UI::session_format_mismatch (std::string xml_path, std::string backup_pat
 
        msg.run ();
 }
+
+
+void
+ARDOUR_UI::reset_peak_display ()
+{
+       if (!_session || !_session->master_out() || !editor_meter) return;
+       editor_meter->clear_meters();
+       editor_meter_max_peak = -INFINITY;
+       editor_meter_peak_display.set_name ("meterbridge peakindicator");
+       editor_meter_peak_display.set_elements((ArdourButton::Element) (ArdourButton::Edge|ArdourButton::Body));
+}
+
+void
+ARDOUR_UI::reset_group_peak_display (RouteGroup* group)
+{
+       if (!_session || !_session->master_out()) return;
+       if (group == _session->master_out()->route_group()) {
+               reset_peak_display ();
+       }
+}
+
+void
+ARDOUR_UI::reset_route_peak_display (Route* route)
+{
+       if (!_session || !_session->master_out()) return;
+       if (_session->master_out().get() == route) {
+               reset_peak_display ();
+       }
+}
+
+void
+ARDOUR_UI::toggle_audio_midi_setup ()
+{
+       Glib::RefPtr<Action> act = ActionManager::get_action (X_("Common"), X_("toggle-audio-midi-setup"));
+       if (!act) {
+               return;
+       }
+
+       Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
+
+       if (tact->get_active()) {
+               launch_audio_midi_setup ();
+       } else {
+               _audio_midi_setup->hide ();
+       }
+}
+
+void
+ARDOUR_UI::launch_audio_midi_setup ()
+{
+       if (!_audio_midi_setup) {
+               _audio_midi_setup = new EngineControl ();
+       }
+
+       _audio_midi_setup->present ();
+}
+                                               
+int
+ARDOUR_UI::do_audio_midi_setup (uint32_t desired_sample_rate)
+{
+       launch_audio_midi_setup ();
+
+       _audio_midi_setup->set_desired_sample_rate (desired_sample_rate);
+
+       switch (_audio_midi_setup->run()) {
+       case Gtk::RESPONSE_OK:
+               return 0;
+       case Gtk::RESPONSE_APPLY:
+               return 0;
+       default:
+               return -1;
+       }
+}