small changes to export code to hopefully fix some bugs with range export(s)
[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         first_click_setup = true;
117         click_io_selector = 0;
118         auditioner_io_selector = 0;
119         session = 0;
120         
121         WindowTitle title(Glib::get_application_name());
122         title += _("Preferences");
123         set_title(title.get_string());
124
125         set_default_size (300, 300);
126         set_wmclass (X_("ardour_preferences"), "Ardour");
127
128         set_name ("Preferences");
129         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
130         
131         VBox *vbox = get_vbox();
132         set_border_width (3);
133
134         vbox->set_spacing (4);
135         vbox->pack_start(notebook);
136
137         signal_delete_event().connect (mem_fun(*this, &OptionEditor::wm_close));
138
139         notebook.set_show_tabs (true);
140         notebook.set_show_border (true);
141         notebook.set_name ("OptionsNotebook");
142
143         setup_sync_options();
144         setup_path_options();
145         setup_misc_options ();
146         setup_keyboard_options ();
147         setup_auditioner_editor ();
148
149         notebook.pages().push_back (TabElem (sync_packer, _("Sync")));
150         notebook.pages().push_back (TabElem (path_table, _("Paths/Files")));
151         notebook.pages().push_back (TabElem (keyboard_mouse_table, _("Kbd/Mouse")));
152         notebook.pages().push_back (TabElem (click_packer, _("Click")));
153         notebook.pages().push_back (TabElem (audition_packer, _("Audition")));
154         notebook.pages().push_back (TabElem (misc_packer, _("Misc")));
155
156         setup_midi_options ();
157         notebook.pages().push_back (TabElem (midi_packer, _("MIDI")));
158
159         set_session (0);
160         show_all_children();
161
162         Config->map_parameters (mem_fun (*this, &OptionEditor::parameter_changed));
163         Config->ParameterChanged.connect (mem_fun (*this, &OptionEditor::parameter_changed));
164 }
165
166 void
167 OptionEditor::set_session (Session *s)
168 {
169         clear_click_editor ();
170         clear_auditioner_editor ();
171
172         click_path_entry.set_text ("");
173         click_emphasis_path_entry.set_text ("");
174         session_raid_entry.set_text ("");
175
176         click_path_entry.set_sensitive (false);
177         click_emphasis_path_entry.set_sensitive (false);
178         session_raid_entry.set_sensitive (false);
179
180         short_xfade_slider.set_sensitive (false);
181         smpte_offset_negative_button.set_sensitive (false);
182
183         smpte_offset_clock.set_session (s);
184
185         if ((session = s) == 0) {
186                 return;
187         }
188
189         click_path_entry.set_sensitive (true);
190         click_emphasis_path_entry.set_sensitive (true);
191         session_raid_entry.set_sensitive (true);
192         short_xfade_slider.set_sensitive (true);
193         smpte_offset_negative_button.set_sensitive (true);
194
195         smpte_offset_clock.set_session (s);
196         smpte_offset_clock.set (s->smpte_offset (), true);
197
198         smpte_offset_negative_button.set_active (session->smpte_offset_negative());
199
200         redisplay_midi_ports ();
201
202         setup_click_editor ();
203         connect_audition_editor ();
204
205         short_xfade_adjustment.set_value ((Crossfade::short_xfade_length() / (float) session->frame_rate()) * 1000.0);
206
207         add_session_paths ();
208 }
209
210 OptionEditor::~OptionEditor ()
211 {
212 }
213
214 void
215 OptionEditor::setup_path_options()
216 {
217         Gtk::Label* label;
218
219         path_table.set_homogeneous (false);
220         path_table.set_border_width (12);
221         path_table.set_row_spacings (5);
222
223         session_raid_entry.set_name ("OptionsEntry");
224
225         session_raid_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::raid_path_changed));
226
227         label = manage(new Label(_("session RAID path")));
228         label->set_name ("OptionsLabel");
229         path_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
230         path_table.attach (session_raid_entry, 1, 3, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
231
232         path_table.show_all();
233 }
234
235 void
236 OptionEditor::add_session_paths ()
237 {
238         click_path_entry.set_sensitive (true);
239         click_emphasis_path_entry.set_sensitive (true);
240         session_raid_entry.set_sensitive (true);
241
242         if (Config->get_click_sound().empty()) {
243                 click_path_entry.set_text (_("internal"));
244         } else {
245                 click_path_entry.set_text (Config->get_click_sound());
246         }
247
248         if (Config->get_click_emphasis_sound().empty()) {
249                 click_emphasis_path_entry.set_text (_("internal"));
250         } else {
251                 click_emphasis_path_entry.set_text (Config->get_click_emphasis_sound());
252         }
253
254         session_raid_entry.set_text(session->raid_path());
255 }
256
257 static void
258 font_scale_changed (Gtk::Adjustment* adj)
259 {
260         Config->set_font_scale((long)floor (adj->get_value() * 1024));
261         reset_dpi();
262 }
263
264 void
265 OptionEditor::setup_misc_options ()
266 {
267         Gtk::HBox* hbox;
268         Label* label;
269
270 #ifndef GTKOSX
271         /* font scaling does nothing with GDK/Quartz */
272
273         Gtk::Adjustment* dpi_adj = new Gtk::Adjustment ((double)Config->get_font_scale() / 1024, 50, 250, 1, 10);
274         Gtk::HScale * dpi_range = new Gtk::HScale (*dpi_adj);
275
276         label = manage (new Label (_("Font Scaling")));
277         label->set_name ("OptionsLabel");
278
279         dpi_range->set_update_policy (Gtk::UPDATE_DISCONTINUOUS);
280         dpi_adj->signal_value_changed().connect (bind (sigc::ptr_fun (font_scale_changed), dpi_adj));
281
282         hbox = manage (new HBox);
283         hbox->set_border_width (5);
284         hbox->set_spacing (10);
285         hbox->pack_start (*label, false, false);
286         hbox->pack_start (*dpi_range, true, true);
287         misc_packer.pack_start (*hbox, false, false);
288 #endif
289
290         label = manage (new Label (_("Short crossfade length (msecs)")));
291         label->set_name ("OptionsLabel");
292         
293         hbox = manage (new HBox);
294         hbox->set_border_width (5);
295         hbox->set_spacing (10);
296         hbox->pack_start (*label, false, false);
297         hbox->pack_start (short_xfade_slider, true, true);
298         misc_packer.pack_start (*hbox, false, false);
299
300         short_xfade_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::short_xfade_adjustment_changed));
301
302         label = manage (new Label (_("Destructive crossfade length (msecs)")));
303         label->set_name ("OptionsLabel");
304         
305         hbox = manage (new HBox);
306         hbox->set_border_width (5);
307         hbox->set_spacing (10);
308         hbox->pack_start (*label, false, false);
309         hbox->pack_start (destructo_xfade_slider, true, true);
310         misc_packer.pack_start (*hbox, false, false);
311         
312
313         destructo_xfade_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::destructo_xfade_adjustment_changed));
314
315         hbox = manage (new HBox);
316         hbox->set_border_width (5);
317         hbox->set_spacing (10);
318         hbox->pack_start (limit_history_button, false, false);
319         misc_packer.pack_start (*hbox, false, false);
320
321         label = manage (new Label (_("History depth (commands)")));
322         label->set_name ("OptionsLabel");
323
324         hbox = manage (new HBox);
325         hbox->set_border_width (5);
326         hbox->set_spacing (10);
327         hbox->pack_start (*label, false, false);
328         hbox->pack_start (history_depth_spinner, false, false);
329         misc_packer.pack_start (*hbox, false, false);
330
331         history_depth.signal_value_changed().connect (mem_fun (*this, &OptionEditor::history_depth_changed));
332         saved_history_depth.signal_value_changed().connect (mem_fun (*this, &OptionEditor::saved_history_depth_changed));
333         save_history_button.signal_toggled().connect (mem_fun (*this, &OptionEditor::save_history_toggled));
334         limit_history_button.signal_toggled().connect (mem_fun (*this, &OptionEditor::limit_history_toggled));
335
336         hbox = manage (new HBox);
337         hbox->set_border_width (5);
338         hbox->set_spacing (10);
339         hbox->pack_start (save_history_button, false, false);
340         misc_packer.pack_start (*hbox, false, false);
341
342         label = manage (new Label (_("Saved history depth (commands)")));
343         label->set_name ("OptionsLabel");
344
345         hbox = manage (new HBox);
346         hbox->set_border_width (5);
347         hbox->set_spacing (10);
348         hbox->pack_start (*label, false, false);
349         hbox->pack_start (saved_history_depth_spinner, false, false);
350         misc_packer.pack_start (*hbox, false, false);
351         
352         short_xfade_slider.set_update_policy (UPDATE_DISCONTINUOUS);
353         destructo_xfade_slider.set_update_policy (UPDATE_DISCONTINUOUS);
354
355         destructo_xfade_adjustment.set_value (Config->get_destructive_xfade_msecs());
356
357         misc_packer.show_all ();
358 }
359
360 void
361 OptionEditor::limit_history_toggled ()
362 {
363         bool x = limit_history_button.get_active();
364         
365         if (!x) {
366                 Config->set_history_depth (0);
367                 history_depth_spinner.set_sensitive (false);
368         } else {
369                 if (Config->get_history_depth() == 0) {
370                         /* get back to a sane default */
371                         Config->set_history_depth (20);
372                 }
373                 history_depth_spinner.set_sensitive (true);
374         }
375 }
376
377 void
378 OptionEditor::save_history_toggled ()
379 {
380         bool x = save_history_button.get_active();
381
382         if (x != Config->get_save_history()) {
383                 Config->set_save_history (x);
384                 saved_history_depth_spinner.set_sensitive (x);
385         }
386 }
387
388 void
389 OptionEditor::history_depth_changed()
390 {
391         Config->set_history_depth ((int32_t) floor (history_depth.get_value()));
392 }
393
394 void
395 OptionEditor::saved_history_depth_changed()
396 {
397         Config->set_saved_history_depth ((int32_t) floor (saved_history_depth.get_value()));
398 }
399
400 void
401 OptionEditor::short_xfade_adjustment_changed ()
402 {
403         if (session) {
404                 float val = short_xfade_adjustment.get_value();
405                 
406                 /* val is in msecs */
407                 
408                 Crossfade::set_short_xfade_length ((nframes_t) floor (session->frame_rate() * (val / 1000.0)));
409         }
410 }
411
412 void
413 OptionEditor::destructo_xfade_adjustment_changed ()
414 {
415         float val = destructo_xfade_adjustment.get_value();
416
417         /* val is in msecs */
418
419         
420         Config->set_destructive_xfade_msecs ((uint32_t) floor (val));
421
422         if (session) {
423                 SndFileSource::setup_standard_crossfades (session->frame_rate());
424         } 
425 }
426
427 void
428 OptionEditor::setup_sync_options ()
429 {
430         HBox* hbox;
431         vector<string> dumb;
432
433         smpte_offset_clock.set_mode (AudioClock::SMPTE);
434         smpte_offset_clock.ValueChanged.connect (mem_fun(*this, &OptionEditor::smpte_offset_chosen));
435         
436         smpte_offset_negative_button.set_name ("OptionEditorToggleButton");
437
438         smpte_offset_negative_button.unset_flags (Gtk::CAN_FOCUS);
439
440         Label *smpte_offset_label = manage (new Label (_("SMPTE Offset")));
441         smpte_offset_label->set_name("OptionsLabel");
442         
443         hbox = manage (new HBox);
444         hbox->set_border_width (5);
445         hbox->set_spacing (10);
446         hbox->pack_start (*smpte_offset_label, false, false);
447         hbox->pack_start (smpte_offset_clock, false, false);
448         hbox->pack_start (smpte_offset_negative_button, false, false);
449
450         sync_packer.pack_start (*hbox, false, false);
451         sync_packer.pack_start (synced_timecode_button, false, false);
452
453         smpte_offset_negative_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::smpte_offset_negative_clicked));
454         synced_timecode_button.signal_toggled().connect (mem_fun(*this, &OptionEditor::synced_timecode_toggled));
455 }
456
457 void
458 OptionEditor::smpte_offset_negative_clicked ()
459 {
460         if (session) {
461                 session->set_smpte_offset_negative (smpte_offset_negative_button.get_active());
462         }
463 }
464
465 void
466 OptionEditor::synced_timecode_toggled ()
467 {
468         bool x;
469
470         if ((x = synced_timecode_button.get_active()) != Config->get_timecode_source_is_synced()) {
471                 Config->set_timecode_source_is_synced (x);
472                 Config->save_state();
473         }
474 }
475
476 void
477 OptionEditor::smpte_offset_chosen()
478 {
479         if (session) {
480                 nframes_t frames = smpte_offset_clock.current_duration();
481                 session->set_smpte_offset (frames);
482         }
483 }
484
485
486 void
487 OptionEditor::setup_midi_options ()
488 {
489         HBox* hbox;
490         Label* label;
491
492         midi_port_table.set_row_spacings (6);
493         midi_port_table.set_col_spacings (10);
494
495         redisplay_midi_ports ();
496
497         mmc_receive_device_id_adjustment.set_value (Config->get_mmc_receive_device_id());
498         mmc_send_device_id_adjustment.set_value (Config->get_mmc_send_device_id());
499
500         mmc_receive_device_id_adjustment.signal_value_changed().connect (mem_fun (*this, &OptionEditor::mmc_receive_device_id_adjusted));
501         mmc_send_device_id_adjustment.signal_value_changed().connect (mem_fun (*this, &OptionEditor::mmc_send_device_id_adjusted));
502
503         hbox = manage (new HBox);
504         hbox->set_border_width (6);
505         hbox->pack_start (midi_port_table, true, false);
506
507         midi_packer.pack_start (*hbox, false, false);
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_hpacker.remove (*click_io_selector);
999                 click_hpacker.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
1012         if (first_click_setup) {
1013                 
1014                 click_path_entry.set_name ("OptionsEntry");
1015                 click_emphasis_path_entry.set_name ("OptionsEntry");
1016                 
1017                 click_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_sound_changed));
1018                 click_emphasis_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_emphasis_sound_changed));
1019                 
1020                 click_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_sound_changed));
1021                 click_emphasis_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_emphasis_sound_changed));
1022                 
1023                 click_browse_button.set_name ("EditorGTKButton");
1024                 click_emphasis_browse_button.set_name ("EditorGTKButton");
1025
1026                 click_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_browse_clicked));
1027                 click_emphasis_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_emphasis_browse_clicked));
1028
1029                 click_packer.set_border_width (12);
1030                 click_packer.set_spacing (5);
1031
1032                 click_table.set_col_spacings (10);
1033                 
1034                 label = manage(new Label(_("Click audio file")));
1035                 label->set_name ("OptionsLabel");
1036                 click_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
1037                 click_table.attach (click_path_entry, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1038                 click_table.attach (click_browse_button, 2, 3, 0, 1, FILL|EXPAND, FILL);
1039                 
1040                 label = manage(new Label(_("Click emphasis audiofile")));
1041                 label->set_name ("OptionsLabel");
1042                 click_table.attach (*label, 0, 1, 1, 2, FILL|EXPAND, FILL);
1043                 click_table.attach (click_emphasis_path_entry, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1044                 click_table.attach (click_emphasis_browse_button, 2, 3, 1, 2, FILL|EXPAND, FILL);
1045
1046                 click_packer.pack_start (click_table, false, false);
1047                 click_packer.pack_start (click_hpacker, false, false);
1048         
1049
1050                 click_hpacker.set_spacing (10);
1051
1052                 first_click_setup = false;
1053         }
1054
1055         click_path_entry.set_sensitive (true);
1056         click_emphasis_path_entry.set_sensitive (true);
1057
1058         click_io_selector = new IOSelector (*session, session->click_io(), false);
1059         click_gpm = new GainMeter (session->click_io(), *session);
1060
1061         click_hpacker.pack_start (*click_io_selector, false, false);
1062         click_hpacker.pack_start (*click_gpm, false, false);
1063
1064         click_packer.show_all ();
1065 }
1066
1067 void
1068 OptionEditor::clear_auditioner_editor ()
1069 {
1070         if (auditioner_io_selector) {
1071                 audition_hpacker.remove (*auditioner_io_selector);
1072                 audition_hpacker.remove (*auditioner_gpm);
1073                 delete auditioner_io_selector;
1074                 delete auditioner_gpm;
1075                 auditioner_io_selector = 0;
1076                 auditioner_gpm = 0;
1077         }
1078 }
1079
1080 void
1081 OptionEditor::setup_auditioner_editor ()
1082 {
1083         audition_packer.set_border_width (12);
1084         audition_packer.set_spacing (5);
1085         audition_hpacker.set_spacing (10);
1086
1087         audition_label.set_name ("OptionEditorAuditionerLabel");
1088         audition_label.set_text (_("The auditioner is a dedicated mixer strip used\n"
1089                                    "for listening to specific regions outside the context\n"
1090                                    "of the overall mix. It can be connected just like any\n"
1091                                    "other mixer strip."));
1092         
1093         audition_packer.pack_start (audition_label, false, false, 10);
1094         audition_packer.pack_start (audition_hpacker, false, false);
1095 }
1096
1097 void
1098 OptionEditor::connect_audition_editor ()
1099 {
1100         auditioner_io_selector = new IOSelector (*session, session->the_auditioner(), false);
1101         auditioner_gpm = new GainMeter (session->the_auditioner(), *session);
1102
1103         audition_hpacker.pack_start (*auditioner_io_selector, false, false);
1104         audition_hpacker.pack_start (*auditioner_gpm, false, false);
1105
1106         auditioner_io_selector->show_all ();
1107         auditioner_gpm->show_all ();
1108 }
1109
1110 bool
1111 OptionEditor::focus_out_event_handler (GdkEventFocus* ev, void (OptionEditor::*pmf)()) 
1112 {
1113         (this->*pmf)();
1114         return false;
1115 }
1116
1117 static const struct {
1118     const char *name;
1119     guint   modifier;
1120 } modifiers[] = {
1121
1122 #ifdef GTKOSX 
1123
1124         /* Command = Meta
1125            Option/Alt = Mod1
1126         */
1127
1128         { "Shift", GDK_SHIFT_MASK },
1129         { "Command", GDK_META_MASK },
1130         { "Control", GDK_CONTROL_MASK },
1131         { "Option", GDK_MOD1_MASK },
1132         { "Command-Shift", GDK_MOD1_MASK|GDK_SHIFT_MASK },
1133         { "Command-Option", GDK_MOD1_MASK|GDK_MOD5_MASK },
1134         { "Shift-Option", GDK_SHIFT_MASK|GDK_MOD5_MASK },
1135         { "Shift-Command-Option", GDK_MOD5_MASK|GDK_SHIFT_MASK|GDK_MOD1_MASK },
1136
1137 #else
1138         { "Shift", GDK_SHIFT_MASK },
1139         { "Control", GDK_CONTROL_MASK },
1140         { "Alt (Mod1)", GDK_MOD1_MASK },
1141         { "Control-Shift", GDK_CONTROL_MASK|GDK_SHIFT_MASK },
1142         { "Control-Alt", GDK_CONTROL_MASK|GDK_MOD1_MASK },
1143         { "Shift-Alt", GDK_SHIFT_MASK|GDK_MOD1_MASK },
1144         { "Control-Shift-Alt", GDK_CONTROL_MASK|GDK_SHIFT_MASK|GDK_MOD1_MASK },
1145         { "Mod2", GDK_MOD2_MASK },
1146         { "Mod3", GDK_MOD3_MASK },
1147         { "Mod4", GDK_MOD4_MASK },
1148         { "Mod5", GDK_MOD5_MASK },
1149 #endif
1150         { 0, 0 }
1151 };
1152
1153 void
1154 OptionEditor::setup_keyboard_options ()
1155 {
1156         vector<string> dumb;
1157         Label* label;
1158
1159         keyboard_mouse_table.set_border_width (12);
1160         keyboard_mouse_table.set_row_spacings (5);
1161         keyboard_mouse_table.set_col_spacings (5);
1162
1163         /* internationalize and prepare for use with combos */
1164
1165         for (int i = 0; modifiers[i].name; ++i) {
1166                 dumb.push_back (_(modifiers[i].name));
1167         }
1168
1169         set_popdown_strings (edit_modifier_combo, dumb);
1170         edit_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::edit_modifier_chosen));
1171
1172         for (int x = 0; modifiers[x].name; ++x) {
1173                 if (modifiers[x].modifier == Keyboard::edit_modifier ()) {
1174                         edit_modifier_combo.set_active_text (_(modifiers[x].name));
1175                         break;
1176                 }
1177         }
1178
1179         label = manage (new Label (_("Edit using")));
1180         label->set_name ("OptionsLabel");
1181         label->set_alignment (1.0, 0.5);
1182                 
1183         keyboard_mouse_table.attach (*label, 0, 1, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1184         keyboard_mouse_table.attach (edit_modifier_combo, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1185
1186         label = manage (new Label (_("+ button")));
1187         label->set_name ("OptionsLabel");
1188         
1189         keyboard_mouse_table.attach (*label, 3, 4, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1190         keyboard_mouse_table.attach (edit_button_spin, 4, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
1191
1192         edit_button_spin.set_name ("OptionsEntry");
1193         edit_button_adjustment.set_value (Keyboard::edit_button());
1194         edit_button_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::edit_button_changed));
1195
1196         set_popdown_strings (delete_modifier_combo, dumb);
1197         delete_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::delete_modifier_chosen));
1198
1199         for (int x = 0; modifiers[x].name; ++x) {
1200                 if (modifiers[x].modifier == Keyboard::delete_modifier ()) {
1201                         delete_modifier_combo.set_active_text (_(modifiers[x].name));
1202                         break;
1203                 }
1204         }
1205
1206         label = manage (new Label (_("Delete using")));
1207         label->set_name ("OptionsLabel");
1208         label->set_alignment (1.0, 0.5);
1209                 
1210         keyboard_mouse_table.attach (*label, 0, 1, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1211         keyboard_mouse_table.attach (delete_modifier_combo, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1212
1213         label = manage (new Label (_("+ button")));
1214         label->set_name ("OptionsLabel");
1215
1216         keyboard_mouse_table.attach (*label, 3, 4, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1217         keyboard_mouse_table.attach (delete_button_spin, 4, 5, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
1218
1219         delete_button_spin.set_name ("OptionsEntry");
1220         delete_button_adjustment.set_value (Keyboard::delete_button());
1221         delete_button_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::delete_button_changed));
1222
1223         set_popdown_strings (snap_modifier_combo, dumb);
1224         snap_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::snap_modifier_chosen));
1225         
1226         for (int x = 0; modifiers[x].name; ++x) {
1227                 if (modifiers[x].modifier == (guint) Keyboard::snap_modifier ()) {
1228                         snap_modifier_combo.set_active_text (_(modifiers[x].name));
1229                         break;
1230                 }
1231         }
1232
1233         label = manage (new Label (_("Ignore snap using")));
1234         label->set_name ("OptionsLabel");
1235         label->set_alignment (1.0, 0.5);
1236         
1237         keyboard_mouse_table.attach (*label, 0, 1, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
1238         keyboard_mouse_table.attach (snap_modifier_combo, 1, 2, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
1239
1240         vector<string> strs;
1241         
1242         for (std::map<std::string,std::string>::iterator bf = Keyboard::binding_files.begin(); bf != Keyboard::binding_files.end(); ++bf) {
1243                 strs.push_back (bf->first);
1244         }
1245         
1246         set_popdown_strings (keyboard_layout_selector, strs);
1247         keyboard_layout_selector.set_active_text (Keyboard::current_binding_name());
1248         keyboard_layout_selector.signal_changed().connect (mem_fun (*this, &OptionEditor::bindings_changed));
1249
1250         label = manage (new Label (_("Keyboard layout")));
1251         label->set_name ("OptionsLabel");
1252         label->set_alignment (1.0, 0.5);
1253
1254         keyboard_mouse_table.attach (*label, 0, 1, 3, 4, Gtk::FILL|Gtk::EXPAND, FILL);
1255         keyboard_mouse_table.attach (keyboard_layout_selector, 1, 2, 3, 4, Gtk::FILL|Gtk::EXPAND, FILL);
1256 }
1257
1258 void
1259 OptionEditor::bindings_changed ()
1260 {
1261         string txt;
1262         
1263         txt = keyboard_layout_selector.get_active_text();
1264
1265         for (std::map<string,string>::iterator i = Keyboard::binding_files.begin(); i != Keyboard::binding_files.end(); ++i) {
1266                 if (txt == i->first) {
1267                         if (Keyboard::load_keybindings (i->second)) {
1268                                 Keyboard::save_keybindings ();
1269                         }
1270                 }
1271         }
1272 }
1273
1274 void
1275 OptionEditor::edit_modifier_chosen ()
1276 {
1277         string txt;
1278         
1279         txt = edit_modifier_combo.get_active_text();
1280
1281         for (int i = 0; modifiers[i].name; ++i) {
1282                 if (txt == _(modifiers[i].name)) {
1283                         Keyboard::set_edit_modifier (modifiers[i].modifier);
1284                         break;
1285                 }
1286         }
1287 }
1288
1289 void
1290 OptionEditor::delete_modifier_chosen ()
1291 {
1292         string txt;
1293         
1294         txt = delete_modifier_combo.get_active_text();
1295
1296         for (int i = 0; modifiers[i].name; ++i) {
1297                 if (txt == _(modifiers[i].name)) {
1298                         Keyboard::set_delete_modifier (modifiers[i].modifier);
1299                         break;
1300                 }
1301         }
1302 }
1303
1304 void
1305 OptionEditor::snap_modifier_chosen ()
1306 {
1307         string txt;
1308         
1309         txt = snap_modifier_combo.get_active_text();
1310
1311         for (int i = 0; modifiers[i].name; ++i) {
1312                 if (txt == _(modifiers[i].name)) {
1313                         Keyboard::set_snap_modifier (modifiers[i].modifier);
1314                         break;
1315                 }
1316         }
1317 }
1318
1319 void
1320 OptionEditor::delete_button_changed ()
1321 {
1322         Keyboard::set_delete_button ((guint) delete_button_adjustment.get_value());
1323 }
1324
1325 void
1326 OptionEditor::edit_button_changed ()
1327 {
1328         Keyboard::set_edit_button ((guint) edit_button_adjustment.get_value());
1329 }
1330
1331 void
1332 OptionEditor::fixup_combo_size (Gtk::ComboBoxText& combo, vector<string>& strings)
1333 {
1334         /* find the widest string */
1335
1336         string::size_type maxlen = 0;
1337         string maxstring;
1338
1339         for (vector<string>::iterator i = strings.begin(); i != strings.end(); ++i) {
1340                 string::size_type l;
1341
1342                 if ((l = (*i).length()) > maxlen) {
1343                         maxlen = l;
1344                         maxstring = *i;
1345                 }
1346         }
1347
1348         /* try to include ascenders and descenders */
1349
1350         if (maxstring.length() > 2) {
1351                 maxstring[0] = 'g';
1352                 maxstring[1] = 'l';
1353         }
1354
1355         const guint32 FUDGE = 10; // Combo's are stupid - they steal space from the entry for the button
1356
1357         set_size_request_to_display_given_text (combo, maxstring.c_str(), 10 + FUDGE, 10);
1358 }
1359
1360 void
1361 OptionEditor::parameter_changed (const char* parameter_name)
1362 {
1363         ENSURE_GUI_THREAD (bind (mem_fun (*this, &OptionEditor::parameter_changed), parameter_name));
1364
1365 #define PARAM_IS(x) (!strcmp (parameter_name, (x)))
1366         
1367         if (PARAM_IS ("timecode-source-is-synced")) {
1368                 synced_timecode_button.set_active (Config->get_timecode_source_is_synced());
1369         } else if (PARAM_IS ("history-depth")) {
1370                 int32_t depth = Config->get_history_depth();
1371                 
1372                 history_depth.set_value (depth);
1373                 history_depth_spinner.set_sensitive (depth != 0);
1374                 limit_history_button.set_active (depth != 0);
1375
1376         } else if (PARAM_IS ("saved-history-depth")) {
1377
1378                 saved_history_depth.set_value (Config->get_saved_history_depth());
1379
1380         } else if (PARAM_IS ("save-history")) {
1381
1382                 bool x = Config->get_save_history();
1383
1384                 save_history_button.set_active (x);
1385                 saved_history_depth_spinner.set_sensitive (x);
1386         } else if (PARAM_IS ("font-scale")) {
1387                 reset_dpi();
1388         }
1389 }