add region & range loudnless report
[ardour.git] / gtk2_ardour / editor.cc
index aed4330c4687e188167e8a50c4ba3bac2c5aee53..a118d1d6420b334f89e3525865c875040b219b2b 100644 (file)
 #include "gtkmm2ext/bindings.h"
 #include "gtkmm2ext/grouped_buttons.h"
 #include "gtkmm2ext/gtk_ui.h"
-#include "gtkmm2ext/tearoff.h"
+#include <gtkmm2ext/keyboard.h>
 #include "gtkmm2ext/utils.h"
 #include "gtkmm2ext/window_title.h"
 #include "gtkmm2ext/choice.h"
 #include "gtkmm2ext/cell_renderer_pixbuf_toggle.h"
 
+#include "ardour/analysis_graph.h"
 #include "ardour/audio_track.h"
 #include "ardour/audioengine.h"
 #include "ardour/audioregion.h"
 #include "editor_routes.h"
 #include "editor_snapshots.h"
 #include "editor_summary.h"
+#include "export_report.h"
 #include "global_port_matrix.h"
 #include "gui_object.h"
 #include "gui_thread.h"
 #include "keyboard.h"
+#include "luainstance.h"
 #include "marker.h"
 #include "midi_region_view.h"
 #include "midi_time_axis.h"
 #include "rgb_macros.h"
 #include "rhythm_ferret.h"
 #include "selection.h"
+#include "simple_progress_dialog.h"
 #include "sfdb_ui.h"
 #include "tempo_lines.h"
 #include "time_axis_view.h"
@@ -287,12 +291,10 @@ Editor::Editor ()
        , track_edit_playlist_submenu (0)
        , track_selection_edit_playlist_submenu (0)
        , _popup_region_menu_item (0)
-       , global_vpacker (key_bindings)
        , _track_canvas (0)
        , _track_canvas_viewport (0)
        , within_track_canvas (false)
        , _verbose_cursor (0)
-       , logo_item (0)
        , tempo_group (0)
        , meter_group (0)
        , marker_group (0)
@@ -398,10 +400,7 @@ Editor::Editor ()
        , bbt_beat_subdivision (4)
        , _visible_track_count (-1)
        ,  toolbar_selection_clock_table (2,3)
-       , _mouse_mode_tearoff (0)
        ,  automation_mode_button (_("mode"))
-       , _zoom_tearoff (0)
-       , _tools_tearoff (0)
        ,  _toolbar_viewport (*manage (new Gtk::Adjustment (0, 0, 1e10)), *manage (new Gtk::Adjustment (0, 0, 1e10)))
        , selection (new Selection (this))
        , cut_buffer (new Selection (this))
@@ -466,6 +465,7 @@ Editor::Editor ()
        , _stepping_axis_view (0)
        , quantize_dialog (0)
        , _main_menu_disabler (0)
+       , myactions (X_("editor"))
 {
        /* we are a singleton */
 
@@ -496,11 +496,11 @@ Editor::Editor ()
        build_snap_type_menu();
        build_edit_point_menu();
 
-       location_marker_color = ARDOUR_UI::config()->color ("location marker");
-       location_range_color = ARDOUR_UI::config()->color ("location range");
-       location_cd_marker_color = ARDOUR_UI::config()->color ("location cd marker");
-       location_loop_color = ARDOUR_UI::config()->color ("location loop");
-       location_punch_color = ARDOUR_UI::config()->color ("location punch");
+       location_marker_color = UIConfiguration::instance().color ("location marker");
+       location_range_color = UIConfiguration::instance().color ("location range");
+       location_cd_marker_color = UIConfiguration::instance().color ("location cd marker");
+       location_loop_color = UIConfiguration::instance().color ("location loop");
+       location_punch_color = UIConfiguration::instance().color ("location punch");
 
        timebar_height = std::max(12., ceil (15. * ARDOUR_UI::ui_scale));
 
@@ -746,13 +746,15 @@ Editor::Editor ()
        global_vpacker.pack_start (*hbox, true, true);
        global_hpacker.pack_start (global_vpacker, true, true);
 
+       /* need to show the "contents" widget so that notebook will show if tab is switched to
+        */
+
+       global_hpacker.show ();
+
        /* register actions now so that set_state() can find them and set toggles/checks etc */
 
        register_actions ();
-       /* when we start using our own keybinding system for the editor, this
-        * will be uncommented
-        */
-       // load_bindings ();
+       load_bindings ();
 
        setup_toolbar ();
 
@@ -817,12 +819,12 @@ Editor::Editor ()
 
         /* Button bindings */
 
-        button_bindings = new Bindings;
+       button_bindings = new Bindings ("editor-mouse");
 
        XMLNode* node = button_settings();
         if (node) {
                 for (XMLNodeList::const_iterator i = node->children().begin(); i != node->children().end(); ++i) {
-                        button_bindings->load (**i);
+                        button_bindings->load_operation (**i);
                 }
         }
 
@@ -834,6 +836,9 @@ Editor::Editor ()
 
        setup_fade_images ();
 
+       LuaInstance::instance(); // instantiate
+       LuaInstance::instance()->ActionChanged.connect (sigc::mem_fun (*this, &Editor::set_script_action_name));
+
        instant_save ();
 }
 
@@ -1260,7 +1265,7 @@ Editor::update_title ()
        if (!own_window()) {
                return;
        }
-               
+
        if (_session) {
                bool dirty = _session->dirty();
 
@@ -1277,6 +1282,7 @@ Editor::update_title ()
                }
 
                WindowTitle title(session_name);
+               title += S_("Window|Editor");
                title += Glib::get_application_name();
                own_window()->set_title (title.get_string());
        } else {
@@ -1401,6 +1407,8 @@ Editor::set_session (Session *t)
 
        ActionManager::ui_manager->signal_pre_activate().connect (sigc::mem_fun (*this, &Editor::action_pre_activated));
 
+       LuaInstance::instance()->set_session(_session);
+
        start_updating_meters ();
 }
 
@@ -1709,7 +1717,103 @@ Editor::build_track_region_context_menu ()
 }
 
 void
-Editor::analyze_region_selection ()
+Editor::loudness_analyze_region_selection ()
+{
+       if (!_session) {
+               return;
+       }
+       Selection& s (PublicEditor::instance ().get_selection ());
+       RegionSelection ars = s.regions;
+       ARDOUR::AnalysisGraph ag (_session);
+       framecnt_t total_work = 0;
+
+       for (RegionSelection::iterator j = ars.begin (); j != ars.end (); ++j) {
+               AudioRegionView* arv = dynamic_cast<AudioRegionView*> (*j);
+               if (!arv) {
+                       continue;
+               }
+               if (!boost::dynamic_pointer_cast<AudioRegion> (arv->region ())) {
+                       continue;
+               }
+               assert (dynamic_cast<RouteTimeAxisView *> (&arv->get_time_axis_view ()));
+               total_work += arv->region ()->length ();
+       }
+
+       SimpleProgressDialog spd (_("Region Loudness Analysis"), sigc::mem_fun (ag, &AnalysisGraph::cancel));
+       ScopedConnection c;
+       ag.set_total_frames (total_work);
+       ag.Progress.connect_same_thread (c, boost::bind (&SimpleProgressDialog::update_progress, &spd, _1, _2));
+       spd.show();
+
+       for (RegionSelection::iterator j = ars.begin (); j != ars.end (); ++j) {
+               AudioRegionView* arv = dynamic_cast<AudioRegionView*> (*j);
+               if (!arv) {
+                       continue;
+               }
+               boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion> (arv->region ());
+               if (!ar) {
+                       continue;
+               }
+               ag.analyze_region (ar);
+       }
+       spd.hide();
+       if (!ag.canceled ()) {
+               ExportReport er (_("Audio Report/Analysis"), ag.results ());
+               er.run();
+       }
+}
+
+void
+Editor::loudness_analyze_range_selection ()
+{
+       if (!_session) {
+               return;
+       }
+       Selection& s (PublicEditor::instance ().get_selection ());
+       TimeSelection ts = s.time;
+       ARDOUR::AnalysisGraph ag (_session);
+       framecnt_t total_work = 0;
+
+       for (TrackSelection::iterator i = s.tracks.begin (); i != s.tracks.end (); ++i) {
+               boost::shared_ptr<AudioPlaylist> pl = boost::dynamic_pointer_cast<AudioPlaylist> ((*i)->playlist ());
+               if (!pl) {
+                       continue;
+               }
+               RouteUI *rui = dynamic_cast<RouteUI *> (*i);
+               if (!pl || !rui) {
+                       continue;
+               }
+               for (std::list<AudioRange>::iterator j = ts.begin (); j != ts.end (); ++j) {
+                       total_work += j->length ();
+               }
+       }
+
+       SimpleProgressDialog spd (_("Range Loudness Analysis"), sigc::mem_fun (ag, &AnalysisGraph::cancel));
+       ScopedConnection c;
+       ag.set_total_frames (total_work);
+       ag.Progress.connect_same_thread (c, boost::bind (&SimpleProgressDialog::update_progress, &spd, _1, _2));
+       spd.show();
+
+       for (TrackSelection::iterator i = s.tracks.begin (); i != s.tracks.end (); ++i) {
+               boost::shared_ptr<AudioPlaylist> pl = boost::dynamic_pointer_cast<AudioPlaylist> ((*i)->playlist ());
+               if (!pl) {
+                       continue;
+               }
+               RouteUI *rui = dynamic_cast<RouteUI *> (*i);
+               if (!pl || !rui) {
+                       continue;
+               }
+               ag.analyze_range (rui->route (), pl, ts);
+       }
+       spd.hide();
+       if (!ag.canceled ()) {
+               ExportReport er (_("Audio Report/Analysis"), ag.results ());
+               er.run();
+       }
+}
+
+void
+Editor::spectral_analyze_region_selection ()
 {
        if (analysis_window == 0) {
                analysis_window = new AnalysisWindow();
@@ -1727,7 +1831,7 @@ Editor::analyze_region_selection ()
 }
 
 void
-Editor::analyze_range_selection()
+Editor::spectral_analyze_range_selection()
 {
        if (analysis_window == 0) {
                analysis_window = new AnalysisWindow();
@@ -1821,7 +1925,8 @@ Editor::add_selection_context_items (Menu_Helpers::MenuList& edit_items)
        edit_items.push_back (MenuElem (_("Zoom to Range"), sigc::bind (sigc::mem_fun(*this, &Editor::temporal_zoom_selection), false)));
 
        edit_items.push_back (SeparatorElem());
-       edit_items.push_back (MenuElem (_("Spectral Analysis"), sigc::mem_fun(*this, &Editor::analyze_range_selection)));
+       edit_items.push_back (MenuElem (_("Loudness Analysis"), sigc::mem_fun(*this, &Editor::loudness_analyze_range_selection)));
+       edit_items.push_back (MenuElem (_("Spectral Analysis"), sigc::mem_fun(*this, &Editor::spectral_analyze_range_selection)));
 
        edit_items.push_back (SeparatorElem());
 
@@ -2182,11 +2287,10 @@ int
 Editor::set_state (const XMLNode& node, int version)
 {
        const XMLProperty* prop;
-
        set_id (node);
 
        Tabbable::set_state (node, version);
-       
+
        if (_session && (prop = node.property ("playhead"))) {
                framepos_t pos;
                sscanf (prop->value().c_str(), "%" PRIi64, &pos);
@@ -2404,88 +2508,90 @@ Editor::set_state (const XMLNode& node, int version)
                }
        }
 
-       return 0;
+       return LuaInstance::instance()->set_state(node);
 }
 
 XMLNode&
 Editor::get_state ()
 {
-       XMLNode& node (Tabbable::get_state());
+       XMLNode* node = new XMLNode (X_("Editor"));
        char buf[32];
 
        id().print (buf, sizeof (buf));
-       node.add_property ("id", buf);
+       node->add_property ("id", buf);
+
+       node->add_child_nocopy (Tabbable::get_state());
 
-#if 0
-       // need to save this somehow 
        snprintf(buf,sizeof(buf), "%d",gtk_paned_get_position (static_cast<Paned*>(&edit_pane)->gobj()));
-       geometry->add_property("edit-horizontal-pane-pos", string(buf));
-       geometry->add_property("notebook-shrunk", _notebook_shrunk ? "1" : "0");
+       node->add_property("edit-horizontal-pane-pos", string(buf));
+       node->add_property("notebook-shrunk", _notebook_shrunk ? "1" : "0");
        snprintf(buf,sizeof(buf), "%d",gtk_paned_get_position (static_cast<Paned*>(&editor_summary_pane)->gobj()));
-       geometry->add_property("edit-vertical-pane-pos", string(buf));
-#endif
-       
-       maybe_add_mixer_strip_width (node);
+       node->add_property("edit-vertical-pane-pos", string(buf));
+
+       maybe_add_mixer_strip_width (*node);
 
-       node.add_property ("zoom-focus", enum_2_string (zoom_focus));
+       node->add_property ("zoom-focus", enum_2_string (zoom_focus));
 
        snprintf (buf, sizeof(buf), "%" PRId64, samples_per_pixel);
-       node.add_property ("zoom", buf);
-       node.add_property ("snap-to", enum_2_string (_snap_type));
-       node.add_property ("snap-mode", enum_2_string (_snap_mode));
-       node.add_property ("internal-snap-to", enum_2_string (internal_snap_type));
-       node.add_property ("internal-snap-mode", enum_2_string (internal_snap_mode));
-       node.add_property ("pre-internal-snap-to", enum_2_string (pre_internal_snap_type));
-       node.add_property ("pre-internal-snap-mode", enum_2_string (pre_internal_snap_mode));
-       node.add_property ("edit-point", enum_2_string (_edit_point));
+       node->add_property ("zoom", buf);
+       node->add_property ("snap-to", enum_2_string (_snap_type));
+       node->add_property ("snap-mode", enum_2_string (_snap_mode));
+       node->add_property ("internal-snap-to", enum_2_string (internal_snap_type));
+       node->add_property ("internal-snap-mode", enum_2_string (internal_snap_mode));
+       node->add_property ("pre-internal-snap-to", enum_2_string (pre_internal_snap_type));
+       node->add_property ("pre-internal-snap-mode", enum_2_string (pre_internal_snap_mode));
+       node->add_property ("edit-point", enum_2_string (_edit_point));
        snprintf (buf, sizeof(buf), "%d", _visible_track_count);
-       node.add_property ("visible-track-count", buf);
+       node->add_property ("visible-track-count", buf);
 
        snprintf (buf, sizeof (buf), "%" PRIi64, playhead_cursor->current_frame ());
-       node.add_property ("playhead", buf);
+       node->add_property ("playhead", buf);
        snprintf (buf, sizeof (buf), "%" PRIi64, leftmost_frame);
-       node.add_property ("left-frame", buf);
+       node->add_property ("left-frame", buf);
        snprintf (buf, sizeof (buf), "%f", vertical_adjustment.get_value ());
-       node.add_property ("y-origin", buf);
+       node->add_property ("y-origin", buf);
 
-       node.add_property ("show-measures", _show_measures ? "yes" : "no");
-       node.add_property ("maximised", _maximised ? "yes" : "no");
-       node.add_property ("follow-playhead", _follow_playhead ? "yes" : "no");
-       node.add_property ("stationary-playhead", _stationary_playhead ? "yes" : "no");
-       node.add_property ("region-list-sort-type", enum_2_string (_regions->sort_type ()));
-       node.add_property ("mouse-mode", enum2str(mouse_mode));
-       node.add_property ("join-object-range", smart_mode_action->get_active () ? "yes" : "no");
+       node->add_property ("show-measures", _show_measures ? "yes" : "no");
+       node->add_property ("maximised", _maximised ? "yes" : "no");
+       node->add_property ("follow-playhead", _follow_playhead ? "yes" : "no");
+       node->add_property ("stationary-playhead", _stationary_playhead ? "yes" : "no");
+       node->add_property ("region-list-sort-type", enum_2_string (_regions->sort_type ()));
+       node->add_property ("mouse-mode", enum2str(mouse_mode));
+       node->add_property ("join-object-range", smart_mode_action->get_active () ? "yes" : "no");
 
        Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
        if (act) {
                Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
-               node.add_property (X_("show-editor-mixer"), tact->get_active() ? "yes" : "no");
+               node->add_property (X_("show-editor-mixer"), tact->get_active() ? "yes" : "no");
        }
 
        act = ActionManager::get_action (X_("Editor"), X_("show-editor-list"));
        if (act) {
                Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
-               node.add_property (X_("show-editor-list"), tact->get_active() ? "yes" : "no");
+               node->add_property (X_("show-editor-list"), tact->get_active() ? "yes" : "no");
        }
 
        snprintf (buf, sizeof (buf), "%d", _the_notebook.get_current_page ());
-       node.add_property (X_("editor-list-page"), buf);
+       node->add_property (X_("editor-list-page"), buf);
 
         if (button_bindings) {
                 XMLNode* bb = new XMLNode (X_("Buttons"));
                 button_bindings->save (*bb);
-                node.add_child_nocopy (*bb);
+                node->add_child_nocopy (*bb);
         }
 
-       node.add_property (X_("show-marker-lines"), _show_marker_lines ? "yes" : "no");
+       node->add_property (X_("show-marker-lines"), _show_marker_lines ? "yes" : "no");
 
-       node.add_child_nocopy (selection->get_state ());
-       node.add_child_nocopy (_regions->get_state ());
+       node->add_child_nocopy (selection->get_state ());
+       node->add_child_nocopy (_regions->get_state ());
 
        snprintf (buf, sizeof (buf), "%" PRId64, nudge_clock->current_duration());
-       node.add_property ("nudge-clock-value", buf);
+       node->add_property ("nudge-clock-value", buf);
 
-       return node;
+       node->add_child_nocopy (LuaInstance::instance()->get_action_state());
+       node->add_child_nocopy (LuaInstance::instance()->get_hook_state());
+
+       return *node;
 }
 
 /** if @param trackview_relative_offset is true, @param y y is an offset into the trackview area, in pixel units
@@ -2889,24 +2995,8 @@ Editor::setup_toolbar ()
        if (!ARDOUR::Profile->get_trx()) {
                mode_box->pack_start (edit_mode_selector, false, false);
        }
-       mode_box->pack_start (*mouse_mode_box, false, false);
-
-       _mouse_mode_tearoff = manage (new TearOff (*mode_box));
-       _mouse_mode_tearoff->set_name ("MouseModeBase");
-       _mouse_mode_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &_mouse_mode_tearoff->tearoff_window()), false);
 
-       if (Profile->get_sae() || Profile->get_mixbus() ) {
-               _mouse_mode_tearoff->set_can_be_torn_off (false);
-       }
-
-       _mouse_mode_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox),
-                                                        &_mouse_mode_tearoff->tearoff_window()));
-       _mouse_mode_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox),
-                                                        &_mouse_mode_tearoff->tearoff_window(), 1));
-       _mouse_mode_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox),
-                                                        &_mouse_mode_tearoff->tearoff_window()));
-       _mouse_mode_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox),
-                                                         &_mouse_mode_tearoff->tearoff_window(), 1));
+       mode_box->pack_start (*mouse_mode_box, false, false);
 
        /* Zoom */
 
@@ -2978,23 +3068,6 @@ Editor::setup_toolbar ()
                _zoom_box.pack_start (tav_expand_button);
        }
 
-       if (!ARDOUR::Profile->get_trx()) {
-               _zoom_tearoff = manage (new TearOff (_zoom_box));
-
-               _zoom_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox),
-                                                          &_zoom_tearoff->tearoff_window()));
-               _zoom_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox),
-                                                          &_zoom_tearoff->tearoff_window(), 0));
-               _zoom_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox),
-                                                          &_zoom_tearoff->tearoff_window()));
-               _zoom_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox),
-                                                           &_zoom_tearoff->tearoff_window(), 0));
-       }
-
-       if (Profile->get_sae() || Profile->get_mixbus() ) {
-               _zoom_tearoff->set_can_be_torn_off (false);
-       }
-
        snap_box.set_spacing (2);
        snap_box.set_border_width (2);
 
