/[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 3623 by persson, Sun Feb 3 13:27:28 2019 UTC revision 3624 by schoenebeck, Wed Oct 2 17:11:30 2019 UTC
# Line 305  public: Line 305  public:
305      }      }
306  };  };
307    
308    class ChoiceEntryLfoWave : public LabelWidget {
309    private:
310        gig::lfo_wave_t value;
311        Gtk::ComboBoxText combobox;
312    #if HAS_GTKMM_ALIGNMENT
313        Gtk::Alignment align;
314    #endif
315        void value_changed();
316    protected:
317        void on_show_tooltips_changed();
318    public:
319        ChoiceEntryLfoWave(const char* labelText);
320        gig::lfo_wave_t get_value() const { return value; }
321        void set_value(gig::lfo_wave_t value);
322        void set_tip(const Glib::ustring& tip_text) {
323            combobox.set_tooltip_text(tip_text);
324        }
325    };
326    
327    
328  class BoolEntry : public LabelWidget {  class BoolEntry : public LabelWidget {
329  private:  private:

Legend:
Removed from v.3623  
changed lines
  Added in v.3624

  ViewVC Help
Powered by ViewVC