]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/hslider.h
Refactor filling from Part to Alignment
[libs/gltk.git] / source / hslider.h
index 0ce63770777580c0c7e5c67ae4d01a208f79e954..8f0be9f810b2343d72365f30215138d12a0c1dd8 100644 (file)
@@ -15,7 +15,7 @@ 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
 {
@@ -26,12 +26,12 @@ private:
 
 public:
        HSlider(const Resources &);
-       void button_press(int, int, unsigned);
-       void button_release(int, int, unsigned);
-       void pointer_motion(int, int);
+       virtual void button_press(int, int, unsigned);
+       virtual void button_release(int, int, unsigned);
+       virtual void pointer_motion(int, int);
 private:
-       const char *get_class() const { return "hslider"; }
-       void render_part(const Part &) const;
+       virtual const char *get_class() const { return "hslider"; }
+       virtual void render_special(const Part &) const;
        unsigned get_slider_width() const;
 };