summaryrefslogtreecommitdiff
path: root/src/interface/Slider.h
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-03-04 16:26:03 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-03-04 16:26:03 (GMT)
commit644e6770e43e5ed568b0cdc14d63f20869d7fccc (patch)
tree19e0b8b60df245d0972a3d7afb106f6954b931ee /src/interface/Slider.h
parent3bbaa1a111e3770d2ce9b04f4b0f9688948d3e85 (diff)
downloadpowder-644e6770e43e5ed568b0cdc14d63f20869d7fccc.zip
powder-644e6770e43e5ed568b0cdc14d63f20869d7fccc.tar.gz
Slider and decoration colour changer
Diffstat (limited to 'src/interface/Slider.h')
-rw-r--r--src/interface/Slider.h41
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_ */