Remove some debugging code which causes slow flashy screen updates.
[ardour.git] / gtk2_ardour / ardour_ui_dependents.cc
index eb700624c3f8dcb1c4cd083360a02f8fb4b91667..6464c529679bb352fa0d20f27abeaf99210fccde 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 /* this file exists solely to break compilation dependencies that
@@ -27,6 +26,7 @@
 #include <gtkmm/accelmap.h>
 
 #include <pbd/error.h>
+
 #include "ardour_ui.h"
 #include "public_editor.h"
 #include "mixer_ui.h"
@@ -36,6 +36,7 @@
 
 using namespace sigc;
 using namespace Gtk;
+using namespace PBD;
 
 namespace ARDOUR {
        class Session;
@@ -46,7 +47,8 @@ void
 ARDOUR_UI::shutdown ()
 {
        if (session) {
-               delete session;
+               /* we're exiting cleanly, so remove any auto-save data */
+               session->remove_pending_capture_state ();
                session = 0;
        }
 
@@ -56,19 +58,41 @@ void
 ARDOUR_UI::we_have_dependents ()
 {
        setup_keybindings ();
+       editor->UpdateAllTransportClocks.connect (mem_fun (*this, &ARDOUR_UI::update_transport_clocks));
+}
+
+static void 
+accel_map_changed (GtkAccelMap* map,
+                  gchar* path,
+                  guint  key,
+                  GdkModifierType mod,
+                  gpointer arg)
+{
+       static_cast<ARDOUR_UI*>(arg)->save_keybindings ();
 }
 
 void
 ARDOUR_UI::setup_keybindings ()
 {
        install_actions ();
-       RedirectBox::register_actions ();
+       ProcessorBox::register_actions ();
+       
+       cerr << "loading bindings from " << keybindings_path << endl;
 
        try {
-               AccelMap::load (ARDOUR::find_config_file ("ardour.bindings"));
+               AccelMap::load (keybindings_path);
        } catch (...) {
-               error << "ardour key bindings file not found" << endmsg;
+               error << string_compose (_("Ardour key bindings file not found at \"%1\" or contains errors."), keybindings_path)
+                     << endmsg;
        }
+
+       /* catch changes */
+
+       GtkAccelMap* accelmap = gtk_accel_map_get();
+       g_signal_connect (accelmap, "changed", (GCallback) accel_map_changed, this);
+
+       
+
 }
 
 void
@@ -76,19 +100,23 @@ ARDOUR_UI::connect_dependents_to_session (ARDOUR::Session *s)
 {
        editor->connect_to_session (s);
        mixer->connect_to_session (s);
+
+       /* its safe to do this now */
+       
+       s->restore_history ("");
 }
 
 void
 ARDOUR_UI::goto_editor_window ()
 {
        editor->show_window ();
-       editor->present();
+       editor->present ();
 }
 void
 ARDOUR_UI::goto_mixer_window ()
 {
        mixer->show_window ();
-       mixer->present();
+       mixer->present ();
 }
 
 gint