* first working version of editing MIDI channels of individual notes, see: http:...
[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, 11),
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, 11);
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 (_("MMC")))); 
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 (_("MIDI Parameter\nControl")))); 
580         label->show ();
581         midi_port_table_widgets.push_back (label);
582         midi_port_table.attach (*label, 8, 9, 0, 1);
583
584         Gtk::HSeparator* hsep = (manage (new HSeparator())); 
585         hsep->show ();
586         midi_port_table_widgets.push_back (hsep);
587         midi_port_table.attach (*hsep, 0, 9, 1, 2);
588         Gtk::VSeparator* vsep = (manage (new VSeparator())); 
589         vsep->show ();
590         midi_port_table_widgets.push_back (vsep);
591         midi_port_table.attach (*vsep, 5, 6, 0, 8);
592         vsep = (manage (new VSeparator())); 
593         vsep->show ();
594         midi_port_table_widgets.push_back (vsep);
595         midi_port_table.attach (*vsep, 7, 8, 0, 8);
596         
597         for (n = 0, i = ports.begin(); i != ports.end(); ++n, ++i) {
598
599                 ToggleButton* tb;
600                 RadioButton* rb;
601                 Button* bb;
602
603                 /* the remove button. create early so we can pass it to various callbacks */
604                 
605                 bb = manage (new Button (Stock::REMOVE));
606                 bb->set_name ("OptionEditorToggleButton");
607                 bb->show ();
608                 midi_port_table_widgets.push_back (bb);
609                 midi_port_table.attach (*bb, 9, 10, n+2, n+3, FILL|EXPAND, FILL);
610                 bb->signal_clicked().connect (bind (mem_fun(*this, &OptionEditor::remove_midi_port), i->second));
611                 bb->set_sensitive (port_removable (i->second));
612
613                 label = (manage (new Label (i->first))); 
614                 label->show ();
615                 midi_port_table_widgets.push_back (label);
616                 midi_port_table.attach (*label, 0, 1, n+2, n+3,FILL|EXPAND, FILL );
617                 
618                 tb = manage (new ToggleButton (_("online")));
619                 tb->set_name ("OptionEditorToggleButton");
620
621                 /* remember, we have to handle the i18n case where the relative
622                    lengths of the strings in language N is different than in english.
623                 */
624
625                 if (strlen (_("offline")) > strlen (_("online"))) {
626                         set_size_request_to_display_given_text (*tb, _("offline"), 15, 12);
627                 } else {
628                         set_size_request_to_display_given_text (*tb, _("online"), 15, 12);
629                 }
630
631                 if (i->second->input()) {
632                         tb->set_active (!i->second->input()->offline());
633                         tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_online_toggled), i->second, tb));
634                         i->second->input()->OfflineStatusChanged.connect (bind (mem_fun(*this, &OptionEditor::map_port_online), (*i).second, tb));
635                 }
636                 tb->show ();
637                 midi_port_table_widgets.push_back (tb);
638                 midi_port_table.attach (*tb, 1, 2, n+2, n+3, FILL|EXPAND, FILL);
639
640                 tb = manage (new ToggleButton ());
641                 tb->set_name ("OptionEditorToggleButton");
642                 tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_trace_in_toggled), (*i).second, tb));
643                 tb->set_size_request (10, 10);
644                 tb->show ();
645                 midi_port_table_widgets.push_back (tb);
646                 midi_port_table.attach (*tb, 2, 3, n+2, n+3, FILL|EXPAND, FILL);
647
648                 tb = manage (new ToggleButton ());
649                 tb->set_name ("OptionEditorToggleButton");
650                 tb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::port_trace_out_toggled), (*i).second, tb));
651                 tb->set_size_request (10, 10);
652                 tb->show ();
653                 midi_port_table_widgets.push_back (tb);
654                 midi_port_table.attach (*tb, 3, 4, n+2, n+3, FILL|EXPAND, FILL);
655
656                 rb = manage (new RadioButton ());
657                 rb->set_name ("OptionEditorToggleButton");
658                 if (n == 0) {
659                         mtc_button_group = rb->get_group();
660                 } else {
661                         rb->set_group (mtc_button_group);
662
663                 }
664                 rb->show ();
665                 midi_port_table_widgets.push_back (rb);
666                 midi_port_table.attach (*rb, 4, 5, n+2, n+3, FILL|EXPAND, FILL);
667                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mtc_port_chosen), (*i).second, rb, bb));
668
669                 if (session && i->second == session->mtc_port()) {
670                         rb->set_active (true);
671                 }
672                 
673                 rb = manage (new RadioButton ());
674                 rb->set_name ("OptionEditorToggleButton");
675                 if (n == 0) {
676                         mmc_button_group = rb->get_group();
677                 } else {
678                         rb->set_group (mmc_button_group);
679                 }
680                 rb->show ();
681                 midi_port_table_widgets.push_back (rb);
682                 midi_port_table.attach (*rb, 6, 7, n+2, n+3, FILL|EXPAND, FILL);
683                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mmc_port_chosen), (*i).second, rb, bb));
684
685                 if (session && i->second == session->mmc_port()) {
686                         rb->set_active (true);
687                 }
688
689                 rb = manage (new RadioButton ());
690                 rb->set_name ("OptionEditorToggleButton");
691                 if (n == 0) {
692                         midi_button_group = rb->get_group();
693                 } else {
694                         rb->set_group (midi_button_group);
695                 }
696                 rb->show ();
697                 midi_port_table_widgets.push_back (rb);
698                 midi_port_table.attach (*rb, 8, 9, n+2, n+3, FILL|EXPAND, FILL);
699                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::midi_port_chosen), (*i).second, rb, bb));
700
701                 if (session && i->second == session->midi_port()) {
702                         rb->set_active (true);
703                 }
704
705         }
706
707         midi_port_table.show();
708 }
709
710 void
711 OptionEditor::remove_midi_port (MIDI::Port* port)
712 {
713         MIDI::Manager::instance()->remove_port (port);
714         redisplay_midi_ports ();
715 }
716
717 void
718 OptionEditor::add_midi_port ()
719 {
720         MidiPortDialog dialog;
721
722         dialog.set_position (WIN_POS_MOUSE);
723         dialog.set_transient_for (*this);
724
725         dialog.show ();
726
727         int ret = dialog.run ();
728
729         switch (ret) {
730         case RESPONSE_ACCEPT:
731                 break;
732         default:
733                 return;
734                 break;
735         }
736
737         Glib::ustring mode = dialog.port_mode_combo.get_active_text();
738         std::string smod;
739
740         if (mode == _("input")) {
741                 smod = X_("input");
742         } else if (mode == (_("output"))) {
743                 smod = X_("output");
744         } else {
745                 smod = "duplex";
746         }
747
748
749         XMLNode node (X_("MIDI-port"));
750
751         node.add_property ("tag", dialog.port_name.get_text());
752         node.add_property ("device", X_("ardour")); // XXX this can't be right for all types
753         node.add_property ("type", MIDI::PortFactory::default_port_type());
754         node.add_property ("mode", smod);
755
756         if (MIDI::Manager::instance()->add_port (node) != 0) {
757                 redisplay_midi_ports ();
758         }
759 }
760
761 bool
762 OptionEditor::port_removable (MIDI::Port *port)
763 {
764         if (!session) {
765                 return true;
766         }
767
768         if (port == session->mtc_port() ||
769             port == session->mmc_port() ||
770             port == session->midi_port()) {
771                 return false;
772         }
773         return true;
774 }
775
776 void
777 OptionEditor::mtc_port_chosen (MIDI::Port *port, Gtk::RadioButton* rb, Gtk::Button* bb) 
778 {
779         if (session) {
780                 if (rb->get_active()) {
781                         session->set_mtc_port (port->name());
782                         Config->set_mtc_port_name (port->name());
783                 } else {
784                         session->set_mtc_port ("");
785                 }
786                 bb->set_sensitive (port_removable (port));
787         }
788 }
789
790 void
791 OptionEditor::mmc_port_chosen (MIDI::Port* port, Gtk::RadioButton* rb, Gtk::Button* bb)
792 {
793         if (session) {
794                 if (rb->get_active()) {
795                         session->set_mmc_port (port->name());
796                         Config->set_mtc_port_name (port->name());
797                 } else {
798                         session->set_mmc_port ("");
799                 }
800                 bb->set_sensitive (port_removable (port));
801         }
802 }
803
804 void
805 OptionEditor::midi_port_chosen (MIDI::Port* port, Gtk::RadioButton* rb, Gtk::Button* bb)
806 {
807         if (session) {
808                 if (rb->get_active()) {
809                         session->set_midi_port (port->name());
810                         Config->set_midi_port_name (port->name());
811                 } else {
812                         session->set_midi_port ("");
813                 }
814                 bb->set_sensitive (port_removable (port));
815         }
816 }
817
818 void
819 OptionEditor::port_online_toggled (MIDI::Port* port, ToggleButton* tb)
820 {
821         bool wanted = tb->get_active();
822
823         if (port->input()) {
824                 if (wanted != port->input()->offline()) {
825                         port->input()->set_offline (wanted);
826                 } 
827         }
828 }
829
830 void
831 OptionEditor::map_port_online (MIDI::Port* port, ToggleButton* tb)
832 {
833         bool bstate = tb->get_active ();
834         
835         if (port->input()) {
836                 if (bstate != port->input()->offline()) {
837                         if (port->input()->offline()) {
838                                 tb->set_label (_("offline"));
839                                 tb->set_active (false);
840                         } else {
841                                 tb->set_label (_("online"));
842                                 tb->set_active (true);
843                         }
844                 }
845         }
846 }
847
848 void
849 OptionEditor::mmc_receive_device_id_adjusted ()
850 {
851         uint8_t id = (uint8_t) mmc_receive_device_id_spinner.get_value();
852         Config->set_mmc_receive_device_id (id);
853 }
854
855 void
856 OptionEditor::mmc_send_device_id_adjusted ()
857 {
858         uint8_t id = (uint8_t) mmc_send_device_id_spinner.get_value();
859         Config->set_mmc_send_device_id (id);
860 }
861
862 void
863 OptionEditor::port_trace_in_toggled (MIDI::Port* port, ToggleButton* tb)
864 {
865         bool trace = tb->get_active();
866
867         if (port->input()) {
868                 if (port->input()->tracing() != trace) {
869                         port->input()->trace (trace, &cerr, string (port->name()) + string (" input: "));
870                 }
871         }
872 }
873
874 void
875 OptionEditor::port_trace_out_toggled (MIDI::Port* port, ToggleButton* tb)
876 {
877         bool trace = tb->get_active();
878
879         if (port->output()) {
880                 if (port->output()->tracing() != trace) {
881                         port->output()->trace (trace, &cerr, string (port->name()) + string (" output: "));
882                 }
883         }
884 }
885
886 void
887 OptionEditor::save ()
888 {
889         /* XXX a bit odd that we save the entire session state here */
890
891         ui.save_state ("");
892 }
893
894 gint
895 OptionEditor::wm_close (GdkEventAny *ev)
896 {
897         save ();
898         hide ();
899         return TRUE;
900 }
901
902 void
903 OptionEditor::raid_path_changed ()
904 {
905         if (session) {
906                 Config->set_raid_path (session_raid_entry.get_text());
907         }
908 }
909
910 void
911 OptionEditor::click_browse_clicked ()
912 {
913         SoundFileChooser sfdb (*this, _("Choose Click"), session);
914         
915         sfdb.show_all ();
916         sfdb.present ();
917
918         int result = sfdb.run ();
919  
920         if (result == Gtk::RESPONSE_OK) {
921                 click_chosen(sfdb.get_filename());
922         }
923 }
924
925 void
926 OptionEditor::click_chosen (const string & path)
927 {
928         click_path_entry.set_text (path);
929         click_sound_changed ();
930 }
931
932 void
933 OptionEditor::click_emphasis_browse_clicked ()
934 {
935         SoundFileChooser sfdb (*this, _("Choose Click Emphasis"), session);
936
937         sfdb.show_all ();
938         sfdb.present ();
939
940         int result = sfdb.run ();
941
942         if (result == Gtk::RESPONSE_OK) {
943                 click_emphasis_chosen (sfdb.get_filename());
944         }
945 }
946
947 void
948 OptionEditor::click_emphasis_chosen (const string & path)
949 {       
950         click_emphasis_path_entry.set_text (path);
951         click_emphasis_sound_changed ();
952 }
953
954 void
955 OptionEditor::click_sound_changed ()
956 {
957         if (session) {
958                 string path = click_path_entry.get_text();
959
960                 if (path == Config->get_click_sound()) {
961                         return;
962                 }
963
964                 strip_whitespace_edges (path);
965
966                 if (path == _("internal")) {
967                         Config->set_click_sound ("");
968                 } else {
969                         Config->set_click_sound (path);
970                 }
971         }
972 }
973
974 void
975 OptionEditor::click_emphasis_sound_changed ()
976 {
977         if (session) {
978                 string path = click_emphasis_path_entry.get_text();
979
980                 if (path == Config->get_click_emphasis_sound()) {
981                         return;
982                 }
983
984                 strip_whitespace_edges (path);
985
986                 if (path == _("internal")) {
987                         Config->set_click_emphasis_sound ("");
988                 } else {
989                         Config->set_click_emphasis_sound (path);
990                 }
991         }
992 }
993
994 void
995 OptionEditor::clear_click_editor ()
996 {
997         if (click_io_selector) {
998                 click_packer.remove (*click_io_selector);
999                 click_packer.remove (*click_gpm);
1000                 delete click_io_selector;
1001                 delete click_gpm;
1002                 click_io_selector = 0;
1003                 click_gpm = 0;
1004         }
1005 }
1006
1007 void
1008 OptionEditor::setup_click_editor ()
1009 {
1010         Label* label;
1011         HBox* hpacker = manage (new HBox);
1012
1013         click_path_entry.set_sensitive (true);
1014         click_emphasis_path_entry.set_sensitive (true);
1015
1016         click_path_entry.set_name ("OptionsEntry");
1017         click_emphasis_path_entry.set_name ("OptionsEntry");
1018         
1019         click_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_sound_changed));
1020         click_emphasis_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_emphasis_sound_changed));
1021
1022         click_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_sound_changed));
1023         click_emphasis_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_emphasis_sound_changed));
1024
1025         click_browse_button.set_name ("EditorGTKButton");
1026         click_emphasis_browse_button.set_name ("EditorGTKButton");
1027         click_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_browse_clicked));
1028         click_emphasis_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_emphasis_browse_clicked));
1029
1030         click_packer.set_border_width (12);
1031         click_packer.set_spacing (5);
1032
1033         click_io_selector = new IOSelector (*session, session->click_io(), false);
1034         click_gpm = new GainMeter (session->click_io(), *session);
1035
1036         click_table.set_col_spacings (10);
1037         
1038         label = manage(new Label(_("Click audio file")));
1039         label->set_name ("OptionsLabel");
1040         click_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
1041         click_table.attach (click_path_entry, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1042         click_table.attach (click_browse_button, 2, 3, 0, 1, FILL|EXPAND, FILL);
1043         
1044         label = manage(new Label(_("Click emphasis audiofile")));
1045         label->set_name ("OptionsLabel");
1046         click_table.attach (*label, 0, 1, 1, 2, FILL|EXPAND, FILL);
1047         click_table.attach (click_emphasis_path_entry, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1048         click_table.attach (click_emphasis_browse_button, 2, 3, 1, 2, FILL|EXPAND, FILL);
1049
1050         hpacker->set_spacing (10);
1051         hpacker->pack_start (*click_io_selector, false, false);
1052         hpacker->pack_start (*click_gpm, false, false);
1053
1054         click_packer.pack_start (click_table, false, false);
1055         click_packer.pack_start (*hpacker, false, false);
1056
1057         click_packer.show_all ();
1058 }
1059
1060 void
1061 OptionEditor::clear_auditioner_editor ()
1062 {
1063         if (auditioner_io_selector) {
1064                 audition_hpacker.remove (*auditioner_io_selector);
1065                 audition_hpacker.remove (*auditioner_gpm);
1066                 delete auditioner_io_selector;
1067                 delete auditioner_gpm;
1068                 auditioner_io_selector = 0;
1069                 auditioner_gpm = 0;
1070         }
1071 }
1072
1073 void
1074 OptionEditor::setup_auditioner_editor ()
1075 {
1076         audition_packer.set_border_width (12);
1077         audition_packer.set_spacing (5);
1078         audition_hpacker.set_spacing (10);
1079
1080         audition_label.set_name ("OptionEditorAuditionerLabel");
1081         audition_label.set_text (_("The auditioner is a dedicated mixer strip used\n"
1082                                    "for listening to specific regions outside the context\n"
1083                                    "of the overall mix. It can be connected just like any\n"
1084                                    "other mixer strip."));
1085         
1086         audition_packer.pack_start (audition_label, false, false, 10);
1087         audition_packer.pack_start (audition_hpacker, false, false);
1088 }
1089
1090 void
1091 OptionEditor::connect_audition_editor ()
1092 {
1093         auditioner_io_selector = new IOSelector (*session, session->the_auditioner(), false);
1094         auditioner_gpm = new GainMeter (session->the_auditioner(), *session);
1095
1096         audition_hpacker.pack_start (*auditioner_io_selector, false, false);
1097         audition_hpacker.pack_start (*auditioner_gpm, false, false);
1098
1099         auditioner_io_selector->show_all ();
1100         auditioner_gpm->show_all ();
1101 }
1102
1103 bool
1104 OptionEditor::focus_out_event_handler (GdkEventFocus* ev, void (OptionEditor::*pmf)()) 
1105 {
1106         (this->*pmf)();
1107         return false;
1108 }
1109
1110 static const struct {
1111     const char *name;
1112     guint   modifier;
1113 } modifiers[] = {
1114
1115 #ifdef GTKOSX 
1116
1117         /* Command = Meta
1118            Option/Alt = Mod1
1119         */
1120
1121         { "Shift", GDK_SHIFT_MASK },
1122         { "Command", GDK_META_MASK },
1123         { "Control", GDK_CONTROL_MASK },
1124         { "Option", GDK_MOD1_MASK },
1125         { "Command-Shift", GDK_MOD1_MASK|GDK_SHIFT_MASK },
1126         { "Command-Option", GDK_MOD1_MASK|GDK_MOD5_MASK },
1127         { "Shift-Option", GDK_SHIFT_MASK|GDK_MOD5_MASK },
1128         { "Shift-Command-Option", GDK_MOD5_MASK|GDK_SHIFT_MASK|GDK_MOD1_MASK },
1129
1130 #else
1131         { "Shift", GDK_SHIFT_MASK },
1132         { "Control", GDK_CONTROL_MASK },
1133         { "Alt (Mod1)", GDK_MOD1_MASK },
1134         { "Control-Shift", GDK_CONTROL_MASK|GDK_SHIFT_MASK },
1135         { "Control-Alt", GDK_CONTROL_MASK|GDK_MOD1_MASK },
1136         { "Shift-Alt", GDK_SHIFT_MASK|GDK_MOD1_MASK },
1137         { "Control-Shift-Alt", GDK_CONTROL_MASK|GDK_SHIFT_MASK|GDK_MOD1_MASK },
1138         { "Mod2", GDK_MOD2_MASK },
1139         { "Mod3", GDK_MOD3_MASK },
1140         { "Mod4", GDK_MOD4_MASK },
1141         { "Mod5", GDK_MOD5_MASK },
1142 #endif
1143         { 0, 0 }
1144 };
1145
1146 void
1147 OptionEditor::setup_keyboard_options ()
1148 {
1149         vector<string> dumb;
1150         Label* label;
1151
1152         keyboard_mouse_table.set_border_width (12);
1153         keyboard_mouse_table.set_row_spacings (5);
1154         keyboard_mouse_table.set_col_spacings (5);
1155
1156         /* internationalize and prepare for use with combos */
1157
1158         for (int i = 0; modifiers[i].name; ++i) {
1159                 dumb.push_back (_(modifiers[i].name));
1160         }
1161
1162         set_popdown_strings (edit_modifier_combo, dumb);
1163         edit_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::edit_modifier_chosen));
1164
1165         for (int x = 0; modifiers[x].name; ++x) {
1166                 if (modifiers[x].modifier == Keyboard::edit_modifier ()) {
1167                         edit_modifier_combo.set_active_text (_(modifiers[x].name));
1168                         break;
1169                 }
1170         }
1171
1172         label = manage (new Label (_("Edit using")));
1173         label->set_name ("OptionsLabel");
1174         label->set_alignment (1.0, 0.5);
1175                 
1176         keyboard_mouse_table.attach (*label, 0, 1, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1177         keyboard_mouse_table.attach (edit_modifier_combo, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1178
1179         label = manage (new Label (_("+ button")));
1180         label->set_name ("OptionsLabel");
1181         
1182         keyboard_mouse_table.attach (*label, 3, 4, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1183         keyboard_mouse_table.attach (edit_button_spin, 4, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1184
1185         edit_button_spin.set_name ("OptionsEntry");
1186         edit_button_adjustment.set_value (Keyboard::edit_button());
1187         edit_button_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::edit_button_changed));
1188
1189         set_popdown_strings (delete_modifier_combo, dumb);
1190         delete_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::delete_modifier_chosen));
1191
1192         for (int x = 0; modifiers[x].name; ++x) {
1193                 if (modifiers[x].modifier == Keyboard::delete_modifier ()) {
1194                         delete_modifier_combo.set_active_text (_(modifiers[x].name));
1195                         break;
1196                 }
1197         }
1198
1199         label = manage (new Label (_("Delete using")));
1200         label->set_name ("OptionsLabel");
1201         label->set_alignment (1.0, 0.5);
1202                 
1203         keyboard_mouse_table.attach (*label, 0, 1, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1204         keyboard_mouse_table.attach (delete_modifier_combo, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1205
1206         label = manage (new Label (_("+ button")));
1207         label->set_name ("OptionsLabel");
1208
1209         keyboard_mouse_table.attach (*label, 3, 4, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1210         keyboard_mouse_table.attach (delete_button_spin, 4, 5, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1211
1212         delete_button_spin.set_name ("OptionsEntry");
1213         delete_button_adjustment.set_value (Keyboard::delete_button());
1214         delete_button_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::delete_button_changed));
1215
1216         set_popdown_strings (snap_modifier_combo, dumb);
1217         snap_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::snap_modifier_chosen));
1218         
1219         for (int x = 0; modifiers[x].name; ++x) {
1220                 if (modifiers[x].modifier == (guint) Keyboard::snap_modifier ()) {
1221                         snap_modifier_combo.set_active_text (_(modifiers[x].name));
1222                         break;
1223                 }
1224         }
1225
1226         label = manage (new Label (_("Ignore snap using")));
1227         label->set_name ("OptionsLabel");
1228         label->set_alignment (1.0, 0.5);
1229         
1230         keyboard_mouse_table.attach (*label, 0, 1, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
1231         keyboard_mouse_table.attach (snap_modifier_combo, 1, 2, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
1232
1233         vector<string> strs;
1234         
1235         for (std::map<std::string,std::string>::iterator bf = Keyboard::binding_files.begin(); bf != Keyboard::binding_files.end(); ++bf) {
1236                 strs.push_back (bf->first);
1237         }
1238         
1239         set_popdown_strings (keyboard_layout_selector, strs);
1240         keyboard_layout_selector.set_active_text (Keyboard::current_binding_name());
1241         keyboard_layout_selector.signal_changed().connect (mem_fun (*this, &OptionEditor::bindings_changed));
1242
1243         label = manage (new Label (_("Keyboard layout")));
1244         label->set_name ("OptionsLabel");
1245         label->set_alignment (1.0, 0.5);
1246
1247         keyboard_mouse_table.attach (*label, 0, 1, 3, 4, Gtk::FILL|Gtk::EXPAND, FILL);
1248         keyboard_mouse_table.attach (keyboard_layout_selector, 1, 2, 3, 4, Gtk::FILL|Gtk::EXPAND, FILL);
1249 }
1250
1251 void
1252 OptionEditor::bindings_changed ()
1253 {
1254         string txt;
1255         
1256         txt = keyboard_layout_selector.get_active_text();
1257
1258         for (std::map<string,string>::iterator i = Keyboard::binding_files.begin(); i != Keyboard::binding_files.end(); ++i) {
1259                 if (txt == i->first) {
1260                         if (Keyboard::load_keybindings (i->second)) {
1261                                 Keyboard::save_keybindings ();
1262                         }
1263                 }
1264         }
1265 }
1266
1267 void
1268 OptionEditor::edit_modifier_chosen ()
1269 {
1270         string txt;
1271         
1272         txt = edit_modifier_combo.get_active_text();
1273
1274         for (int i = 0; modifiers[i].name; ++i) {
1275                 if (txt == _(modifiers[i].name)) {
1276                         Keyboard::set_edit_modifier (modifiers[i].modifier);
1277                         break;
1278                 }
1279         }
1280 }
1281
1282 void
1283 OptionEditor::delete_modifier_chosen ()
1284 {
1285         string txt;
1286         
1287         txt = delete_modifier_combo.get_active_text();
1288
1289         for (int i = 0; modifiers[i].name; ++i) {
1290                 if (txt == _(modifiers[i].name)) {
1291                         Keyboard::set_delete_modifier (modifiers[i].modifier);
1292                         break;
1293                 }
1294         }
1295 }
1296
1297 void
1298 OptionEditor::snap_modifier_chosen ()
1299 {
1300         string txt;
1301         
1302         txt = snap_modifier_combo.get_active_text();
1303
1304         for (int i = 0; modifiers[i].name; ++i) {
1305                 if (txt == _(modifiers[i].name)) {
1306                         Keyboard::set_snap_modifier (modifiers[i].modifier);
1307                         break;
1308                 }
1309         }
1310 }
1311
1312 void
1313 OptionEditor::delete_button_changed ()
1314 {
1315         Keyboard::set_delete_button ((guint) delete_button_adjustment.get_value());
1316 }
1317
1318 void
1319 OptionEditor::edit_button_changed ()
1320 {
1321         Keyboard::set_edit_button ((guint) edit_button_adjustment.get_value());
1322 }
1323
1324 void
1325 OptionEditor::fixup_combo_size (Gtk::ComboBoxText& combo, vector<string>& strings)
1326 {
1327         /* find the widest string */
1328
1329         string::size_type maxlen = 0;
1330         string maxstring;
1331
1332         for (vector<string>::iterator i = strings.begin(); i != strings.end(); ++i) {
1333                 string::size_type l;
1334
1335                 if ((l = (*i).length()) > maxlen) {
1336                         maxlen = l;
1337                         maxstring = *i;
1338                 }
1339         }
1340
1341         /* try to include ascenders and descenders */
1342
1343         if (maxstring.length() > 2) {
1344                 maxstring[0] = 'g';
1345                 maxstring[1] = 'l';
1346         }
1347
1348         const guint32 FUDGE = 10; // Combo's are stupid - they steal space from the entry for the button
1349
1350         set_size_request_to_display_given_text (combo, maxstring.c_str(), 10 + FUDGE, 10);
1351 }
1352
1353 void
1354 OptionEditor::parameter_changed (const char* parameter_name)
1355 {
1356         ENSURE_GUI_THREAD (bind (mem_fun (*this, &OptionEditor::parameter_changed), parameter_name));
1357
1358 #define PARAM_IS(x) (!strcmp (parameter_name, (x)))
1359         
1360         if (PARAM_IS ("timecode-source-is-synced")) {
1361                 synced_timecode_button.set_active (Config->get_timecode_source_is_synced());
1362         } else if (PARAM_IS ("history-depth")) {
1363                 int32_t depth = Config->get_history_depth();
1364                 
1365                 history_depth.set_value (depth);
1366                 history_depth_spinner.set_sensitive (depth != 0);
1367                 limit_history_button.set_active (depth != 0);
1368
1369         } else if (PARAM_IS ("saved-history-depth")) {
1370
1371                 saved_history_depth.set_value (Config->get_saved_history_depth());
1372
1373         } else if (PARAM_IS ("save-history")) {
1374
1375                 bool x = Config->get_save_history();
1376
1377                 save_history_button.set_active (x);
1378                 saved_history_depth_spinner.set_sensitive (x);
1379         } else if (PARAM_IS ("font-scale")) {
1380                 reset_dpi();
1381         }
1382 }