JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ProgressBarDLG.cpp
Go to the documentation of this file.
1//
2// 再帰定義可能なプログレスバーカウンタ
3//
4
5#include "ProgressBarDLG.h"
6
7
8#ifdef _DEBUG
9#define new DEBUG_NEW
10#undef THIS_FILE
11static char THIS_FILE[] = __FILE__;
12#endif
13
14
15using namespace jbxwl;
16
17
18
20// CProgressBarDLG ダイアログ (再帰定義可能なビジュアルプログレスバー[カウンタ] for VC++)
21//
22
23CProgressBarDLG::CProgressBarDLG(LPCTSTR tname, BOOL dispatch, CWnd* pParent)
24 : CDialog(CProgressBarDLG::IDD, pParent)
25{
26 //{{AFX_DATA_INIT(CProgressBarDLG)
27 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
28 //}}AFX_DATA_INIT
29
30 Init();
31
33 pWnd = pParent;
34 progBar = NULL;
36 title = tname;
37 enableDisPatcher = dispatch;
38}
39
40
41//
42CProgressBarDLG::CProgressBarDLG(UINT nIDTemplate, LPCTSTR tname, BOOL dispatch, CWnd* pParent)
43 : CDialog(nIDTemplate, pParent)
44{
45 Init();
46
47 dialogID = nIDTemplate;
48 pWnd = pParent;
49 progBar = NULL;
51 title = tname;
52 enableDisPatcher = dispatch;
53}
54
55
56//
57CProgressBarDLG::CProgressBarDLG(CProgressBarDLG* counter, LPCTSTR tname, BOOL dispatch)
58{
59 Init();
60
61 parent = counter;
62 title = tname;
63 enableDisPatcher = dispatch;
64}
65
66
67//
69{
70 if (child !=NULL) delete child; // 子供がいれば先に死んでもらう.
71 if (parent!=NULL) parent->child = NULL; // 親がいれば縁を切る.
72 Stop(); // 停止.
73}
74
75
76//
78{
79 dialogID = 0;
80 pWnd = NULL;
81 progBar = NULL;
82
83 max = 0;
84 fill = 0;
85 pos = 0;
86
87 gmax = 0;
88 base = 0;
89 grate = 1.0;
90 lrate = 1.0;
91 prate = 1.0;
92 parent = NULL;
93 child = NULL;
94 title = _T("");
95 enableDisPatcher = TRUE;
96}
97
98
99
101{
102 title = _T("");
103 base = 0;
104 grate = 1.0;
105 lrate = 1.0;
106 prate = 1.0;
107
108 max = 0;
109 fill = 0;
110 pos = 0;
111
112 if (child!=NULL) delete child;
113 child = NULL;
114
115 if (progBar!=NULL) progBar->SetPos(0);
116}
117
118
119
121{
122 if (parent==NULL) {
123 //RECT r;
124 //r.left=10; r.top=10; r.right=300; r.bottom=30;
125 //progBar->Create(WS_VISIBLE|WS_CHILD|WS_BORDER, r, this, IDD_PROGBAR);
126 if (progBar==NULL) progBar = (CProgressCtrl*)GetDlgItem(IDC_PROGBAR_M);
127
128 }
129 return TRUE;
130}
131
132
133
134void CProgressBarDLG::DoDataExchange(CDataExchange* pDX)
135{
136 CDialog::DoDataExchange(pDX);
137 //{{AFX_DATA_MAP(CProgressBarDLG)
138 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
139 //}}AFX_DATA_MAP
140}
141
142
143
144BEGIN_MESSAGE_MAP(CProgressBarDLG, CDialog)
145 //{{AFX_MSG_MAP(CProgressBarDLG)
146 //}}AFX_MSG_MAP
147END_MESSAGE_MAP()
148
149
150
151
152// CProgressBarDLG メッセージ ハンドラ
153
154//
155// カウンタの目盛の「現在位置」から「現在位置+m」の間を
156// 新しいカウンタとして作り直す(チャイルドカウンタ).
157//
158// この機能は関数の中でカウンタをローカライズするために用いられる.
159// ローカライズされたカウンタは,通常のカウンタと同様に使用できる.
160// → 新しくチャイルドカウンタを作ったり,SetMax()やResetRate()で
161// 目盛の比率を変えることが可能.
162//
163CVCounter* CProgressBarDLG::MakeChildCounter(int m)
164{
165 if (m<=0) return NULL;
166 ResetRate(m, m); // 該当区間の lrateを 1.0に戻す.
167
168 child = new CProgressBarDLG(this, (LPCTSTR)title, enableDisPatcher);
169 child->SetMax(m);
170 return (CVCounter*)child;
171}
172
173
174//
175// チャイルドカウンタとその子供たちを消去
176//
178{
179 PutFill();
180 if (child!=NULL) delete child;
181 child = NULL;
182}
183
184
185//
186// 現在のアクティブ(使用可能)なカウンタ(一番下の子カウンタ)を得る.
187//
188// この機能は関数中のローカライズされたカウンタ環境で,現在有効なカウンタを
189// 得るための用いられる.
190//
192{
193 if (child==NULL) return (CVCounter*)this;
194 else return child->GetUsableCounter();
195}
196
197
198//
199// Progress Dialogに表示できる最大値を指定する.
200//
202{
203 if (num<=0) return;
204
205 if (gmax==0) gmax = num;
206 grate = (double)gmax/(double)num;
207 fill = max = num;
208}
209
210
211//
212// Progress Dialogの開始.Windowを表示させる.
213// m は目盛の最大値になる.
214//
215void CProgressBarDLG::Start(int m, char* tn)
216{
217 cancel = false;
218
219 if (parent==NULL) {
220 this->Create(dialogID, pWnd);
221 this->ShowWindow(SW_SHOW);
222
223 if (tn!=NULL) title = mbs2ts(tn);
224 if (!title.IsEmpty()) SetWindowText(title);
225 start = true;
226
227 if (progBar!=NULL) {
228 progBar->SetPos(0);
229 progBar->SetRange((short)0, (short)PROGRESS_COUNTERMAX);
230 progBar->SetStep(1);
231 }
232 }
233 SetMax(m);
234}
235
236
237//
238// Progress Dialogの停止.Windowを消し,変数を初期化する.
239//
241{
242 max = 0;
243 pos = 0;
244 fill = 0;
245 base = 0;
246 grate = 1.0;
247 lrate = 1.0;
248 title = _T("");
249 cancel = false;
250 start = false;
251
252 if (parent==NULL) {
253 DestroyWindow();
254// deleteNull(progBar);
255 }
256}
257
258
259//
260// ダイアログのタイトルを設定する.
261//
263{
264 if (tn!=NULL) title = mbs2ts(tn);
265
266 if (parent!=NULL) {
267 parent->SetTitle(tn);
268 }
269 else {
270 if (start) SetWindowText(title);
271 }
272}
273
274
275//
276// Progress Dialogの目盛を,目標値(fill)まで埋める.
277// デフォルトでは目標値(fill)は maxになる.つまり(ローカライズされた)
278// 全目盛を埋める.
279// ResetRate()関数を呼ぶと,第2引数が目標値fillとなる.
280//
282{
283 pos = fill;
284 int mem = base + (int)(grate*lrate*pos + 0.5);
285
286 if (parent!=NULL) {
287 parent->SetPos(mem);
288 }
289 else {
290 progBar->SetPos(mem);
291 }
292
293 if (enableDisPatcher) DisPatcher();
294}
295
296
297//
298// Progress Dialogの目盛の「現在位置」から「現在位置+rng」の間を
299// num でマップ(リサイズ)し直す.numはその状態での目標値fillとなる.
300// rng は正, numは非負でなければならない.
301//
302void CProgressBarDLG::ResetRate(int rng, int num)
303{
304 if (rng<=0 || num<0) return;
305 if (num==0) num = 1;
306
307 base = base + (int)(pos*lrate*grate + 0.5);
308 lrate = (double)rng/(double)num;
309 pos = 0;
310 fill = num;
311}
312
313
314//
316{
317 pos += n;
318 int mem = base + (int)(grate*lrate*pos + 0.5);
319
320 if (parent!=NULL) {
321 parent->SetPos(mem);
322 }
323 else {
324 progBar->SetPos(mem);
325 }
326
327 if (enableDisPatcher) DisPatcher();
328}
329
330
331//
333{
334 if ((int)(lrate*num)>fill) return;
335
336 pos = num;
337 int mem = base + (int)(grate*lrate*pos + 0.5);
338
339 if (parent!=NULL) {
340 parent->SetPos(mem);
341 }
342 else {
343 progBar->SetPos(mem);
344 }
345
346 if (enableDisPatcher) DisPatcher();
347}
348
349
350//
352{
353 if (parent==NULL) return cancel;
354 else return parent->isCanceled();
355}
356
357
358//
359// ウィンドウがクローズされた場合.
360//
361BOOL CProgressBarDLG::OnCommand(WPARAM wParam, LPARAM lParam)
362{
363 if (wParam==IDCANCEL) cancel = true;
364
365 return CDialog::OnCommand(wParam, lParam);
366}
367
static char THIS_FILE[]
再帰定義可能なプログレスバーカウンタ
#define PROGRESS_COUNTERMAX
CProgressBarDLG * parent
virtual void SetTitle(char *tn)
virtual void ResetRate(int m, int n)
virtual void StepIt(int n=1)
virtual void SetPos(int pos)
CProgressCtrl * progBar
CProgressBarDLG * child
virtual CVCounter * GetUsableCounter()
virtual void Start(int m=100, char *tn=NULL)
virtual void DeleteChildCounter()
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam)
virtual void SetMax(int max)
CProgressBarDLG(LPCTSTR tname=NULL, BOOL dispatcher=FALSE, CWnd *pParent=NULL)
virtual void DoDataExchange(CDataExchange *pDX)
CString mbs2ts(char *str)
Definition WinTools.cpp:79
#define IDC_PROGBAR_M
Definition resource.h:45