Remove unused boost/locale include.
[ardour.git] / gtk2_ardour / ardour_ui.cc
index f21817c29d269ca1dc28faa4d5c4291a7dbc410b..fd75481af521b0e56a1ec0a6a59dd23bc7fae923 100644 (file)
 #include "gtk2ardour-config.h"
 #endif
 
-#include <stdint.h>
-
 #include <algorithm>
 #include <cmath>
+#include <iostream>
+#include <cerrno>
+#include <fstream>
+
+#include <stdint.h>
 #include <fcntl.h>
 #include <signal.h>
 #include <unistd.h>
 #include <time.h>
-#include <cerrno>
-#include <fstream>
-
-#include <iostream>
 
 #include <sys/resource.h>
 #include <sys/types.h>
@@ -88,6 +87,7 @@ typedef uint64_t microseconds_t;
 #include "ambiguous_file_dialog.h"
 #include "ardour_ui.h"
 #include "audio_clock.h"
+#include "big_clock_window.h"
 #include "bundle_manager.h"
 #include "engine_dialog.h"
 #include "gain_meter.h"
@@ -95,6 +95,7 @@ typedef uint64_t microseconds_t;
 #include "gui_object.h"
 #include "gui_thread.h"
 #include "keyboard.h"
+#include "keyeditor.h"
 #include "location_ui.h"
 #include "main_clock.h"
 #include "missing_file_dialog.h"
@@ -106,8 +107,11 @@ typedef uint64_t microseconds_t;
 #include "processor_box.h"
 #include "prompter.h"
 #include "public_editor.h"
+#include "rc_option_editor.h"
 #include "route_time_axis.h"
+#include "route_params_ui.h"
 #include "session_metadata_dialog.h"
+#include "session_option_editor.h"
 #include "shuttle_control.h"
 #include "speaker_dialog.h"
 #include "splash.h"
@@ -115,13 +119,10 @@ typedef uint64_t microseconds_t;
 #include "theme_manager.h"
 #include "time_axis_view_item.h"
 #include "utils.h"
-#include "window_proxy.h"
-#ifdef WITH_VIDEOTIMELINE
 #include "video_server_dialog.h"
 #include "add_video_dialog.h"
 #include "transcode_video_dialog.h"
-#include "system_exec.h" /* to launch video-server */
-#endif
+#include "system_exec.h"
 
 #include "i18n.h"
 
@@ -138,12 +139,14 @@ sigc::signal<void,bool> ARDOUR_UI::Blink;
 sigc::signal<void>      ARDOUR_UI::RapidScreenUpdate;
 sigc::signal<void>      ARDOUR_UI::SuperRapidScreenUpdate;
 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)
 
        : 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))
 
@@ -151,6 +154,14 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
 
        , big_clock (new AudioClock (X_("bigclock"), false, "big", true, true, false, false))
 
+         /* start of private members */
+
+       , _startup (0)
+       , engine (0)
+       , nsm (0)
+       , _was_dirty (false)
+       , _mixer_on_top (false)
+
          /* transport */
 
        , roll_controllable (new TransportControllable ("transport roll", *this, TransportControllable::Roll))
@@ -169,6 +180,21 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        , solo_alert_button (_("solo"))
        , feedback_alert_button (_("feedback"))
 
+       , speaker_config_window (X_("speaker-config"), _("Speaker Configuration"))
+       , theme_manager (X_("theme-manager"), _("Theme Manager"))
+       , key_editor (X_("key-editor"), _("Key Bindings"))
+       , rc_option_editor (X_("rc-options-editor"), _("Preferences"))
+       , add_route_dialog (X_("add-routes"), _("Add Tracks/Busses"))
+       , about (X_("about"), _("About"))
+       , location_ui (X_("locations"), _("Locations"))
+       , route_params (X_("inspector"), _("Tracks and Busses"))
+       , 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"))
 
        , _status_bar_visibility (X_("status-bar"))
