merge from 2.0-ongoing @ 3581
[ardour.git] / gtk2_ardour / option_editor.cc
index 99dcbd05350dca5be80ccce9d3b6d281a1e5c25d..9ddf9999b9ef88ac1c1628ab2939b718b5eb27a3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2001 Paul Davis 
+    Copyright (C) 2001-2006 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
+#include <pango/pangoft2.h> // for fontmap resolution control for GnomeCanvas
+#include <pango/pangocairo.h> // for fontmap resolution control for GnomeCanvas
 
+#include <pbd/whitespace.h>
+
+#include <ardour/ardour.h>
 #include <ardour/session.h>
 #include <ardour/audioengine.h>
 #include <ardour/configuration.h>
 #include <ardour/auditioner.h>
+#include <ardour/sndfilesource.h>
 #include <ardour/crossfade.h>
 #include <midi++/manager.h>
+#include <midi++/factory.h>
 #include <gtkmm2ext/stop_signal.h>
 #include <gtkmm2ext/utils.h>
+#include <gtkmm2ext/window_title.h>
 
 #include "public_editor.h"
+#include "keyboard.h"
 #include "mixer_ui.h"
 #include "ardour_ui.h"
 #include "io_selector.h"
 #include "utils.h"
 #include "editing.h"
 #include "option_editor.h"
+#include "midi_port_dialog.h"
+#include "gui_thread.h"
+#include "utils.h"
 
 #include "i18n.h"
 
 using namespace ARDOUR;
+using namespace PBD;
 using namespace Gtk;
 using namespace Editing;
 using namespace Gtkmm2ext;
 using namespace std;
 
-static const gchar *psync_strings[] = {
-       N_("Internal"),
-       N_("Slave to MTC"),
-       N_("Sync with JACK"),
-       N_("never used but stops crashes"),
-       0
-};
-
-static const gchar *lmode_strings[] = {
-       N_("Later regions are higher"),
-       N_("Most recently added/moved/trimmed regions are higher"),
-       N_("Most recently added regions are higher"),
-       0
-};
-
-static const gchar *xfl_strings[] = {
-       N_("Span entire region overlap"),
-       N_("Short fades at the start of the overlap"),
-       0
-};
-
 static vector<string> positional_sync_strings;
-static vector<string> layer_mode_strings;
-static vector<string> xfade_model_strings;
 
 OptionEditor::OptionEditor (ARDOUR_UI& uip, PublicEditor& ed, Mixer_UI& mixui)
-       : Dialog ("option editor"),
+       : ArdourDialog ("options editor", false),
          ui (uip),
          editor (ed),
          mixer (mixui),
 
-         path_table (9, 2),
+         /* Paths */
+         path_table (11, 2),
 
-         /* Fades */
+         /* misc */
 
-         auto_xfade_button (_("Automatically create crossfades")),
-         xfade_active_button (_("New full-overlap crossfades are unmuted")),
-         layer_mode_label (_("Region layering mode")),
-         xfade_model_label (_("Crossfade model")),
          short_xfade_adjustment (0, 1.0, 500.0, 5.0, 100.0),
          short_xfade_slider (short_xfade_adjustment),
+         destructo_xfade_adjustment (1.0, 1.0, 500.0, 1.0, 100.0),
+         destructo_xfade_slider (destructo_xfade_adjustment),
+         history_depth (20, -1, 100, 1.0, 10.0),
+         saved_history_depth (20, 0, 100, 1.0, 10.0),
+         history_depth_spinner (history_depth),
+         saved_history_depth_spinner (saved_history_depth),
+         limit_history_button (_("Limit undo history")),
+         save_history_button (_("Save undo history")),
 
-         /* solo */
-         solo_latched_button (_("Latched solo")),
-         solo_via_bus_button (_("Solo via bus")),
-
-         /* display */
-
-         show_waveforms_button (_("Show waveforms")),
-         show_waveforms_recording_button (_("Show waveforms while recording")),
-         mixer_strip_width_button (_("Narrow mixer strips")),
-         show_measures_button (_("Show measure lines")),
-         follow_playhead_button (_("Follow playhead")),
-         
          /* Sync */
 
-         send_mtc_button (_("Send MTC")),
-         send_mmc_button (_("Send MMC")),
-         jack_time_master_button (_("JACK time master")),
-         smpte_offset_clock (X_("SMPTEOffsetClock"), true, true),
+         smpte_offset_clock (X_("smpteoffset"), false, X_("SMPTEOffsetClock"), true, true),
          smpte_offset_negative_button (_("SMPTE offset is negative")),
+         synced_timecode_button (_("Timecode source is sample-clock synced")),
 
          /* MIDI */
 
-         midi_feedback_button (_("Send MIDI parameter feedback")),
-         midi_control_button (_("MIDI parameter control")),
-         mmc_control_button (_("MMC control")),
-         
+         midi_port_table (4, 12),
+         mmc_receive_device_id_adjustment (0.0, 0.0, (double) 0x7f, 1.0, 16.0),
+         mmc_receive_device_id_spinner (mmc_receive_device_id_adjustment),
+         mmc_send_device_id_adjustment (0.0, 0.0, (double) 0x7f, 1.0, 16.0),
+         mmc_send_device_id_spinner (mmc_send_device_id_adjustment),
+         add_midi_port_button (_("Add new MIDI port")),
+
          /* Click */
 
          click_table (2, 3),
@@ -121,44 +104,30 @@ OptionEditor::OptionEditor (ARDOUR_UI& uip, PublicEditor& ed, Mixer_UI& mixui)
 
          /* kbd/mouse */
 
-         keyboard_mouse_table (3, 4),
+         keyboard_mouse_table (4, 4),
          delete_button_adjustment (3, 1, 5),
          delete_button_spin (delete_button_adjustment),
          edit_button_adjustment (3, 1, 5),
-         edit_button_spin (edit_button_adjustment),
-
-         /* Misc */
-
-         auto_connect_inputs_button (_("Auto-connect new track inputs to hardware")),
-         auto_connect_output_physical_button (_("Auto-connect new track outputs to hardware")),
-         auto_connect_output_master_button (_("Auto-connect new track outputs to master bus")),
-         auto_connect_output_manual_button (_("Manually connect new track outputs")),
-         hw_monitor_button(_("Use Hardware Monitoring")),
-         sw_monitor_button(_("Use Software Monitoring")),
-         plugins_stop_button (_("Stop plugins with transport")),
-         plugins_on_rec_button (_("Run plugins while recording")),
-         verify_remove_last_capture_button (_("Verify remove last capture")),
-         stop_rec_on_xrun_button (_("Stop recording on xrun")),
-         stop_at_end_button (_("Stop transport at end of session")),
-         debug_keyboard_button (_("Debug keyboard events")),
-         speed_quieten_button (_("-12dB gain reduction for ffwd/rew"))
-         
+         edit_button_spin (edit_button_adjustment)
+
 {
        using namespace Notebook_Helpers;
 
+       first_click_setup = true;
        click_io_selector = 0;
        auditioner_io_selector = 0;
+       session = 0;
+
+       WindowTitle title(Glib::get_application_name());
+       title += _("Preferences");
+       set_title(title.get_string());
 
        set_default_size (300, 300);
-       set_title (_("ardour: options editor"));
-       set_wmclass (_("ardour_option_editor"), "Ardour");
+       set_wmclass (X_("ardour_preferences"), "Ardour");
 
-       set_name ("OptionsWindow");
+       set_name ("Preferences");
        add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
-       
-       layer_mode_label.set_name ("OptionsLabel");
-       xfade_model_label.set_name ("OptionsLabel");
-       
+
        VBox *vbox = get_vbox();
        set_border_width (3);
 
@@ -173,30 +142,25 @@ OptionEditor::OptionEditor (ARDOUR_UI& uip, PublicEditor& ed, Mixer_UI& mixui)
 
        setup_sync_options();
        setup_path_options();
-       setup_fade_options ();
-       setup_solo_options ();
-       setup_display_options ();
        setup_misc_options ();
        setup_keyboard_options ();
        setup_auditioner_editor ();
 
-       notebook.pages().push_back (TabElem (misc_packer, _("Misc")));
        notebook.pages().push_back (TabElem (sync_packer, _("Sync")));
        notebook.pages().push_back (TabElem (path_table, _("Paths/Files")));
-       notebook.pages().push_back (TabElem (display_packer, _("Display")));
        notebook.pages().push_back (TabElem (keyboard_mouse_table, _("Kbd/Mouse")));
        notebook.pages().push_back (TabElem (click_packer, _("Click")));
        notebook.pages().push_back (TabElem (audition_packer, _("Audition")));
-       notebook.pages().push_back (TabElem (fade_packer, _("Layers & Fades")));
-       notebook.pages().push_back (TabElem (solo_packer, _("Solo")));
+       notebook.pages().push_back (TabElem (misc_packer, _("Misc")));
 
-       if (!MIDI::Manager::instance()->get_midi_ports().empty()) {
-               setup_midi_options ();
-               notebook.pages().push_back (TabElem (midi_packer, _("MIDI")));
-       }
+       setup_midi_options ();
+       notebook.pages().push_back (TabElem (midi_packer, _("MIDI")));
 
        set_session (0);
        show_all_children();
+
+       Config->map_parameters (mem_fun (*this, &OptionEditor::parameter_changed));
+       Config->ParameterChanged.connect (mem_fun (*this, &OptionEditor::parameter_changed));
 }
 
 void
@@ -209,27 +173,10 @@ OptionEditor::set_session (Session *s)
        click_emphasis_path_entry.set_text ("");
        session_raid_entry.set_text ("");
 
-       send_mtc_button.set_sensitive (false);
-       send_mmc_button.set_sensitive (false);
-       midi_feedback_button.set_sensitive (false);
-       midi_control_button.set_sensitive (false);
-       mmc_control_button.set_sensitive (false);
        click_path_entry.set_sensitive (false);
        click_emphasis_path_entry.set_sensitive (false);
        session_raid_entry.set_sensitive (false);
-       plugins_on_rec_button.set_sensitive (false);
-       verify_remove_last_capture_button.set_sensitive (false);
-       slave_type_combo.set_sensitive (false);
-       solo_latched_button.set_sensitive (false);
-       solo_via_bus_button.set_sensitive (false);
-       smpte_fps_combo.set_sensitive (false);
-       meter_hold_combo.set_sensitive (false);
-       meter_falloff_combo.set_sensitive (false);
-       auto_connect_inputs_button.set_sensitive (false);
-       auto_connect_output_physical_button.set_sensitive (false);
-       auto_connect_output_master_button.set_sensitive (false);
-       auto_connect_output_manual_button.set_sensitive (false);
-       layer_mode_combo.set_sensitive (false);
+
        short_xfade_slider.set_sensitive (false);
        smpte_offset_negative_button.set_sensitive (false);
 
@@ -239,172 +186,37 @@ OptionEditor::set_session (Session *s)
                return;
        }
 
-       send_mtc_button.set_sensitive (true);
-       send_mmc_button.set_sensitive (true);
-       midi_feedback_button.set_sensitive (true);
-       midi_control_button.set_sensitive (true);
-       mmc_control_button.set_sensitive (true);
        click_path_entry.set_sensitive (true);
        click_emphasis_path_entry.set_sensitive (true);
        session_raid_entry.set_sensitive (true);