@@ -3027,37 +3100,19 @@ Editor::setup_toolbar ()
        HBox* hbox = manage (new HBox);
        hbox->set_spacing(2);
 
-       _tools_tearoff = manage (new TearOff (*hbox));
-       _tools_tearoff->set_name ("MouseModeBase");
-       _tools_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &_tools_tearoff->tearoff_window()), false);
-
-       if (Profile->get_sae() || Profile->get_mixbus()) {
-               _tools_tearoff->set_can_be_torn_off (false);
-       }
-
-       _tools_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox),
-                                                   &_tools_tearoff->tearoff_window()));
-       _tools_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox),
-                                                   &_tools_tearoff->tearoff_window(), 0));
-       _tools_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &Editor::detach_tearoff), static_cast<Box*>(&toolbar_hbox),
-                                                   &_tools_tearoff->tearoff_window()));
-       _tools_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &Editor::reattach_tearoff), static_cast<Box*> (&toolbar_hbox),
-                                                    &_tools_tearoff->tearoff_window(), 0));
-
        toolbar_hbox.set_spacing (2);
        toolbar_hbox.set_border_width (1);
 
-       toolbar_hbox.pack_start (*_mouse_mode_tearoff, false, false);
+       toolbar_hbox.pack_start (*mode_box, false, false);
        if (!ARDOUR::Profile->get_trx()) {
-               toolbar_hbox.pack_start (*_zoom_tearoff, false, false);
-               toolbar_hbox.pack_start (*_tools_tearoff, false, false);
+               toolbar_hbox.pack_start (_zoom_box, false, false);
+               toolbar_hbox.pack_start (*hbox, false, false);
        }
 
        if (!ARDOUR::Profile->get_trx()) {
                hbox->pack_start (snap_box, false, false);
                hbox->pack_start (*nudge_box, false, false);
        }