@@ -177,47 +203,27 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
 {
        Gtkmm2ext::init(localedir);
 
-       about = 0;
        splash = 0;
-       _startup = 0;
 
        if (theArdourUI == 0) {
                theArdourUI = this;
        }
 
        ui_config = new UIConfiguration();
-       theme_manager = new ThemeManager();
-
-       key_editor = 0;
 
        editor = 0;
        mixer = 0;
        editor = 0;
        engine = 0;
        _session_is_new = false;
-       big_clock_window = 0;
-       big_clock_height = 0;
-       big_clock_resize_in_progress = false;
        session_selector_window = 0;
        last_key_press_time = 0;
-       add_route_dialog = 0;
-#ifdef WITH_VIDEOTIMELINE
-       add_video_dialog = 0;
        video_server_process = 0;
-#endif
-       route_params = 0;
-       bundle_manager = 0;
-       rc_option_editor = 0;
-       session_option_editor = 0;
-       location_ui = 0;
        open_session_selector = 0;
        have_configure_timeout = false;
        have_disk_speed_dialog_displayed = false;
        session_loaded = false;
        ignore_dual_punch = false;
-       original_big_clock_width = -1;
-       original_big_clock_height = -1;
-       original_big_clock_font_size = 0;
 
        roll_button.set_controllable (roll_controllable);
        stop_button.set_controllable (stop_controllable);
@@ -311,26 +317,53 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
 
        TimeAxisViewItem::set_constant_heights ();
 
-       /* The following must happen after ARDOUR::init() so that Config is set up */
-
-       location_ui = new ActionWindowProxy<LocationUIWindow> (X_("locations"), Config->extra_xml (X_("UI")), X_("ToggleLocations"));
-       big_clock_window = new ActionWindowProxy<Gtk::Window> (X_("bigclock"), Config->extra_xml (X_("UI")), X_("ToggleBigClock"));
-       speaker_config_window = new ActionWindowProxy<SpeakerDialog> (X_("speakerconf"), Config->extra_xml (X_("UI")), X_("toggle-speaker-config"));
-
-       for (ARDOUR::DataType::iterator i = ARDOUR::DataType::begin(); i != ARDOUR::DataType::end(); ++i) {
-               _global_port_matrix[*i] = new ActionWindowProxy<GlobalPortMatrixWindow> (
-                       string_compose ("GlobalPortMatrix-%1", (*i).to_string()),
-                       Config->extra_xml (X_("UI")),
-                       string_compose ("toggle-%1-connection-manager", (*i).to_string())
-                       );
-       }
+        /* Set this up so that our window proxies can register actions */
 
-       setup_clock ();
+       ActionManager::init ();
 
-       SpeakerDialog* s = new SpeakerDialog ();
-       s->signal_unmap().connect (sigc::bind (sigc::ptr_fun (&ActionManager::uncheck_toggleaction), X_("<Actions>/Common/toggle-speaker-config")));
-       speaker_config_window->set (s);
+       /* The following must happen after ARDOUR::init() so that Config is set up */
 
+       const XMLNode* ui_xml = Config->extra_xml (X_("UI"));
+
+       if (ui_xml) {
+               theme_manager.set_state (*ui_xml);
+               key_editor.set_state (*ui_xml);
+               rc_option_editor.set_state (*ui_xml);
+               session_option_editor.set_state (*ui_xml);
+               speaker_config_window.set_state (*ui_xml);
+               about.set_state (*ui_xml);
+               add_route_dialog.set_state (*ui_xml);
+               add_video_dialog.set_state (*ui_xml);
+               route_params.set_state (*ui_xml);
+               bundle_manager.set_state (*ui_xml);
+               location_ui.set_state (*ui_xml);
+               big_clock_window.set_state (*ui_xml);
+               audio_port_matrix.set_state (*ui_xml);
+               midi_port_matrix.set_state (*ui_xml);
+       }
+
+       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
+          and its functionality are separate 
+       */
+       
+       (void) theme_manager.get (true);
+       
        starting.connect (sigc::mem_fun(*this, &ARDOUR_UI::startup));
        stopping.connect (sigc::mem_fun(*this, &ARDOUR_UI::shutdown));
 
@@ -340,6 +373,14 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
        DPIReset.connect (sigc::mem_fun (*this, &ARDOUR_UI::resize_text_widgets));
 }
 
+GlobalPortMatrixWindow*
+ARDOUR_UI::create_global_port_matrix (ARDOUR::DataType type)
+{
+       if (!_session) {
+               return 0;
+       }
+       return new GlobalPortMatrixWindow (_session, type);
+}
 
 int
 ARDOUR_UI::create_engine ()
