From 3bf9df6b2785fa6d951086978a3e66f49427166a Mon Sep 17 00:00:00 2001 From: FluorescentCIAAfricanAmerican <0934gj3049fk@protonmail.com> Date: Wed, 22 Apr 2020 12:56:21 -0400 Subject: 1 --- utils/mxtk/mxprogressbar.cpp | 89 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 utils/mxtk/mxprogressbar.cpp (limited to 'utils/mxtk/mxprogressbar.cpp') 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 +#include + + + +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; +} -- cgit v1.2.3