1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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;
}
|