]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/vslider.h
Rename Widget::on_geometry_change to on_size_change
[libs/gltk.git] / source / vslider.h
index 6590c2155cfd042004f27d8a34973cb2c69bdb4f..96fd03fbd40b05f72b6523936c868dd674fc20d1 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspgltk
-Copyright © 2007, 2010-2011  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GLTK_VSLIDER_H_
 #define MSP_GLTK_VSLIDER_H_
 
@@ -16,24 +9,23 @@ namespace GLtk {
 class VSlider: public Slider
 {
 private:
-       unsigned slider_size;
+       unsigned total_margin;
 
 public:
        VSlider();
 
        virtual const char *get_class() const { return "vslider"; }
 
-       virtual void autosize();
-
 private:
-       virtual void render_special(const Part &) const;
+       virtual void autosize_special(const Part &, Geometry &) const;
+       virtual void rebuild_special(const Part &);
 
 public:
        virtual void button_press(int, int, unsigned);
        virtual void button_release(int, int, unsigned);
        virtual void pointer_motion(int, int);
 private:
-       virtual void on_geometry_change();
+       virtual void on_size_change();
        virtual void on_style_change();
 };