]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/hslider.h
Store the Resources reference only in Root widget
[libs/gltk.git] / source / hslider.h
index 4f05d6d6f4e095b478346226d7d908ddcc9fa6ff..47066998c5a4e4f336422772a5bcd02b9f61a5ee 100644 (file)
@@ -15,24 +15,24 @@ 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 &);
+       HSlider();
        virtual void button_press(int, int, unsigned);
        virtual void button_release(int, int, unsigned);
        virtual void pointer_motion(int, int);
 private:
        virtual const char *get_class() const { return "hslider"; }
-       virtual void render_part(const Part &) const;
-       unsigned get_slider_width() const;
+       virtual void render_special(const Part &) const;
+
+       virtual void on_geometry_change();
+       virtual void on_style_change();
 };
 
 } // namespace GLtk