-       hbox->pack_start (panic_box, false, false);
 
        hbox->show_all ();
 
@@ -3541,11 +3596,7 @@ Editor::cycle_edit_mode ()
 {
        switch (Config->get_edit_mode()) {
        case Slide:
-               if (Profile->get_sae()) {
-                       Config->set_edit_mode (Lock);
-               } else {
-                       Config->set_edit_mode (Ripple);
-               }
+               Config->set_edit_mode (Ripple);
                break;
        case Splice:
        case Ripple:
@@ -3881,24 +3932,6 @@ Editor::pane_allocation_handler (Allocation &alloc, Paned* which)
        }
 }
 
-void
-Editor::detach_tearoff (Box* /*b*/, Window* /*w*/)
-{
-       if ((_tools_tearoff->torn_off() || !_tools_tearoff->visible()) &&
-           (_mouse_mode_tearoff->torn_off() || !_mouse_mode_tearoff->visible()) &&
-           (_zoom_tearoff && (_zoom_tearoff->torn_off() || !_zoom_tearoff->visible()))) {
-               top_hbox.remove (toolbar_frame);
-       }
-}
-
-void
-Editor::reattach_tearoff (Box* /*b*/, Window* /*w*/, int32_t /*n*/)
-{
-       if (toolbar_frame.get_parent() == 0) {
-               top_hbox.pack_end (toolbar_frame);
-       }
-}
-
 void
 Editor::set_show_measures (bool yn)
 {
@@ -4178,25 +4211,6 @@ Editor::session_state_saved (string)
        _snapshots->redisplay ();
 }
 