-       plugins_on_rec_button.set_sensitive (true);
-       verify_remove_last_capture_button.set_sensitive (true);
-       slave_type_combo.set_sensitive (true);
-       solo_latched_button.set_sensitive (true);
-       solo_via_bus_button.set_sensitive (true);
-       smpte_fps_combo.set_sensitive (true);
-       meter_hold_combo.set_sensitive (true);
-       meter_falloff_combo.set_sensitive (true);
-       auto_connect_inputs_button.set_sensitive (true);
-       auto_connect_output_physical_button.set_sensitive (true);
-       auto_connect_output_master_button.set_sensitive (true);
-       auto_connect_output_manual_button.set_sensitive (true);
-       layer_mode_combo.set_sensitive (true);
        short_xfade_slider.set_sensitive (true);
        smpte_offset_negative_button.set_sensitive (true);
 
-       if (!s->smpte_drop_frames) {
-               // non-drop frames
-               if (s->smpte_frames_per_second == 24.0)
-                       smpte_fps_combo.set_active_text (_("24 FPS"));
-               else if (s->smpte_frames_per_second == 25.0)
-                       smpte_fps_combo.set_active_text (_("25 FPS"));
-               else if (s->smpte_frames_per_second == 30.0)
-                       smpte_fps_combo.set_active_text (_("30 FPS"));
-               else
-                       smpte_fps_combo.set_active_text (_("???"));
-       } else {
-               // drop frames
-               if (floor(s->smpte_frames_per_second) == 29.0)
-                       smpte_fps_combo.set_active_text (_("30 FPS drop"));
-               else
-                       smpte_fps_combo.set_active_text (_("???"));
-       }
-       
        smpte_offset_clock.set_session (s);
        smpte_offset_clock.set (s->smpte_offset (), true);
 
        smpte_offset_negative_button.set_active (session->smpte_offset_negative());
-       send_mtc_button.set_active (session->get_send_mtc());
-
-       /* MIDI I/O */
-
-       send_mmc_button.set_active (session->get_send_mmc());
-       midi_control_button.set_active (session->get_midi_control());
-       midi_feedback_button.set_active (session->get_midi_feedback());
-       mmc_control_button.set_active (session->get_mmc_control());
-
-       /* set up port assignments */
-
-       std::map<MIDI::Port*,vector<RadioButton*> >::iterator res;
 
-       if (session->mtc_port()) {
-               if ((res = port_toggle_buttons.find (session->mtc_port())) != port_toggle_buttons.end()) {
-                       (*res).second[MtcIndex]->set_active (true);
-               }
-       } 
-
-       if (session->mmc_port ()) {
-               if ((res = port_toggle_buttons.find (session->mmc_port())) != port_toggle_buttons.end()) {
-                       (*res).second[MmcIndex]->set_active (true);
-               } 
-       }
-
-       if (session->midi_port()) {
-               if ((res = port_toggle_buttons.find (session->midi_port())) != port_toggle_buttons.end()) {
-                       (*res).second[MidiIndex]->set_active (true);
-               }
-       }
-
-       auto_connect_inputs_button.set_active (session->get_input_auto_connect());
-
-       Session::AutoConnectOption oac = session->get_output_auto_connect();
-       if (oac & Session::AutoConnectPhysical) {
-               auto_connect_output_physical_button.set_active (true);
-       } else if (oac & Session::AutoConnectMaster) {
-               auto_connect_output_master_button.set_active (true);
-       } else {
-               auto_connect_output_manual_button.set_active (true);
-       }
+       redisplay_midi_ports ();
 
        setup_click_editor ();
        connect_audition_editor ();
 
-       plugins_on_rec_button.set_active (session->get_recording_plugins ());
-       verify_remove_last_capture_button.set_active (Config->get_verify_remove_last_capture());
-
-       layer_mode_combo.set_active_text (layer_mode_strings[session->get_layer_model()]);
-       xfade_model_combo.set_active_text (xfade_model_strings[session->get_xfade_model()]);
-
        short_xfade_adjustment.set_value ((Crossfade::short_xfade_length() / (float) session->frame_rate()) * 1000.0);
 
-       xfade_active_button.set_active (session->get_crossfades_active());
-       solo_latched_button.set_active (session->solo_latched());
-       solo_via_bus_button.set_active (session->solo_model() == Session::SoloBus);
-       
        add_session_paths ();
-
-       vector<string> dumb;
-       dumb.push_back (positional_sync_strings[Session::None]);
-       dumb.push_back (positional_sync_strings[Session::JACK]);
-       if (session->mtc_port()) {
-               dumb.push_back (positional_sync_strings[Session::MTC]);
-       } 
-       set_popdown_strings (slave_type_combo, dumb);
-
-       // meter stuff
-       if (session->meter_falloff() == 0.0f) {
-               meter_falloff_combo.set_active_text (_("Off"));
-       } else if (session->meter_falloff() <= 0.3f) {
-               meter_falloff_combo.set_active_text (_("Slowest"));
-       } else if (session->meter_falloff() <= 0.4f) {
-               meter_falloff_combo.set_active_text (_("Slow"));
-       } else if (session->meter_falloff() <= 0.8f) {
-               meter_falloff_combo.set_active_text (_("Medium"));
-       } else if (session->meter_falloff() <= 1.4f) {
-               meter_falloff_combo.set_active_text (_("Fast"));
-       } else if (session->meter_falloff() <= 2.0f) {
-               meter_falloff_combo.set_active_text (_("Faster"));
-       } else {
-               meter_falloff_combo.set_active_text (_("Fastest"));
-       }
-
-       switch ((int) floor (session->meter_hold())) {
-       case 0:
-               meter_hold_combo.set_active_text (_("Off"));
-               break;
-       case 40:
-               meter_hold_combo.set_active_text (_("Short"));
-               break;
-       case 100:
-               meter_hold_combo.set_active_text (_("Medium"));
-               break;
-       case 200:
-               meter_hold_combo.set_active_text (_("Long"));
-               break;
-       }
-       
-       session_control_changed (Session::SlaveType);
-       session_control_changed (Session::AlignChoice);
-       session->ControlChanged.connect (mem_fun(*this, &OptionEditor::queue_session_control_changed));
 }
 
 OptionEditor::~OptionEditor ()
 {
 }
 
-static const gchar *native_format_strings[] = {
-       N_("Broadcast WAVE/floating point"),
-       N_("WAVE/floating point"),
-       0
-};
-
 void
 OptionEditor::setup_path_options()
 {
        Gtk::Label* label;
 
-       path_table.set_homogeneous (true);
+       path_table.set_homogeneous (false);
        path_table.set_border_width (12);
        path_table.set_row_spacings (5);
 
@@ -417,24 +229,6 @@ OptionEditor::setup_path_options()
        path_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
        path_table.attach (session_raid_entry, 1, 3, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
 
-       label = manage(new Label(_("Native Format")));
-       label->set_name ("OptionsLabel");
-       path_table.attach (*label, 0, 1, 1, 2, FILL|EXPAND, FILL);
-       path_table.attach (native_format_combo, 1, 3, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
-
-       vector<string> nfstrings = internationalize (native_format_strings);
-
-       set_popdown_strings (native_format_combo, nfstrings);
-       native_format_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::native_format_chosen));
-
-       fixup_combo_size (native_format_combo, nfstrings);
-
-       if (Config->get_native_format_is_bwf()) {
-               native_format_combo.set_active_text (native_format_strings[0]);
-       } else {
-               native_format_combo.set_active_text (native_format_strings[1]);
-       }
-       
        path_table.show_all();
 }
 
@@ -445,438 +239,206 @@ OptionEditor::add_session_paths ()
        click_emphasis_path_entry.set_sensitive (true);
        session_raid_entry.set_sensitive (true);
 
-       if (session->click_sound.length() == 0) {
+       if (Config->get_click_sound().empty()) {
                click_path_entry.set_text (_("internal"));
        } else {
-               click_path_entry.set_text (session->click_sound);
+               click_path_entry.set_text (Config->get_click_sound());
        }
 
-       if (session->click_emphasis_sound.length() == 0) {
+       if (Config->get_click_emphasis_sound().empty()) {
                click_emphasis_path_entry.set_text (_("internal"));
        } else {
-               click_emphasis_path_entry.set_text (session->click_emphasis_sound);
+               click_emphasis_path_entry.set_text (Config->get_click_emphasis_sound());
        }
 
        session_raid_entry.set_text(session->raid_path());
 }
 
+static void
+font_scale_changed (Gtk::Adjustment* adj)
+{
+       Config->set_font_scale((long)floor (adj->get_value() * 1024));
+       reset_dpi();
+}
+
 void
-OptionEditor::setup_fade_options ()
+OptionEditor::setup_misc_options ()
 {
        Gtk::HBox* hbox;
-       vector<string> dumb;
-       
-       auto_xfade_button.set_name ("OptionEditorToggleButton");
-       xfade_active_button.set_name ("OptionEditorToggleButton");
-
-       hbox = manage (new HBox);
-       hbox->set_border_width (12);
-       hbox->pack_start (auto_xfade_button, false, false);
-       fade_packer.pack_start (*hbox, false, false);
-
-       hbox = manage (new HBox);
-       hbox->set_border_width (12);
-       hbox->pack_start (xfade_active_button, false, false);
-       fade_packer.pack_start (*hbox, false, false);
+       Label* label;
 
-       layer_mode_strings = internationalize (lmode_strings);
+#ifndef GTKOSX
+       /* font scaling does nothing with GDK/Quartz */
 
-       dumb.push_back (lmode_strings[Session::LaterHigher]);
-       dumb.push_back (lmode_strings[Session::MoveAddHigher]);
-       dumb.push_back (lmode_strings[Session::AddHigher]);
-       set_popdown_strings (layer_mode_combo, dumb);
+       Gtk::Adjustment* dpi_adj = new Gtk::Adjustment ((double)Config->get_font_scale() / 1024, 50, 250, 1, 10);
+       Gtk::HScale * dpi_range = new Gtk::HScale (*dpi_adj);
 
-       layer_mode_combo.signal_changed ().connect (mem_fun(*this, &OptionEditor::layer_mode_chosen));
+       label = manage (new Label (_("Font Scaling")));
+       label->set_name ("OptionsLabel");
 
-       fixup_combo_size (layer_mode_combo, layer_mode_strings);
+       dpi_range->set_update_policy (Gtk::UPDATE_DISCONTINUOUS);
+       dpi_adj->signal_value_changed().connect (bind (sigc::ptr_fun (font_scale_changed), dpi_adj));
 
        hbox = manage (new HBox);
        hbox->set_border_width (5);
        hbox->set_spacing (10);
-       hbox->pack_start (layer_mode_label, false, false);
-       hbox->pack_start (layer_mode_combo, false, false);
-       fade_packer.pack_start (*hbox, false, false);
-
-       xfade_model_strings = internationalize (xfl_strings);
-
-       dumb.clear ();
-       dumb.push_back (xfade_model_strings[FullCrossfade]);
-       dumb.push_back (xfade_model_strings[ShortCrossfade]);
-       set_popdown_strings (xfade_model_combo, dumb);
+       hbox->pack_start (*label, false, false);
+       hbox->pack_start (*dpi_range, true, true);
+       misc_packer.pack_start (*hbox, false, false);
+#endif
 
-       xfade_model_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::xfade_model_chosen));
-
-       fixup_combo_size (xfade_model_combo, xfade_model_strings);
+       label = manage (new Label (_("Short crossfade length (msecs)")));
+       label->set_name ("OptionsLabel");
 
        hbox = manage (new HBox);
        hbox->set_border_width (5);
        hbox->set_spacing (10);