@@ -381,12 +422,10 @@ ARDOUR_UI::post_engine ()
 
        ARDOUR::init_post_engine ();
 
-       /* load up the UI manager */
-
-       ActionManager::init ();
-
        _tooltips.enable();
 
+       ActionManager::load_menus ();
+
        if (setup_windows ()) {
                throw failed_constructor ();
        }
@@ -470,11 +509,8 @@ ARDOUR_UI::~ARDOUR_UI ()
        delete keyboard;
        delete editor;
        delete mixer;
-       delete add_route_dialog;
-#ifdef WITH_VIDEOTIMELINE
-       if (add_video_dialog) delete add_video_dialog;
+
        stop_video_server();
-#endif
 }
 
 void
@@ -666,16 +702,21 @@ ARDOUR_UI::startup ()
                if (!nsm->init (nsm_url)) {
                        nsm->announce (PROGRAM_NAME, ":dirty:", "ardour3");
 
+                       unsigned int i = 0;
                        // wait for announce reply from nsm server
-                       do {
+                       for ( i = 0; i < 5000; ++i) {
                                nsm->check ();
-                               usleep (10);
-                       } while (!nsm->is_active ());
+                               usleep (i);
+                               if (nsm->is_active())
+                                       break;
+                       }
                        // wait for open command from nsm server
-                       do {
+                       for ( i = 0; i < 5000; ++i) {
                                nsm->check ();
-                               usleep (10);
-                       } while (!nsm->client_id ());
+                               usleep (1000);
+                               if (nsm->client_id ())
+                                       break;
+                       }
 
                        if (_session && nsm) {
                                _session->set_nsm_state( nsm->is_active() );
@@ -683,7 +724,6 @@ ARDOUR_UI::startup ()
 
                        // nsm requires these actions disabled
                        vector<string> action_names;
-                       action_names.push_back("Snapshot");
                        action_names.push_back("SaveAs");
                        action_names.push_back("Rename");
                        action_names.push_back("New");
@@ -698,12 +738,6 @@ ARDOUR_UI::startup ()
                                }
                        }
 
