diff options
Diffstat (limited to 'src/interface/Slider.h')
| -rw-r--r-- | src/interface/Slider.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/interface/Slider.h b/src/interface/Slider.h new file mode 100644 index 0000000..682bc09 --- /dev/null +++ b/src/interface/Slider.h @@ -0,0 +1,41 @@ +/* + * Slider.h + * + * Created on: Mar 3, 2012 + * Author: Simon + */ + +#ifndef SLIDER_H_ +#define SLIDER_H_ + +#include "Component.h" + +namespace ui { +class Slider; +class SliderAction +{ +public: + virtual void ValueChangedCallback(ui::Slider * sender) {} + virtual ~SliderAction() {} +}; +class Slider: public ui::Component { + friend class SliderAction; + int sliderSteps; + int sliderPosition; + bool isMouseDown; + SliderAction * actionCallback; + void updatePosition(int position); +public: + Slider(Point position, Point size, int steps); + virtual void OnMouseMoved(int x, int y, int dx, int dy); + virtual void OnMouseClick(int x, int y, unsigned button); + virtual void OnMouseUp(int x, int y, unsigned button); + virtual void Draw(const Point& screenPos); + void SetActionCallback(SliderAction * action) { actionCallback = action; } + int GetValue(); + void SetValue(int value); + virtual ~Slider(); +}; + +} /* namespace ui */ +#endif /* SLIDER_H_ */ |
