Added tooltips to help explain various soundfilebrowser buttons.
[ardour.git] / gtk2_ardour / option_editor.cc
1 /*
2     Copyright (C) 2001 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     $Id$
19 */
20
21 #include <pbd/whitespace.h>
22
23 #include <ardour/session.h>
24 #include <ardour/audioengine.h>
25 #include <ardour/configuration.h>
26 #include <ardour/auditioner.h>
27 #include <ardour/destructive_filesource.h>
28 #include <ardour/crossfade.h>
29 #include <midi++/manager.h>
30 #include <gtkmm2ext/stop_signal.h>
31 #include <gtkmm2ext/utils.h>
32
33 #include "public_editor.h"
34 #include "mixer_ui.h"
35 #include "ardour_ui.h"
36 #include "io_selector.h"
37 #include "gain_meter.h"
38 #include "sfdb_ui.h"
39 #include "utils.h"
40 #include "editing.h"
41 #include "option_editor.h"
42
43 #include "i18n.h"
44
45 using namespace ARDOUR;
46 using namespace Gtk;
47 using namespace Editing;
48 using namespace Gtkmm2ext;
49 using namespace std;
50
51 static vector<string> positional_sync_strings;
52
53 OptionEditor::OptionEditor (ARDOUR_UI& uip, PublicEditor& ed, Mixer_UI& mixui)
54         : Dialog ("option editor"),
55           ui (uip),
56           editor (ed),
57           mixer (mixui),
58
59           /* Paths */
60           path_table (11, 2),
61           sfdb_path_columns(),
62           sfdb_paths(ListStore::create(sfdb_path_columns)),
63           sfdb_path_view(sfdb_paths),
64
65           /* Fades */
66
67           short_xfade_adjustment (0, 1.0, 500.0, 5.0, 100.0),
68           short_xfade_slider (short_xfade_adjustment),
69           destructo_xfade_adjustment (1.0, 1.0, 500.0, 1.0, 100.0),
70           destructo_xfade_slider (destructo_xfade_adjustment),
71
72           /* Sync */
73
74           smpte_offset_clock (X_("SMPTEOffsetClock"), true, true),
75           smpte_offset_negative_button (_("SMPTE offset is negative")),
76
77           /* MIDI */
78
79           /* Click */
80
81           click_table (2, 3),
82           click_browse_button (_("Browse")),
83           click_emphasis_browse_button (_("Browse")),
84
85           /* kbd/mouse */
86
87           keyboard_mouse_table (3, 4),
88           delete_button_adjustment (3, 1, 5),
89           delete_button_spin (delete_button_adjustment),
90           edit_button_adjustment (3, 1, 5),
91           edit_button_spin (edit_button_adjustment)
92           
93 {
94         using namespace Notebook_Helpers;
95
96         click_io_selector = 0;
97         auditioner_io_selector = 0;
98         session = 0;
99
100         set_default_size (300, 300);
101         set_title (_("ardour: options editor"));
102         set_wmclass (_("ardour_option_editor"), "Ardour");
103
104         set_name ("OptionsWindow");
105         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
106         
107         VBox *vbox = get_vbox();
108         set_border_width (3);
109
110         vbox->set_spacing (4);
111         vbox->pack_start(notebook);
112
113         signal_delete_event().connect (mem_fun(*this, &OptionEditor::wm_close));
114
115         notebook.set_show_tabs (true);
116         notebook.set_show_border (true);
117         notebook.set_name ("OptionsNotebook");
118
119         setup_sync_options();
120         setup_path_options();
121         setup_fade_options ();
122         setup_keyboard_options ();
123         setup_auditioner_editor ();
124
125         notebook.pages().push_back (TabElem (sync_packer, _("Sync")));
126         notebook.pages().push_back (TabElem (path_table, _("Paths/Files")));
127         notebook.pages().push_back (TabElem (keyboard_mouse_table, _("Kbd/Mouse")));
128         notebook.pages().push_back (TabElem (click_packer, _("Click")));
129         notebook.pages().push_back (TabElem (audition_packer, _("Audition")));
130         notebook.pages().push_back (TabElem (fade_packer, _("Layers & Fades")));
131
132         if (!MIDI::Manager::instance()->get_midi_ports().empty()) {
133                 setup_midi_options ();
134                 notebook.pages().push_back (TabElem (midi_packer, _("MIDI")));
135         }
136
137         set_session (0);
138         show_all_children();
139 }
140
141 void
142 OptionEditor::set_session (Session *s)
143 {
144         clear_click_editor ();
145         clear_auditioner_editor ();
146
147         click_path_entry.set_text ("");
148         click_emphasis_path_entry.set_text ("");
149         session_raid_entry.set_text ("");
150
151         click_path_entry.set_sensitive (false);
152         click_emphasis_path_entry.set_sensitive (false);
153         session_raid_entry.set_sensitive (false);
154
155         smpte_fps_combo.set_sensitive (false);
156         short_xfade_slider.set_sensitive (false);
157         smpte_offset_negative_button.set_sensitive (false);
158
159         smpte_offset_clock.set_session (s);
160
161         if ((session = s) == 0) {
162                 return;
163         }
164
165
166         click_path_entry.set_sensitive (true);
167         click_emphasis_path_entry.set_sensitive (true);
168         session_raid_entry.set_sensitive (true);
169         smpte_fps_combo.set_sensitive (true);
170         short_xfade_slider.set_sensitive (true);
171         smpte_offset_negative_button.set_sensitive (true);
172
173         if (!s->smpte_drop_frames) {
174                 // non-drop frames
175                 if (s->smpte_frames_per_second == 24.0)
176                         smpte_fps_combo.set_active_text (_("24 FPS"));
177                 else if (s->smpte_frames_per_second == 25.0)
178                         smpte_fps_combo.set_active_text (_("25 FPS"));
179                 else if (s->smpte_frames_per_second == 30.0)
180                         smpte_fps_combo.set_active_text (_("30 FPS"));
181                 else
182                         smpte_fps_combo.set_active_text (_("???"));
183         } else {
184                 // drop frames
185                 if (floor(s->smpte_frames_per_second) == 29.0)
186                         smpte_fps_combo.set_active_text (_("30 FPS drop"));
187                 else
188                         smpte_fps_combo.set_active_text (_("???"));
189         }
190         
191         smpte_offset_clock.set_session (s);
192         smpte_offset_clock.set (s->smpte_offset (), true);
193
194         smpte_offset_negative_button.set_active (session->smpte_offset_negative());
195
196         /* set up port assignments */
197
198         std::map<MIDI::Port*,vector<RadioButton*> >::iterator res;
199
200         if (session->mtc_port()) {
201                 if ((res = port_toggle_buttons.find (session->mtc_port())) != port_toggle_buttons.end()) {
202                         (*res).second[MtcIndex]->set_active (true);
203                 }
204         } 
205
206         if (session->mmc_port ()) {
207                 if ((res = port_toggle_buttons.find (session->mmc_port())) != port_toggle_buttons.end()) {
208                         (*res).second[MmcIndex]->set_active (true);
209                 } 
210         }
211
212         if (session->midi_port()) {
213                 if ((res = port_toggle_buttons.find (session->midi_port())) != port_toggle_buttons.end()) {
214                         (*res).second[MidiIndex]->set_active (true);
215                 }
216         }
217
218         setup_click_editor ();
219         connect_audition_editor ();
220
221         short_xfade_adjustment.set_value ((Crossfade::short_xfade_length() / (float) session->frame_rate()) * 1000.0);
222
223         add_session_paths ();
224 }
225
226 OptionEditor::~OptionEditor ()
227 {
228 }
229
230 void
231 OptionEditor::setup_path_options()
232 {
233         Gtk::Label* label;
234
235         path_table.set_homogeneous (false);
236         path_table.set_border_width (12);
237         path_table.set_row_spacings (5);
238
239         session_raid_entry.set_name ("OptionsEntry");
240
241         session_raid_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::raid_path_changed));
242
243         label = manage(new Label(_("session RAID path")));
244         label->set_name ("OptionsLabel");
245         path_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
246         path_table.attach (session_raid_entry, 1, 3, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
247
248         label = manage(new Label(_("Soundfile Search Paths")));
249         label->set_name("OptionsLabel");
250         path_table.attach(*label, 0, 1, 2, 3, FILL|EXPAND, FILL);
251         path_table.attach(sfdb_path_view, 1, 3, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
252
253         sfdb_path_view.append_column(_("Paths"), sfdb_path_columns.paths);
254         sfdb_path_view.set_size_request(-1, 100);
255
256         path_table.show_all();
257 }
258
259 void
260 OptionEditor::add_session_paths ()
261 {
262         click_path_entry.set_sensitive (true);
263         click_emphasis_path_entry.set_sensitive (true);
264         session_raid_entry.set_sensitive (true);
265
266         if (session->click_sound.length() == 0) {
267                 click_path_entry.set_text (_("internal"));
268         } else {
269                 click_path_entry.set_text (session->click_sound);
270         }
271
272         if (session->click_emphasis_sound.length() == 0) {
273                 click_emphasis_path_entry.set_text (_("internal"));
274         } else {
275                 click_emphasis_path_entry.set_text (session->click_emphasis_sound);
276         }
277
278         session_raid_entry.set_text(session->raid_path());
279 }
280
281 void
282 OptionEditor::setup_fade_options ()
283 {
284         Gtk::HBox* hbox;
285         
286         Label* label = manage (new Label (_("Short crossfade length (msecs)")));
287         label->set_name ("OptionsLabel");
288         
289         hbox = manage (new HBox);
290         hbox->set_border_width (5);
291         hbox->set_spacing (10);
292         hbox->pack_start (*label, false, false);
293         hbox->pack_start (short_xfade_slider, true, true);
294         fade_packer.pack_start (*hbox, false, false);
295
296         short_xfade_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::short_xfade_adjustment_changed));
297
298         label = manage (new Label (_("Destructive crossfade length (msecs)")));
299         label->set_name ("OptionsLabel");
300         
301         hbox = manage (new HBox);
302         hbox->set_border_width (5);
303         hbox->set_spacing (10);
304         hbox->pack_start (*label, false, false);
305         hbox->pack_start (destructo_xfade_slider, true, true);
306         fade_packer.pack_start (*hbox, false, false);
307         
308         destructo_xfade_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::destructo_xfade_adjustment_changed));
309
310         short_xfade_slider.set_update_policy (UPDATE_DISCONTINUOUS);
311         destructo_xfade_slider.set_update_policy (UPDATE_DISCONTINUOUS);
312
313         destructo_xfade_adjustment.set_value (Config->get_destructive_xfade_msecs());
314
315         fade_packer.show_all ();
316 }
317
318 void
319 OptionEditor::short_xfade_adjustment_changed ()
320 {
321         if (session) {
322                 float val = short_xfade_adjustment.get_value();
323                 
324                 /* val is in msecs */
325                 
326                 Crossfade::set_short_xfade_length ((jack_nframes_t) floor (session->frame_rate() * (val / 1000.0)));
327         }
328 }
329
330 void
331 OptionEditor::destructo_xfade_adjustment_changed ()
332 {
333         float val = destructo_xfade_adjustment.get_value();
334
335         /* val is in msecs */
336         
337         Config->set_destructive_xfade_msecs ((uint32_t) floor (val));
338
339         if (session) {
340                 DestructiveFileSource::setup_standard_crossfades (session->frame_rate());
341         } 
342 }
343
344 void
345 OptionEditor::setup_sync_options ()
346 {
347         HBox* hbox;
348         vector<string> dumb;
349
350         dumb.clear ();
351         dumb.push_back (X_("24 FPS"));
352         dumb.push_back (X_("25 FPS"));
353         dumb.push_back (X_("30 FPS drop"));
354         dumb.push_back (X_("30 FPS non-drop"));
355         
356         set_popdown_strings (smpte_fps_combo, dumb);
357         smpte_fps_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::smpte_fps_chosen));
358         
359         smpte_offset_clock.set_mode (AudioClock::SMPTE);
360         smpte_offset_clock.ValueChanged.connect (mem_fun(*this, &OptionEditor::smpte_offset_chosen));
361         
362         smpte_offset_negative_button.set_name ("OptionEditorToggleButton");
363
364         smpte_offset_negative_button.unset_flags (Gtk::CAN_FOCUS);
365
366         Label *smpte_fps_label = manage (new Label (_("SMPTE Frames/second")));
367         Label *smpte_offset_label = manage (new Label (_("SMPTE Offset")));
368         smpte_fps_label->set_name("OptionsLabel");
369         smpte_offset_label->set_name("OptionsLabel");
370         
371         hbox = manage (new HBox);
372         hbox->set_border_width (5);
373         hbox->set_spacing (10);
374         hbox->pack_start (*smpte_fps_label, false, false);
375         hbox->pack_start (smpte_fps_combo, false, false);
376
377         sync_packer.pack_start (*hbox, false, false);
378
379         hbox = manage (new HBox);
380         hbox->set_border_width (5);
381         hbox->set_spacing (10);
382         hbox->pack_start (*smpte_offset_label, false, false);
383         hbox->pack_start (smpte_offset_clock, false, false);
384         hbox->pack_start (smpte_offset_negative_button, false, false);
385
386         sync_packer.pack_start (*hbox, false, false);
387
388         smpte_offset_negative_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::smpte_offset_negative_clicked));
389 }
390
391 void
392 OptionEditor::smpte_offset_negative_clicked ()
393 {
394         if (session) {
395                 session->set_smpte_offset_negative (smpte_offset_negative_button.get_active());
396         }
397 }
398
399 void
400 OptionEditor::smpte_fps_chosen ()
401 {
402         if (session) {
403                 string str = smpte_fps_combo.get_active_text();
404                 
405                 if (str == X_("24 FPS")) {
406                         session->set_smpte_type (24.0, false);
407                 } else if (str == X_("25 FPS")) {
408                         session->set_smpte_type (25.0, false);
409                 } else if (str == X_("30 FPS drop")) {
410                         session->set_smpte_type (29.97, true);
411                 } else if (str == X_("30 FPS non-drop")) {
412                         session->set_smpte_type (30.0, false);
413                 }
414         }
415 }
416
417 void
418 OptionEditor::smpte_offset_chosen()
419 {
420         if (session) {
421                 jack_nframes_t frames = smpte_offset_clock.current_duration();
422                 session->set_smpte_offset (frames);
423         }
424 }
425
426
427 void
428 OptionEditor::setup_midi_options ()
429 {
430         HBox* hbox;
431         MIDI::Manager::PortMap::const_iterator i;
432         const MIDI::Manager::PortMap& ports = MIDI::Manager::instance()->get_midi_ports();
433         int n;
434         ToggleButton* tb;
435         RadioButton* rb;
436
437         Gtk::Table* table = manage (new Table (ports.size() + 4, 9));
438
439         table->set_row_spacings (6);
440         table->set_col_spacings (10);
441
442         table->attach (*(manage (new Label (X_("Port")))), 0, 1, 0, 1);
443         table->attach (*(manage (new Label (X_("Offline")))), 1, 2, 0, 1);
444         table->attach (*(manage (new Label (X_("Trace\nInput")))), 2, 3, 0, 1);
445         table->attach (*(manage (new Label (X_("Trace\nOutput")))), 3, 4, 0, 1);
446         table->attach (*(manage (new Label (X_("MTC")))), 4, 5, 0, 1);
447         table->attach (*(manage (new Label (X_("MMC")))), 6, 7, 0, 1);
448         table->attach (*(manage (new Label (X_("MIDI Parameter\nControl")))), 8, 9, 0, 1);
449
450         table->attach (*(manage (new HSeparator())), 0, 9, 1, 2);
451         table->attach (*(manage (new VSeparator())), 5, 6, 0, 8);
452         table->attach (*(manage (new VSeparator())), 7, 8, 0, 8);
453         
454         for (n = 0, i = ports.begin(); i != ports.end(); ++n, ++i) {
455
456                 pair<MIDI::Port*,vector<RadioButton*> > newpair;
457
458                 newpair.first = i->second;
459
460                 table->attach (*(manage (new Label (i->first))), 0, 1, n+2, n+3,FILL|EXPAND, FILL );
461                 tb = manage (new ToggleButton (_("online")));
462                 tb->set_name ("OptionEditorToggleButton");
463
464                 /* remember, we have to handle the i18n case where the relative
465                    lengths of the strings in language N is different than in english.
466                 */
467
468                 if (strlen (_("offline")) > strlen (_("online"))) {
469                         set_size_request_to_display_given_text (*tb, _("offline"), 15, 12);
470                 } else {
471                         set_size_request_to_display_given_text (*tb, _("online"), 15, 12);
472                 }
473
474                 tb->set_active (!(*i).second->input()->offline());
475                 tb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::port_online_toggled), (*i).second, tb));
476                 (*i).second->input()->OfflineStatusChanged.connect (bind (mem_fun(*this, &OptionEditor::map_port_online), (*i).second, tb));
477                 table->attach (*tb, 1, 2, n+2, n+3, FILL|EXPAND, FILL);
478
479                 tb = manage (new ToggleButton ());
480                 tb->set_name ("OptionEditorToggleButton");
481                 tb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::port_trace_in_toggled), (*i).second, tb));
482                 tb->set_size_request (10, 10);
483                 table->attach (*tb, 2, 3, n+2, n+3, FILL|EXPAND, FILL);
484
485                 tb = manage (new ToggleButton ());
486                 tb->set_name ("OptionEditorToggleButton");
487                 tb->signal_button_press_event().connect (bind (mem_fun(*this, &OptionEditor::port_trace_out_toggled), (*i).second, tb));
488                 tb->set_size_request (10, 10);
489                 table->attach (*tb, 3, 4, n+2, n+3, FILL|EXPAND, FILL);
490
491                 rb = manage (new RadioButton ());
492                 newpair.second.push_back (rb);
493                 rb->set_name ("OptionEditorToggleButton");
494                 if (n == 0) {
495                         mtc_button_group = rb->get_group();
496                 } else {
497                         rb->set_group (mtc_button_group);
498
499                 }
500                 table->attach (*rb, 4, 5, n+2, n+3, FILL|EXPAND, FILL);
501                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mtc_port_chosen), (*i).second, rb));
502
503                 if (Config->get_mtc_port_name() == i->first) {
504                         rb->set_active (true);
505                 }
506                 
507                 rb = manage (new RadioButton ());
508                 newpair.second.push_back (rb);
509                 rb->set_name ("OptionEditorToggleButton");
510                 if (n == 0) {
511                         mmc_button_group = rb->get_group();
512                 } else {
513                         rb->set_group (mmc_button_group);
514                 }
515                 table->attach (*rb, 6, 7, n+2, n+3, FILL|EXPAND, FILL);
516                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::mmc_port_chosen), (*i).second, rb));
517
518                 if (Config->get_mmc_port_name() == i->first) {
519                         rb->set_active (true);
520                 }
521
522                 rb = manage (new RadioButton ());
523                 newpair.second.push_back (rb);
524                 rb->set_name ("OptionEditorToggleButton");
525                 if (n == 0) {
526                         midi_button_group = rb->get_group();
527                 } else {
528                         rb->set_group (midi_button_group);
529                 }
530                 table->attach (*rb, 8, 9, n+2, n+3, FILL|EXPAND, FILL);
531                 rb->signal_toggled().connect (bind (mem_fun(*this, &OptionEditor::midi_port_chosen), (*i).second, rb));
532
533                 if (Config->get_midi_port_name() == i->first) {
534                         rb->set_active (true);
535                 }
536                 
537                 port_toggle_buttons.insert (newpair);
538         }
539
540         table->show_all ();
541
542         hbox = manage (new HBox);
543         hbox->set_border_width (6);
544         hbox->pack_start (*table, true, false);
545         midi_packer.pack_start (*hbox, false, false);
546 }
547
548 void
549 OptionEditor::mtc_port_chosen (MIDI::Port *port, Gtk::RadioButton* rb) 
550 {
551         if (session) {
552                 if (rb->get_active()) {
553                         cerr << "Activating MTC port " << port->name() << endl;
554                         if (port) {
555                                 session->set_mtc_port (port->name());
556                                 Config->set_mtc_port_name (port->name());
557                         } else {
558                                 session->set_mtc_port ("");
559                         }
560                         rb->set_active (true);
561                 }
562         }
563 }
564
565 void
566 OptionEditor::mmc_port_chosen (MIDI::Port* port, Gtk::RadioButton* rb)
567 {
568         if (session) {
569                 if (rb->get_active()) {
570                         cerr << "Activating MMC port " << port->name() << endl;
571                         if (port) {
572                                 session->set_mmc_port (port->name());
573                                 Config->set_mtc_port_name (port->name());
574                         } else {
575                                 session->set_mmc_port ("");
576                         }
577                         rb->set_active (true);
578                 }
579         }
580 }
581
582 void
583 OptionEditor::midi_port_chosen (MIDI::Port* port, Gtk::RadioButton* rb)
584 {
585         if (session) {
586                 if (rb->get_active()) {
587                         cerr << "Activating MIDI port " << port->name() << endl;
588                         if (port) {
589                                 session->set_midi_port (port->name());
590                                 Config->set_midi_port_name (port->name());
591                         } else {
592                                 session->set_midi_port ("");
593                         }
594                         rb->set_active (true);
595                 }
596         }
597 }
598
599 gint
600 OptionEditor::port_online_toggled (GdkEventButton* ev, MIDI::Port* port, ToggleButton* tb)
601 {
602         bool wanted = tb->get_active(); /* it hasn't changed at this point */
603
604         if (wanted != port->input()->offline()) {
605                 port->input()->set_offline (wanted);
606         } 
607         return stop_signal (*tb, "button_press_event");
608 }
609
610 void
611 OptionEditor::map_port_online (MIDI::Port* port, ToggleButton* tb)
612 {
613         if (port->input()->offline()) {
614                 static_cast<Label*>(tb->get_child())->set_text (_("offline"));
615                 tb->set_active (false);
616         } else {
617                 static_cast<Label*>(tb->get_child())->set_text (_("online"));
618                 tb->set_active (true);
619         }
620 }
621
622 gint
623 OptionEditor::port_trace_in_toggled (GdkEventButton* ev, MIDI::Port* port, ToggleButton* tb)
624 {
625         /* XXX not very good MVC style here */
626
627         port->input()->trace (!tb->get_active(), &cerr, string (port->name()) + string (" input: "));
628         tb->set_active (!tb->get_active());
629         return stop_signal (*tb, "button_press_event");
630 }
631
632 gint
633 OptionEditor::port_trace_out_toggled (GdkEventButton* ev,MIDI::Port* port, ToggleButton* tb)
634 {
635         /* XXX not very good MVC style here */
636
637         port->output()->trace (!tb->get_active(), &cerr, string (port->name()) + string (" output: "));
638         tb->set_active (!tb->get_active());
639         return stop_signal (*tb, "button_press_event");
640 }
641
642 void
643 OptionEditor::save ()
644 {
645         /* XXX a bit odd that we save the entire session state here */
646
647         ui.save_state ("");
648 }
649
650 gint
651 OptionEditor::wm_close (GdkEventAny *ev)
652 {
653         save ();
654         hide ();
655         return TRUE;
656 }
657
658 void
659 OptionEditor::raid_path_changed ()
660 {
661         if (session) {
662                 session->set_raid_path (session_raid_entry.get_text());
663         }
664 }
665
666 void
667 OptionEditor::click_browse_clicked ()
668 {
669         SoundFileChooser sfdb (_("Choose Click"));
670         sfdb.set_session (session);
671         
672         int result = sfdb.run ();
673
674         if (result == Gtk::RESPONSE_OK) {
675                 click_chosen(sfdb.get_filename());
676         }
677 }
678
679 void
680 OptionEditor::click_chosen (const string & path)
681 {
682         click_path_entry.set_text (path);
683         click_sound_changed ();
684 }
685
686 void
687 OptionEditor::click_emphasis_browse_clicked ()
688 {
689         SoundFileChooser sfdb (_("Choose Click Emphasis"));
690         sfdb.set_session (session);
691
692         int result = sfdb.run ();
693
694         if (result == Gtk::RESPONSE_OK) {
695                 click_emphasis_chosen (sfdb.get_filename());
696         }
697 }
698
699 void
700 OptionEditor::click_emphasis_chosen (const string & path)
701 {       
702         click_emphasis_path_entry.set_text (path);
703         click_emphasis_sound_changed ();
704 }
705
706 void
707 OptionEditor::click_sound_changed ()
708 {
709         if (session) {
710                 string path = click_path_entry.get_text();
711
712                 if (path == session->click_sound) {
713                         return;
714                 }
715
716                 if (path.length() == 0) {
717
718                         session->set_click_sound ("");
719
720                 } else {
721
722                         strip_whitespace_edges (path);
723                         
724                         if (path == _("internal")) {
725                                 session->set_click_sound ("");
726                         } else {
727                                 session->set_click_sound (path);
728                         }
729                 }
730         }
731 }
732
733 void
734 OptionEditor::click_emphasis_sound_changed ()
735 {
736         if (session) {
737                 string path = click_emphasis_path_entry.get_text();
738
739                 if (path == session->click_emphasis_sound) {
740                         return;
741                 }
742
743                 if (path.length() == 0) {
744
745                         session->set_click_emphasis_sound ("");
746
747                 } else {
748
749                         strip_whitespace_edges (path);
750
751                         if (path == _("internal")) {
752                                 session->set_click_emphasis_sound ("");
753                         } else {
754                                 session->set_click_emphasis_sound (path);
755                         }
756                 }
757         }
758 }
759
760 void
761 OptionEditor::clear_click_editor ()
762 {
763         if (click_io_selector) {
764                 click_packer.remove (*click_io_selector);
765                 click_packer.remove (*click_gpm);
766                 delete click_io_selector;
767                 delete click_gpm;
768                 click_io_selector = 0;
769                 click_gpm = 0;
770         }
771 }
772
773 void
774 OptionEditor::setup_click_editor ()
775 {
776         Label* label;
777         HBox* hpacker = manage (new HBox);
778
779         click_path_entry.set_sensitive (true);
780         click_emphasis_path_entry.set_sensitive (true);
781
782         click_path_entry.set_name ("OptionsEntry");
783         click_emphasis_path_entry.set_name ("OptionsEntry");
784         
785         click_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_sound_changed));
786         click_emphasis_path_entry.signal_activate().connect (mem_fun(*this, &OptionEditor::click_emphasis_sound_changed));
787
788         click_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_sound_changed));
789         click_emphasis_path_entry.signal_focus_out_event().connect (bind (mem_fun(*this, &OptionEditor::focus_out_event_handler), &OptionEditor::click_emphasis_sound_changed));
790
791         click_browse_button.set_name ("EditorGTKButton");
792         click_emphasis_browse_button.set_name ("EditorGTKButton");
793         click_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_browse_clicked));
794         click_emphasis_browse_button.signal_clicked().connect (mem_fun(*this, &OptionEditor::click_emphasis_browse_clicked));
795
796         click_packer.set_border_width (12);
797         click_packer.set_spacing (5);
798
799         click_io_selector = new IOSelector (*session, session->click_io(), false);
800         click_gpm = new GainMeter (session->click_io(), *session);
801
802         click_table.set_col_spacings (10);
803         
804         label = manage(new Label(_("Click audio file")));
805         label->set_name ("OptionsLabel");
806         click_table.attach (*label, 0, 1, 0, 1, FILL|EXPAND, FILL);
807         click_table.attach (click_path_entry, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
808         click_table.attach (click_browse_button, 2, 3, 0, 1, FILL|EXPAND, FILL);
809         
810         label = manage(new Label(_("Click emphasis audiofile")));
811         label->set_name ("OptionsLabel");
812         click_table.attach (*label, 0, 1, 1, 2, FILL|EXPAND, FILL);
813         click_table.attach (click_emphasis_path_entry, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
814         click_table.attach (click_emphasis_browse_button, 2, 3, 1, 2, FILL|EXPAND, FILL);
815
816         hpacker->set_spacing (10);
817         hpacker->pack_start (*click_io_selector, false, false);
818         hpacker->pack_start (*click_gpm, false, false);
819
820         click_packer.pack_start (click_table, false, false);
821         click_packer.pack_start (*hpacker, false, false);
822
823         click_packer.show_all ();
824 }
825
826 void
827 OptionEditor::clear_auditioner_editor ()
828 {
829         if (auditioner_io_selector) {
830                 audition_hpacker.remove (*auditioner_io_selector);
831                 audition_hpacker.remove (*auditioner_gpm);
832                 delete auditioner_io_selector;
833                 delete auditioner_gpm;
834                 auditioner_io_selector = 0;
835                 auditioner_gpm = 0;
836         }
837 }
838
839 void
840 OptionEditor::setup_auditioner_editor ()
841 {
842         audition_packer.set_border_width (12);
843         audition_packer.set_spacing (5);
844         audition_hpacker.set_spacing (10);
845
846         audition_label.set_name ("OptionEditorAuditionerLabel");
847         audition_label.set_text (_("The auditioner is a dedicated mixer strip used\n"
848                                    "for listening to specific regions outside the context\n"
849                                    "of the overall mix. It can be connected just like any\n"
850                                    "other mixer strip."));
851         
852         audition_packer.pack_start (audition_label, false, false, 10);
853         audition_packer.pack_start (audition_hpacker, false, false);
854 }
855
856 void
857 OptionEditor::connect_audition_editor ()
858 {
859         auditioner_io_selector = new IOSelector (*session, session->the_auditioner(), false);
860         auditioner_gpm = new GainMeter (session->the_auditioner(), *session);
861
862         audition_hpacker.pack_start (*auditioner_io_selector, false, false);
863         audition_hpacker.pack_start (*auditioner_gpm, false, false);
864
865         auditioner_io_selector->show_all ();
866         auditioner_gpm->show_all ();
867 }
868
869 bool
870 OptionEditor::focus_out_event_handler (GdkEventFocus* ev, void (OptionEditor::*pmf)()) 
871 {
872         (this->*pmf)();
873         return false;
874 }
875
876 static const struct {
877     const char *name;
878     guint   modifier;
879 } modifiers[] = {
880         { "Shift", GDK_SHIFT_MASK },
881         { "Control", GDK_CONTROL_MASK },
882         { "Alt (Mod1)", GDK_MOD1_MASK },
883         { "Control-Shift", GDK_CONTROL_MASK|GDK_SHIFT_MASK },
884         { "Control-Alt", GDK_CONTROL_MASK|GDK_MOD1_MASK },
885         { "Shift-Alt", GDK_SHIFT_MASK|GDK_MOD1_MASK },
886         { "Control-Shift-Alt", GDK_CONTROL_MASK|GDK_SHIFT_MASK|GDK_MOD1_MASK },
887         { "Mod2", GDK_MOD2_MASK },
888         { "Mod3", GDK_MOD3_MASK },
889         { "Mod4", GDK_MOD4_MASK },
890         { "Mod5", GDK_MOD5_MASK },
891         { 0, 0 }
892 };
893
894 void
895 OptionEditor::setup_keyboard_options ()
896 {
897         vector<string> dumb;
898         Label* label;
899
900         keyboard_mouse_table.set_border_width (12);
901         keyboard_mouse_table.set_row_spacings (5);
902         keyboard_mouse_table.set_col_spacings (5);
903
904         /* internationalize and prepare for use with combos */
905
906         for (int i = 0; modifiers[i].name; ++i) {
907                 dumb.push_back (_(modifiers[i].name));
908         }
909
910         set_popdown_strings (edit_modifier_combo, dumb);
911         edit_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::edit_modifier_chosen));
912
913         for (int x = 0; modifiers[x].name; ++x) {
914                 if (modifiers[x].modifier == Keyboard::edit_modifier ()) {
915                         edit_modifier_combo.set_active_text (_(modifiers[x].name));
916                         break;
917                 }
918         }
919
920         label = manage (new Label (_("Edit using")));
921         label->set_name ("OptionsLabel");
922         label->set_alignment (1.0, 0.5);
923                 
924         keyboard_mouse_table.attach (*label, 0, 1, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
925         keyboard_mouse_table.attach (edit_modifier_combo, 1, 2, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
926
927         label = manage (new Label (_("+ button")));
928         label->set_name ("OptionsLabel");
929         
930         keyboard_mouse_table.attach (*label, 3, 4, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
931         keyboard_mouse_table.attach (edit_button_spin, 4, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, FILL);
932
933         edit_button_spin.set_name ("OptionsEntry");
934         edit_button_adjustment.set_value (Keyboard::edit_button());
935         edit_button_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::edit_button_changed));
936
937         set_popdown_strings (delete_modifier_combo, dumb);
938         delete_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::delete_modifier_chosen));
939
940         for (int x = 0; modifiers[x].name; ++x) {
941                 if (modifiers[x].modifier == Keyboard::delete_modifier ()) {
942                         delete_modifier_combo.set_active_text (_(modifiers[x].name));
943                         break;
944                 }
945         }
946
947         label = manage (new Label (_("Delete using")));
948         label->set_name ("OptionsLabel");
949         label->set_alignment (1.0, 0.5);
950                 
951         keyboard_mouse_table.attach (*label, 0, 1, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
952         keyboard_mouse_table.attach (delete_modifier_combo, 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
953
954         label = manage (new Label (_("+ button")));
955         label->set_name ("OptionsLabel");
956
957         keyboard_mouse_table.attach (*label, 3, 4, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
958         keyboard_mouse_table.attach (delete_button_spin, 4, 5, 1, 2, Gtk::FILL|Gtk::EXPAND, FILL);
959
960         delete_button_spin.set_name ("OptionsEntry");
961         delete_button_adjustment.set_value (Keyboard::delete_button());
962         delete_button_adjustment.signal_value_changed().connect (mem_fun(*this, &OptionEditor::delete_button_changed));
963
964         set_popdown_strings (snap_modifier_combo, dumb);
965         snap_modifier_combo.signal_changed().connect (mem_fun(*this, &OptionEditor::snap_modifier_chosen));
966         
967         for (int x = 0; modifiers[x].name; ++x) {
968                 if (modifiers[x].modifier == (guint) Keyboard::snap_modifier ()) {
969                         snap_modifier_combo.set_active_text (_(modifiers[x].name));
970                         break;
971                 }
972         }
973
974         label = manage (new Label (_("Ignore snap using")));
975         label->set_name ("OptionsLabel");
976         label->set_alignment (1.0, 0.5);
977         
978         keyboard_mouse_table.attach (*label, 0, 1, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
979         keyboard_mouse_table.attach (snap_modifier_combo, 1, 2, 2, 3, Gtk::FILL|Gtk::EXPAND, FILL);
980 }
981
982 void
983 OptionEditor::edit_modifier_chosen ()
984 {
985         string txt;
986         
987         txt = edit_modifier_combo.get_active_text();
988
989         for (int i = 0; modifiers[i].name; ++i) {
990                 if (txt == _(modifiers[i].name)) {
991                         Keyboard::set_edit_modifier (modifiers[i].modifier);
992                         break;
993                 }
994         }
995 }
996
997 void
998 OptionEditor::delete_modifier_chosen ()
999 {
1000         string txt;
1001         
1002         txt = delete_modifier_combo.get_active_text();
1003
1004         for (int i = 0; modifiers[i].name; ++i) {
1005                 if (txt == _(modifiers[i].name)) {
1006                         Keyboard::set_delete_modifier (modifiers[i].modifier);
1007                         break;
1008                 }
1009         }
1010 }
1011
1012 void
1013 OptionEditor::snap_modifier_chosen ()
1014 {
1015         string txt;
1016         
1017         txt = snap_modifier_combo.get_active_text();
1018
1019         for (int i = 0; modifiers[i].name; ++i) {
1020                 if (txt == _(modifiers[i].name)) {
1021                         Keyboard::set_snap_modifier (modifiers[i].modifier);
1022                         break;
1023                 }
1024         }
1025 }
1026
1027 void
1028 OptionEditor::delete_button_changed ()
1029 {
1030         Keyboard::set_delete_button ((guint) delete_button_adjustment.get_value());
1031 }
1032
1033 void
1034 OptionEditor::edit_button_changed ()
1035 {
1036         Keyboard::set_edit_button ((guint) edit_button_adjustment.get_value());
1037 }
1038
1039 void
1040 OptionEditor::fixup_combo_size (Gtk::ComboBoxText& combo, vector<string>& strings)
1041 {
1042         /* find the widest string */
1043
1044         string::size_type maxlen = 0;
1045         string maxstring;
1046
1047         for (vector<string>::iterator i = strings.begin(); i != strings.end(); ++i) {
1048                 string::size_type l;
1049
1050                 if ((l = (*i).length()) > maxlen) {
1051                         maxlen = l;
1052                         maxstring = *i;
1053                 }
1054         }
1055
1056         /* try to include ascenders and descenders */
1057
1058         if (maxstring.length() > 2) {
1059                 maxstring[0] = 'g';
1060                 maxstring[1] = 'l';
1061         }
1062
1063         const guint32 FUDGE = 10; // Combo's are stupid - they steal space from the entry for the button
1064
1065         set_size_request_to_display_given_text (combo, maxstring.c_str(), 10 + FUDGE, 10);
1066 }
1067