-                       // wait for session is loaded reply from nsm server
-                       do {
-                               nsm->check ();
-                               usleep (10);
-                       } while (!nsm->session_loaded ());
-
                }
                else {
                        delete nsm;
@@ -719,14 +753,7 @@ ARDOUR_UI::startup ()
 
        goto_editor_window ();
 
-       /* Add the window proxies here; their addition may cause windows to be opened, and we want them
-          to be opened on top of the editor window that goto_editor_window() just opened.
-       */
-       add_window_proxy (location_ui);
-       add_window_proxy (big_clock_window);
-       for (ARDOUR::DataType::iterator i = ARDOUR::DataType::begin(); i != ARDOUR::DataType::end(); ++i) {
-               add_window_proxy (_global_port_matrix[*i]);
-       }
+       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.
@@ -835,13 +862,8 @@ ARDOUR_UI::idle_finish ()
 void
 ARDOUR_UI::finish()
 {
-#ifdef WITH_VIDEOTIMELINE
-       /* close video-monitor & pending requests
-        * would better be done in ~Editor() but that is not called..
-        */
-       ARDOUR_UI::instance()->video_timeline->close_session();
-#endif
        if (_session) {
+               ARDOUR_UI::instance()->video_timeline->sync_session_state();
 
                if (_session->dirty()) {
                        vector<string> actions;
@@ -877,10 +899,8 @@ If you still wish to quit, please use the\n\n\
                point_zero_one_second_connection.disconnect();
        }
 
-#ifdef WITH_VIDEOTIMELINE
        delete ARDOUR_UI::instance()->video_timeline;
        stop_video_server();
-#endif
 
        /* Save state before deleting the session, as that causes some
           windows to be destroyed before their visible state can be
@@ -888,6 +908,8 @@ If you still wish to quit, please use the\n\n\
        */
        save_ardour_state ();
 
+       close_all_dialogs ();
+
        loading_message (string_compose (_("Please wait while %1 cleans up..."), PROGRAM_NAME));
 
        if (_session) {
@@ -898,7 +920,6 @@ If you still wish to quit, please use the\n\n\
                _session = 0;
        }
 
-       ArdourDialog::close_all_dialogs ();
        engine->stop (true);
        quit ();
 }
@@ -945,7 +966,6 @@ ARDOUR_UI::ask_about_saving_session (const vector<string>& actions)
        window.get_vbox()->pack_start (dhbox);
 
        window.set_name (_("Prompter"));
-       window.set_position (Gtk::WIN_POS_MOUSE);
        window.set_modal (true);
        window.set_resizable (false);
 
@@ -981,7 +1001,7 @@ ARDOUR_UI::every_second ()
        update_disk_space ();
        update_timecode_format ();
 
-       if (nsm && nsm->is_active () && nsm->session_loaded ()) {
+       if (nsm && nsm->is_active ()) {
                nsm->check ();
 
                if (!_was_dirty && _session->dirty ()) {
@@ -1379,8 +1399,6 @@ ARDOUR_UI::open_recent_session ()
 
        while (true) {
 
-               session_selector_window->set_position (WIN_POS_MOUSE);
-
                ResponseType r = (ResponseType) session_selector_window->run ();
 
                switch (r) {
@@ -2318,11 +2336,7 @@ ARDOUR_UI::save_state (const string & name, bool switch_to_it)
 {
        XMLNode* node = new XMLNode (X_("UI"));
 
-       for (list<WindowProxyBase*>::iterator i = _window_proxies.begin(); i != _window_proxies.end(); ++i) {
-               if (!(*i)->rc_configured()) {
-                       node->add_child_nocopy (*((*i)->get_state ()));
-               }
-       }
+       WM::Manager::instance().add_state (*node);
 
        node->add_child_nocopy (gui_object_state->get_state());
 
@@ -2556,11 +2570,11 @@ ARDOUR_UI::get_session_parameters (bool quit_on_cancel, bool should_be_new, stri
         * treat a non-dirty session this way, so that it stays visible 
         * as we bring up the new session dialog.
         */
-#ifdef WITH_VIDEOTIMELINE
+
        if (_session && ARDOUR_UI::instance()->video_timeline) {
-               ARDOUR_UI::instance()->video_timeline->close_session();
+               ARDOUR_UI::instance()->video_timeline->sync_session_state();
        }
-#endif
+
        if (_session && _session->dirty()) {
                if (unload_session (false)) {
                        /* unload cancelled by user */
@@ -2745,9 +2759,6 @@ ARDOUR_UI::get_session_parameters (bool quit_on_cancel, bool should_be_new, stri
 void
 ARDOUR_UI::close_session()
 {
-#ifdef WITH_VIDEOTIMELINE
-       ARDOUR_UI::instance()->video_timeline->close_session();
-#endif
        if (!check_audioengine()) {
                return;
        }
@@ -2960,18 +2971,6 @@ ARDOUR_UI::launch_chat ()
 #endif
 }
 
-void
-ARDOUR_UI::show_about ()
-{
-       if (about == 0) {
-               about = new About;
-               about->signal_response().connect (sigc::mem_fun (*this, &ARDOUR_UI::about_signal_response));
-       }
-
-       about->set_transient_for(*editor);
-       about->show_all ();
-}
-
 void
 ARDOUR_UI::launch_manual ()
 {
@@ -2984,21 +2983,6 @@ ARDOUR_UI::launch_reference ()
        PBD::open_uri (Config->get_reference_manual_url());
 }
 
-void
-ARDOUR_UI::hide_about ()
-{
-       if (about) {
-               about->get_window()->set_cursor ();
-               about->hide ();
-       }
-}
-
-void
-ARDOUR_UI::about_signal_response (int /*response*/)
-{
-       hide_about();
-}
-
 void
 ARDOUR_UI::loading_message (const std::string& msg)
 {
@@ -3259,19 +3243,15 @@ ARDOUR_UI::add_route (Gtk::Window* float_window)
                return;
        }
 
-       if (add_route_dialog == 0) {
-               add_route_dialog = new AddRouteDialog (_session);
-               add_route_dialog->set_position (WIN_POS_MOUSE);
-               if (float_window) {
-                       add_route_dialog->set_transient_for (*float_window);
-               }
-       }
-
        if (add_route_dialog->is_visible()) {
                /* we're already doing this */
                return;
        }
 
+       if (float_window) {
+               add_route_dialog->set_transient_for (*float_window);
+       }
+
        ResponseType r = (ResponseType) add_route_dialog->run ();
 
        add_route_dialog->hide();
@@ -3339,7 +3319,6 @@ ARDOUR_UI::add_route (Gtk::Window* float_window)
        /* idle connection will end at scope end */
 }
 
-#ifdef WITH_VIDEOTIMELINE
 void
 ARDOUR_UI::stop_video_server (bool ask_confirm)
 {
@@ -3463,17 +3442,15 @@ ARDOUR_UI::add_video (Gtk::Window* float_window)
                return;
        }
 
-       if (add_video_dialog == 0) {
-               add_video_dialog = new AddVideoDialog (_session);
-               if (float_window) {
-                       add_video_dialog->set_transient_for (*float_window);
-               }
+       if (float_window) {
+               add_video_dialog->set_transient_for (*float_window);
        }
 
        if (add_video_dialog->is_visible()) {
                /* we're already doing this */
                return;
        }
+
        ResponseType r = (ResponseType) add_video_dialog->run ();
        add_video_dialog->hide();
        if (r != RESPONSE_ACCEPT) { return; }
@@ -3541,6 +3518,11 @@ ARDOUR_UI::add_video (Gtk::Window* float_window)
                _session->add_extra_xml (*node);
                _session->set_dirty ();
 
+               _session->maybe_update_session_range(
+                       std::max(video_timeline->get_offset(), (ARDOUR::frameoffset_t) 0),
+                       std::max(video_timeline->get_offset() + video_timeline->get_duration(), (ARDOUR::frameoffset_t) 0));
+
+
                if (add_video_dialog->launch_xjadeo() && local_file) {
                        editor->set_xjadeo_sensitive(true);
                        editor->toggle_xjadeo_proc(1);
@@ -3562,6 +3544,7 @@ ARDOUR_UI::remove_video ()
        _session->add_extra_xml(*node);
        node = new XMLNode(X_("Videomonitor"));
        _session->add_extra_xml(*node);
+       stop_video_server();
 }
 
 void
@@ -3574,7 +3557,6 @@ ARDOUR_UI::flush_videotimeline_cache (bool localcacheonly)
        }
        editor->queue_visual_videotimeline_update();
 }
-#endif
 
 XMLNode*
 ARDOUR_UI::mixer_settings () const
@@ -3782,12 +3764,14 @@ audio may be played at the wrong sample rate.\n"), desired, PROGRAM_NAME, actual
        image->show();
        hbox->show();
 
-       switch (dialog.run ()) {
+       switch (dialog.run()) {
        case RESPONSE_ACCEPT:
                return 0;
        default:
-               return 1;
+                break;
        }
+
+        return 1;
 }
 
 
@@ -3841,15 +3825,12 @@ ARDOUR_UI::update_transport_clocks (framepos_t pos)
                secondary_clock->set (pos);
        }
 
-       if (big_clock_window->get()) {
+       if (big_clock_window) {
                big_clock->set (pos);
        }
-#ifdef WITH_VIDEOTIMELINE
        ARDOUR_UI::instance()->video_timeline->manual_seek_video_monitor(pos);
-#endif
 }
 
-
 void
 ARDOUR_UI::step_edit_status_change (bool yn)
 {
@@ -3870,7 +3851,7 @@ ARDOUR_UI::record_state_changed ()
 {
        ENSURE_GUI_THREAD (*this, &ARDOUR_UI::record_state_changed);
 
-       if (!_session || !big_clock_window->get()) {
+       if (!_session || !big_clock_window) {
                /* why bother - the clock isn't visible */
                return;
        }
@@ -4009,26 +3990,6 @@ ARDOUR_UI::setup_profile ()
        }
 }
 
-/** Add a window proxy to our list, so that its state will be saved.
- *  This call also causes the window to be created and opened if its
- *  state was saved as `visible'.
- */
-void
-ARDOUR_UI::add_window_proxy (WindowProxyBase* p)
-{
-       _window_proxies.push_back (p);
-       p->maybe_show ();
-}
-
-/** Remove a window proxy from our list.  Must be called if a WindowProxy
- *  is deleted, to prevent hanging pointers.
- */
-void
-ARDOUR_UI::remove_window_proxy (WindowProxyBase* p)
-{
-       _window_proxies.remove (p);
-}
-
 int
 ARDOUR_UI::missing_file (Session*s, std::string str, DataType type)
 {