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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3329 - (hide annotations) (download) (as text)
Sun Jul 23 18:31:53 2017 UTC (6 years, 9 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 13365 byte(s)
* Added EG state machine options for EG1 and EG2, which may be used
  to configure whether the individual EG stages may be cancelled.
* Bumped version (1.0.0.svn60).

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

  ViewVC Help
Powered by ViewVC