/[svn]/gigedit/trunk/src/gigedit/paramedit.h
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/paramedit.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1261 by persson, Thu Jul 5 17:12:20 2007 UTC revision 3441 by schoenebeck, Sun Dec 9 20:48:18 2018 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006, 2007 Andreas Persson   * Copyright (C) 2006-2017 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 20  Line 20 
20  #ifndef GIGEDIT_PARAMEDIT_H  #ifndef GIGEDIT_PARAMEDIT_H
21  #define GIGEDIT_PARAMEDIT_H  #define GIGEDIT_PARAMEDIT_H
22    
23  #include <gig.h>  #ifdef LIBGIG_HEADER_FILE
24    # include LIBGIG_HEADER_FILE(gig.h)
25    #else
26    # include <gig.h>
27    #endif
28    
29  #include <gtkmm/adjustment.h>  #include <cmath>
30  #include <gtkmm/alignment.h>  
31    #include "compat.h"
32    
33    #include <glibmm/convert.h>
34  #include <gtkmm/box.h>  #include <gtkmm/box.h>
35    #include <gtkmm/adjustment.h>
36    #if HAS_GTKMM_ALIGNMENT
37    # include <gtkmm/alignment.h>
38    #endif
39    #include <gtkmm/checkbutton.h>
40  #include <gtkmm/comboboxtext.h>  #include <gtkmm/comboboxtext.h>
41    #include <gtkmm/frame.h>
42  #include <gtkmm/label.h>  #include <gtkmm/label.h>
43  #include <gtkmm/scale.h>  #include <gtkmm/scale.h>
44  #include <gtkmm/spinbutton.h>  #include <gtkmm/spinbutton.h>
45    #if USE_GTKMM_GRID
46    # include <gtkmm/grid.h>
47    #else
48    # include <gtkmm/table.h>
49    #endif
50    #include <gtkmm/textview.h>
51    
52    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 12) || GTKMM_MAJOR_VERSION < 2
53    #define OLD_TOOLTIPS
54  #include <gtkmm/tooltips.h>  #include <gtkmm/tooltips.h>
55    #endif
56    
57    int note_value(const Glib::ustring& note);
58    Glib::ustring note_str(int note);
59    
60    void spin_button_show_notes(Gtk::SpinButton& spin_button);
61    
62  class LabelWidget {  class LabelWidget {
63  public:  public:
# Line 38  public: Line 66  public:
66    
67      LabelWidget(const char* labelText, Gtk::Widget& widget);      LabelWidget(const char* labelText, Gtk::Widget& widget);
68      void set_sensitive(bool sensitive = true);      void set_sensitive(bool sensitive = true);
69      sigc::signal<void> signal_changed_by_user() {      sigc::signal<void>& signal_value_changed() {
70          return sig_changed;          return sig_changed;
71      }      }
72  protected:  protected:
73        virtual void on_show_tooltips_changed();
74    #ifdef OLD_TOOLTIPS
75      Gtk::Tooltips tooltips;      Gtk::Tooltips tooltips;
76    #endif
77      sigc::signal<void> sig_changed;      sigc::signal<void> sig_changed;
78  };  };
79    
80    class ReadOnlyLabelWidget : public LabelWidget {
81    public:
82        Gtk::Label text;
83    
84        ReadOnlyLabelWidget(const char* leftHandText);
85        ReadOnlyLabelWidget(const char* leftHandText, const char* rightHandText);
86    };
87    
88  class NumEntry : public LabelWidget {  class NumEntry : public LabelWidget {
89  protected:  protected:
90    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
91      Gtk::Adjustment adjust;      Gtk::Adjustment adjust;
92      Gtk::HScale scale;  #else
93        Glib::RefPtr<Gtk::Adjustment> adjust;
94    #endif
95        HScale scale;
96      Gtk::SpinButton spinbutton;      Gtk::SpinButton spinbutton;
97      Gtk::HBox box;      HBox box;
98    
99      int round_to_int(double x) {      static int round_to_int(double x) {
100          return int(x < 0.0 ? x - 0.5 : x + 0.5);          return int(x < 0.0 ? x - 0.5 : x + 0.5);
101      }      }
102    
103  public:  public:
104      NumEntry(const char* labelText, double lower = 0, double upper = 127,      NumEntry(const char* labelText, double lower = 0, double upper = 127,
105               int decimals = 0);               int decimals = 0);
     void set_value(double value) {  
         spinbutton.set_value(value);  
     }  
     double get_value() const {  
         return spinbutton.get_value();  
     }  
106      void set_tip(const Glib::ustring& tip_text) {      void set_tip(const Glib::ustring& tip_text) {
107    #ifdef OLD_TOOLTIPS
108          tooltips.set_tip(spinbutton, tip_text);          tooltips.set_tip(spinbutton, tip_text);
109    #else
110            spinbutton.set_tooltip_text(tip_text);
111    #endif
112      }      }
113      void set_upper(double upper) {      void set_upper(double upper) {
114    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
115          adjust.set_upper(upper);          adjust.set_upper(upper);
116    #else
117            adjust->set_upper(upper);
118    #endif
119      }      }
120        void on_show_tooltips_changed();
121  };  };
122    
123  class NumEntryGain : public NumEntry {  class NumEntryGain : public NumEntry {
124  private:  private:
125        int32_t value;
126      void value_changed();      void value_changed();
     int32_t* ptr;  
127      double coeff;      double coeff;
128        bool connected;
129  public:  public:
130      NumEntryGain(const char* labelText,      NumEntryGain(const char* labelText,
131                   double lower, double upper, int decimals, double coeff);                   double lower, double upper, int decimals, double coeff);
132      void set_ptr(int32_t* ptr);      int32_t get_value() const { return value; }
133        void set_value(int32_t value);
134  };  };
135    
136  template<typename T>  template<typename T>
137  class NumEntryTemp : public NumEntry {  class NumEntryTemp : public NumEntry {
138  private:  private:
139      T* ptr;      T value;
140      void value_changed();      void value_changed();
141  public:  public:
142      NumEntryTemp(const char* labelText,      NumEntryTemp(const char* labelText,
143                   double lower = 0, double upper = 127, int decimals = 0);                   double lower = 0, double upper = 127, int decimals = 0);
144      void set_ptr(T* ptr);      T get_value() const { return value; }
145        void set_value(T value);
146  };  };
147    
148  template<typename T>  template<typename T>
149  NumEntryTemp<T>::NumEntryTemp(const char* labelText,  NumEntryTemp<T>::NumEntryTemp(const char* labelText,
150                                double lower, double upper, int decimals) :                                double lower, double upper, int decimals) :
151      NumEntry(labelText, lower, upper, decimals)      NumEntry(labelText, lower, upper, decimals),
152        value(0)
153  {  {
154      spinbutton.signal_value_changed().connect(      spinbutton.signal_value_changed().connect(
155          sigc::mem_fun(*this, &NumEntryTemp::value_changed));          sigc::mem_fun(*this, &NumEntryTemp::value_changed));
# Line 107  NumEntryTemp<T>::NumEntryTemp(const char Line 158  NumEntryTemp<T>::NumEntryTemp(const char
158  template<typename T>  template<typename T>
159  void NumEntryTemp<T>::value_changed()  void NumEntryTemp<T>::value_changed()
160  {  {
161      if (ptr) {      const double f = pow(10, spinbutton.get_digits());
162          const double f = pow(10, spinbutton.get_digits());      int new_value = round_to_int(spinbutton.get_value() * f);
163          int new_value = round_to_int(spinbutton.get_value() * f);      if (new_value != round_to_int(value * f)) {
164          if (new_value != round_to_int(*ptr * f)) {          value = T(new_value / f);
165              *ptr = T(new_value / f);          sig_changed();
             sig_changed();  
         }  
166      }      }
167  }  }
168    
169  template<typename T>  template<typename T>
170  void NumEntryTemp<T>::set_ptr(T* ptr)  void NumEntryTemp<T>::set_value(T value)
171  {  {
172      this->ptr = 0;  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
173      if (ptr) set_value(*ptr);      if (value > adjust.get_upper()) value = T(adjust.get_upper());
174      this->ptr = ptr;  #else
175        if (value > adjust->get_upper()) value = T(adjust->get_upper());
176    #endif
177        if (this->value != value) {
178            this->value = value;
179            const double f = pow(10, spinbutton.get_digits());
180            if (round_to_int(spinbutton.get_value() * f) != round_to_int(value * f)) {
181                spinbutton.set_value(value);
182            }
183            sig_changed();
184        }
185  }  }
186    
187    
# Line 137  private: Line 196  private:
196    
197  class NumEntryPermille : public NumEntry {  class NumEntryPermille : public NumEntry {
198  private:  private:
199      uint16_t* ptr;      uint16_t value;
200      void value_changed();      void value_changed();
201  public:  public:
202      NumEntryPermille(const char* labelText,      NumEntryPermille(const char* labelText,
203                       double lower = 0, double upper = 127, int decimals = 0);                       double lower = 0, double upper = 127, int decimals = 0);
204      void set_ptr(uint16_t* ptr);      uint16_t get_value() const { return value; }
205        void set_value(uint16_t value);
206  };  };
207    
208    class ChoiceEntryBase : public LabelWidget {
209    protected:
210        ChoiceEntryBase(const char* labelText, Gtk::Widget& widget) : LabelWidget(labelText, widget) {};
211        Gtk::ComboBoxText combobox;
212        void on_show_tooltips_changed();
213    };
214    
215  template<typename T>  template<typename T>
216  class ChoiceEntry : public LabelWidget {  class ChoiceEntry : public ChoiceEntryBase {
217  private:  private:
218      Gtk::ComboBoxText combobox;  #if HAS_GTKMM_ALIGNMENT
219      Gtk::Alignment align;      Gtk::Alignment align;
220      T* ptr;  #endif
     void value_changed();  
221      const T* values;      const T* values;
222  public:  public:
223      ChoiceEntry(const char* labelText);      ChoiceEntry(const char* labelText);
224        T get_value() const;
225        void set_value(T value);
226      void set_choices(const char** texts, const T* values);      void set_choices(const char** texts, const T* values);
227      void set_ptr(T* ptr);  
     int get_active_row_number() { return combobox.get_active_row_number(); }  
     Glib::SignalProxy0<void> signal_changed() {  
         return combobox.signal_changed();  
     }  
228      void set_tip(const Glib::ustring& tip_text) {      void set_tip(const Glib::ustring& tip_text) {
229          tooltips.set_tip(combobox, tip_text); //FIXME: don't Gtk::ComboBoxes support tooltips ???  #ifdef OLD_TOOLTIPS
230            tooltips.set_tip(combobox, tip_text);
231    #else
232            combobox.set_tooltip_text(tip_text);
233    #endif
234      }      }
235  };  };
236    
237  template<typename T>  template<typename T>
238  ChoiceEntry<T>::ChoiceEntry(const char* labelText) :  ChoiceEntry<T>::ChoiceEntry(const char* labelText) :
239    #if HAS_GTKMM_ALIGNMENT
240        ChoiceEntryBase(labelText, align),
241      align(0, 0, 0, 0),      align(0, 0, 0, 0),
242      LabelWidget(labelText, align)  #else
243        ChoiceEntryBase(labelText, combobox),
244    #endif
245        values(0)
246  {  {
247      combobox.signal_changed().connect(      combobox.signal_changed().connect(sig_changed.make_slot());
248          sigc::mem_fun(*this, &ChoiceEntry::value_changed));  #if HAS_GTKMM_ALIGNMENT
249      align.add(combobox);      align.add(combobox);
250    #endif
251  }  }
252    
253  template<typename T>  template<typename T>
254  void ChoiceEntry<T>::set_choices(const char** texts, const T* values)  void ChoiceEntry<T>::set_choices(const char** texts, const T* values)
255  {  {
256        combobox.remove_all();
257      for (int i = 0 ; texts[i] ; i++) {      for (int i = 0 ; texts[i] ; i++) {
258    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 24) || GTKMM_MAJOR_VERSION < 2
259          combobox.append_text(texts[i]);          combobox.append_text(texts[i]);
260    #else
261            combobox.append(texts[i]);
262    #endif
263      }      }
264      this->values = values;      this->values = values;
265  }  }
266    
267  template<typename T>  template<typename T>
268  void ChoiceEntry<T>::value_changed()  T ChoiceEntry<T>::get_value() const
269  {  {
270      if (ptr) {      int rowno = combobox.get_active_row_number();
271          int rowno = combobox.get_active_row_number();      return values[rowno];
         if (rowno != -1) {  
             *ptr = values[rowno];  
             sig_changed();  
         }  
     }  
272  }  }
273    
274  template<typename T>  template<typename T>
275  void ChoiceEntry<T>::set_ptr(T* ptr)  void ChoiceEntry<T>::set_value(T value)
276  {  {
277      this->ptr = 0;      int row = 0;
278      if (ptr) {      int nb_rows = combobox.get_model()->children().size();
279          T value = *ptr;      for (; row < nb_rows ; row++) {
280          int row = 0;          if (value == values[row]) break;
281          int nb_rows = combobox.get_model()->children().size();      }
282          for (; row < nb_rows ; row++) {      combobox.set_active(row == nb_rows ? -1 : row);
             if (value == values[row]) break;  
         }  
         combobox.set_active(row == nb_rows ? -1 : row);  
     } else combobox.set_active(-1);  
     this->ptr = ptr;  
283  }  }
284    
285    
286  class ChoiceEntryLeverageCtrl : public LabelWidget {  class ChoiceEntryLeverageCtrl : public LabelWidget {
287  private:  private:
288        gig::leverage_ctrl_t value;
289      Gtk::ComboBoxText combobox;      Gtk::ComboBoxText combobox;
290    #if HAS_GTKMM_ALIGNMENT
291      Gtk::Alignment align;      Gtk::Alignment align;
292      gig::leverage_ctrl_t* ptr;  #endif
293      void value_changed();      void value_changed();
294    protected:
295        void on_show_tooltips_changed();
296  public:  public:
297      ChoiceEntryLeverageCtrl(const char* labelText);      ChoiceEntryLeverageCtrl(const char* labelText);
298      void set_ptr(gig::leverage_ctrl_t* ptr);      gig::leverage_ctrl_t get_value() const { return value; }
299      int get_active_row_number() { return combobox.get_active_row_number(); }      void set_value(gig::leverage_ctrl_t value);
300      Glib::SignalProxy0<void> signal_changed() {      void set_tip(const Glib::ustring& tip_text) {
301          return combobox.signal_changed();          combobox.set_tooltip_text(tip_text);
302      }      }
303  };  };
304    
# Line 234  public: Line 306  public:
306  class BoolEntry : public LabelWidget {  class BoolEntry : public LabelWidget {
307  private:  private:
308      Gtk::CheckButton checkbutton;      Gtk::CheckButton checkbutton;
     bool* ptr;  
     void value_changed();  
309  public:  public:
310      BoolEntry(const char* labelText);      BoolEntry(const char* labelText);
311      bool get_active() { return checkbutton.get_active(); }      bool get_value() const { return checkbutton.get_active(); }
312      bool set_active(bool b) { checkbutton.set_active(b); }      void set_value(bool value) { checkbutton.set_active(value); }
313      Glib::SignalProxy0<void> signal_toggled() {  
         return checkbutton.signal_toggled();  
     }  
     void set_ptr(bool* ptr);  
314      void set_tip(const Glib::ustring& tip_text) {      void set_tip(const Glib::ustring& tip_text) {
315    #ifdef OLD_TOOLTIPS
316          tooltips.set_tip(checkbutton, tip_text);          tooltips.set_tip(checkbutton, tip_text);
317    #else
318            checkbutton.set_tooltip_text(tip_text);
319    #endif
320      }      }
321  };  };
322    
323    class BoolBox : public Gtk::CheckButton {
324    public:
325        BoolBox(const char* labelText);
326        bool get_value() const { return get_active(); }
327        void set_value(bool value) { set_active(value); }
328        sigc::signal<void>& signal_value_changed() { return sig_changed; }
329    protected:
330        void on_show_tooltips_changed();
331    
332        sigc::signal<void> sig_changed;
333    };
334    
335    
336  class BoolEntryPlus6 : public LabelWidget {  class BoolEntryPlus6 : public LabelWidget {
337  private:  private:
338      Gtk::CheckButton checkbutton;      Gtk::CheckButton checkbutton;
     int32_t* ptr;  
339      void value_changed();      void value_changed();
340      NumEntryGain& eGain;      NumEntryGain& eGain;
341      int32_t plus6value;      int32_t plus6value;
342    protected:
343        void on_show_tooltips_changed();
344  public:  public:
345      BoolEntryPlus6(const char* labelText, NumEntryGain& eGain, int32_t plus6value);      BoolEntryPlus6(const char* labelText, NumEntryGain& eGain, int32_t plus6value);
346      void set_ptr(int32_t* ptr);      int32_t get_value() const;
347      bool get_active() { return checkbutton.get_active(); }      void set_value(int32_t value);
     Glib::SignalProxy0<void> signal_toggled() {  
         return checkbutton.signal_toggled();  
     }  
348  };  };
349    
350    
351  class StringEntry : public LabelWidget {  class StringEntry : public LabelWidget {
352  private:  private:
353      Gtk::Entry entry;      Gtk::Entry entry;
     gig::String* ptr;  
     void value_changed();  
354  public:  public:
355      StringEntry(const char* labelText);      StringEntry(const char* labelText);
356      void set_ptr(gig::String* ptr);      gig::String get_value() const;
357        void set_value(const gig::String& value);
358        void set_width_chars(int n_chars) { entry.set_width_chars(n_chars); }
359    };
360    
361    class StringEntryMultiLine : public LabelWidget {
362    private:
363        Gtk::TextView text_view;
364        Glib::RefPtr<Gtk::TextBuffer> text_buffer;
365        Gtk::Frame frame;
366    protected:
367        void on_show_tooltips_changed();
368    public:
369        StringEntryMultiLine(const char* labelText);
370        gig::String get_value() const;
371        void set_value(const gig::String& value);
372  };  };
373    
374    
375    /**
376     * Container widget for LabelWidgets.
377     */
378    class Table :
379    #if USE_GTKMM_GRID
380        public Gtk::Grid
381    #else
382        public Gtk::Table
383    #endif
384    {
385    public:
386        Table(int x, int y);
387        void add(BoolEntry& boolentry);
388        void add(BoolEntryPlus6& boolentry);
389        void add(LabelWidget& labelwidget);
390    private:
391    #if USE_GTKMM_GRID
392        int cols;
393    #endif
394        int rowno;
395    };
396    
397    
398    /**
399     * Base class for editor components that use LabelWidgets to edit
400     * member variables of the same class. By connecting the widgets to
401     * members of the model class, the model is automatically kept
402     * updated.
403     */
404    template<class M>
405    class PropEditor {
406    public:
407        sigc::signal<void>& signal_changed() {
408            return sig_changed;
409        }
410    protected:
411        M* m;
412        int update_model; // to prevent infinite update loops
413        PropEditor() : m(0), update_model(0) { }
414        sigc::signal<void> sig_changed;
415    
416        template<class C, typename T>
417        void connect(C& widget, T M::* member) {
418            // gcc 4.1.2 needs this temporary variable to resolve the
419            // address
420            void (PropEditor::*f)(const C* w, T M::* member) =
421                &PropEditor::set_member;
422            widget.signal_value_changed().connect(
423                sigc::bind(sigc::mem_fun(*this, f), &widget, member));
424    
425            void (PropEditor::*g)(C* w, T M::* member) =
426                &PropEditor::get_member;
427            sig.connect(
428                sigc::bind(sigc::mem_fun(*this, g), &widget, member));
429        }
430    
431        template<class C, class S, typename T>
432        void connect(C& widget, void (S::*setter)(T)) {
433            void (PropEditor::*f)(const C* w, void (S::*setter)(T)) =
434                &PropEditor<M>::call_setter;
435            widget.signal_value_changed().connect(
436                sigc::bind(sigc::mem_fun(*this, f), &widget, setter));
437        }
438    
439        void connect(NoteEntry& eKeyRangeLow, NoteEntry& eKeyRangeHigh,
440                     gig::range_t M::* range) {
441            eKeyRangeLow.signal_value_changed().connect(
442                sigc::bind(
443                    sigc::mem_fun(*this, &PropEditor::key_range_low_changed),
444                    &eKeyRangeLow, &eKeyRangeHigh, range));
445            eKeyRangeHigh.signal_value_changed().connect(
446                sigc::bind(
447                    sigc::mem_fun(*this, &PropEditor::key_range_high_changed),
448                    &eKeyRangeLow, &eKeyRangeHigh, range));
449            sig.connect(
450                sigc::bind(sigc::mem_fun(*this, &PropEditor::get_key_range),
451                           &eKeyRangeLow, &eKeyRangeHigh, range));
452        }
453    
454        void update(M* m) {
455            update_model++;
456            this->m = m;
457            sig.emit();
458            update_model--;
459        }
460    
461    private:
462        sigc::signal<void> sig;
463    
464        void key_range_low_changed(NoteEntry* eKeyRangeLow,
465                                   NoteEntry* eKeyRangeHigh,
466                                   gig::range_t M::* range) {
467            if (update_model == 0) {
468                uint8_t value = eKeyRangeLow->get_value();
469                (m->*range).low = value;
470                if (value > (m->*range).high) {
471                    eKeyRangeHigh->set_value(value);
472                }
473                sig_changed();
474            }
475        }
476    
477        void key_range_high_changed(NoteEntry* eKeyRangeLow,
478                                    NoteEntry* eKeyRangeHigh,
479                                    gig::range_t M::* range) {
480            if (update_model == 0) {
481                uint8_t value = eKeyRangeHigh->get_value();
482                (m->*range).high = value;
483                if (value < (m->*range).low) {
484                    eKeyRangeLow->set_value(value);
485                }
486                sig_changed();
487            }
488        }
489    
490        template<class C, typename T>
491        void set_member(const C* w, T M::* member) {
492            if (update_model == 0) {
493                m->*member = w->get_value();
494                sig_changed();
495            }
496        }
497    
498        template<class C, typename T>
499        void get_member(C* w, T M::* member) {
500            w->set_value(m->*member);
501        }
502    
503        void get_key_range(NoteEntry* eKeyRangeLow,
504                           NoteEntry* eKeyRangeHigh,
505                           gig::range_t M::* range) const {
506            eKeyRangeLow->set_value((m->*range).low);
507            eKeyRangeHigh->set_value((m->*range).high);
508        }
509    
510        template<class C, class S, typename T>
511        void call_setter(const C* w, void (S::*setter)(T)) {
512            if (update_model == 0) {
513                (static_cast<S*>(this)->*setter)(w->get_value());
514                sig_changed();
515            }
516        }
517    };
518    
519  #endif  #endif

Legend:
Removed from v.1261  
changed lines
  Added in v.3441

  ViewVC Help
Powered by ViewVC