X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvslider.h;h=6086d3fcf3c6db791fa3ef6f4fa462b7accbdae5;hb=HEAD;hp=96fd03fbd40b05f72b6523936c868dd674fc20d1;hpb=7286d604956ddffcbfa2df6567de866f3d5df3a2;p=libs%2Fgltk.git diff --git a/source/vslider.h b/source/vslider.h deleted file mode 100644 index 96fd03f..0000000 --- a/source/vslider.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef MSP_GLTK_VSLIDER_H_ -#define MSP_GLTK_VSLIDER_H_ - -#include "slider.h" - -namespace Msp { -namespace GLtk { - -class VSlider: public Slider -{ -private: - unsigned total_margin; - -public: - VSlider(); - - virtual const char *get_class() const { return "vslider"; } - -private: - 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_size_change(); - virtual void on_style_change(); -}; - -} // namespace GLtk -} // namespace Msp - -#endif