]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/vslider.h
Rework how widget ownership works in Container
[libs/gltk.git] / source / vslider.h
diff --git a/source/vslider.h b/source/vslider.h
deleted file mode 100644 (file)
index 5c5e61f..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/* $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_
-
-#include "slider.h"
-
-namespace Msp {
-namespace GLtk {
-
-class VSlider: public Slider
-{
-private:
-       unsigned slider_size;
-
-public:
-       VSlider();
-
-       virtual const char *get_class() const { return "vslider"; }
-
-private:
-       virtual void render_special(const Part &) const;
-
-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_style_change();
-};
-
-} // namespace GLtk
-} // namespace Msp
-
-#endif