X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fhslider.h;h=0d840fe961525ccab760bb9c9e4210a5ca6636a9;hb=HEAD;hp=25ad0b19e597061f856496ade7e8d4085bfce92d;hpb=c062ca892fc6e10f74a76991b5d4b4349c046b5f;p=libs%2Fgltk.git diff --git a/source/hslider.h b/source/hslider.h deleted file mode 100644 index 25ad0b1..0000000 --- a/source/hslider.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef MSP_GLTK_HSLIDER_H_ -#define MSP_GLTK_HSLIDER_H_ - -#include "slider.h" - -namespace Msp { -namespace GLtk { - -class HSlider: public Slider -{ -public: - HSlider(const Resources &); - void button_press(int, int, unsigned); - void button_release(int, int, unsigned); - void pointer_motion(int, int); -private: - bool dragging; - int drag_start_x; - double drag_start_value; - - const char *get_class() const { return "hslider"; } - void render_part(const Part &) const; - unsigned get_slider_width() const; -}; - -} // namespace GLtk -} // namespace Msp - -#endif