-void
-Editor::update_tearoff_visibility()
-{
-       bool visible = UIConfiguration::instance().get_keep_tearoffs();
-       _mouse_mode_tearoff->set_visible (visible);
-       _tools_tearoff->set_visible (visible);
-       if (_zoom_tearoff) {
-               _zoom_tearoff->set_visible (visible);
-       }
-}
-
-void
-Editor::reattach_all_tearoffs ()
-{
-       if (_mouse_mode_tearoff) _mouse_mode_tearoff->put_it_back ();
-       if (_tools_tearoff) _tools_tearoff->put_it_back ();
-       if (_zoom_tearoff) _zoom_tearoff->put_it_back ();
-}
-
 void
 Editor::maximise_editing_space ()
 {
@@ -4204,9 +4218,12 @@ Editor::maximise_editing_space ()
                return;
        }
 
-       current_toplevel()->fullscreen ();
+       Gtk::Window* toplevel = current_toplevel();
 
-       _maximised = true;
+       if (toplevel) {
+               toplevel->fullscreen ();
+               _maximised = true;
+       }
 }
 
 void
@@ -4216,9 +4233,12 @@ Editor::restore_editing_space ()
                return;
        }
 
-       current_toplevel()->unfullscreen();
+       Gtk::Window* toplevel = current_toplevel();
 