-       hbox->pack_start (xfade_model_label, false, false);
-       hbox->pack_start (xfade_model_combo, false, false);
-       fade_packer.pack_start (*hbox, false, false);
-
-       auto_xfade_button.set_active (Config->get_auto_xfade());
-       /* xfade and layer mode active requires session */
-
-       auto_xfade_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::auto_xfade_clicked));
-       xfade_active_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::xfade_active_clicked));
-       
-       Label* short_xfade_label = manage (new Label (_("Short crossfade length (msecs)")));
-       short_xfade_label->set_name ("OptionsLabel");
-       
-       hbox = manage (new HBox);
-       hbox->set_border_width (5);
-       hbox->set_spacing (10);
-       hbox->pack_start (*short_xfade_label, false, false);
+       hbox->pack_start (*label, false, false);
        hbox->pack_start (short_xfade_slider, true, true);
-       fade_packer.pack_start (*hbox, false, false);
+       misc_packer.pack_start (*hbox, false, false);
 
        short_xfade_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::short_xfade_adjustment_changed));
 
-       fade_packer.show_all ();
-}
-
-void
-OptionEditor::short_xfade_adjustment_changed ()
-{
-       if (session) {
-               float val = short_xfade_adjustment.get_value();
-               
-               /* val is in msecs */
-               
-               Crossfade::set_short_xfade_length ((jack_nframes_t) floor (session->frame_rate() * (val / 1000.0)));
-       }
-}
-
-void
-OptionEditor::layer_mode_chosen ()
-{
-       if (!session) {
-               return;
-       }
+       label = manage (new Label (_("Destructive crossfade length (msecs)")));
+       label->set_name ("OptionsLabel");
 
-       string which = layer_mode_combo.get_active_text ();
+       hbox = manage (new HBox);
+       hbox->set_border_width (5);
+       hbox->set_spacing (10);
+       hbox->pack_start (*label, false, false);
+       hbox->pack_start (destructo_xfade_slider, true, true);
+       misc_packer.pack_start (*hbox, false, false);
 
-       if (which == layer_mode_strings[Session::LaterHigher]) {
-               session->set_layer_model (Session::LaterHigher);
-       } else if (which == layer_mode_strings[Session::MoveAddHigher]) {
-               session->set_layer_model (Session::MoveAddHigher);
-       } else if (which == layer_mode_strings[Session::AddHigher]) {
-               session->set_layer_model (Session::AddHigher);
-       }
-}
 
-void
-OptionEditor::xfade_model_chosen ()
-{
-       if (!session) {
-               return;
-       }
+       destructo_xfade_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::destructo_xfade_adjustment_changed));
 
-       string which = xfade_model_combo.get_active_text ();
+       hbox = manage (new HBox);
+       hbox->set_border_width (5);
+       hbox->set_spacing (10);
+       hbox->pack_start (limit_history_button, false, false);
+       misc_packer.pack_start (*hbox, false, false);
 
-       if (which == xfade_model_strings[FullCrossfade]) {
-               session->set_xfade_model (FullCrossfade);
-       } else if (which == xfade_model_strings[ShortCrossfade]) {
-               session->set_xfade_model (ShortCrossfade);
-       }
-}
+       label = manage (new Label (_("History depth (commands)")));
+       label->set_name ("OptionsLabel");
 
-void
-OptionEditor::auto_xfade_clicked ()
-{
-       Config->set_auto_xfade (auto_xfade_button.get_active());
-}
+       hbox = manage (new HBox);
+       hbox->set_border_width (5);
+       hbox->set_spacing (10);
+       hbox->pack_start (*label, false, false);
+       hbox->pack_start (history_depth_spinner, false, false);
+       misc_packer.pack_start (*hbox, false, false);
 
-void
-OptionEditor::xfade_active_clicked ()
-{
-       if (session) {
-               session->set_crossfades_active (xfade_active_button.get_active());
-       }
-}
+       history_depth.signal_value_changed().connect (mem_fun (*this, &OptionEditor::history_depth_changed));
+       saved_history_depth.signal_value_changed().connect (mem_fun (*this, &OptionEditor::saved_history_depth_changed));
+       save_history_button.signal_toggled().connect (mem_fun (*this, &OptionEditor::save_history_toggled));
+       limit_history_button.signal_toggled().connect (mem_fun (*this, &OptionEditor::limit_history_toggled));
 
-void
-OptionEditor::setup_solo_options ()
-{
-       Gtk::HBox* hbox;
+       hbox = manage (new HBox);
+       hbox->set_border_width (5);
+       hbox->set_spacing (10);
+       hbox->pack_start (save_history_button, false, false);
+       misc_packer.pack_start (*hbox, false, false);
 
-       solo_via_bus_button.set_name ("OptionEditorToggleButton");
-       solo_latched_button.set_name ("OptionEditorToggleButton");
+       label = manage (new Label (_("Saved history depth (commands)")));
+       label->set_name ("OptionsLabel");
 
        hbox = manage (new HBox);
-       hbox->set_border_width (12);
-       hbox->pack_start (solo_via_bus_button, false, false);
-       solo_packer.pack_start (*hbox, false, false);
+       hbox->set_border_width (5);
+       hbox->set_spacing (10);
+       hbox->pack_start (*label, false, false);
+       hbox->pack_start (saved_history_depth_spinner, false, false);
+       misc_packer.pack_start (*hbox, false, false);
 
-       hbox = manage (new HBox);
-       hbox->set_border_width (12);
-       hbox->pack_start (solo_latched_button, false, false);
-       solo_packer.pack_start (*hbox, false, false);
+       short_xfade_slider.set_update_policy (UPDATE_DISCONTINUOUS);
+       destructo_xfade_slider.set_update_policy (UPDATE_DISCONTINUOUS);
 
-       solo_via_bus_button.signal_clicked().connect 
-               (mem_fun(*this, &OptionEditor::solo_via_bus_clicked));
-       solo_latched_button.signal_clicked().connect 
-               (mem_fun(*this, &OptionEditor::solo_latched_clicked));
+       destructo_xfade_adjustment.set_value (Config->get_destructive_xfade_msecs());
 
-       solo_packer.show_all ();
+       misc_packer.show_all ();
 }
 
 void
-OptionEditor::solo_via_bus_clicked ()
+OptionEditor::limit_history_toggled ()
 {
-       if (!session) {
-               return;
-       }
+       bool x = limit_history_button.get_active();
 
-       if (solo_via_bus_button.get_active()) {
-               session->set_solo_model (Session::SoloBus);
+       if (!x) {
+               Config->set_history_depth (0);
+               history_depth_spinner.set_sensitive (false);
        } else {
-               session->set_solo_model (Session::InverseMute);
+               if (Config->get_history_depth() == 0) {
+                       /* get back to a sane default */
+                       Config->set_history_depth (20);
+               }
+               history_depth_spinner.set_sensitive (true);
        }
 }
 
 void
-OptionEditor::solo_latched_clicked ()
+OptionEditor::save_history_toggled ()
 {
-       if (!session) {
-               return;
-       }
-
-       bool x = solo_latched_button.get_active();
+       bool x = save_history_button.get_active();
 
-       if (x != session->solo_latched()) {
-               session->set_solo_latched (x);
+       if (x != Config->get_save_history()) {
+               Config->set_save_history (x);
+               saved_history_depth_spinner.set_sensitive (x);
        }
 }
 
 void
-OptionEditor::setup_display_options ()
+OptionEditor::history_depth_changed()
 {
-       HBox* hbox;
-       vector<string> dumb;
-
-       display_packer.set_border_width (12);
-       display_packer.set_spacing (5);
-
-       show_waveforms_button.set_name ("OptionEditorToggleButton");
-       show_waveforms_recording_button.set_name ("OptionEditorToggleButton");
-       show_measures_button.set_name ("OptionEditorToggleButton");
-       follow_playhead_button.set_name ("OptionEditorToggleButton");
-       mixer_strip_width_button.set_name ("OptionEditorToggleButton");
-
-       mixer_strip_width_button.set_active (mixer.get_strip_width() == Narrow);
-
-       hbox = manage (new HBox);
-       hbox->set_border_width (8);
-       hbox->pack_start (show_waveforms_button, false, false);
-       display_packer.pack_start (*hbox, false, false);
-
-       hbox = manage (new HBox);
-       hbox->set_border_width (8);
-       hbox->pack_start (show_waveforms_recording_button, false, false);
-       display_packer.pack_start (*hbox, false, false);
-       
-       hbox = manage (new HBox);
-       hbox->set_border_width (8);
-       hbox->pack_start (show_measures_button, false, false);
-       display_packer.pack_start (*hbox, false, false);
-
-       hbox = manage (new HBox);
-       hbox->set_border_width (8);
-       hbox->pack_start (mixer_strip_width_button, false, false);
-       display_packer.pack_start (*hbox, false, false);
-
-       hbox = manage (new HBox);
-       hbox->set_border_width (8);
-       hbox->pack_start (follow_playhead_button, false, false);
-       display_packer.pack_start (*hbox, false, false);
-
-       Label *meter_hold_label = manage (new Label (_("Meter Peak Hold")));
-       meter_hold_label->set_name ("OptionsLabel");
-       dumb.clear ();
-       dumb.push_back (_("Off"));
-       dumb.push_back (_("Short"));
-       dumb.push_back (_("Medium"));
-       dumb.push_back (_("Long"));
-       set_popdown_strings (meter_hold_combo, dumb);
-       meter_hold_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::meter_hold_chosen));
-       hbox = manage (new HBox);
-       hbox->set_border_width (8);
-       hbox->set_spacing (8);
-       hbox->pack_start (*meter_hold_label, false, false);
-       hbox->pack_start (meter_hold_combo, false, false);
-       display_packer.pack_start (*hbox, false, false);
-
-       Label *meter_falloff_label = manage (new Label (_("Meter Falloff")));
-       meter_falloff_label->set_name ("OptionsLabel");
-       dumb.clear ();
-       dumb.push_back (_("Off"));
-       dumb.push_back (_("Slowest"));
-       dumb.push_back (_("Slow"));
-       dumb.push_back (_("Medium"));
-       dumb.push_back (_("Fast"));
-       dumb.push_back (_("Faster"));
-       dumb.push_back (_("Fastest"));
-       set_popdown_strings (meter_falloff_combo, dumb);
-       meter_falloff_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::meter_falloff_chosen));
-       hbox = manage (new HBox);
-       hbox->set_border_width (8);
-       hbox->set_spacing (8);
-       hbox->pack_start (*meter_falloff_label, false, false);
-       hbox->pack_start (meter_falloff_combo, false, false);
-       display_packer.pack_start (*hbox, false, false);
-       
-       
-       show_waveforms_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::show_waveforms_clicked));
-       show_waveforms_recording_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::show_waveforms_recording_clicked));
-       show_measures_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::show_measures_clicked));
-       mixer_strip_width_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::strip_width_clicked));
-       follow_playhead_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::follow_playhead_clicked));
-
-       editor.DisplayControlChanged.connect (mem_fun(*this, &OptionEditor::display_control_changed));
-
-       show_measures_button.set_active (editor.show_measures());
-       show_waveforms_button.set_active (editor.show_waveforms());
-       show_waveforms_recording_button.set_active (editor.show_waveforms_recording());
-       follow_playhead_button.set_active (editor.follow_playhead());
+       Config->set_history_depth ((int32_t) floor (history_depth.get_value()));
 }
 
 void
-OptionEditor::meter_hold_chosen ()
+OptionEditor::saved_history_depth_changed()
 {
-       if (session) {
-               string str = meter_hold_combo.get_active_text();
-               
-               if (str == _("Off")) {
-                       session->set_meter_hold (0);
-               } else if (str == _("Short")) {
-                       session->set_meter_hold (40);
-               } else if (str == _("Medium")) {
-                       session->set_meter_hold (100);
-               } else if (str == _("Long")) {
-                       session->set_meter_hold (200);
-               }
-       }
+       Config->set_saved_history_depth ((int32_t) floor (saved_history_depth.get_value()));
 }
 
 void
-OptionEditor::meter_falloff_chosen ()
+OptionEditor::short_xfade_adjustment_changed ()
 {
        if (session) {
-               string str = meter_falloff_combo.get_active_text();
-               
-               if (str == _("Off")) {
-                       session->set_meter_falloff (0.0f);
-               } else if (str == _("Slowest")) {
-                       session->set_meter_falloff (0.266f); // 6.6 dB/sec falloff at update rate of 40 ms
-               } else if (str == _("Slow")) {
-                       session->set_meter_falloff (0.342f); // 8.6 dB/sec falloff at update rate of 40 ms
-               } else if (str == _("Medium")) {
-                       session->set_meter_falloff  (0.7f);
-               } else if (str == _("Fast")) {
-                       session->set_meter_falloff (1.1f);
-               } else if (str == _("Faster")) {
-                       session->set_meter_falloff (1.5f);
-               } else if (str == _("Fastest")) {
-                       session->set_meter_falloff (2.5f);
-               }
+               float val = short_xfade_adjustment.get_value();
+
+               /* val is in msecs */
+
+               Crossfade::set_short_xfade_length ((nframes_t) floor (session->frame_rate() * (val / 1000.0)));
        }
 }
 
 void
-OptionEditor::display_control_changed (Editing::DisplayControl dc)
+OptionEditor::destructo_xfade_adjustment_changed ()
 {
-       ToggleButton* button = 0;
-       bool val = true;
+       float val = destructo_xfade_adjustment.get_value();
+
+       /* val is in msecs */
 
-       switch (dc) {
-       case ShowMeasures:
-               val = editor.show_measures ();
-               button = &show_measures_button;
-               break;
-       case ShowWaveforms:
-               val = editor.show_waveforms ();
-               button = &show_waveforms_button;
-               break;
-       case ShowWaveformsRecording:
-               val = editor.show_waveforms_recording ();
-               button = &show_waveforms_recording_button;
-               break;
-       case FollowPlayhead:
-               val = editor.follow_playhead ();
-               button = &follow_playhead_button;
-               break;
-       }
 
-       if (button->get_active() != val) {
-               button->set_active (val);
+       Config->set_destructive_xfade_msecs ((uint32_t) floor (val));
+
+       if (session) {
+               SndFileSource::setup_standard_crossfades (session->frame_rate());
        }
 }
 
 void
 OptionEditor::setup_sync_options ()
 {
-       Label *slave_type_label = manage (new Label (_("Positional Sync")));
        HBox* hbox;
        vector<string> dumb;
 
-       slave_type_label->set_name("OptionsLabel");
-       positional_sync_strings = internationalize (psync_strings);
-
-       slave_type_combo.set_name ("OptionsEntry");
-       slave_type_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::slave_type_chosen));
-
-       dumb.clear ();
-       dumb.push_back (X_("24 FPS"));
-       dumb.push_back (X_("25 FPS"));
-       dumb.push_back (X_("30 FPS drop"));
-       dumb.push_back (X_("30 FPS non-drop"));
-       
-       set_popdown_strings (smpte_fps_combo, dumb);
-       smpte_fps_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::smpte_fps_chosen));
-       
        smpte_offset_clock.set_mode (AudioClock::SMPTE);
        smpte_offset_clock.ValueChanged.connect (mem_fun(*this, &OptionEditor::smpte_offset_chosen));
-       
-       send_mtc_button.set_name ("OptionEditorToggleButton");
-       jack_time_master_button.set_name ("OptionEditorToggleButton");
+
        smpte_offset_negative_button.set_name ("OptionEditorToggleButton");
 
-       send_mtc_button.unset_flags (Gtk::CAN_FOCUS);
-       jack_time_master_button.unset_flags (Gtk::CAN_FOCUS);
        smpte_offset_negative_button.unset_flags (Gtk::CAN_FOCUS);
 
-       hbox = manage (new HBox);
-       hbox->set_border_width (5);
-       hbox->set_spacing (10);
-       hbox->pack_start (*slave_type_label, false, false);
-       hbox->pack_start (slave_type_combo, false, false);
-
-       sync_packer.pack_start (*hbox, false, false);
-       
-       hbox = manage (new HBox);
-       hbox->set_border_width (5);
-       hbox->pack_start (send_mtc_button, false, false);
-       sync_packer.pack_start (*hbox, false, false);
-
-       hbox = manage (new HBox);
-       hbox->set_border_width (5);
-       hbox->pack_start (jack_time_master_button, false, false);
-       sync_packer.pack_start (*hbox, false, false);
-
-       Label *smpte_fps_label = manage (new Label (_("SMPTE Frames/second")));
        Label *smpte_offset_label = manage (new Label (_("SMPTE Offset")));
-       smpte_fps_label->set_name("OptionsLabel");
        smpte_offset_label->set_name("OptionsLabel");
-       
-       hbox = manage (new HBox);
-       hbox->set_border_width (5);
-       hbox->set_spacing (10);
-       hbox->pack_start (*smpte_fps_label, false, false);
-       hbox->pack_start (smpte_fps_combo, false, false);
-
-       sync_packer.pack_start (*hbox, false, false);
 
        hbox = manage (new HBox);
        hbox->set_border_width (5);
@@ -886,12 +448,10 @@ OptionEditor::setup_sync_options ()
        hbox->pack_start (smpte_offset_negative_button, false, false);
 
        sync_packer.pack_start (*hbox, false, false);
+       sync_packer.pack_start (synced_timecode_button, false, false);
 
-       jack_time_master_button.set_active (Config->get_jack_time_master());
-
-       send_mtc_button.signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::send_mtc_toggled), &send_mtc_button));
-       jack_time_master_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::jack_time_master_clicked));
        smpte_offset_negative_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::smpte_offset_negative_clicked));
+       synced_timecode_button.signal_toggled().connect (mem_fun(*this, &OptionEditor::synced_timecode_toggled));
 }
 
 void
@@ -903,20 +463,13 @@ OptionEditor::smpte_offset_negative_clicked ()
 }
 
 void
-OptionEditor::smpte_fps_chosen ()
+OptionEditor::synced_timecode_toggled ()
 {
-       if (session) {
-               string str = smpte_fps_combo.get_active_text();
-               
-               if (str == X_("24 FPS")) {
-                       session->set_smpte_type (24.0, false);
-               } else if (str == X_("25 FPS")) {
-                       session->set_smpte_type (25.0, false);
-               } else if (str == X_("30 FPS drop")) {
-                       session->set_smpte_type (29.97, true);
-               } else if (str == X_("30 FPS non-drop")) {
-                       session->set_smpte_type (30.0, false);
-               }
+       bool x;
+
+       if ((x = synced_timecode_button.get_active()) != Config->get_timecode_source_is_synced()) {
+               Config->set_timecode_source_is_synced (x);
+               Config->save_state();
        }
 }
 
@@ -924,7 +477,7 @@ void
 OptionEditor::smpte_offset_chosen()
 {
        if (session) {
-               jack_nframes_t frames = smpte_offset_clock.current_duration();
+               nframes_t frames = smpte_offset_clock.current_duration();
                session->set_smpte_offset (frames);
        }
 }
@@ -934,36 +487,143 @@ void
 OptionEditor::setup_midi_options ()
 {
        HBox* hbox;
+       Label* label;
+
+       midi_port_table.set_row_spacings (6);
+       midi_port_table.set_col_spacings (10);
+
+       redisplay_midi_ports ();
+
+       mmc_receive_device_id_adjustment.set_value (Config->get_mmc_receive_device_id());
+       mmc_send_device_id_adjustment.set_value (Config->get_mmc_send_device_id());
+
+       mmc_receive_device_id_adjustment.signal_value_changed().connect (mem_fun (*this, &OptionEditor::mmc_receive_device_id_adjusted));
+       mmc_send_device_id_adjustment.signal_value_changed().connect (mem_fun (*this, &OptionEditor::mmc_send_device_id_adjusted));
+
+       hbox = manage (new HBox);
+       hbox->set_border_width (6);
+       hbox->pack_start (midi_port_table, true, false);
+
+       midi_packer.pack_start (*hbox, false, false);
+       add_midi_port_button.set_label ("Add MIDI port");
+       midi_packer.pack_start (add_midi_port_button, false, false);
+
+       hbox = manage (new HBox);
+       hbox->set_border_width (6);
+       hbox->set_spacing (6);
+       label = (manage (new Label (_("Inbound MMC Device ID"))));
+       hbox->pack_start (mmc_receive_device_id_spinner, false, false);
+       hbox->pack_start (*label, false, false);
+       midi_packer.pack_start (*hbox, false, false);
+
+       mmc_receive_device_id_spinner.set_value(Config->get_mmc_receive_device_id ());
+
+       hbox = manage (new HBox);
+       hbox->set_border_width (6);
+       hbox->set_spacing (6);
+       label = (manage (new Label (_("Outbound MMC Device ID"))));
+       hbox->pack_start (mmc_send_device_id_spinner, false, false);
+       hbox->pack_start (*label, false, false);
+       midi_packer.pack_start (*hbox, false, false);
+
+       mmc_send_device_id_spinner.set_value(Config->get_mmc_send_device_id ());
+
+       add_midi_port_button.signal_clicked().connect (mem_fun (*this, &OptionEditor::add_midi_port));
+}
+
+void
+OptionEditor::redisplay_midi_ports ()
+{
        MIDI::Manager::PortMap::const_iterator i;
        const MIDI::Manager::PortMap& ports = MIDI::Manager::instance()->get_midi_ports();
        int n;
-       ToggleButton* tb;
-       RadioButton* rb;
-
-       Gtk::Table* table = manage (new Table (ports.size() + 4, 9));
-
-       table->set_row_spacings (6);
-       table->set_col_spacings (10);
-
-       table->attach (*(manage (new Label (X_("Port")))), 0, 1, 0, 1);
-       table->attach (*(manage (new Label (X_("Offline")))), 1, 2, 0, 1);
-       table->attach (*(manage (new Label (X_("Trace\nInput")))), 2, 3, 0, 1);
-       table->attach (*(manage (new Label (X_("Trace\nOutput")))), 3, 4, 0, 1);
-       table->attach (*(manage (new Label (X_("MTC")))), 4, 5, 0, 1);
-       table->attach (*(manage (new Label (X_("MMC")))), 6, 7, 0, 1);
-       table->attach (*(manage (new Label (X_("MIDI Parameter\nControl")))), 8, 9, 0, 1);
-
-       table->attach (*(manage (new HSeparator())), 0, 9, 1, 2);
-       table->attach (*(manage (new VSeparator())), 5, 6, 0, 8);
-       table->attach (*(manage (new VSeparator())), 7, 8, 0, 8);
-       
+
+       /* remove all existing widgets */
+
+       // XXX broken in gtkmm 2.10
+       // midi_port_table.clear ();
+
+       for (vector<Widget*>::iterator w = midi_port_table_widgets.begin(); w != midi_port_table_widgets.end(); ++w) {
+               midi_port_table.remove (**w);
+       }
+
+       midi_port_table_widgets.clear ();
+
+       midi_port_table.resize (ports.size() + 4, 12);
+
+       Gtk::Label* label;
+
+       label = (manage (new Label (_("Port"))));
+       label->show ();
+       midi_port_table_widgets.push_back (label);
+       midi_port_table.attach (*label, 0, 1, 0, 1);
+       label = (manage (new Label (_("Offline"))));
+       label->show ();
+       midi_port_table_widgets.push_back (label);
+       midi_port_table.attach (*label, 1, 2, 0, 1);
+       label = (manage (new Label (_("Trace\nInput"))));
+       label->show ();
+       midi_port_table_widgets.push_back (label);
+       midi_port_table.attach (*label, 2, 3, 0, 1);
+       label = (manage (new Label (_("Trace\nOutput"))));
+       label->show ();
+       midi_port_table_widgets.push_back (label);
+       midi_port_table.attach (*label, 3, 4, 0, 1);
+       label = (manage (new Label (_("MTC"))));
+       label->show ();
+       midi_port_table_widgets.push_back (label);
+       midi_port_table.attach (*label, 4, 5, 0, 1);
+       label = (manage (new Label (_("MIDI\nClock"))));
+       label->show ();
+       midi_port_table_widgets.push_back (label);
+       midi_port_table.attach (*label, 6, 7, 0, 1);
+       label = (manage (new Label (_("MMC"))));
+       label->show ();
+       midi_port_table_widgets.push_back (label);
+       midi_port_table.attach (*label, 8, 9, 0, 1);
+       label = (manage (new Label (_("MIDI Parameter\nControl"))));
+       label->show ();
+       midi_port_table_widgets.push_back (label);
+       midi_port_table.attach (*label, 10, 11, 0, 1);
+
+       Gtk::HSeparator* hsep = (manage (new HSeparator()));
+       hsep->show ();
+       midi_port_table_widgets.push_back (hsep);
+       midi_port_table.attach (*hsep, 0, 11, 1, 2);
+       Gtk::VSeparator* vsep = (manage (new VSeparator()));
+       vsep->show ();
+       midi_port_table_widgets.push_back (vsep);
+       midi_port_table.attach (*vsep, 5, 6, 0, 8);
+       vsep = (manage (new VSeparator()));
+       vsep->show ();
+       midi_port_table_widgets.push_back (vsep);
+       midi_port_table.attach (*vsep, 7, 8, 0, 8);
+       vsep = (manage (new VSeparator()));
+       vsep->show ();
+       midi_port_table_widgets.push_back (vsep);
+       midi_port_table.attach (*vsep, 9, 10, 0, 8);
+
        for (n = 0, i = ports.begin(); i != ports.end(); ++n, ++i) {
 
-               pair<MIDI::Port*,vector<RadioButton*> > newpair;
+               ToggleButton* tb;
+               RadioButton* rb;
+               Button* bb;
+
+               /* the remove button. create early so we can pass it to various callbacks */
 
-               newpair.first = i->second;
+               bb = manage (new Button (Stock::REMOVE));
+               bb->set_name ("OptionEditorToggleButton");
+               bb->show ();
+               midi_port_table_widgets.push_back (bb);
+               midi_port_table.attach (*bb, 11, 12, n+2, n+3, FILL|EXPAND, FILL);
+               bb->signal_clicked().connect (bind (mem_fun(*this, &OptionEditor::remove_midi_port), i->second));
+               bb->set_sensitive (port_removable (i->second));
+
+               label = (manage (new Label (i->first)));
+               label->show ();
+               midi_port_table_widgets.push_back (label);
+               midi_port_table.attach (*label, 0, 1, n+2, n+3,FILL|EXPAND, FILL );
 
-               table->attach (*(manage (new Label (i->first))), 0, 1, n+2, n+3,FILL|EXPAND, FILL );
                tb = manage (new ToggleButton (_("online")));
                tb->set_name ("OptionEditorToggleButton");
 
@@ -977,262 +637,291 @@ OptionEditor::setup_midi_options ()
                        set_size_request_to_display_given_text (*tb, _("online"), 15, 12);
                }
 
-               tb->set_active (!(*i).second->input()->offline());
-               tb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::port_online_toggled), (*i).second, tb));
-               (*i).second->input()->OfflineStatusChanged.connect (bind (mem_fun(*this, &OptionEditor::map_port_online), (*i).second, tb));
-               table->attach (*tb, 1, 2, n+2, n+3, FILL|EXPAND, FILL);
+               if (i->second->input()) {
+                       tb->set_active (!i->second->input()->offline());
+                       tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_online_toggled), i->second, tb));
+                       i->second->input()->OfflineStatusChanged.connect (bind (mem_fun(*this, &OptionEditor::map_port_online), (*i).second, tb));
+               }
+               tb->show ();
+               midi_port_table_widgets.push_back (tb);
+               midi_port_table.attach (*tb, 1, 2, n+2, n+3, FILL|EXPAND, FILL);
 
