JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
CProgressBarDLG Class Reference

#include <ProgressBarDLG.h>

Inheritance diagram for CProgressBarDLG:
Collaboration diagram for CProgressBarDLG:

Public Types

enum  { IDD = IDD_PROGBAR }
 

Public Member Functions

 CProgressBarDLG (LPCTSTR tname=NULL, BOOL dispatcher=FALSE, CWnd *pParent=NULL)
 
 CProgressBarDLG (UINT nIDTemplate, LPCTSTR tname=NULL, BOOL dispatcher=FALSE, CWnd *pParent=NULL)
 
 CProgressBarDLG (CProgressBarDLG *counter, LPCTSTR tname=NULL, BOOL dispatcher=FALSE)
 
virtual ~CProgressBarDLG ()
 
BOOL OnInitDialog ()
 
virtual CVCounter * MakeChildCounter (int m)
 
virtual CVCounter * GetUsableCounter ()
 
virtual void DeleteChildCounter ()
 
virtual void Start (int m=100, char *tn=NULL)
 
virtual void Stop ()
 
virtual void Init ()
 
virtual void Clear ()
 
virtual void SetMax (int max)
 
virtual void SetPos (int pos)
 
virtual void StepIt (int n=1)
 
virtual void ResetRate (int m, int n)
 
virtual void PutFill ()
 
virtual void SetTitle (char *tn)
 
virtual bool isCanceled ()
 

Public Attributes

CWnd * pWnd
 
UINT dialogID
 
CString title
 
BOOL enableDisPatcher
 
int gmax
 
int base
 
double grate
 
double lrate
 
double prate
 
CProgressCtrl * progBar
 
CProgressBarDLGparent
 
CProgressBarDLGchild
 

Protected Member Functions

virtual void DoDataExchange (CDataExchange *pDX)
 
virtual BOOL OnCommand (WPARAM wParam, LPARAM lParam)
 

Detailed Description

Definition at line 120 of file ProgressBarDLG.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
IDD 

Definition at line 167 of file ProgressBarDLG.h.

167{ IDD = IDD_PROGBAR };
#define IDD_PROGBAR
Definition resource.h:6

Constructor & Destructor Documentation

◆ CProgressBarDLG() [1/3]

CProgressBarDLG ( LPCTSTR tname = NULL,
BOOL dispatcher = FALSE,
CWnd * pParent = NULL )

Definition at line 23 of file ProgressBarDLG.cpp.

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}
#define PROGRESS_COUNTERMAX
CProgressCtrl * progBar

References CProgressBarDLG::dialogID, CProgressBarDLG::enableDisPatcher, CProgressBarDLG::gmax, CProgressBarDLG::IDD, CProgressBarDLG::Init(), CProgressBarDLG::progBar, PROGRESS_COUNTERMAX, CProgressBarDLG::pWnd, and CProgressBarDLG::title.

Here is the call graph for this function:

◆ CProgressBarDLG() [2/3]

CProgressBarDLG ( UINT nIDTemplate,
LPCTSTR tname = NULL,
BOOL dispatcher = FALSE,
CWnd * pParent = NULL )

Definition at line 42 of file ProgressBarDLG.cpp.

43 : CDialog(nIDTemplate, pParent)
44{
45 Init();
46
47 dialogID = nIDTemplate;
48 pWnd = pParent;
49 progBar = NULL;
51 title = tname;
52 enableDisPatcher = dispatch;
53}

References CProgressBarDLG::dialogID, CProgressBarDLG::enableDisPatcher, CProgressBarDLG::gmax, CProgressBarDLG::Init(), CProgressBarDLG::progBar, PROGRESS_COUNTERMAX, CProgressBarDLG::pWnd, and CProgressBarDLG::title.

Here is the call graph for this function:

◆ CProgressBarDLG() [3/3]

CProgressBarDLG ( CProgressBarDLG * counter,
LPCTSTR tname = NULL,
BOOL dispatcher = FALSE )

Definition at line 57 of file ProgressBarDLG.cpp.

58{
59 Init();
60
61 parent = counter;
62 title = tname;
63 enableDisPatcher = dispatch;
64}
CProgressBarDLG * parent

References CProgressBarDLG::enableDisPatcher, CProgressBarDLG::Init(), CProgressBarDLG::parent, and CProgressBarDLG::title.

Here is the call graph for this function:

◆ ~CProgressBarDLG()

~CProgressBarDLG ( )
virtual

Definition at line 68 of file ProgressBarDLG.cpp.

69{
70 if (child !=NULL) delete child; // 子供がいれば先に死んでもらう.
71 if (parent!=NULL) parent->child = NULL; // 親がいれば縁を切る.
72 Stop(); // 停止.
73}
CProgressBarDLG * child

References CProgressBarDLG::child, CProgressBarDLG::parent, and CProgressBarDLG::Stop().

Here is the call graph for this function:

Member Function Documentation

◆ Clear()

void Clear ( )
virtual

Definition at line 100 of file ProgressBarDLG.cpp.

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}
virtual void SetPos(int pos)

References CProgressBarDLG::base, CProgressBarDLG::child, CProgressBarDLG::grate, CProgressBarDLG::lrate, CProgressBarDLG::prate, CProgressBarDLG::progBar, CProgressBarDLG::SetPos(), and CProgressBarDLG::title.

Here is the call graph for this function:

◆ DeleteChildCounter()

void DeleteChildCounter ( )
virtual

Definition at line 177 of file ProgressBarDLG.cpp.

178{
179 PutFill();
180 if (child!=NULL) delete child;
181 child = NULL;
182}

References CProgressBarDLG::child, and CProgressBarDLG::PutFill().

Here is the call graph for this function:

◆ DoDataExchange()

void DoDataExchange ( CDataExchange * pDX)
protectedvirtual

Definition at line 134 of file ProgressBarDLG.cpp.

135{
136 CDialog::DoDataExchange(pDX);
137 //{{AFX_DATA_MAP(CProgressBarDLG)
138 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
139 //}}AFX_DATA_MAP
140}

◆ GetUsableCounter()

CVCounter * GetUsableCounter ( )
virtual

Definition at line 191 of file ProgressBarDLG.cpp.

192{
193 if (child==NULL) return (CVCounter*)this;
194 else return child->GetUsableCounter();
195}
virtual CVCounter * GetUsableCounter()

References CProgressBarDLG::child, and CProgressBarDLG::GetUsableCounter().

Referenced by CProgressBarDLG::GetUsableCounter().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Init()

void Init ( )
virtual

Definition at line 77 of file ProgressBarDLG.cpp.

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}

References CProgressBarDLG::base, CProgressBarDLG::child, CProgressBarDLG::dialogID, CProgressBarDLG::enableDisPatcher, CProgressBarDLG::gmax, CProgressBarDLG::grate, CProgressBarDLG::lrate, CProgressBarDLG::parent, CProgressBarDLG::prate, CProgressBarDLG::progBar, CProgressBarDLG::pWnd, and CProgressBarDLG::title.

Referenced by CProgressBarDLG::CProgressBarDLG(), CProgressBarDLG::CProgressBarDLG(), and CProgressBarDLG::CProgressBarDLG().

Here is the caller graph for this function:

◆ isCanceled()

bool isCanceled ( )
virtual

Definition at line 351 of file ProgressBarDLG.cpp.

352{
353 if (parent==NULL) return cancel;
354 else return parent->isCanceled();
355}

References CProgressBarDLG::isCanceled(), and CProgressBarDLG::parent.

Referenced by jbxwl::copyFPWithCounter(), CDxSRenderView::GetValidVoxelNum(), CProgressBarDLG::isCanceled(), and CDxSRenderView::PrepareVB().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ MakeChildCounter()

CVCounter * MakeChildCounter ( int m)
virtual

Definition at line 163 of file ProgressBarDLG.cpp.

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}
virtual void ResetRate(int m, int n)
virtual void SetMax(int max)
CProgressBarDLG(LPCTSTR tname=NULL, BOOL dispatcher=FALSE, CWnd *pParent=NULL)

◆ OnCommand()

BOOL OnCommand ( WPARAM wParam,
LPARAM lParam )
protectedvirtual

Definition at line 361 of file ProgressBarDLG.cpp.

362{
363 if (wParam==IDCANCEL) cancel = true;
364
365 return CDialog::OnCommand(wParam, lParam);
366}

◆ OnInitDialog()

BOOL OnInitDialog ( )

Definition at line 120 of file ProgressBarDLG.cpp.

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}
#define IDC_PROGBAR_M
Definition resource.h:45

References IDC_PROGBAR_M, CProgressBarDLG::parent, and CProgressBarDLG::progBar.

