summaryrefslogtreecommitdiff
path: root/widgetslider.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2006-08-04 01:04:15 +0000
committerMatt Turner <mattst88@gmail.com>2006-08-04 01:04:15 +0000
commitdfa4a46bb0e6c6df9d07039fda5ef7f4309915b2 (patch)
treeac8b4cc67ff64703b4298f077e87bb4eb4334410 /widgetslider.h
parent3582a80243bdd92619e737111ada5b5bf2667cd7 (diff)
git-svn-id: svn://mattst88.com/svn/skygipp/trunk@2 a71248a0-261a-0410-b604-901f7c0bd773
Diffstat (limited to 'widgetslider.h')
-rw-r--r--widgetslider.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/widgetslider.h b/widgetslider.h
new file mode 100644
index 0000000..74f6799
--- /dev/null
+++ b/widgetslider.h
@@ -0,0 +1,63 @@
+#ifndef WIDGETSLIDER_H
+#define WIDGETSLIDER_H
+
+#include <skygi/skygi.h>
+
+#include "widget.h"
+
+//! A Slider class
+
+class CSlider: public CWidget {
+ public:
+ /*! Constructor */
+ CSlider();
+
+ /*!
+ Create Slider
+
+ \param parent HANDLE of the parent window on which to draw
+ \param name Name of the Progressbar
+ \param x Top left x coordinate
+ \param y Top left y coordinate
+ \param w Form width
+ \param h Form height
+ \param style Style flags
+
+ \return Success: S_OK\n
+ Failure: E_HANDLE
+ */
+ HRESULT Create(HANDLE parent, char * name, int x, int y, int w, int h, int style);
+
+ /*!
+ Set value of Slider
+
+ \param position Position to set
+ */
+ HRESULT SetValue(int position);
+
+ /*!
+ Get value of Slider
+
+ \return position
+ */
+ int GetValue();
+
+ /*!
+ Set Maximum value of Slider
+
+ \param max Maximum value
+ */
+ HRESULT SetMax(int max);
+
+ /*!
+ Get Maximum value of Slider
+
+ \return Maximum value
+ */
+ int GetMax();
+ private:
+ int maximum;
+ int pos;
+};
+
+#endif