X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fhslider.h;h=5da211db4b1f3d6d4bcf481afaf2fbe592eba087;hb=3db68f2604b657e79f1b2b317c19c41c2d5a985b;hp=310cc4e3c073dcdffc3021405f5f228c1c10dd13;hpb=ed9873ba7ee862ad76937f579fe371c1a27d5715;p=libs%2Fgltk.git diff --git a/source/hslider.h b/source/hslider.h index 310cc4e..5da211d 100644 --- a/source/hslider.h +++ b/source/hslider.h @@ -15,14 +15,12 @@ namespace GLtk { /** Horizontal slider widget. A special part named "slider" will be positioned at -the current value of the widget. The fill_x attribute is ignored. +the current value of the widget. */ class HSlider: public Slider { private: - bool dragging; - int drag_start_x; - double drag_start_value; + unsigned slider_size; public: HSlider(const Resources &); @@ -32,7 +30,9 @@ public: private: virtual const char *get_class() const { return "hslider"; } virtual void render_special(const Part &) const; - unsigned get_slider_width() const; + + virtual void on_geometry_change(); + virtual void on_style_change(); }; } // namespace GLtk