-       _maximised = false;
+       if (toplevel) {
+               toplevel->unfullscreen();
+               _maximised = false;
+       }
 }
 
 /**
@@ -4990,7 +5010,6 @@ Editor::first_idle ()
        if (track_views.size() > 1) {
                Timers::TimerSuspender t;
                dialog = new MessageDialog (
-                       *current_toplevel(),
                        string_compose (_("Please wait while %1 loads visual data."), PROGRAM_NAME),
                        true
                        );
@@ -5694,18 +5713,42 @@ Editor::session_going_away ()
        stop_step_editing ();
 
        if (own_window()) {
-       
+
                /* get rid of any existing editor mixer strip */
-               
+
                WindowTitle title(Glib::get_application_name());
                title += _("Editor");
-               
+
                own_window()->set_title (title.get_string());
        }
 
        SessionHandlePtr::session_going_away ();
 }
 
+void
+Editor::manage_action_scripts ()
+{
+       ARDOUR_UI::instance()->lua_script_manager();
+}
+
+void
+Editor::trigger_script (int i)
+{
+       LuaInstance::instance()-> call_action (i);
+}
+
+void
+Editor::set_script_action_name (int i, const std::string& n)
+{
+       string const a = string_compose (X_("script-action-%1"), i + 1);
+       Glib::RefPtr<Action> act = ActionManager::get_action(X_("Editor"), a.c_str());
+       assert (act);
+       if (n.empty ()) {
+               act->set_label (string_compose (_("Unset #%1"), i + 1));
+       } else {
+               act->set_label (n);
+       }
+}
 
 void
 Editor::show_editor_list (bool yn)
