summaryrefslogtreecommitdiff
path: root/utils/mxtk/mxprogressbar.cpp
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /utils/mxtk/mxprogressbar.cpp
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'utils/mxtk/mxprogressbar.cpp')
-rw-r--r--utils/mxtk/mxprogressbar.cpp89
1 files changed, 89 insertions, 0 deletions
diff --git a/utils/mxtk/mxprogressbar.cpp b/utils/mxtk/mxprogressbar.cpp
new file mode 100644
index 0000000..8d20eca
--- /dev/null
+++ b/utils/mxtk/mxprogressbar.cpp
@@ -0,0 +1,89 @@
+//
+// mxToolKit (c) 1999 by Mete Ciragan
+//
+// file: mxProgressBar.cpp
+// implementation: Win32 API
+// last modified: Mar 18 1999, Mete Ciragan
+// copyright: The programs and associated files contained in this
+// distribution were developed by Mete Ciragan. The programs
+// are not in the public domain, but they are freely
+// distributable without licensing fees. These programs are
+// provided without guarantee or warrantee expressed or
+// implied.
+//
+#include "mxtk/mxProgressBar.h"
+#include <windows.h>
+#include <commctrl.h>
+
+
+
+class mxProgressBar_i
+{
+public:
+ int d_value;
+ int d_steps;
+};
+
+
+
+mxProgressBar::mxProgressBar (mxWindow *parent, int x, int y, int w, int h, int style)
+: mxWidget (parent, x, y, w, h)
+{
+ d_this = new mxProgressBar_i;
+
+ DWORD dwStyle = WS_VISIBLE | WS_CHILD;
+ HWND hwndParent = parent ? (HWND) ((mxWidget *) parent)->getHandle () : NULL;
+
+ if (style == Smooth)
+ dwStyle |= PBS_SMOOTH;
+
+ void *handle = (void *) CreateWindowEx (0, PROGRESS_CLASS, "", dwStyle,
+ x, y, w, h, hwndParent,
+ (HMENU) NULL, (HINSTANCE) GetModuleHandle (NULL), NULL);
+
+ SendMessage ((HWND) handle, WM_SETFONT, (WPARAM) (HFONT) GetStockObject (ANSI_VAR_FONT), MAKELPARAM (TRUE, 0));
+
+ setHandle (handle);
+ setType (MX_PROGRESSBAR);
+ setParent (parent);
+}
+
+
+
+mxProgressBar::~mxProgressBar ()
+{
+ delete d_this;
+}
+
+
+
+void
+mxProgressBar::setValue (int value)
+{
+ d_this->d_value = value;
+ SendMessage ((HWND) getHandle (), PBM_SETPOS, (WPARAM) value, 0L);
+}
+
+
+void
+mxProgressBar::setTotalSteps (int steps)
+{
+ d_this->d_steps = steps;
+ SendMessage ((HWND) getHandle (), PBM_SETRANGE, 0, MAKELPARAM (0, steps));
+}
+
+
+
+int
+mxProgressBar::getValue () const
+{
+ return d_this->d_value;
+}
+
+
+
+int
+mxProgressBar::getTotalSteps () const
+{
+ return d_this->d_steps;
+}