+               // Trace MIDI Input
                tb = manage (new ToggleButton ());
                tb->set_name ("OptionEditorToggleButton");
-               tb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::port_trace_in_toggled), (*i).second, tb));
+               tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_trace_in_toggled), (*i).second, tb));
                tb->set_size_request (10, 10);
-               table->attach (*tb, 2, 3, n+2, n+3, FILL|EXPAND, FILL);
+               tb->show ();
+               midi_port_table_widgets.push_back (tb);
+               midi_port_table.attach (*tb, 2, 3, n+2, n+3, FILL|EXPAND, FILL);
 
+               // Trace MIDI Output
                tb = manage (new ToggleButton ());
                tb->set_name ("OptionEditorToggleButton");
-               tb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::port_trace_out_toggled), (*i).second, tb));
+               tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_trace_out_toggled), (*i).second, tb));
                tb->set_size_request (10, 10);
-               table->attach (*tb, 3, 4, n+2, n+3, FILL|EXPAND, FILL);
+               tb->show ();
+               midi_port_table_widgets.push_back (tb);
+               midi_port_table.attach (*tb, 3, 4, n+2, n+3, FILL|EXPAND, FILL);
 
+               // MTC Radio Button
                rb = manage (new RadioButton ());
-               newpair.second.push_back (rb);
                rb->set_name ("OptionEditorToggleButton");
                if (n == 0) {
                        mtc_button_group = rb->get_group();
                } else {
                        rb->set_group (mtc_button_group);
+               }
+               rb->show ();
+               midi_port_table_widgets.push_back (rb);
+               midi_port_table.attach (*rb, 4, 5, n+2, n+3, FILL|EXPAND, FILL);
+               rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mtc_port_chosen), (*i).second, rb, bb));
 
+               if (session && i->second == session->mtc_port()) {
+                       rb->set_active (true);
                }
-               table->attach (*rb, 4, 5, n+2, n+3, FILL|EXPAND, FILL);
-               rb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::mtc_port_chosen), (*i).second, rb));
 
-               if (Config->get_mtc_port_name() == i->first) {
+               // MIDI Clock Radio Button
+               rb = manage (new RadioButton ());
+               rb->set_name ("OptionEditorToggleButton");
+               if (n == 0) {
+                       midi_clock_button_group = rb->get_group();
+               } else {
+                       rb->set_group (midi_clock_button_group);
+               }
+               rb->show ();
+               midi_port_table_widgets.push_back (rb);
+               midi_port_table.attach (*rb, 6, 7, n+2, n+3, FILL|EXPAND, FILL);
+               rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::midi_clock_port_chosen), (*i).second, rb, bb));
+
+               if (session && i->second == session->midi_clock_port()) {
                        rb->set_active (true);
                }
-               
+
                rb = manage (new RadioButton ());
-               newpair.second.push_back (rb);
                rb->set_name ("OptionEditorToggleButton");
                if (n == 0) {
                        mmc_button_group = rb->get_group();
                } else {
                        rb->set_group (mmc_button_group);
                }
-               table->attach (*rb, 6, 7, n+2, n+3, FILL|EXPAND, FILL);
-               rb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::mmc_port_chosen), (*i).second, rb));
+               rb->show ();
+               midi_port_table_widgets.push_back (rb);
+               midi_port_table.attach (*rb, 8, 9, n+2, n+3, FILL|EXPAND, FILL);
+               rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mmc_port_chosen), (*i).second, rb, bb));
 
-               if (Config->get_mmc_port_name() == i->first) {
+               if (session && i->second == session->mmc_port()) {
                        rb->set_active (true);
                }
 
                rb = manage (new RadioButton ());
-               newpair.second.push_back (rb);
                rb->set_name ("OptionEditorToggleButton");
                if (n == 0) {
                        midi_button_group = rb->get_group();
                } else {
                        rb->set_group (midi_button_group);
                }
-               table->attach (*rb, 8, 9, n+2, n+3, FILL|EXPAND, FILL);
-               rb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::midi_port_chosen), (*i).second, rb));
+               rb->show ();
+               midi_port_table_widgets.push_back (rb);
+               midi_port_table.attach (*rb, 10, 11, n+2, n+3, FILL|EXPAND, FILL);
+               rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::midi_port_chosen), (*i).second, rb, bb));
 
-               if (Config->get_midi_port_name() == i->first) {
+               if (session && i->second == session->midi_port()) {
                        rb->set_active (true);
                }
-               
-               port_toggle_buttons.insert (newpair);
-       }
 
-       table->show_all ();
-
-       hbox = manage (new HBox);
-       hbox->set_border_width (6);
-       hbox->pack_start (*table, true, false);
-       midi_packer.pack_start (*hbox, false, false);
-       
-       VBox* mmcbuttonbox = manage (new VBox);
+       }
 
-       mmc_control_button.set_name ("OptionEditorToggleButton");
+       midi_port_table.show();
+}
 
-       hbox = manage (new HBox);
-       hbox->set_border_width (6);
-       hbox->pack_start (mmc_control_button, false, false, 36);
-       mmcbuttonbox->pack_start (*hbox, false, false);
+void
+OptionEditor::remove_midi_port (MIDI::Port* port)
+{
+       MIDI::Manager::instance()->remove_port (port);
+       redisplay_midi_ports ();
+}
 
-       midi_control_button.set_name ("OptionEditorToggleButton");
+void
+OptionEditor::add_midi_port ()
+{
+       MidiPortDialog dialog;
 
-       hbox = manage (new HBox);
-       hbox->set_border_width (6);
-       hbox->pack_start (midi_control_button, false, false, 36);
-       mmcbuttonbox->pack_start (*hbox, false, false);
+       dialog.set_position (WIN_POS_MOUSE);
+       dialog.set_transient_for (*this);
 
-       send_mmc_button.set_name ("OptionEditorToggleButton");
+       dialog.show ();
 
-       hbox = manage (new HBox);
-       hbox->set_border_width (6);
-       hbox->pack_start (send_mmc_button, false, false, 36);
-       mmcbuttonbox->pack_start (*hbox, false, false);
-       
-       midi_feedback_button.set_name ("OptionEditorToggleButton");
+       int ret = dialog.run ();
 
-       hbox = manage (new HBox);
-       hbox->set_border_width (6);
-       hbox->pack_start (midi_feedback_button, false, false, 36);
-       mmcbuttonbox->pack_start (*hbox, false, false);
+       switch (ret) {
+       case RESPONSE_ACCEPT:
+               break;
+       default:
+               return;
+               break;
+       }
 
-       midi_packer.pack_start (*mmcbuttonbox, false, false);
+       Glib::ustring mode = dialog.port_mode_combo.get_active_text();
+       std::string smod;
 
-       mmc_control_button.signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mmc_control_toggled), &mmc_control_button));
-       midi_control_button.signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::midi_control_toggled), &midi_control_button));
-       send_mmc_button.signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::send_mmc_toggled), &send_mmc_button));
-       midi_feedback_button.signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::midi_feedback_toggled), &midi_feedback_button));
-}
+       if (mode == _("input")) {
+               smod = X_("input");
+       } else if (mode == (_("output"))) {
+               smod = X_("output");
+       } else {
+               smod = "duplex";
+       }
 
-gint
-OptionEditor::mtc_port_chosen (GdkEventButton* ev, MIDI::Port *port, Gtk::RadioButton* rb) 
-{
-       if (session) {
-               if (!rb->get_active()) {
-                       if (port) {
-                               session->set_mtc_port (port->name());
-                               Config->set_mtc_port_name (port->name());
-                       } else {
-                               session->set_mtc_port ("");
-                       }
 
-                       /* update sync options to reflect MTC port availability */
+       XMLNode node (X_("MIDI-port"));
 
-                       vector<string> dumb;
-                       dumb.push_back (positional_sync_strings[Session::None]);
-                       dumb.push_back (positional_sync_strings[Session::JACK]);
+       node.add_property ("tag", dialog.port_name.get_text());
+       node.add_property ("device", X_("ardour")); // XXX this can't be right for all types
+       node.add_property ("type", MIDI::PortFactory::default_port_type());
+       node.add_property ("mode", smod);
 
-                       if (session->mtc_port()) {
-                               dumb.push_back (positional_sync_strings[Session::MTC]);
-                       }
-                       set_popdown_strings (slave_type_combo, dumb);
+       if (MIDI::Manager::instance()->add_port (node) != 0) {
+               redisplay_midi_ports ();
+       }
+}
 
-                       rb->set_active (true);
-               }
+bool
+OptionEditor::port_removable (MIDI::Port *port)
+{
+       if (!session) {
+               return true;
        }
 
-       return stop_signal (*rb, "button_press_event");
+       if (port == session->mtc_port() ||
+           port == session->mmc_port() ||
+           port == session->midi_port()) {
+               return false;
+       }
+       return true;
 }
 
-gint
-OptionEditor::mmc_port_chosen (GdkEventButton* ev, MIDI::Port* port, Gtk::RadioButton* rb)
+void
+OptionEditor::mtc_port_chosen (MIDI::Port *port, Gtk::RadioButton* rb, Gtk::Button* bb)
 {
        if (session) {
-               if (!rb->get_active()) {
-                       if (port) {
-                               session->set_mmc_port (port->name());
-                               Config->set_mtc_port_name (port->name());
-                       } else {
-                               session->set_mmc_port ("");
-                       }
-                       rb->set_active (true);
+               if (rb->get_active()) {
+                       session->set_mtc_port (port->name());
+                       Config->set_mtc_port_name (port->name());
+               } else {
+                       session->set_mtc_port ("");
                }
+               bb->set_sensitive (port_removable (port));
        }
-       return stop_signal (*rb, "button_press_event");
 }
 
-gint
-OptionEditor::midi_port_chosen (GdkEventButton* ev, MIDI::Port* port, Gtk::RadioButton* rb)
+void
+OptionEditor::mmc_port_chosen (MIDI::Port* port, Gtk::RadioButton* rb, Gtk::Button* bb)
 {
        if (session) {
-               if (!rb->get_active()) {
-                       if (port) {
-                               session->set_midi_port (port->name());
-                               Config->set_midi_port_name (port->name());
-                       } else {
-                               session->set_midi_port ("");
-                       }
-                       rb->set_active (true);
+               if (rb->get_active()) {
+                       session->set_mmc_port (port->name());
+                       Config->set_mtc_port_name (port->name());
+               } else {
+                       session->set_mmc_port ("");
                }
+               bb->set_sensitive (port_removable (port));
        }
-       return stop_signal (*rb, "button_press_event");
 }
 
-gint
-OptionEditor::port_online_toggled (GdkEventButton* ev, MIDI::Port* port, ToggleButton* tb)
+void
+OptionEditor::midi_port_chosen (MIDI::Port* port, Gtk::RadioButton* rb, Gtk::Button* bb)
 {
-       bool wanted = tb->get_active(); /* it hasn't changed at this point */
-
-       if (wanted != port->input()->offline()) {
-               port->input()->set_offline (wanted);
-       } 
-       return stop_signal (*tb, "button_press_event");
+       if (session) {
+               if (rb->get_active()) {
+                       session->set_midi_port (port->name());
+                       Config->set_midi_port_name (port->name());
+               } else {
+                       session->set_midi_port ("");
+               }
+               bb->set_sensitive (port_removable (port));
+       }
 }
 
 void
-OptionEditor::map_port_online (MIDI::Port* port, ToggleButton* tb)
+OptionEditor::midi_clock_port_chosen (MIDI::Port *port, Gtk::RadioButton* rb, Gtk::Button* bb)
 {
-       if (port->input()->offline()) {
-               static_cast<Label*>(tb->get_child())->set_text (_("offline"));
-               tb->set_active (false);
-       } else {
-               static_cast<Label*>(tb->get_child())->set_text (_("online"));
-               tb->set_active (true);
+       if (session) {
+               if (rb->get_active()) {
+                       session->set_midi_clock_port (port->name());
+                       Config->set_midi_clock_port_name (port->name());
+               } else {
+                       session->set_midi_clock_port ("");
+               }
+               bb->set_sensitive (port_removable (port));
        }
 }
 
-gint
-OptionEditor::port_trace_in_toggled (GdkEventButton* ev, MIDI::Port* port, ToggleButton* tb)
+void
+OptionEditor::port_online_toggled (MIDI::Port* port, ToggleButton* tb)
 {
-       /* XXX not very good MVC style here */
+       bool wanted = tb->get_active();
 
-       port->input()->trace (!tb->get_active(), &cerr, string (port->name()) + string (" input: "));
-       tb->set_active (!tb->get_active());
-       return stop_signal (*tb, "button_press_event");
+       if (port->input()) {
+               if (wanted != port->input()->offline()) {
+                       port->input()->set_offline (wanted);
+               }
+       }
 }
 
-gint
-OptionEditor::port_trace_out_toggled (GdkEventButton* ev,MIDI::Port* port, ToggleButton* tb)
+void
+OptionEditor::map_port_online (MIDI::Port* port, ToggleButton* tb)
 {
-       /* XXX not very good MVC style here */
-
-       port->output()->trace (!tb->get_active(), &cerr, string (port->name()) + string (" output: "));
-       tb->set_active (!tb->get_active());
-       return stop_signal (*tb, "button_press_event");
-}
+       bool bstate = tb->get_active ();
 
-gint
-OptionEditor::send_mtc_toggled (GdkEventButton *ev, CheckButton *button)
-{
-       if (session) {
-               session->set_send_mtc (!button->get_active());
+       if (port->input()) {
+               if (bstate != port->input()->offline()) {
+                       if (port->input()->offline()) {
+                               tb->set_label (_("offline"));
+                               tb->set_active (false);
+                       } else {
+                               tb->set_label (_("online"));
+                               tb->set_active (true);
+                       }
+               }
        }
-       return stop_signal (*button, "button_press_event");
 }
 
 void
-OptionEditor::send_mmc_toggled (CheckButton *button)
+OptionEditor::mmc_receive_device_id_adjusted ()
 {
-       if (session) {
-               session->set_send_mmc (button->get_active());
-       }
+       uint8_t id = (uint8_t) mmc_receive_device_id_spinner.get_value();
+       Config->set_mmc_receive_device_id (id);
 }
 
 void
-OptionEditor::mmc_control_toggled (CheckButton *button)
+OptionEditor::mmc_send_device_id_adjusted ()
 {
-       if (session) {
-               session->set_mmc_control (button->get_active());
-       }
+       uint8_t id = (uint8_t) mmc_send_device_id_spinner.get_value();
+       Config->set_mmc_send_device_id (id);
 }
 
 void
-OptionEditor::midi_control_toggled (CheckButton *button)
+OptionEditor::port_trace_in_toggled (MIDI::Port* port, ToggleButton* tb)
 {
-       if (session) {
-               session->set_midi_control (button->get_active());
+       bool trace = tb->get_active();
+
+       if (port->input()) {
+               if (port->input()->tracing() != trace) {
+                       port->input()->trace (trace, &cerr, string (port->name()) + string (" input: "));
+               }
        }
 }
 
 void
-OptionEditor::midi_feedback_toggled (CheckButton *button)
+OptionEditor::port_trace_out_toggled (MIDI::Port* port, ToggleButton* tb)
 {
-       if (session) {
-               session->set_midi_feedback (button->get_active());
+       bool trace = tb->get_active();
+
+       if (port->output()) {
+               if (port->output()->tracing() != trace) {
+                       port->output()->trace (trace, &cerr, string (port->name()) + string (" output: "));
+               }
        }
 }
 
@@ -1248,35 +937,26 @@ gint
 OptionEditor::wm_close (GdkEventAny *ev)
 {
        save ();
-       just_close_win();
+       hide ();
        return TRUE;
 }
 
-void
-OptionEditor::jack_time_master_clicked ()
-{
-       bool yn = jack_time_master_button.get_active();
-
-       Config->set_jack_time_master (yn);
-
-       if (session) {
-               session->engine().reset_timebase ();
-       }
-}
-
 void
 OptionEditor::raid_path_changed ()
 {
        if (session) {
-               session->set_raid_path (session_raid_entry.get_text());
+               Config->set_raid_path (session_raid_entry.get_text());
        }
 }
 
 void
 OptionEditor::click_browse_clicked ()
 {
-       SoundFileChooser sfdb (_("Choose Click"));
-       
+       SoundFileChooser sfdb (*this, _("Choose Click"), session);
+
+       sfdb.show_all ();
+       sfdb.present ();
+
        int result = sfdb.run ();
 
        if (result == Gtk::RESPONSE_OK) {
@@ -1285,7 +965,7 @@ OptionEditor::click_browse_clicked ()
 }
 
 void
-OptionEditor::click_chosen (string path)
+OptionEditor::click_chosen (const string & path)
 {
        click_path_entry.set_text (path);
        click_sound_changed ();
@@ -1294,7 +974,10 @@ OptionEditor::click_chosen (string path)
 void
 OptionEditor::click_emphasis_browse_clicked ()
 {
-       SoundFileChooser sfdb (_("Choose Click Emphasis"));
+       SoundFileChooser sfdb (*this, _("Choose Click Emphasis"), session);
+
+       sfdb.show_all ();
+       sfdb.present ();
 
        int result = sfdb.run ();
 
@@ -1304,8 +987,8 @@ OptionEditor::click_emphasis_browse_clicked ()
 }
 
 void
-OptionEditor::click_emphasis_chosen (std::string path)
-{      
+OptionEditor::click_emphasis_chosen (const string & path)
+{
        click_emphasis_path_entry.set_text (path);
        click_emphasis_sound_changed ();
 }
@@ -1316,23 +999,16 @@ OptionEditor::click_sound_changed ()
        if (session) {
                string path = click_path_entry.get_text();
 
-               if (path == session->click_sound) {
+               if (path == Config->get_click_sound()) {
                        return;
                }
 
-               if (path.length() == 0) {
-
-                       session->set_click_sound ("");
+               strip_whitespace_edges (path);
 
+               if (path == _("internal")) {
+                       Config->set_click_sound ("");
                } else {
-
-                       strip_whitespace_edges (path);
-                       
-                       if (path == _("internal")) {
-                               session->set_click_sound ("");
-                       } else {
-                               session->set_click_sound (path);
-                       }
+                       Config->set_click_sound (path);
                }
        }
 }
@@ -1343,160 +1019,26 @@ OptionEditor::click_emphasis_sound_changed ()
        if (session) {
                string path = click_emphasis_path_entry.get_text();
 
-               if (path == session->click_emphasis_sound) {
+               if (path == Config->get_click_emphasis_sound()) {
                        return;
                }
 
-               if (path.length() == 0) {
-
-                       session->set_click_emphasis_sound ("");
+               strip_whitespace_edges (path);
 
+               if (path == _("internal")) {
+                       Config->set_click_emphasis_sound ("");
                } else {
-
-                       strip_whitespace_edges (path);
-
-                       if (path == _("internal")) {
-                               session->set_click_emphasis_sound ("");
-                       } else {
-                               session->set_click_emphasis_sound (path);
-                       }
-               }
-       }
-}
-
-void
-OptionEditor::show_waveforms_clicked ()
-{
-       editor.set_show_waveforms (show_waveforms_button.get_active());
-}
-
-void
-OptionEditor::show_waveforms_recording_clicked ()
-{
-       editor.set_show_waveforms_recording (show_waveforms_recording_button.get_active());
-}
-
-void
-OptionEditor::show_measures_clicked ()
-{
-       editor.set_show_measures (show_measures_button.get_active());
-}
-
-void
-OptionEditor::follow_playhead_clicked ()
-{
-       editor.set_follow_playhead (follow_playhead_button.get_active());
-}
-
-void
-OptionEditor::strip_width_clicked ()
-{
-       mixer.set_strip_width (mixer_strip_width_button.get_active() ? Narrow : Wide);
-}
-
-
-void
-OptionEditor::just_close_win()
-{
-       hide();
-}
-
-void
-OptionEditor::queue_session_control_changed (Session::ControlType t)
-{
-       ui.call_slot (bind (mem_fun(*this, &OptionEditor::session_control_changed), t));
-}
-
-void
-OptionEditor::session_control_changed (Session::ControlType t)
-{
-       switch (t) {
-       case Session::SlaveType:
-               switch (session->slave_source()) {
-               case Session::None:
-                       slave_type_combo.set_active_text (positional_sync_strings[Session::None]);
-                       break;
-               case Session::MTC:
-                       slave_type_combo.set_active_text (positional_sync_strings[Session::MTC]);
-                       break;
-               case Session::JACK:
-                       slave_type_combo.set_active_text (positional_sync_strings[Session::JACK]);
-                       break;
-               default:
-                       slave_type_combo.set_active_text (_("--unknown--"));
-                       break;
+                       Config->set_click_emphasis_sound (path);
                }
-               
-               break;
-
-       case Session::SendMTC:
-               map_some_session_state (send_mtc_button, &Session::get_send_mtc);
-               break;
-
-       case Session::SendMMC:
-               map_some_session_state (send_mmc_button, &Session::get_send_mmc);
-               break;
-
-       case Session::MMCControl:       
-               map_some_session_state (mmc_control_button, &Session::get_mmc_control);
-               break;
-
-       case Session::MidiFeedback:       
-               map_some_session_state (midi_feedback_button, &Session::get_midi_feedback);
-               break;
-
-       case Session::MidiControl:       
-                map_some_session_state (midi_control_button, &Session::get_midi_control);
-               break;
-       
-       default:
-               break;
-       }
-}
-
-void
-OptionEditor::native_format_chosen ()
-{
-       string which;
-
-       if (session == 0) {
-               return;
        }
-
-       bool use_bwf = (native_format_combo.get_active_text() == native_format_strings[0]);
-
-       if (use_bwf != Config->get_native_format_is_bwf()) {
-               Config->set_native_format_is_bwf (use_bwf);
-               session->reset_native_file_format ();
-       }
-}
-
-void
-OptionEditor::slave_type_chosen ()
-{
-       string which;
-
-       if (session == 0) {
-               return;
-       }
-
-       which = slave_type_combo.get_active_text();
-
-       if (which == positional_sync_strings[Session::None]) {
-               session->request_slave_source (Session::None);
-       } else if (which == positional_sync_strings[Session::MTC]) {
-               session->request_slave_source (Session::MTC);
-       } else if (which == positional_sync_strings[Session::JACK]) {
-               session->request_slave_source (Session::JACK);
-       } 
 }
 
 void
 OptionEditor::clear_click_editor ()
 {
        if (click_io_selector) {
-               click_packer.remove (*click_io_selector);
-               click_packer.remove (*click_gpm);
+               click_hpacker.remove (*click_io_selector);
+               click_hpacker.remove (*click_gpm);
                delete click_io_selector;
                delete click_gpm;
                click_io_selector = 0;
@@ -1508,52 +1050,73 @@ void
 OptionEditor::setup_click_editor ()
 {
        Label* label;
-       HBox* hpacker = manage (new HBox);
 
-       click_path_entry.set_sensitive (true);
-       click_emphasis_path_entry.set_sensitive (true);
+       if (first_click_setup) {
+               
+               click_path_entry.set_name ("OptionsEntry");
+               click_emphasis_path_entry.set_name ("OptionsEntry");
+               
+               click_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_sound_changed));
+               click_emphasis_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_emphasis_sound_changed));
+               
+               click_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_sound_changed));
+               click_emphasis_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_emphasis_sound_changed));
+               
+               click_browse_button.set_name ("EditorGTKButton");
+               click_emphasis_browse_button.set_name ("EditorGTKButton");
+
+               click_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_browse_clicked));
+               click_emphasis_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_emphasis_browse_clicked));
+
+               click_packer.set_border_width (12);
+               click_packer.set_spacing (5);
+
+               click_table.set_col_spacings (10);
+               
+               label = manage(new Label(_("Click audio file")));
+               label->set_name ("OptionsLabel");
+               click_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
+               click_table.attach (click_path_entry, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
+               click_table.attach (click_browse_button, 2, 3, 0, 1, FILL|EXPAND, FILL);
+               
+               label = manage(new Label(_("Click emphasis audiofile")));
+               label->set_name ("OptionsLabel");
+               click_table.attach (*label, 0, 1, 1, 2, FILL|EXPAND, FILL);
+               click_table.attach (click_emphasis_path_entry, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
+               click_table.attach (click_emphasis_browse_button, 2, 3, 1, 2, FILL|EXPAND, FILL);
+
+               click_packer.pack_start (click_table, false, false);
+               click_packer.pack_start (click_hpacker, false, false);
 
-       click_path_entry.set_name ("OptionsEntry");
-       click_emphasis_path_entry.set_name ("OptionsEntry");
-       
-       click_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_sound_changed));
-       click_emphasis_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_emphasis_sound_changed));
 
-       click_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_sound_changed));
-       click_emphasis_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_emphasis_sound_changed));
+               click_hpacker.set_spacing (10);
 
-       click_browse_button.set_name ("EditorGTKButton");
-       click_emphasis_browse_button.set_name ("EditorGTKButton");
-       click_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_browse_clicked));
-       click_emphasis_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_emphasis_browse_clicked));
+               first_click_setup = false;
+       }
 
-       click_packer.set_border_width (12);
-       click_packer.set_spacing (5);
+       click_path_entry.set_sensitive (true);
+       click_emphasis_path_entry.set_sensitive (true);
 
        click_io_selector = new IOSelector (*session, session->click_io(), false);
        click_gpm = new GainMeter (session->click_io(), *session);
 
+       click_hpacker.pack_start (*click_io_selector, false, false);
+       click_hpacker.pack_start (*click_gpm, false, false);
+
        click_table.set_col_spacings (10);
-       
+
        label = manage(new Label(_("Click audio file")));
        label->set_name ("OptionsLabel");
        click_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
        click_table.attach (click_path_entry, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
        click_table.attach (click_browse_button, 2, 3, 0, 1, FILL|EXPAND, FILL);
-       
+
        label = manage(new Label(_("Click emphasis audiofile")));
        label->set_name ("OptionsLabel");
        click_table.attach (*label, 0, 1, 1, 2, FILL|EXPAND, FILL);
        click_table.attach (click_emphasis_path_entry, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
        click_table.attach (click_emphasis_browse_button, 2, 3, 1, 2, FILL|EXPAND, FILL);
 
-       hpacker->set_spacing (10);
-       hpacker->pack_start (*click_io_selector, false, false);
-       hpacker->pack_start (*click_gpm, false, false);
-
-       click_packer.pack_start (click_table, false, false);
-       click_packer.pack_start (*hpacker, false, false);
-
        click_packer.show_all ();
 }
 
@@ -1582,7 +1145,7 @@ OptionEditor::setup_auditioner_editor ()
                                   "for listening to specific regions outside the context\n"
                                   "of the overall mix. It can be connected just like any\n"
                                   "other mixer strip."));
-       
+
        audition_packer.pack_start (audition_label, false, false, 10);
        audition_packer.pack_start (audition_hpacker, false, false);
 }
@@ -1601,190 +1164,33 @@ OptionEditor::connect_audition_editor ()
 }
 
 bool
-OptionEditor::focus_out_event_handler (GdkEventFocus* ev, void (OptionEditor::*pmf)()) 
+OptionEditor::focus_out_event_handler (GdkEventFocus* ev, void (OptionEditor::*pmf)())
 {
        (this->*pmf)();
        return false;
 }
 
-void
-OptionEditor::setup_misc_options()
-{
-       Gtk::Table* table = manage (new Table (4, 2));  
-       table->set_homogeneous (true);
-
-       misc_packer.set_border_width (8);
-       misc_packer.set_spacing (3);
-       misc_packer.pack_start (*table, true, true);
-
-       table->attach (hw_monitor_button, 0, 1, 0, 1, Gtk::FILL, FILL, 8, 0);
-       table->attach (sw_monitor_button, 0, 1, 1, 2, Gtk::FILL, FILL, 8, 0);
-       table->attach (plugins_stop_button, 0, 1, 2, 3, Gtk::FILL, FILL, 8, 0);
-       table->attach (plugins_on_rec_button, 0, 1, 3, 4, Gtk::FILL, FILL, 8, 0);
-       table->attach (verify_remove_last_capture_button, 0, 1, 4, 5, Gtk::FILL, FILL, 8, 0);
-
-       table->attach (stop_rec_on_xrun_button, 1, 2, 0, 1, Gtk::FILL, FILL, 8, 0);
-       table->attach (stop_at_end_button, 1, 2, 1, 2, Gtk::FILL, FILL, 8, 0);
-       table->attach (debug_keyboard_button, 1, 2, 2, 3, Gtk::FILL, FILL, 8, 0);
-       table->attach (speed_quieten_button, 1, 2, 3, 4, Gtk::FILL, FILL, 8, 0);
-
-       Gtk::VBox* connect_box = manage (new VBox);
-       connect_box->set_spacing (3);
-       connect_box->set_border_width (8);
-
-       auto_connect_output_button_group = auto_connect_output_master_button.get_group();
-       auto_connect_output_manual_button.set_group (auto_connect_output_button_group);
-       auto_connect_output_physical_button.set_group (auto_connect_output_button_group);
-
-       Gtk::HBox* useless_box = manage (new HBox);
-       useless_box->pack_start (auto_connect_inputs_button, false, false);
-       connect_box->pack_start (*useless_box, false, false);
-       connect_box->pack_start (auto_connect_output_master_button, false, false);
-       connect_box->pack_start (auto_connect_output_physical_button, false, false);
-       connect_box->pack_start (auto_connect_output_manual_button, false, false);
-
-       misc_packer.pack_start (*connect_box, false, false);
-       
-       hw_monitor_button.set_name ("OptionEditorToggleButton");
-       sw_monitor_button.set_name ("OptionEditorToggleButton");
-       plugins_stop_button.set_name ("OptionEditorToggleButton");
-       plugins_on_rec_button.set_name ("OptionEditorToggleButton");
-       verify_remove_last_capture_button.set_name ("OptionEditorToggleButton");
-       auto_connect_inputs_button.set_name ("OptionEditorToggleButton");
-       auto_connect_output_physical_button.set_name ("OptionEditorToggleButton");
-       auto_connect_output_master_button.set_name ("OptionEditorToggleButton");
-       auto_connect_output_manual_button.set_name ("OptionEditorToggleButton");
-       stop_rec_on_xrun_button.set_name ("OptionEditorToggleButton");
-       stop_at_end_button.set_name ("OptionEditorToggleButton");
-       debug_keyboard_button.set_name ("OptionEditorToggleButton");
-       speed_quieten_button.set_name ("OptionEditorToggleButton");
-
-       hw_monitor_button.set_active (Config->get_use_hardware_monitoring());
-       sw_monitor_button.set_active (!Config->get_no_sw_monitoring());
-       plugins_stop_button.set_active (Config->get_plugins_stop_with_transport());
-       stop_rec_on_xrun_button.set_active (Config->get_stop_recording_on_xrun());
-       stop_at_end_button.set_active (Config->get_stop_at_session_end());
-       debug_keyboard_button.set_active (false);
-       speed_quieten_button.set_active (Config->get_quieten_at_speed() != 1.0f);
-
-       hw_monitor_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::hw_monitor_clicked));
-       sw_monitor_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::sw_monitor_clicked));
-       plugins_stop_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::plugins_stop_with_transport_clicked));
-       plugins_on_rec_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::plugins_on_while_recording_clicked));
-       verify_remove_last_capture_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::verify_remove_last_capture_clicked));
-       auto_connect_inputs_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::auto_connect_inputs_clicked));
-       auto_connect_output_physical_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::auto_connect_output_physical_clicked));
-       auto_connect_output_master_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::auto_connect_output_master_clicked));
-       auto_connect_output_manual_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::auto_connect_output_manual_clicked));
-       stop_rec_on_xrun_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::stop_rec_on_xrun_clicked));
-       stop_at_end_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::stop_at_end_clicked));
-       debug_keyboard_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::debug_keyboard_clicked));
-       speed_quieten_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::speed_quieten_clicked));
-}
-
-void
-OptionEditor::speed_quieten_clicked ()
-{
-       if (speed_quieten_button.get_active()) {
-               Config->set_quieten_at_speed (0.251189); // -12dB reduction for ffwd or rewind
-       } else {
-               Config->set_quieten_at_speed (1.0); /* no change */
-       }
-}
-
-void
-OptionEditor::debug_keyboard_clicked ()
-{
-       extern bool debug_keyboard;
-       debug_keyboard = debug_keyboard_button.get_active ();
-}
-
-void
-OptionEditor::auto_connect_inputs_clicked ()
-{
-       if (session) {
-               session->set_input_auto_connect (auto_connect_inputs_button.get_active());
-       }
-}
-
-void
-OptionEditor::auto_connect_output_master_clicked ()
-{
-       if (session) {
-               if (auto_connect_output_master_button.get_active()) {
-                       session->set_output_auto_connect (Session::AutoConnectMaster);
-               } 
-       }
-}
-
-void
-OptionEditor::auto_connect_output_physical_clicked ()
-{
-       if (session) {
-               if (auto_connect_output_physical_button.get_active()) {
-                       session->set_output_auto_connect (Session::AutoConnectPhysical);
-               } 
-       }
-}
-
-void
-OptionEditor::auto_connect_output_manual_clicked ()
-{
-       if (session) {
-               if (auto_connect_output_manual_button.get_active()) {
-                       session->set_output_auto_connect (Session::AutoConnectOption (0));
-               } 
-       }
-}
-
-void
-OptionEditor::hw_monitor_clicked ()
-{
-       Config->set_use_hardware_monitoring (hw_monitor_button.get_active());
-}
-
-void
-OptionEditor::sw_monitor_clicked ()
-{
-       Config->set_no_sw_monitoring (!sw_monitor_button.get_active());
-}
-
-void
-OptionEditor::plugins_stop_with_transport_clicked ()
-{
-       Config->set_plugins_stop_with_transport (plugins_stop_button.get_active());
-}
-
-void
-OptionEditor::plugins_on_while_recording_clicked ()
-{
-       if (session) {
-               session->set_recording_plugins (plugins_on_rec_button.get_active());
-       }
-}
-
-void
-OptionEditor::verify_remove_last_capture_clicked ()
-{
-       Config->set_verify_remove_last_capture(verify_remove_last_capture_button.get_active());
-}
-
-void
-OptionEditor::stop_rec_on_xrun_clicked ()
-{
-       Config->set_stop_recording_on_xrun (stop_rec_on_xrun_button.get_active());
-}
-
-void
-OptionEditor::stop_at_end_clicked ()
-{
-       Config->set_stop_at_session_end (stop_at_end_button.get_active());
-}
-                                                 
 static const struct {
     const char *name;
     guint   modifier;
 } modifiers[] = {
+
+#ifdef GTKOSX
+
+       /* Command = Meta
+          Option/Alt = Mod1
+       */
+
+       { "Shift", GDK_SHIFT_MASK },
+       { "Command", GDK_META_MASK },
+       { "Control", GDK_CONTROL_MASK },
+       { "Option", GDK_MOD1_MASK },
+       { "Command-Shift", GDK_MOD1_MASK|GDK_SHIFT_MASK },
+       { "Command-Option", GDK_MOD1_MASK|GDK_MOD5_MASK },
+       { "Shift-Option", GDK_SHIFT_MASK|GDK_MOD5_MASK },
+       { "Shift-Command-Option", GDK_MOD5_MASK|GDK_SHIFT_MASK|GDK_MOD1_MASK },
+
+#else
        { "Shift", GDK_SHIFT_MASK },
        { "Control", GDK_CONTROL_MASK },
        { "Alt (Mod1)", GDK_MOD1_MASK },
@@ -1796,6 +1202,7 @@ static const struct {
        { "Mod3", GDK_MOD3_MASK },
        { "Mod4", GDK_MOD4_MASK },
        { "Mod5", GDK_MOD5_MASK },
+#endif
        { 0, 0 }
 };
 
@@ -1828,13 +1235,13 @@ OptionEditor::setup_keyboard_options ()
        label = manage (new Label (_("Edit using")));
        label->set_name ("OptionsLabel");
        label->set_alignment (1.0, 0.5);
-               
+
        keyboard_mouse_table.attach (*label, 0, 1, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
        keyboard_mouse_table.attach (edit_modifier_combo, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
 
        label = manage (new Label (_("+ button")));
        label->set_name ("OptionsLabel");
-       
+
        keyboard_mouse_table.attach (*label, 3, 4, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
        keyboard_mouse_table.attach (edit_button_spin, 4, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
 
@@ -1855,7 +1262,7 @@ OptionEditor::setup_keyboard_options ()
        label = manage (new Label (_("Delete using")));
        label->set_name ("OptionsLabel");
        label->set_alignment (1.0, 0.5);
-               
+
        keyboard_mouse_table.attach (*label, 0, 1, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
        keyboard_mouse_table.attach (delete_modifier_combo, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
 
@@ -1871,7 +1278,7 @@ OptionEditor::setup_keyboard_options ()
 
        set_popdown_strings (snap_modifier_combo, dumb);
        snap_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::snap_modifier_chosen));
-       
+
        for (int x = 0; modifiers[x].name; ++x) {
                if (modifiers[x].modifier == (guint) Keyboard::snap_modifier ()) {
                        snap_modifier_combo.set_active_text (_(modifiers[x].name));
@@ -1882,16 +1289,49 @@ OptionEditor::setup_keyboard_options ()
        label = manage (new Label (_("Ignore snap using")));
        label->set_name ("OptionsLabel");
        label->set_alignment (1.0, 0.5);
-       
+
        keyboard_mouse_table.attach (*label, 0, 1, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
        keyboard_mouse_table.attach (snap_modifier_combo, 1, 2, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
+
+       vector<string> strs;
+
+       for (std::map<std::string,std::string>::iterator bf = Keyboard::binding_files.begin(); bf != Keyboard::binding_files.end(); ++bf) {
+               strs.push_back (bf->first);
+       }
+
+       set_popdown_strings (keyboard_layout_selector, strs);
+       keyboard_layout_selector.set_active_text (Keyboard::current_binding_name());
+       keyboard_layout_selector.signal_changed().connect (mem_fun (*this, &OptionEditor::bindings_changed));
+
+       label = manage (new Label (_("Keyboard layout")));
+       label->set_name ("OptionsLabel");
+       label->set_alignment (1.0, 0.5);
+
+       keyboard_mouse_table.attach (*label, 0, 1, 3, 4, Gtk::FILL|Gtk::EXPAND, FILL);
+       keyboard_mouse_table.attach (keyboard_layout_selector, 1, 2, 3, 4, Gtk::FILL|Gtk::EXPAND, FILL);
+}
+
+void
+OptionEditor::bindings_changed ()
+{
+       string txt;
+
+       txt = keyboard_layout_selector.get_active_text();
+
+       for (std::map<string,string>::iterator i = Keyboard::binding_files.begin(); i != Keyboard::binding_files.end(); ++i) {
+               if (txt == i->first) {
+                       if (Keyboard::load_keybindings (i->second)) {
+                               Keyboard::save_keybindings ();
+                       }
+               }
+       }
 }
 
 void
 OptionEditor::edit_modifier_chosen ()
 {
        string txt;
-       
+
        txt = edit_modifier_combo.get_active_text();
 
        for (int i = 0; modifiers[i].name; ++i) {
@@ -1906,7 +1346,7 @@ void
 OptionEditor::delete_modifier_chosen ()
 {
        string txt;
-       
+
        txt = delete_modifier_combo.get_active_text();
 
        for (int i = 0; modifiers[i].name; ++i) {
@@ -1921,7 +1361,7 @@ void
 OptionEditor::snap_modifier_chosen ()
 {
        string txt;
-       
+
        txt = snap_modifier_combo.get_active_text();
 
        for (int i = 0; modifiers[i].name; ++i) {
@@ -1974,10 +1414,32 @@ OptionEditor::fixup_combo_size (Gtk::ComboBoxText& combo, vector<string>& string
 }
 
 void
-OptionEditor::map_some_session_state (CheckButton& button, bool (Session::*get)() const)
+OptionEditor::parameter_changed (const char* parameter_name)
 {
-       if (session) {
-               button.set_active ((session->*get)());
+       ENSURE_GUI_THREAD (bind (mem_fun (*this, &OptionEditor::parameter_changed), parameter_name));
+
+#define PARAM_IS(x) (!strcmp (parameter_name, (x)))
+
+       if (PARAM_IS ("timecode-source-is-synced")) {
+               synced_timecode_button.set_active (Config->get_timecode_source_is_synced());
+       } else if (PARAM_IS ("history-depth")) {
+               int32_t depth = Config->get_history_depth();
+
+               history_depth.set_value (depth);
+               history_depth_spinner.set_sensitive (depth != 0);
+               limit_history_button.set_active (depth != 0);
+
+       } else if (PARAM_IS ("saved-history-depth")) {
+
+               saved_history_depth.set_value (Config->get_saved_history_depth());
+
+       } else if (PARAM_IS ("save-history")) {
+
+               bool x = Config->get_save_history();
+
+               save_history_button.set_active (x);
+               saved_history_depth_spinner.set_sensitive (x);
+       } else if (PARAM_IS ("font-scale")) {
+               reset_dpi();
        }
 }
-