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

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

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

revision 1415 by schoenebeck, Sat Oct 13 13:14:10 2007 UTC revision 1460 by persson, Sat Oct 27 12:28:33 2007 UTC
# Line 59  public: Line 59  public:
59      void set_instrument(gig::Instrument* instrument);      void set_instrument(gig::Instrument* instrument);
60      sigc::signal<void>& signal_instrument_changed();      sigc::signal<void>& signal_instrument_changed();
61  protected:  protected:
62        gig::Instrument* instrument;
63        int update_model;
64    
65        template<typename T>
66        void set_value(T value, sigc::slot<void, InstrumentProps*, T> setter) {
67            if (update_model == 0) {
68                setter(this, value);
69                instrument_changed();
70            }
71        }
72    
73        template<typename C, typename T>
74        void connect(C& widget, T gig::Instrument::* member) {
75            widget.signal_value_changed().connect(
76                sigc::compose(
77                    sigc::bind(sigc::mem_fun(*this, &InstrumentProps::set_value<T>),
78                               sigc::bind(sigc::mem_fun(&InstrumentProps::set_member<T>), member)),
79                    sigc::mem_fun(widget, &C::get_value)));
80        }
81    
82        template<typename C, typename T>
83        void connect(C& widget, void (InstrumentProps::*setter)(T)) {
84            widget.signal_value_changed().connect(
85                sigc::compose(
86                    sigc::bind(sigc::mem_fun(*this, &InstrumentProps::set_value<T>),
87                               sigc::mem_fun(setter)),
88                    sigc::mem_fun(widget, &C::get_value)));
89        }
90    
91        template<typename T>
92        void set_member(T value, T gig::Instrument::* member) {
93            instrument->*member = value;
94        }
95    
96        void set_IsDrum(bool value);
97        void set_MIDIBank(uint16_t value);
98        void set_MIDIProgram(uint32_t value);
99        void set_DimensionKeyRange_low(uint8_t value);
100        void set_DimensionKeyRange_high(uint8_t value);
101    
102      Gtk::VBox vbox;      Gtk::VBox vbox;
103      Gtk::HButtonBox buttonBox;      Gtk::HButtonBox buttonBox;
104      Gtk::Button quitButton;      Gtk::Button quitButton;
# Line 79  protected: Line 119  protected:
119      void add_prop(BoolEntry& prop);      void add_prop(BoolEntry& prop);
120      void add_prop(BoolEntryPlus6& prop);      void add_prop(BoolEntryPlus6& prop);
121      void add_prop(LabelWidget& prop);      void add_prop(LabelWidget& prop);
     void key_range_low_changed();  
     void key_range_high_changed();  
122      sigc::signal<void> instrument_changed;      sigc::signal<void> instrument_changed;
123  };  };
124    

Legend:
Removed from v.1415  
changed lines
  Added in v.1460

  ViewVC Help
Powered by ViewVC