◆ PutFill()

void PutFill ( )
virtual

Definition at line 281 of file ProgressBarDLG.cpp.

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}

References CProgressBarDLG::base, CProgressBarDLG::enableDisPatcher, CProgressBarDLG::grate, CProgressBarDLG::lrate, CProgressBarDLG::parent, CProgressBarDLG::progBar, and CProgressBarDLG::SetPos().

Referenced by CProgressBarDLG::DeleteChildCounter().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ResetRate()

void ResetRate ( int m,
int n )
virtual

Definition at line 302 of file ProgressBarDLG.cpp.

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}

References CProgressBarDLG::base, CProgressBarDLG::grate, and CProgressBarDLG::lrate.

◆ SetMax()

void SetMax ( int max)
virtual

Definition at line 201 of file ProgressBarDLG.cpp.

202{
203 if (num<=0) return;
204
205 if (gmax==0) gmax = num;
206 grate = (double)gmax/(double)num;
207 fill = max = num;
208}

References CProgressBarDLG::gmax, and CProgressBarDLG::grate.

Referenced by jbxwl::copyFPWithCounter(), and CProgressBarDLG::Start().

Here is the caller graph for this function:

◆ SetPos()

void SetPos ( int pos)
virtual

Definition at line 332 of file ProgressBarDLG.cpp.

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}

References CProgressBarDLG::base, CProgressBarDLG::enableDisPatcher, CProgressBarDLG::grate, CProgressBarDLG::lrate, CProgressBarDLG::parent, CProgressBarDLG::progBar, and CProgressBarDLG::SetPos().

Referenced by CProgressBarDLG::Clear(), jbxwl::copyFPWithCounter(), CDxSRenderView::GetValidVoxelNum(), CDxSRenderView::PrepareVB(), CProgressBarDLG::PutFill(), CProgressBarDLG::SetPos(), and CProgressBarDLG::StepIt().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ SetTitle()

void SetTitle ( char * tn)
virtual

Definition at line 262 of file ProgressBarDLG.cpp.

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}
virtual void SetTitle(char *tn)
CString mbs2ts(char *str)
Definition WinTools.cpp:79

References jbxwl::mbs2ts(), CProgressBarDLG::parent, CProgressBarDLG::SetTitle(), and CProgressBarDLG::title.

Referenced by CProgressBarDLG::SetTitle().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Start()

void Start ( int m = 100,
char * tn = NULL )
virtual

Definition at line 215 of file ProgressBarDLG.cpp.

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}

References CProgressBarDLG::dialogID, jbxwl::mbs2ts(), CProgressBarDLG::parent, CProgressBarDLG::progBar, PROGRESS_COUNTERMAX, CProgressBarDLG::pWnd, CProgressBarDLG::SetMax(), and CProgressBarDLG::title.

Referenced by jbxwl::copyFPWithCounter(), CDxSRenderView::PrepareVB(), and jbxwl::writeGraphicFileWithCounter().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ StepIt()

void StepIt ( int n = 1)
virtual

Definition at line 315 of file ProgressBarDLG.cpp.

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}

References CProgressBarDLG::base, CProgressBarDLG::enableDisPatcher, CProgressBarDLG::grate, CProgressBarDLG::lrate, CProgressBarDLG::parent, CProgressBarDLG::progBar, and CProgressBarDLG::SetPos().

Referenced by jbxwl::copyFPWithCounter().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Stop()

void Stop ( )
virtual

Definition at line 240 of file ProgressBarDLG.cpp.

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}

References CProgressBarDLG::base, CProgressBarDLG::grate, CProgressBarDLG::lrate, CProgressBarDLG::parent, and CProgressBarDLG::title.

Referenced by jbxwl::copyFPWithCounter(), CDxSRenderView::PrepareVB(), jbxwl::writeGraphicFileWithCounter(), and CProgressBarDLG::~CProgressBarDLG().

Here is the caller graph for this function:

Member Data Documentation

◆ base

◆ child

◆ dialogID

◆ enableDisPatcher

◆ gmax

◆ grate

◆ lrate

◆ parent

◆ prate

double prate

Definition at line 132 of file ProgressBarDLG.h.

Referenced by CProgressBarDLG::Clear(), and CProgressBarDLG::Init().

◆ progBar

◆ pWnd

◆ title


The documentation for this class was generated from the following files: