* first implementation of MIDI Clock Slave support
[ardour.git] / gtk2_ardour / option_editor.cc
1 /*
2     Copyright (C) 2001-2006 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19 #include <pango/pangoft2.h> // for fontmap resolution control for GnomeCanvas
20 #include <pango/pangocairo.h> // for fontmap resolution control for GnomeCanvas
21
22 #include <pbd/whitespace.h>
23
24 #include <ardour/ardour.h>
25 #include <ardour/session.h>
26 #include <ardour/audioengine.h>
27 #include <ardour/configuration.h>
28 #include <ardour/auditioner.h>
29 #include <ardour/sndfilesource.h>
30 #include <ardour/crossfade.h>
31 #include <midi++/manager.h>
32 #include <midi++/factory.h>
33 #include <gtkmm2ext/stop_signal.h>
34 #include <gtkmm2ext/utils.h>
35 #include <gtkmm2ext/window_title.h>
36
37 #include "public_editor.h"
38 #include "keyboard.h"
39 #include "mixer_ui.h"
40 #include "ardour_ui.h"
41 #include "io_selector.h"
42 #include "gain_meter.h"
43 #include "sfdb_ui.h"
44 #include "utils.h"
45 #include "editing.h"
46 #include "option_editor.h"
47 #include "midi_port_dialog.h"
48 #include "gui_thread.h"
49 #include "utils.h"
50
51 #include "i18n.h"
52
53 using namespace ARDOUR;
54 using namespace PBD;
55 using namespace Gtk;
56 using namespace Editing;
57 using namespace Gtkmm2ext;
58 using namespace std;
59
60 static vector<string> positional_sync_strings;
61
62 OptionEditor::OptionEditor (ARDOUR_UI& uip, PublicEditor& ed, Mixer_UI& mixui)
63         : ArdourDialog ("options editor", false),
64           ui (uip),
65           editor (ed),
66           mixer (mixui),
67
68           /* Paths */
69           path_table (11, 2),
70
71           /* misc */
72
73           short_xfade_adjustment (0, 1.0, 500.0, 5.0, 100.0),
74           short_xfade_slider (short_xfade_adjustment),
75           destructo_xfade_adjustment (1.0, 1.0, 500.0, 1.0, 100.0),
76           destructo_xfade_slider (destructo_xfade_adjustment),
77           history_depth (20, -1, 100, 1.0, 10.0),
78           saved_history_depth (20, 0, 100, 1.0, 10.0),
79           history_depth_spinner (history_depth),
80           saved_history_depth_spinner (saved_history_depth),
81           limit_history_button (_("Limit undo history")),
82           save_history_button (_("Save undo history")),
83
84           /* Sync */
85
86           smpte_offset_clock (X_("smpteoffset"), false, X_("SMPTEOffsetClock"), true, true),
87           smpte_offset_negative_button (_("SMPTE offset is negative")),
88           synced_timecode_button (_("Timecode source is sample-clock synced")),
89
90           /* MIDI */
91
92           midi_port_table (4, 12),
93           mmc_receive_device_id_adjustment (0.0, 0.0, (double) 0x7f, 1.0, 16.0),
94           mmc_receive_device_id_spinner (mmc_receive_device_id_adjustment),
95           mmc_send_device_id_adjustment (0.0, 0.0, (double) 0x7f, 1.0, 16.0),
96           mmc_send_device_id_spinner (mmc_send_device_id_adjustment),
97           add_midi_port_button (_("Add new MIDI port")),
98
99           /* Click */
100
101           click_table (2, 3),
102           click_browse_button (_("Browse")),
103           click_emphasis_browse_button (_("Browse")),
104
105           /* kbd/mouse */
106
107           keyboard_mouse_table (4, 4),
108           delete_button_adjustment (3, 1, 5),
109           delete_button_spin (delete_button_adjustment),
110           edit_button_adjustment (3, 1, 5),
111           edit_button_spin (edit_button_adjustment)
112
113 {
114         using namespace Notebook_Helpers;
115
116         click_io_selector = 0;
117         auditioner_io_selector = 0;
118         session = 0;
119
120         WindowTitle title(Glib::get_application_name());
121         title += _("Preferences");
122         set_title(title.get_string());
123
124         set_default_size (300, 300);
125         set_wmclass (X_("ardour_preferences"), "Ardour");
126
127         set_name ("Preferences");
128         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
129
130         VBox *vbox = get_vbox();
131         set_border_width (3);
132
133         vbox->set_spacing (4);
134         vbox->pack_start(notebook);
135
136         signal_delete_event().connect (mem_fun(*this, &OptionEditor::wm_close));
137
138         notebook.set_show_tabs (true);
139         notebook.set_show_border (true);
140         notebook.set_name ("OptionsNotebook");
141
142         setup_sync_options();
143         setup_path_options();
144         setup_misc_options ();
145         setup_keyboard_options ();
146         setup_auditioner_editor ();
147
148         notebook.pages().push_back (TabElem (sync_packer, _("Sync")));
149         notebook.pages().push_back (TabElem (path_table, _("Paths/Files")));
150         notebook.pages().push_back (TabElem (keyboard_mouse_table, _("Kbd/Mouse")));
151         notebook.pages().push_back (TabElem (click_packer, _("Click")));
152         notebook.pages().push_back (TabElem (audition_packer, _("Audition")));
153         notebook.pages().push_back (TabElem (misc_packer, _("Misc")));
154
155         setup_midi_options ();
156         notebook.pages().push_back (TabElem (midi_packer, _("MIDI")));
157
158         set_session (0);
159         show_all_children();
160
161         Config->map_parameters (mem_fun (*this, &OptionEditor::parameter_changed));
162         Config->ParameterChanged.connect (mem_fun (*this, &OptionEditor::parameter_changed));
163 }
164
165 void
166 OptionEditor::set_session (Session *s)
167 {
168         clear_click_editor ();
169         clear_auditioner_editor ();
170
171         click_path_entry.set_text ("");
172         click_emphasis_path_entry.set_text ("");
173         session_raid_entry.set_text ("");
174
175         click_path_entry.set_sensitive (false);
176         click_emphasis_path_entry.set_sensitive (false);
177         session_raid_entry.set_sensitive (false);
178
179         short_xfade_slider.set_sensitive (false);
180         smpte_offset_negative_button.set_sensitive (false);
181
182         smpte_offset_clock.set_session (s);
183
184         if ((session = s) == 0) {
185                 return;
186         }
187
188         click_path_entry.set_sensitive (true);
189         click_emphasis_path_entry.set_sensitive (true);
190         session_raid_entry.set_sensitive (true);
191         short_xfade_slider.set_sensitive (true);
192         smpte_offset_negative_button.set_sensitive (true);
193
194         smpte_offset_clock.set_session (s);
195         smpte_offset_clock.set (s->smpte_offset (), true);
196
197         smpte_offset_negative_button.set_active (session->smpte_offset_negative());
198
199         redisplay_midi_ports ();
200
201         setup_click_editor ();
202         connect_audition_editor ();
203
204         short_xfade_adjustment.set_value ((Crossfade::short_xfade_length() / (float) session->frame_rate()) * 1000.0);
205
206         add_session_paths ();
207 }
208
209 OptionEditor::~OptionEditor ()
210 {
211 }
212
213 void
214 OptionEditor::setup_path_options()
215 {
216         Gtk::Label* label;
217
218         path_table.set_homogeneous (false);
219         path_table.set_border_width (12);
220         path_table.set_row_spacings (5);
221
222         session_raid_entry.set_name ("OptionsEntry");
223
224         session_raid_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::raid_path_changed));
225
226         label = manage(new Label(_("session RAID path")));
227         label->set_name ("OptionsLabel");
228         path_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
229         path_table.attach (session_raid_entry, 1, 3, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
230
231         path_table.show_all();
232 }
233
234 void
235 OptionEditor::add_session_paths ()
236 {
237         click_path_entry.set_sensitive (true);
238         click_emphasis_path_entry.set_sensitive (true);
239         session_raid_entry.set_sensitive (true);
240
241         if (Config->get_click_sound().empty()) {
242                 click_path_entry.set_text (_("internal"));
243         } else {
244                 click_path_entry.set_text (Config->get_click_sound());
245         }
246
247         if (Config->get_click_emphasis_sound().empty()) {
248                 click_emphasis_path_entry.set_text (_("internal"));
249         } else {
250                 click_emphasis_path_entry.set_text (Config->get_click_emphasis_sound());
251         }
252
253         session_raid_entry.set_text(session->raid_path());
254 }
255
256 static void
257 font_scale_changed (Gtk::Adjustment* adj)
258 {
259         Config->set_font_scale((long)floor (adj->get_value() * 1024));
260         reset_dpi();
261 }
262
263 void
264 OptionEditor::setup_misc_options ()
265 {
266         Gtk::HBox* hbox;
267         Label* label;
268
269 #ifndef GTKOSX
270         /* font scaling does nothing with GDK/Quartz */
271
272         Gtk::Adjustment* dpi_adj = new Gtk::Adjustment ((double)Config->get_font_scale() / 1024, 50, 250, 1, 10);
273         Gtk::HScale * dpi_range = new Gtk::HScale (*dpi_adj);
274
275         label = manage (new Label (_("Font Scaling")));
276         label->set_name ("OptionsLabel");
277
278         dpi_range->set_update_policy (Gtk::UPDATE_DISCONTINUOUS);
279         dpi_adj->signal_value_changed().connect (bind (sigc::ptr_fun (font_scale_changed), dpi_adj));
280
281         hbox = manage (new HBox);
282         hbox->set_border_width (5);
283         hbox->set_spacing (10);
284         hbox->pack_start (*label, false, false);
285         hbox->pack_start (*dpi_range, true, true);
286         misc_packer.pack_start (*hbox, false, false);
287 #endif
288
289         label = manage (new Label (_("Short crossfade length (msecs)")));
290         label->set_name ("OptionsLabel");
291
292         hbox = manage (new HBox);
293         hbox->set_border_width (5);
294         hbox->set_spacing (10);
295         hbox->pack_start (*label, false, false);
296         hbox->pack_start (short_xfade_slider, true, true);
297         misc_packer.pack_start (*hbox, false, false);
298
299         short_xfade_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::short_xfade_adjustment_changed));
300
301         label = manage (new Label (_("Destructive crossfade length (msecs)")));
302         label->set_name ("OptionsLabel");
303
304         hbox = manage (new HBox);
305         hbox->set_border_width (5);
306         hbox->set_spacing (10);
307         hbox->pack_start (*label, false, false);
308         hbox->pack_start (destructo_xfade_slider, true, true);
309         misc_packer.pack_start (*hbox, false, false);
310
311
312         destructo_xfade_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::destructo_xfade_adjustment_changed));
313
314         hbox = manage (new HBox);
315         hbox->set_border_width (5);
316         hbox->set_spacing (10);
317         hbox->pack_start (limit_history_button, false, false);
318         misc_packer.pack_start (*hbox, false, false);
319
320         label = manage (new Label (_("History depth (commands)")));
321         label->set_name ("OptionsLabel");
322
323         hbox = manage (new HBox);
324         hbox->set_border_width (5);
325         hbox->set_spacing (10);
326         hbox->pack_start (*label, false, false);
327         hbox->pack_start (history_depth_spinner, false, false);
328         misc_packer.pack_start (*hbox, false, false);
329
330         history_depth.signal_value_changed().connect (mem_fun (*this, &OptionEditor::history_depth_changed));
331         saved_history_depth.signal_value_changed().connect (mem_fun (*this, &OptionEditor::saved_history_depth_changed));
332         save_history_button.signal_toggled().connect (mem_fun (*this, &OptionEditor::save_history_toggled));
333         limit_history_button.signal_toggled().connect (mem_fun (*this, &OptionEditor::limit_history_toggled));
334
335         hbox = manage (new HBox);
336         hbox->set_border_width (5);
337         hbox->set_spacing (10);
338         hbox->pack_start (save_history_button, false, false);
339         misc_packer.pack_start (*hbox, false, false);
340
341         label = manage (new Label (_("Saved history depth (commands)")));
342         label->set_name ("OptionsLabel");
343
344         hbox = manage (new HBox);
345         hbox->set_border_width (5);
346         hbox->set_spacing (10);
347         hbox->pack_start (*label, false, false);
348         hbox->pack_start (saved_history_depth_spinner, false, false);
349         misc_packer.pack_start (*hbox, false, false);
350
351         short_xfade_slider.set_update_policy (UPDATE_DISCONTINUOUS);
352         destructo_xfade_slider.set_update_policy (UPDATE_DISCONTINUOUS);
353
354         destructo_xfade_adjustment.set_value (Config->get_destructive_xfade_msecs());
355
356         misc_packer.show_all ();
357 }
358
359 void
360 OptionEditor::limit_history_toggled ()
361 {
362         bool x = limit_history_button.get_active();
363
364         if (!x) {
365                 Config->set_history_depth (0);
366                 history_depth_spinner.set_sensitive (false);
367         } else {
368                 if (Config->get_history_depth() == 0) {
369                         /* get back to a sane default */
370                         Config->set_history_depth (20);
371                 }
372                 history_depth_spinner.set_sensitive (true);
373         }
374 }
375
376 void
377 OptionEditor::save_history_toggled ()
378 {
379         bool x = save_history_button.get_active();
380
381         if (x != Config->get_save_history()) {
382                 Config->set_save_history (x);
383                 saved_history_depth_spinner.set_sensitive (x);
384         }
385 }
386
387 void
388 OptionEditor::history_depth_changed()
389 {
390         Config->set_history_depth ((int32_t) floor (history_depth.get_value()));
391 }
392
393 void
394 OptionEditor::saved_history_depth_changed()
395 {
396         Config->set_saved_history_depth ((int32_t) floor (saved_history_depth.get_value()));
397 }
398
399 void
400 OptionEditor::short_xfade_adjustment_changed ()
401 {
402         if (session) {
403                 float val = short_xfade_adjustment.get_value();
404
405                 /* val is in msecs */
406
407                 Crossfade::set_short_xfade_length ((nframes_t) floor (session->frame_rate() * (val / 1000.0)));
408         }
409 }
410
411 void
412 OptionEditor::destructo_xfade_adjustment_changed ()
413 {
414         float val = destructo_xfade_adjustment.get_value();
415
416         /* val is in msecs */
417
418
419         Config->set_destructive_xfade_msecs ((uint32_t) floor (val));
420
421         if (session) {
422                 SndFileSource::setup_standard_crossfades (session->frame_rate());
423         }
424 }
425
426 void
427 OptionEditor::setup_sync_options ()
428 {
429         HBox* hbox;
430         vector<string> dumb;
431
432         smpte_offset_clock.set_mode (AudioClock::SMPTE);
433         smpte_offset_clock.ValueChanged.connect (mem_fun(*this, &OptionEditor::smpte_offset_chosen));
434
435         smpte_offset_negative_button.set_name ("OptionEditorToggleButton");
436
437         smpte_offset_negative_button.unset_flags (Gtk::CAN_FOCUS);
438
439         Label *smpte_offset_label = manage (new Label (_("SMPTE Offset")));
440         smpte_offset_label->set_name("OptionsLabel");
441
442         hbox = manage (new HBox);
443         hbox->set_border_width (5);
444         hbox->set_spacing (10);
445         hbox->pack_start (*smpte_offset_label, false, false);
446         hbox->pack_start (smpte_offset_clock, false, false);
447         hbox->pack_start (smpte_offset_negative_button, false, false);
448
449         sync_packer.pack_start (*hbox, false, false);
450         sync_packer.pack_start (synced_timecode_button, false, false);
451
452         smpte_offset_negative_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::smpte_offset_negative_clicked));
453         synced_timecode_button.signal_toggled().connect (mem_fun(*this, &OptionEditor::synced_timecode_toggled));
454 }
455
456 void
457 OptionEditor::smpte_offset_negative_clicked ()
458 {
459         if (session) {
460                 session->set_smpte_offset_negative (smpte_offset_negative_button.get_active());
461         }
462 }
463
464 void
465 OptionEditor::synced_timecode_toggled ()
466 {
467         bool x;
468
469         if ((x = synced_timecode_button.get_active()) != Config->get_timecode_source_is_synced()) {
470                 Config->set_timecode_source_is_synced (x);
471                 Config->save_state();
472         }
473 }
474
475 void
476 OptionEditor::smpte_offset_chosen()
477 {
478         if (session) {
479                 nframes_t frames = smpte_offset_clock.current_duration();
480                 session->set_smpte_offset (frames);
481         }
482 }
483
484
485 void
486 OptionEditor::setup_midi_options ()
487 {
488         HBox* hbox;
489         Label* label;
490
491         midi_port_table.set_row_spacings (6);
492         midi_port_table.set_col_spacings (10);
493
494         redisplay_midi_ports ();
495
496         mmc_receive_device_id_adjustment.set_value (Config->get_mmc_receive_device_id());
497         mmc_send_device_id_adjustment.set_value (Config->get_mmc_send_device_id());
498
499         mmc_receive_device_id_adjustment.signal_value_changed().connect (mem_fun (*this, &OptionEditor::mmc_receive_device_id_adjusted));
500         mmc_send_device_id_adjustment.signal_value_changed().connect (mem_fun (*this, &OptionEditor::mmc_send_device_id_adjusted));
501
502         hbox = manage (new HBox);
503         hbox->set_border_width (6);
504         hbox->pack_start (midi_port_table, true, false);
505
506         midi_packer.pack_start (*hbox, false, false);
507         add_midi_port_button.set_label ("Add MIDI port");
508         midi_packer.pack_start (add_midi_port_button, false, false);
509
510         hbox = manage (new HBox);
511         hbox->set_border_width (6);
512         hbox->set_spacing (6);
513         label = (manage (new Label (_("Inbound MMC Device ID"))));
514         hbox->pack_start (mmc_receive_device_id_spinner, false, false);
515         hbox->pack_start (*label, false, false);
516         midi_packer.pack_start (*hbox, false, false);
517
518         mmc_receive_device_id_spinner.set_value(Config->get_mmc_receive_device_id ());
519
520         hbox = manage (new HBox);
521         hbox->set_border_width (6);
522         hbox->set_spacing (6);
523         label = (manage (new Label (_("Outbound MMC Device ID"))));
524         hbox->pack_start (mmc_send_device_id_spinner, false, false);
525         hbox->pack_start (*label, false, false);
526         midi_packer.pack_start (*hbox, false, false);
527
528         mmc_send_device_id_spinner.set_value(Config->get_mmc_send_device_id ());
529
530         add_midi_port_button.signal_clicked().connect (mem_fun (*this, &OptionEditor::add_midi_port));
531 }
532
533 void
534 OptionEditor::redisplay_midi_ports ()
535 {
536         MIDI::Manager::PortMap::const_iterator i;
537         const MIDI::Manager::PortMap& ports = MIDI::Manager::instance()->get_midi_ports();
538         int n;
539
540         /* remove all existing widgets */
541
542         // XXX broken in gtkmm 2.10
543         // midi_port_table.clear ();
544
545         for (vector<Widget*>::iterator w = midi_port_table_widgets.begin(); w != midi_port_table_widgets.end(); ++w) {
546                 midi_port_table.remove (**w);
547         }
548
549         midi_port_table_widgets.clear ();
550
551         midi_port_table.resize (ports.size() + 4, 12);
552
553         Gtk::Label* label;
554
555         label = (manage (new Label (_("Port"))));
556         label->show ();
557         midi_port_table_widgets.push_back (label);
558         midi_port_table.attach (*label, 0, 1, 0, 1);
559         label = (manage (new Label (_("Offline"))));
560         label->show ();
561         midi_port_table_widgets.push_back (label);
562         midi_port_table.attach (*label, 1, 2, 0, 1);
563         label = (manage (new Label (_("Trace\nInput"))));
564         label->show ();
565         midi_port_table_widgets.push_back (label);
566         midi_port_table.attach (*label, 2, 3, 0, 1);
567         label = (manage (new Label (_("Trace\nOutput"))));
568         label->show ();
569         midi_port_table_widgets.push_back (label);
570         midi_port_table.attach (*label, 3, 4, 0, 1);
571         label = (manage (new Label (_("MTC"))));
572         label->show ();
573         midi_port_table_widgets.push_back (label);
574         midi_port_table.attach (*label, 4, 5, 0, 1);
575         label = (manage (new Label (_("MIDI\nClock"))));
576         label->show ();
577         midi_port_table_widgets.push_back (label);
578         midi_port_table.attach (*label, 6, 7, 0, 1);
579         label = (manage (new Label (_("MMC"))));
580         label->show ();
581         midi_port_table_widgets.push_back (label);
582         midi_port_table.attach (*label, 8, 9, 0, 1);
583         label = (manage (new Label (_("MIDI Parameter\nControl"))));
584         label->show ();
585         midi_port_table_widgets.push_back (label);
586         midi_port_table.attach (*label, 10, 11, 0, 1);
587
588         Gtk::HSeparator* hsep = (manage (new HSeparator()));
589         hsep->show ();
590         midi_port_table_widgets.push_back (hsep);
591         midi_port_table.attach (*hsep, 0, 11, 1, 2);
592         Gtk::VSeparator* vsep = (manage (new VSeparator()));
593         vsep->show ();
594         midi_port_table_widgets.push_back (vsep);
595         midi_port_table.attach (*vsep, 5, 6, 0, 8);
596         vsep = (manage (new VSeparator()));
597         vsep->show ();
598         midi_port_table_widgets.push_back (vsep);
599         midi_port_table.attach (*vsep, 7, 8, 0, 8);
600         vsep = (manage (new VSeparator()));
601         vsep->show ();
602         midi_port_table_widgets.push_back (vsep);
603         midi_port_table.attach (*vsep, 9, 10, 0, 8);
604
605         for (n = 0, i = ports.begin(); i != ports.end(); ++n, ++i) {
606
607                 ToggleButton* tb;
608                 RadioButton* rb;
609                 Button* bb;
610
611                 /* the remove button. create early so we can pass it to various callbacks */
612
613                 bb = manage (new Button (Stock::REMOVE));
614                 bb->set_name ("OptionEditorToggleButton");
615                 bb->show ();
616                 midi_port_table_widgets.push_back (bb);
617                 midi_port_table.attach (*bb, 11, 12, n+2, n+3, FILL|EXPAND, FILL);
618                 bb->signal_clicked().connect (bind (mem_fun(*this, &OptionEditor::remove_midi_port), i->second));
619                 bb->set_sensitive (port_removable (i->second));
620
621                 label = (manage (new Label (i->first)));
622                 label->show ();
623                 midi_port_table_widgets.push_back (label);
624                 midi_port_table.attach (*label, 0, 1, n+2, n+3,FILL|EXPAND, FILL );
625
626                 tb = manage (new ToggleButton (_("online")));
627                 tb->set_name ("OptionEditorToggleButton");
628
629                 /* remember, we have to handle the i18n case where the relative
630                    lengths of the strings in language N is different than in english.
631                 */
632
633                 if (strlen (_("offline")) > strlen (_("online"))) {
634                         set_size_request_to_display_given_text (*tb, _("offline"), 15, 12);
635                 } else {
636                         set_size_request_to_display_given_text (*tb, _("online"), 15, 12);
637                 }
638
639                 if (i->second->input()) {
640                         tb->set_active (!i->second->input()->offline());
641                         tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_online_toggled), i->second, tb));
642                         i->second->input()->OfflineStatusChanged.connect (bind (mem_fun(*this, &OptionEditor::map_port_online), (*i).second, tb));
643                 }
644                 tb->show ();
645                 midi_port_table_widgets.push_back (tb);
646                 midi_port_table.attach (*tb, 1, 2, n+2, n+3, FILL|EXPAND, FILL);
647
648                 // Trace MIDI Input
649                 tb = manage (new ToggleButton ());
650                 tb->set_name ("OptionEditorToggleButton");
651                 tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_trace_in_toggled), (*i).second, tb));
652                 tb->set_size_request (10, 10);
653                 tb->show ();
654                 midi_port_table_widgets.push_back (tb);
655                 midi_port_table.attach (*tb, 2, 3, n+2, n+3, FILL|EXPAND, FILL);
656
657                 // Trace MIDI Output
658                 tb = manage (new ToggleButton ());
659                 tb->set_name ("OptionEditorToggleButton");
660                 tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_trace_out_toggled), (*i).second, tb));
661                 tb->set_size_request (10, 10);
662                 tb->show ();
663                 midi_port_table_widgets.push_back (tb);
664                 midi_port_table.attach (*tb, 3, 4, n+2, n+3, FILL|EXPAND, FILL);
665
666                 // MTC Radio Button
667                 rb = manage (new RadioButton ());
668                 rb->set_name ("OptionEditorToggleButton");
669                 if (n == 0) {
670                         mtc_button_group = rb->get_group();
671                 } else {
672                         rb->set_group (mtc_button_group);
673                 }
674                 rb->show ();
675                 midi_port_table_widgets.push_back (rb);
676                 midi_port_table.attach (*rb, 4, 5, n+2, n+3, FILL|EXPAND, FILL);
677                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mtc_port_chosen), (*i).second, rb, bb));
678
679                 if (session && i->second == session->mtc_port()) {
680                         rb->set_active (true);
681                 }
682
683                 // MIDI Clock Radio Button
684                 rb = manage (new RadioButton ());
685                 rb->set_name ("OptionEditorToggleButton");
686                 if (n == 0) {
687                         midi_clock_button_group = rb->get_group();
688                 } else {
689                         rb->set_group (midi_clock_button_group);
690                 }
691                 rb->show ();
692                 midi_port_table_widgets.push_back (rb);
693                 midi_port_table.attach (*rb, 6, 7, n+2, n+3, FILL|EXPAND, FILL);
694                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::midi_clock_port_chosen), (*i).second, rb, bb));
695
696                 if (session && i->second == session->midi_clock_port()) {
697                         rb->set_active (true);
698                 }
699
700                 rb = manage (new RadioButton ());
701                 rb->set_name ("OptionEditorToggleButton");
702                 if (n == 0) {
703                         mmc_button_group = rb->get_group();
704                 } else {
705                         rb->set_group (mmc_button_group);
706                 }
707                 rb->show ();
708                 midi_port_table_widgets.push_back (rb);
709                 midi_port_table.attach (*rb, 8, 9, n+2, n+3, FILL|EXPAND, FILL);
710                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mmc_port_chosen), (*i).second, rb, bb));
711
712                 if (session && i->second == session->mmc_port()) {
713                         rb->set_active (true);
714                 }
715
716                 rb = manage (new RadioButton ());
717                 rb->set_name ("OptionEditorToggleButton");
718                 if (n == 0) {
719                         midi_button_group = rb->get_group();
720                 } else {
721                         rb->set_group (midi_button_group);
722                 }
723                 rb->show ();
724                 midi_port_table_widgets.push_back (rb);
725                 midi_port_table.attach (*rb, 10, 11, n+2, n+3, FILL|EXPAND, FILL);
726                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::midi_port_chosen), (*i).second, rb, bb));
727
728                 if (session && i->second == session->midi_port()) {
729                         rb->set_active (true);
730                 }
731
732         }
733
734         midi_port_table.show();
735 }
736
737 void
738 OptionEditor::remove_midi_port (MIDI::Port* port)
739 {
740         MIDI::Manager::instance()->remove_port (port);
741         redisplay_midi_ports ();
742 }
743
744 void
745 OptionEditor::add_midi_port ()
746 {
747         MidiPortDialog dialog;
748
749         dialog.set_position (WIN_POS_MOUSE);
750         dialog.set_transient_for (*this);
751
752         dialog.show ();
753
754         int ret = dialog.run ();
755
756         switch (ret) {
757         case RESPONSE_ACCEPT:
758                 break;
759         default:
760                 return;
761                 break;
762         }
763
764         Glib::ustring mode = dialog.port_mode_combo.get_active_text();
765         std::string smod;
766
767         if (mode == _("input")) {
768                 smod = X_("input");
769         } else if (mode == (_("output"))) {
770                 smod = X_("output");
771         } else {
772                 smod = "duplex";
773         }
774
775
776         XMLNode node (X_("MIDI-port"));
777
778         node.add_property ("tag", dialog.port_name.get_text());
779         node.add_property ("device", X_("ardour")); // XXX this can't be right for all types
780         node.add_property ("type", MIDI::PortFactory::default_port_type());
781         node.add_property ("mode", smod);
782
783         if (MIDI::Manager::instance()->add_port (node) != 0) {
784                 redisplay_midi_ports ();
785         }
786 }
787
788 bool
789 OptionEditor::port_removable (MIDI::Port *port)
790 {
791         if (!session) {
792                 return true;
793         }
794
795         if (port == session->mtc_port() ||
796             port == session->mmc_port() ||
797             port == session->midi_port()) {
798                 return false;
799         }
800         return true;
801 }
802
803 void
804 OptionEditor::mtc_port_chosen (MIDI::Port *port, Gtk::RadioButton* rb, Gtk::Button* bb)
805 {
806         if (session) {
807                 if (rb->get_active()) {
808                         session->set_mtc_port (port->name());
809                         Config->set_mtc_port_name (port->name());
810                 } else {
811                         session->set_mtc_port ("");
812                 }
813                 bb->set_sensitive (port_removable (port));
814         }
815 }
816
817 void
818 OptionEditor::mmc_port_chosen (MIDI::Port* port, Gtk::RadioButton* rb, Gtk::Button* bb)
819 {
820         if (session) {
821                 if (rb->get_active()) {
822                         session->set_mmc_port (port->name());
823                         Config->set_mtc_port_name (port->name());
824                 } else {
825                         session->set_mmc_port ("");
826                 }
827                 bb->set_sensitive (port_removable (port));
828         }
829 }
830
831 void
832 OptionEditor::midi_port_chosen (MIDI::Port* port, Gtk::RadioButton* rb, Gtk::Button* bb)
833 {
834         if (session) {
835                 if (rb->get_active()) {
836                         session->set_midi_port (port->name());
837                         Config->set_midi_port_name (port->name());
838                 } else {
839                         session->set_midi_port ("");
840                 }
841                 bb->set_sensitive (port_removable (port));
842         }
843 }
844
845 void
846 OptionEditor::midi_clock_port_chosen (MIDI::Port *port, Gtk::RadioButton* rb, Gtk::Button* bb)
847 {
848         if (session) {
849                 if (rb->get_active()) {
850                         session->set_midi_clock_port (port->name());
851                         Config->set_midi_clock_port_name (port->name());
852                 } else {
853                         session->set_midi_clock_port ("");
854                 }
855                 bb->set_sensitive (port_removable (port));
856         }
857 }
858
859 void
860 OptionEditor::port_online_toggled (MIDI::Port* port, ToggleButton* tb)
861 {
862         bool wanted = tb->get_active();
863
864         if (port->input()) {
865                 if (wanted != port->input()->offline()) {
866                         port->input()->set_offline (wanted);
867                 }
868         }
869 }
870
871 void
872 OptionEditor::map_port_online (MIDI::Port* port, ToggleButton* tb)
873 {
874         bool bstate = tb->get_active ();
875
876         if (port->input()) {
877                 if (bstate != port->input()->offline()) {
878                         if (port->input()->offline()) {
879                                 tb->set_label (_("offline"));
880                                 tb->set_active (false);
881                         } else {
882                                 tb->set_label (_("online"));
883                                 tb->set_active (true);
884                         }
885                 }
886         }
887 }
888
889 void
890 OptionEditor::mmc_receive_device_id_adjusted ()
891 {
892         uint8_t id = (uint8_t) mmc_receive_device_id_spinner.get_value();
893         Config->set_mmc_receive_device_id (id);
894 }
895
896 void
897 OptionEditor::mmc_send_device_id_adjusted ()
898 {
899         uint8_t id = (uint8_t) mmc_send_device_id_spinner.get_value();
900         Config->set_mmc_send_device_id (id);
901 }
902
903 void
904 OptionEditor::port_trace_in_toggled (MIDI::Port* port, ToggleButton* tb)
905 {
906         bool trace = tb->get_active();
907
908         if (port->input()) {
909                 if (port->input()->tracing() != trace) {
910                         port->input()->trace (trace, &cerr, string (port->name()) + string (" input: "));
911                 }
912         }
913 }
914
915 void
916 OptionEditor::port_trace_out_toggled (MIDI::Port* port, ToggleButton* tb)
917 {
918         bool trace = tb->get_active();
919
920         if (port->output()) {
921                 if (port->output()->tracing() != trace) {
922                         port->output()->trace (trace, &cerr, string (port->name()) + string (" output: "));
923                 }
924         }
925 }
926
927 void
928 OptionEditor::save ()
929 {
930         /* XXX a bit odd that we save the entire session state here */
931
932         ui.save_state ("");
933 }
934
935 gint
936 OptionEditor::wm_close (GdkEventAny *ev)
937 {
938         save ();
939         hide ();
940         return TRUE;
941 }
942
943 void
944 OptionEditor::raid_path_changed ()
945 {
946         if (session) {
947                 Config->set_raid_path (session_raid_entry.get_text());
948         }
949 }
950
951 void
952 OptionEditor::click_browse_clicked ()
953 {
954         SoundFileChooser sfdb (*this, _("Choose Click"), session);
955
956         sfdb.show_all ();
957         sfdb.present ();
958
959         int result = sfdb.run ();
960
961         if (result == Gtk::RESPONSE_OK) {
962                 click_chosen(sfdb.get_filename());
963         }
964 }
965
966 void
967 OptionEditor::click_chosen (const string & path)
968 {
969         click_path_entry.set_text (path);
970         click_sound_changed ();
971 }
972
973 void
974 OptionEditor::click_emphasis_browse_clicked ()
975 {
976         SoundFileChooser sfdb (*this, _("Choose Click Emphasis"), session);
977
978         sfdb.show_all ();
979         sfdb.present ();
980
981         int result = sfdb.run ();
982
983         if (result == Gtk::RESPONSE_OK) {
984                 click_emphasis_chosen (sfdb.get_filename());
985         }
986 }
987
988 void
989 OptionEditor::click_emphasis_chosen (const string & path)
990 {
991         click_emphasis_path_entry.set_text (path);
992         click_emphasis_sound_changed ();
993 }
994
995 void
996 OptionEditor::click_sound_changed ()
997 {
998         if (session) {
999                 string path = click_path_entry.get_text();
1000
1001                 if (path == Config->get_click_sound()) {
1002                         return;
1003                 }
1004
1005                 strip_whitespace_edges (path);
1006
1007                 if (path == _("internal")) {
1008                         Config->set_click_sound ("");
1009                 } else {
1010                         Config->set_click_sound (path);
1011                 }
1012         }
1013 }
1014
1015 void
1016 OptionEditor::click_emphasis_sound_changed ()
1017 {
1018         if (session) {
1019                 string path = click_emphasis_path_entry.get_text();
1020
1021                 if (path == Config->get_click_emphasis_sound()) {
1022                         return;
1023                 }
1024
1025                 strip_whitespace_edges (path);
1026
1027                 if (path == _("internal")) {
1028                         Config->set_click_emphasis_sound ("");
1029                 } else {
1030                         Config->set_click_emphasis_sound (path);
1031                 }
1032         }
1033 }
1034
1035 void
1036 OptionEditor::clear_click_editor ()
1037 {
1038         if (click_io_selector) {
1039                 click_packer.remove (*click_io_selector);
1040                 click_packer.remove (*click_gpm);
1041                 delete click_io_selector;
1042                 delete click_gpm;
1043                 click_io_selector = 0;
1044                 click_gpm = 0;
1045         }
1046 }
1047
1048 void
1049 OptionEditor::setup_click_editor ()
1050 {
1051         Label* label;
1052         HBox* hpacker = manage (new HBox);
1053
1054         click_path_entry.set_sensitive (true);
1055         click_emphasis_path_entry.set_sensitive (true);
1056
1057         click_path_entry.set_name ("OptionsEntry");
1058         click_emphasis_path_entry.set_name ("OptionsEntry");
1059
1060         click_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_sound_changed));
1061         click_emphasis_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_emphasis_sound_changed));
1062
1063         click_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_sound_changed));
1064         click_emphasis_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_emphasis_sound_changed));
1065
1066         click_browse_button.set_name ("EditorGTKButton");
1067         click_emphasis_browse_button.set_name ("EditorGTKButton");
1068         click_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_browse_clicked));
1069         click_emphasis_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_emphasis_browse_clicked));
1070
1071         click_packer.set_border_width (12);
1072         click_packer.set_spacing (5);
1073
1074         click_io_selector = new IOSelector (*session, session->click_io(), false);
1075         click_gpm = new GainMeter (session->click_io(), *session);
1076
1077         click_table.set_col_spacings (10);
1078
1079         label = manage(new Label(_("Click audio file")));
1080         label->set_name ("OptionsLabel");
1081         click_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
1082         click_table.attach (click_path_entry, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1083         click_table.attach (click_browse_button, 2, 3, 0, 1, FILL|EXPAND, FILL);
1084
1085         label = manage(new Label(_("Click emphasis audiofile")));
1086         label->set_name ("OptionsLabel");
1087         click_table.attach (*label, 0, 1, 1, 2, FILL|EXPAND, FILL);
1088         click_table.attach (click_emphasis_path_entry, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1089         click_table.attach (click_emphasis_browse_button, 2, 3, 1, 2, FILL|EXPAND, FILL);
1090
1091         hpacker->set_spacing (10);
1092         hpacker->pack_start (*click_io_selector, false, false);
1093         hpacker->pack_start (*click_gpm, false, false);
1094
1095         click_packer.pack_start (click_table, false, false);
1096         click_packer.pack_start (*hpacker, false, false);
1097
1098         click_packer.show_all ();
1099 }
1100
1101 void
1102 OptionEditor::clear_auditioner_editor ()
1103 {
1104         if (auditioner_io_selector) {
1105                 audition_hpacker.remove (*auditioner_io_selector);
1106                 audition_hpacker.remove (*auditioner_gpm);
1107                 delete auditioner_io_selector;
1108                 delete auditioner_gpm;
1109                 auditioner_io_selector = 0;
1110                 auditioner_gpm = 0;
1111         }
1112 }
1113
1114 void
1115 OptionEditor::setup_auditioner_editor ()
1116 {
1117         audition_packer.set_border_width (12);
1118         audition_packer.set_spacing (5);
1119         audition_hpacker.set_spacing (10);
1120
1121         audition_label.set_name ("OptionEditorAuditionerLabel");
1122         audition_label.set_text (_("The auditioner is a dedicated mixer strip used\n"
1123                                    "for listening to specific regions outside the context\n"
1124                                    "of the overall mix. It can be connected just like any\n"
1125                                    "other mixer strip."));
1126
1127         audition_packer.pack_start (audition_label, false, false, 10);
1128         audition_packer.pack_start (audition_hpacker, false, false);
1129 }
1130
1131 void
1132 OptionEditor::connect_audition_editor ()
1133 {
1134         auditioner_io_selector = new IOSelector (*session, session->the_auditioner(), false);
1135         auditioner_gpm = new GainMeter (session->the_auditioner(), *session);
1136
1137         audition_hpacker.pack_start (*auditioner_io_selector, false, false);
1138         audition_hpacker.pack_start (*auditioner_gpm, false, false);
1139
1140         auditioner_io_selector->show_all ();
1141         auditioner_gpm->show_all ();
1142 }
1143
1144 bool
1145 OptionEditor::focus_out_event_handler (GdkEventFocus* ev, void (OptionEditor::*pmf)())
1146 {
1147         (this->*pmf)();
1148         return false;
1149 }
1150
1151 static const struct {
1152     const char *name;
1153     guint   modifier;
1154 } modifiers[] = {
1155
1156 #ifdef GTKOSX
1157
1158         /* Command = Meta
1159            Option/Alt = Mod1
1160         */
1161
1162         { "Shift", GDK_SHIFT_MASK },
1163         { "Command", GDK_META_MASK },
1164         { "Control", GDK_CONTROL_MASK },
1165         { "Option", GDK_MOD1_MASK },
1166         { "Command-Shift", GDK_MOD1_MASK|GDK_SHIFT_MASK },
1167         { "Command-Option", GDK_MOD1_MASK|GDK_MOD5_MASK },
1168         { "Shift-Option", GDK_SHIFT_MASK|GDK_MOD5_MASK },
1169         { "Shift-Command-Option", GDK_MOD5_MASK|GDK_SHIFT_MASK|GDK_MOD1_MASK },
1170
1171 #else
1172         { "Shift", GDK_SHIFT_MASK },
1173         { "Control", GDK_CONTROL_MASK },
1174         { "Alt (Mod1)", GDK_MOD1_MASK },
1175         { "Control-Shift", GDK_CONTROL_MASK|GDK_SHIFT_MASK },
1176         { "Control-Alt", GDK_CONTROL_MASK|GDK_MOD1_MASK },
1177         { "Shift-Alt", GDK_SHIFT_MASK|GDK_MOD1_MASK },
1178         { "Control-Shift-Alt", GDK_CONTROL_MASK|GDK_SHIFT_MASK|GDK_MOD1_MASK },
1179         { "Mod2", GDK_MOD2_MASK },
1180         { "Mod3", GDK_MOD3_MASK },
1181         { "Mod4", GDK_MOD4_MASK },
1182         { "Mod5", GDK_MOD5_MASK },
1183 #endif
1184         { 0, 0 }
1185 };
1186
1187 void
1188 OptionEditor::setup_keyboard_options ()
1189 {
1190         vector<string> dumb;
1191         Label* label;
1192
1193         keyboard_mouse_table.set_border_width (12);
1194         keyboard_mouse_table.set_row_spacings (5);
1195         keyboard_mouse_table.set_col_spacings (5);
1196
1197         /* internationalize and prepare for use with combos */
1198
1199         for (int i = 0; modifiers[i].name; ++i) {
1200                 dumb.push_back (_(modifiers[i].name));
1201         }
1202
1203         set_popdown_strings (edit_modifier_combo, dumb);
1204         edit_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::edit_modifier_chosen));
1205
1206         for (int x = 0; modifiers[x].name; ++x) {
1207                 if (modifiers[x].modifier == Keyboard::edit_modifier ()) {
1208                         edit_modifier_combo.set_active_text (_(modifiers[x].name));
1209                         break;
1210                 }
1211         }
1212
1213         label = manage (new Label (_("Edit using")));
1214         label->set_name ("OptionsLabel");
1215         label->set_alignment (1.0, 0.5);
1216
1217         keyboard_mouse_table.attach (*label, 0, 1, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1218         keyboard_mouse_table.attach (edit_modifier_combo, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1219
1220         label = manage (new Label (_("+ button")));
1221         label->set_name ("OptionsLabel");
1222
1223         keyboard_mouse_table.attach (*label, 3, 4, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1224         keyboard_mouse_table.attach (edit_button_spin, 4, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1225
1226         edit_button_spin.set_name ("OptionsEntry");
1227         edit_button_adjustment.set_value (Keyboard::edit_button());
1228         edit_button_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::edit_button_changed));
1229
1230         set_popdown_strings (delete_modifier_combo, dumb);
1231         delete_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::delete_modifier_chosen));
1232
1233         for (int x = 0; modifiers[x].name; ++x) {
1234                 if (modifiers[x].modifier == Keyboard::delete_modifier ()) {
1235                         delete_modifier_combo.set_active_text (_(modifiers[x].name));
1236                         break;
1237                 }
1238         }
1239
1240         label = manage (new Label (_("Delete using")));
1241         label->set_name ("OptionsLabel");
1242         label->set_alignment (1.0, 0.5);
1243
1244         keyboard_mouse_table.attach (*label, 0, 1, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1245         keyboard_mouse_table.attach (delete_modifier_combo, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1246
1247         label = manage (new Label (_("+ button")));
1248         label->set_name ("OptionsLabel");
1249
1250         keyboard_mouse_table.attach (*label, 3, 4, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1251         keyboard_mouse_table.attach (delete_button_spin, 4, 5, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1252
1253         delete_button_spin.set_name ("OptionsEntry");
1254         delete_button_adjustment.set_value (Keyboard::delete_button());
1255         delete_button_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::delete_button_changed));
1256
1257         set_popdown_strings (snap_modifier_combo, dumb);
1258         snap_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::snap_modifier_chosen));
1259
1260         for (int x = 0; modifiers[x].name; ++x) {
1261                 if (modifiers[x].modifier == (guint) Keyboard::snap_modifier ()) {
1262                         snap_modifier_combo.set_active_text (_(modifiers[x].name));
1263                         break;
1264                 }
1265         }
1266
1267         label = manage (new Label (_("Ignore snap using")));
1268         label->set_name ("OptionsLabel");
1269         label->set_alignment (1.0, 0.5);
1270
1271         keyboard_mouse_table.attach (*label, 0, 1, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
1272         keyboard_mouse_table.attach (snap_modifier_combo, 1, 2, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
1273
1274         vector<string> strs;
1275
1276         for (std::map<std::string,std::string>::iterator bf = Keyboard::binding_files.begin(); bf != Keyboard::binding_files.end(); ++bf) {
1277                 strs.push_back (bf->first);
1278         }
1279
1280         set_popdown_strings (keyboard_layout_selector, strs);
1281         keyboard_layout_selector.set_active_text (Keyboard::current_binding_name());
1282         keyboard_layout_selector.signal_changed().connect (mem_fun (*this, &OptionEditor::bindings_changed));
1283
1284         label = manage (new Label (_("Keyboard layout")));
1285         label->set_name ("OptionsLabel");
1286         label->set_alignment (1.0, 0.5);
1287
1288         keyboard_mouse_table.attach (*label, 0, 1, 3, 4, Gtk::FILL|Gtk::EXPAND, FILL);
1289         keyboard_mouse_table.attach (keyboard_layout_selector, 1, 2, 3, 4, Gtk::FILL|Gtk::EXPAND, FILL);
1290 }
1291
1292 void
1293 OptionEditor::bindings_changed ()
1294 {
1295         string txt;
1296
1297         txt = keyboard_layout_selector.get_active_text();
1298
1299         for (std::map<string,string>::iterator i = Keyboard::binding_files.begin(); i != Keyboard::binding_files.end(); ++i) {
1300                 if (txt == i->first) {
1301                         if (Keyboard::load_keybindings (i->second)) {
1302                                 Keyboard::save_keybindings ();
1303                         }
1304                 }
1305         }
1306 }
1307
1308 void
1309 OptionEditor::edit_modifier_chosen ()
1310 {
1311         string txt;
1312
1313         txt = edit_modifier_combo.get_active_text();
1314
1315         for (int i = 0; modifiers[i].name; ++i) {
1316                 if (txt == _(modifiers[i].name)) {
1317                         Keyboard::set_edit_modifier (modifiers[i].modifier);
1318                         break;
1319                 }
1320         }
1321 }
1322
1323 void
1324 OptionEditor::delete_modifier_chosen ()
1325 {
1326         string txt;
1327
1328         txt = delete_modifier_combo.get_active_text();
1329
1330         for (int i = 0; modifiers[i].name; ++i) {
1331                 if (txt == _(modifiers[i].name)) {
1332                         Keyboard::set_delete_modifier (modifiers[i].modifier);
1333                         break;
1334                 }
1335         }
1336 }
1337
1338 void
1339 OptionEditor::snap_modifier_chosen ()
1340 {
1341         string txt;
1342
1343         txt = snap_modifier_combo.get_active_text();
1344
1345         for (int i = 0; modifiers[i].name; ++i) {
1346                 if (txt == _(modifiers[i].name)) {
1347                         Keyboard::set_snap_modifier (modifiers[i].modifier);
1348                         break;
1349                 }
1350         }
1351 }
1352
1353 void
1354 OptionEditor::delete_button_changed ()
1355 {
1356         Keyboard::set_delete_button ((guint) delete_button_adjustment.get_value());
1357 }
1358
1359 void
1360 OptionEditor::edit_button_changed ()
1361 {
1362         Keyboard::set_edit_button ((guint) edit_button_adjustment.get_value());
1363 }
1364
1365 void
1366 OptionEditor::fixup_combo_size (Gtk::ComboBoxText& combo, vector<string>& strings)
1367 {
1368         /* find the widest string */
1369
1370         string::size_type maxlen = 0;
1371         string maxstring;
1372
1373         for (vector<string>::iterator i = strings.begin(); i != strings.end(); ++i) {
1374                 string::size_type l;
1375
1376                 if ((l = (*i).length()) > maxlen) {
1377                         maxlen = l;
1378                         maxstring = *i;
1379                 }
1380         }
1381
1382         /* try to include ascenders and descenders */
1383
1384         if (maxstring.length() > 2) {
1385                 maxstring[0] = 'g';
1386                 maxstring[1] = 'l';
1387         }
1388
1389         const guint32 FUDGE = 10; // Combo's are stupid - they steal space from the entry for the button
1390
1391         set_size_request_to_display_given_text (combo, maxstring.c_str(), 10 + FUDGE, 10);
1392 }
1393
1394 void
1395 OptionEditor::parameter_changed (const char* parameter_name)
1396 {
1397         ENSURE_GUI_THREAD (bind (mem_fun (*this, &OptionEditor::parameter_changed), parameter_name));
1398
1399 #define PARAM_IS(x) (!strcmp (parameter_name, (x)))
1400
1401         if (PARAM_IS ("timecode-source-is-synced")) {
1402                 synced_timecode_button.set_active (Config->get_timecode_source_is_synced());
1403         } else if (PARAM_IS ("history-depth")) {
1404                 int32_t depth = Config->get_history_depth();
1405
1406                 history_depth.set_value (depth);
1407                 history_depth_spinner.set_sensitive (depth != 0);
1408                 limit_history_button.set_active (depth != 0);
1409
1410         } else if (PARAM_IS ("saved-history-depth")) {
1411
1412                 saved_history_depth.set_value (Config->get_saved_history_depth());
1413
1414         } else if (PARAM_IS ("save-history")) {
1415
1416                 bool x = Config->get_save_history();
1417
1418                 save_history_button.set_active (x);
1419                 saved_history_depth_spinner.set_sensitive (x);
1420         } else if (PARAM_IS ("font-scale")) {
1421                 reset_dpi();
1422         }
1423 }