~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/ui/widget/preferences-widget.h

  • Committer: Ted Gould
  • Date: 2008-11-21 05:24:08 UTC
  • Revision ID: ted@canonical.com-20081121052408-tilucis2pjrrpzxx
MergeĀ fromĀ fe-moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
    bool freeze; // used to block recursive updates of slider and spinbutton
123
123
};
124
124
 
 
125
class PrefSlider : public Gtk::HBox
 
126
{
 
127
public:
 
128
    void init(Glib::ustring const &prefs_path,
 
129
                  double lower, double upper, double step_increment, double page_increment, double default_value, int digits);
 
130
 
 
131
private:
 
132
    void on_slider_value_changed();
 
133
    void on_spinbutton_value_changed();
 
134
    
 
135
    Glib::ustring _prefs_path;
 
136
    Gtk::SpinButton _sb;
 
137
    Gtk::HScale     _slider;
 
138
    bool freeze; // used to block recursive updates of slider and spinbutton
 
139
};
 
140
 
 
141
 
125
142
class PrefCombo : public Gtk::ComboBoxText
126
143
{
127
144
public: