implement TC offset for slave&generator.
[ardour.git] / gtk2_ardour / option_editor.h
1 /*
2     Copyright (C) 2009 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
20 #ifndef __gtk_ardour_option_editor_h__
21 #define __gtk_ardour_option_editor_h__
22
23 #include <gtkmm/notebook.h>
24 #include <gtkmm/checkbutton.h>
25 #include <gtkmm/comboboxtext.h>
26 #include <gtkmm/spinbutton.h>
27 #include <gtkmm/table.h>
28 #include "gtkmm2ext/slider_controller.h"
29 #include "ardour_window.h"
30 #include "audio_clock.h"
31 #include "ardour/types.h"
32
33 /** @file option_editor.h
34  *  @brief Base class for option editing dialog boxes.
35  *
36  *  Code to provided the basis for dialogs which allow the user to edit options
37  *  from an ARDOUR::Configuration class.
38  *
39  *  The idea is that we have an OptionEditor class which is the dialog box.
40  *  This is essentially a GTK Notebook.  OptionEditorComponent objects can
41  *  then be added to the OptionEditor, and these components are arranged on
42  *  the pages of the Notebook.  There is also an OptionEditorComponent hierarchy
43  *  here, providing things like boolean and combobox option components.
44  *
45  *  It is intended that OptionEditor be subclassed to implement a particular
46  *  options dialog.
47  */
48
49 namespace ARDOUR {
50         class Configuration;
51 }
52
53 class OptionEditorPage;
54
55 /** Base class for components of an OptionEditor dialog */
56 class OptionEditorComponent
57 {
58 public:
59         virtual ~OptionEditorComponent() {}
60
61         /** Called when a configuration parameter's value has changed.
62          *  @param p parameter name
63          */
64         virtual void parameter_changed (std::string const & p) = 0;
65
66         /** Called to instruct the object to set its UI state from the configuration */
67         virtual void set_state_from_config () = 0;
68
69         /** Called to instruct the object to add itself to an OptionEditorPage */
70         virtual void add_to_page (OptionEditorPage *) = 0;
71
72         void add_widget_to_page (OptionEditorPage*, Gtk::Widget*);
73         void add_widgets_to_page (OptionEditorPage*, Gtk::Widget*, Gtk::Widget*);
74
75         void set_note (std::string const &);
76
77         virtual Gtk::Widget& tip_widget() = 0;
78
79 private:
80         void maybe_add_note (OptionEditorPage *, int);
81         
82         std::string _note;
83 };
84
85 /** A component which provides a subheading within the dialog */
86 class OptionEditorHeading : public OptionEditorComponent
87 {
88 public:
89         OptionEditorHeading (std::string const &);
90
91         void parameter_changed (std::string const &) {}
92         void set_state_from_config () {}
93         void add_to_page (OptionEditorPage *);
94
95         Gtk::Widget& tip_widget() { return *_label; }
96
97 private:
98         Gtk::Label* _label; ///< the label used for the heading
99 };
100
101 /** A component which provides a box into which a subclass can put arbitrary widgets */
102 class OptionEditorBox : public OptionEditorComponent
103 {
104 public:
105
106         /** Construct an OpenEditorBox */
107         OptionEditorBox ()
108         {
109                 _box = Gtk::manage (new Gtk::VBox);
110                 _box->set_spacing (4);
111         }
112
113         void parameter_changed (std::string const &) = 0;
114         void set_state_from_config () = 0;
115         void add_to_page (OptionEditorPage *);
116
117         Gtk::Widget& tip_widget() { return *_box->children().front().get_widget(); }
118
119 protected:
120
121         Gtk::VBox* _box; ///< constituent box for subclasses to add widgets to
122 };
123
124 /** Base class for components which provide UI to change an option */
125 class Option : public OptionEditorComponent
126 {
127 public:
128         /** Construct an Option.
129          *  @param i Option id (e.g. "plugins-stop-with-transport")
130          *  @param n User-visible name (e.g. "Stop plugins when the transport is stopped")
131          */
132         Option (std::string const & i,
133                 std::string const & n
134                 )
135                 : _id (i),
136                   _name (n)
137         {}
138
139         void parameter_changed (std::string const & p)
140         {
141                 if (p == _id) {
142                         set_state_from_config ();
143                 }
144         }
145
146         virtual void set_state_from_config () = 0;
147         virtual void add_to_page (OptionEditorPage*) = 0;
148
149         std::string id () const {
150                 return _id;
151         }
152
153 protected:
154
155         std::string _id;
156         std::string _name;
157 };
158
159 /** Component which provides the UI to handle a boolean option using a GTK CheckButton */
160 class BoolOption : public Option
161 {
162 public:
163
164         BoolOption (std::string const &, std::string const &, sigc::slot<bool>, sigc::slot<bool, bool>);
165         void set_state_from_config ();
166         void add_to_page (OptionEditorPage*);
167
168         void set_sensitive (bool yn) {
169                 _button->set_sensitive (yn);
170         }
171
172         Gtk::Widget& tip_widget() { return *_button; }
173
174 private:
175
176         void toggled ();
177
178         sigc::slot<bool> _get; ///< slot to get the configuration variable's value
179         sigc::slot<bool, bool> _set;  ///< slot to set the configuration variable's value
180         Gtk::CheckButton* _button; ///< UI button
181 };
182
183 /** Component which provides the UI to handle a string option using a GTK Entry */
184 class EntryOption : public Option
185 {
186 public:
187
188         EntryOption (std::string const &, std::string const &, sigc::slot<std::string>, sigc::slot<bool, std::string>);
189         void set_state_from_config ();
190         void add_to_page (OptionEditorPage*);
191
192         Gtk::Widget& tip_widget() { return *_entry; }
193
194 private:
195
196         void activated ();
197
198         sigc::slot<std::string> _get; ///< slot to get the configuration variable's value
199         sigc::slot<bool, std::string> _set;  ///< slot to set the configuration variable's value
200         Gtk::Label* _label; ///< UI label
201         Gtk::Entry* _entry; ///< UI entry
202 };
203
204
205 /** Component which provides the UI to handle an enumerated option using a GTK ComboBox.
206  *  The template parameter is the enumeration.
207  */
208 template <class T>
209 class ComboOption : public Option
210 {
211 public:
212
213         /** Construct an ComboOption.
214          *  @param i id
215          *  @param n User-visible name.
216          *  @param g Slot to get the variable's value.
217          *  @param s Slot to set the variable's value.
218          */
219         ComboOption (
220                 std::string const & i,
221                 std::string const & n,
222                 sigc::slot<T> g,
223                 sigc::slot<bool, T> s
224                 )
225                 : Option (i, n),
226                   _get (g),
227                   _set (s)
228         {
229                 _label = manage (new Gtk::Label (n + ":"));
230                 _label->set_alignment (0, 0.5);
231                 _combo = manage (new Gtk::ComboBoxText);
232                 _combo->signal_changed().connect (sigc::mem_fun (*this, &ComboOption::changed));
233         }
234
235         void set_state_from_config () {
236                 uint32_t r = 0;
237                 while (r < _options.size() && _get () != _options[r]) {
238                         ++r;
239                 }
240
241                 if (r < _options.size()) {
242                         _combo->set_active (r);
243                 }
244         }
245
246         void add_to_page (OptionEditorPage* p)
247         {
248                 add_widgets_to_page (p, _label, _combo);
249         }
250
251         /** Add an allowed value for this option.
252          *  @param e Enumeration.
253          *  @param o User-visible name for this value.
254          */
255         void add (T e, std::string const & o) {
256                 _options.push_back (e);
257                 _combo->append_text (o);
258         }
259
260         void clear () {
261                 _combo->clear_items();
262                 _options.clear ();
263         }
264
265         void changed () {
266                 uint32_t const r = _combo->get_active_row_number ();
267                 if (r < _options.size()) {
268                         _set (_options[r]);
269                 }
270         }
271
272         void set_sensitive (bool yn) {
273                 _combo->set_sensitive (yn);
274         }
275
276         Gtk::Widget& tip_widget() { return *_combo; }
277
278 private:
279
280         sigc::slot<T> _get;
281         sigc::slot<bool, T> _set;
282         Gtk::Label* _label;
283         Gtk::ComboBoxText* _combo;
284         std::vector<T> _options;
285 };
286
287
288 /** Component which provides the UI for a GTK HScale.
289  */
290 class HSliderOption : public Option
291 {
292 public:
293
294         /** Construct an ComboOption.
295          *  @param i id
296          *  @param n User-visible name.
297          *  @param g Slot to get the variable's value.
298          *  @param s Slot to set the variable's value.
299          */
300         HSliderOption (
301                 std::string const & i,
302                 std::string const & n,
303                 Gtk::Adjustment &adj
304                 )
305                 : Option (i, n)
306         {
307                 _label = manage (new Gtk::Label (n + ":"));
308                 _label->set_alignment (0, 0.5);
309                 _hscale = manage (new Gtk::HScale(adj));
310         }
311
312         void set_state_from_config () { }
313
314         void add_to_page (OptionEditorPage* p)
315         {
316                 add_widgets_to_page (p, _label, _hscale);
317         }
318
319         void set_sensitive (bool yn) {
320                 _hscale->set_sensitive (yn);
321         }
322
323         Gtk::Widget& tip_widget() { return *_hscale; }
324
325 private:
326         Gtk::Label* _label;
327         Gtk::HScale* _hscale;
328 };
329
330 /** Component which provides the UI to handle an enumerated option using a GTK ComboBox.
331  *  The template parameter is the enumeration.
332  */
333 class ComboStringOption : public Option
334 {
335 public:
336
337         /** Construct an ComboOption.
338          *  @param i id
339          *  @param n User-visible name.
340          *  @param g Slot to get the variable's value.
341          *  @param s Slot to set the variable's value.
342          */
343         ComboStringOption (
344                 std::string const & i,
345                 std::string const & n,
346                 sigc::slot<std::string> g,
347                 sigc::slot<bool, std::string> s
348                 )
349                 : Option (i, n),
350                   _get (g),
351                   _set (s)
352         {
353                 _label = manage (new Gtk::Label (n + ":"));
354                 _label->set_alignment (0, 0.5);
355                 _combo = manage (new Gtk::ComboBoxText);
356                 _combo->signal_changed().connect (sigc::mem_fun (*this, &ComboStringOption::changed));
357         }
358
359         void set_state_from_config () {
360                 _combo->set_active_text (_get());
361         }
362
363         void add_to_page (OptionEditorPage* p)
364         {
365                 add_widgets_to_page (p, _label, _combo);
366         }
367
368         /** Set the allowed strings for this option
369          *  @param strings a vector of allowed strings
370          */
371         void set_popdown_strings (const std::vector<std::string>& strings) {
372                 _combo->clear_items ();
373                 for (std::vector<std::string>::const_iterator i = strings.begin(); i != strings.end(); ++i) {
374                         _combo->append_text (*i);
375                 }
376         }
377
378         void clear () {
379                 _combo->clear_items();
380         }
381
382         void changed () {
383                 _set (_combo->get_active_text ());
384         }
385
386         void set_sensitive (bool yn) {
387                 _combo->set_sensitive (yn);
388         }
389
390         Gtk::Widget& tip_widget() { return *_combo; }
391
392 private:
393         sigc::slot<std::string> _get;
394         sigc::slot<bool, std::string> _set;
395         Gtk::Label* _label;
396         Gtk::ComboBoxText* _combo;
397 };
398
399
400 /** Component which provides the UI to handle a boolean option which needs
401  *  to be represented as a ComboBox to be clear to the user.
402  */
403 class BoolComboOption : public Option
404 {
405 public:
406
407         BoolComboOption (
408                 std::string const &,
409                 std::string const &,
410                 std::string const &,
411                 std::string const &,
412                 sigc::slot<bool>,
413                 sigc::slot<bool, bool>
414                 );
415
416         void set_state_from_config ();
417         void add_to_page (OptionEditorPage *);
418         void changed ();
419         void set_sensitive (bool);
420
421         Gtk::Widget& tip_widget() { return *_combo; }
422
423 private:
424
425         sigc::slot<bool> _get;
426         sigc::slot<bool, bool> _set;
427         Gtk::Label* _label;
428         Gtk::ComboBoxText* _combo;
429 };
430
431
432
433 /** Component which provides the UI to handle an numeric option using a GTK SpinButton */
434 template <class T>
435 class SpinOption : public Option
436 {
437 public:
438         /** Construct an SpinOption.
439          *  @param i id
440          *  @param n User-visible name.
441          *  @param g Slot to get the variable's value.
442          *  @param s Slot to set the variable's value.
443          *  @param min Variable minimum value.
444          *  @param max Variable maximum value.
445          *  @param step Step for the spin button.
446          *  @param page Page step for the spin button.
447          *  @param unit Unit name.
448          *  @param scale Scaling factor (such that for a value x in the spinbutton, x * scale is written to the config)
449          */
450         SpinOption (
451                 std::string const & i,
452                 std::string const & n,
453                 sigc::slot<T> g,
454                 sigc::slot<bool, T> s,
455                 T min,
456                 T max,
457                 T step,
458                 T page,
459                 std::string const & unit = "",
460                 float scale = 1
461                 )
462                 : Option (i, n),
463                   _get (g),
464                   _set (s),
465                   _scale (scale)
466         {
467                 _label = manage (new Gtk::Label (n + ":"));
468                 _label->set_alignment (0, 0.5);
469
470                 _spin = manage (new Gtk::SpinButton);
471                 _spin->set_range (min, max);
472                 _spin->set_increments (step, page);
473
474                 _box = manage (new Gtk::HBox);
475                 _box->pack_start (*_spin, true, true);
476                 _box->set_spacing (4);
477                 if (unit.length()) {
478                         _box->pack_start (*manage (new Gtk::Label (unit)), false, false);
479                 }
480
481                 _spin->signal_value_changed().connect (sigc::mem_fun (*this, &SpinOption::changed));
482         }
483
484         void set_state_from_config ()
485         {
486                 _spin->set_value (_get () / _scale);
487         }
488
489         void add_to_page (OptionEditorPage* p)
490         {
491                 add_widgets_to_page (p, _label, _box);
492         }
493
494         void changed ()
495         {
496                 _set (static_cast<T> (_spin->get_value ()) * _scale);
497         }
498
499         Gtk::Widget& tip_widget() { return *_spin; }
500
501 private:
502         sigc::slot<T> _get;
503         sigc::slot<bool, T> _set;
504         float _scale;
505         Gtk::Label* _label;
506         Gtk::HBox* _box;
507         Gtk::SpinButton* _spin;
508 };
509
510 class FaderOption : public Option
511 {
512 public:
513
514         FaderOption (std::string const &, std::string const &, sigc::slot<ARDOUR::gain_t> g, sigc::slot<bool, ARDOUR::gain_t> s);
515         void set_state_from_config ();
516         void add_to_page (OptionEditorPage *);
517
518         Gtk::Widget& tip_widget() { return *_db_slider; }
519
520 private:
521         void db_changed ();
522
523         Gtk::Adjustment _db_adjustment;
524         Gtkmm2ext::HSliderController* _db_slider;
525         Glib::RefPtr<Gdk::Pixbuf> _pix;
526         Glib::RefPtr<Gdk::Pixbuf> _pix_desensitised;
527         Gtk::Entry _db_display;
528         Gtk::Label _label;
529         Gtk::HBox _box;
530         Gtk::VBox _fader_centering_box;
531         sigc::slot<ARDOUR::gain_t> _get;
532         sigc::slot<bool, ARDOUR::gain_t> _set;
533 };
534
535 class ClockOption : public Option
536 {
537 public:
538         ClockOption (std::string const &, std::string const &, sigc::slot<std::string>, sigc::slot<bool, std::string>);
539         void set_state_from_config ();
540         void add_to_page (OptionEditorPage *);
541         void set_session (ARDOUR::Session *);
542
543         Gtk::Widget& tip_widget() { return _clock; }
544         AudioClock& clock() { return _clock; }
545
546 private:
547         void save_clock_time ();
548         Gtk::Label _label;
549         AudioClock _clock;
550         sigc::slot<std::string> _get;
551         sigc::slot<bool, std::string> _set;
552         ARDOUR::Session *_session;
553 };
554
555 class DirectoryOption : public Option
556 {
557 public:
558         DirectoryOption (std::string const &, std::string const &, sigc::slot<std::string>, sigc::slot<bool, std::string>);
559
560         void set_state_from_config ();
561         void add_to_page (OptionEditorPage *);
562
563         Gtk::Widget& tip_widget() { return _file_chooser; }
564
565 private:
566         void file_set ();
567         void current_folder_set ();
568         
569         sigc::slot<std::string> _get; ///< slot to get the configuration variable's value
570         sigc::slot<bool, std::string> _set;  ///< slot to set the configuration variable's value
571         Gtk::FileChooserButton _file_chooser;
572 };
573
574 /** Class to represent a single page in an OptionEditor's notebook.
575  *  Pages are laid out using a 3-column table; the 1st column is used
576  *  to indent non-headings, and the 2nd and 3rd for actual content.
577  */
578 class OptionEditorPage
579 {
580 public:
581         OptionEditorPage (Gtk::Notebook&, std::string const &);
582
583         Gtk::VBox box;
584         Gtk::Table table;
585         std::list<OptionEditorComponent*> components;
586 };
587
588 /** The OptionEditor dialog base class */
589 class OptionEditor : public ArdourWindow
590 {
591 public:
592         OptionEditor (ARDOUR::Configuration *, std::string const &);
593         ~OptionEditor ();
594
595         void add_option (std::string const &, OptionEditorComponent *);
596
597         void set_current_page (std::string const &);
598
599 protected:
600
601         virtual void parameter_changed (std::string const &);
602
603         ARDOUR::Configuration* _config;
604
605 private:
606
607         PBD::ScopedConnection config_connection;
608
609         Gtk::Notebook _notebook;
610         std::map<std::string, OptionEditorPage*> _pages;
611 };
612
613 #endif /* __gtk_ardour_option_editor_h__ */
614
615