@@ -5935,11 +5978,11 @@ Editor::ui_parameter_changed (string parameter)
 }
 
 Gtk::Window*
-Editor::use_own_window ()
+Editor::use_own_window (bool and_fill_it)
 {
        bool new_window = !own_window();
-       
-       Gtk::Window* win = Tabbable::use_own_window ();
+
+       Gtk::Window* win = Tabbable::use_own_window (and_fill_it);
 
        if (win && new_window) {
                win->set_name ("EditorWindow");
@@ -5947,40 +5990,42 @@ Editor::use_own_window ()
                ARDOUR_UI::instance()->setup_toplevel_window (*win, _("Editor"), this);
 
                // win->signal_realize().connect (*this, &Editor::on_realize);
+               win->signal_event().connect (sigc::bind (sigc::ptr_fun (&Keyboard::catch_user_event_for_pre_dialog_focus), win));
                win->signal_event().connect (sigc::mem_fun (*this, &Editor::generic_event_handler));
-               
+               win->set_data ("ardour-bindings", bindings);
+
                update_title ();
        }
 
        DisplaySuspender ds;
        contents().show_all ();
-       
+
        /* XXX: this is a bit unfortunate; it would probably
           be nicer if we could just call show () above rather
           than needing the show_all ()
        */
-       
+
        /* re-hide stuff if necessary */
        editor_list_button_toggled ();
        parameter_changed ("show-summary");
        parameter_changed ("show-group-tabs");
        parameter_changed ("show-zoom-tools");
-       
+
        /* now reset all audio_time_axis heights, because widgets might need
           to be re-hidden
        */
-       
+
        TimeAxisView *tv;
-       
+
        for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
                tv = (static_cast<TimeAxisView*>(*i));
                tv->reset_height ();
        }
-       
+
        if (current_mixer_strip) {
                current_mixer_strip->hide_things ();
                current_mixer_strip->parameter_changed ("mixer-element-visibility");
        }
-       
+
        return win;
 }