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

#include <ProgressTextDLG.h>

Inheritance diagram for CProgressTextDLG:
Collaboration diagram for CProgressTextDLG:

Public Types

enum  { IDD = IDD_PROGTEXT }
 

Public Member Functions

 CProgressTextDLG (LPCTSTR tn=NULL, BOOL edp=FALSE, CWnd *pParent=NULL)
 
 CProgressTextDLG (UINT nIDTemplate, LPCTSTR tn=NULL, BOOL edp=FALSE, CWnd *pParent=NULL)
 
virtual ~CProgressTextDLG ()
 
BOOL OnInitDialog ()
 
virtual void Start (int m=100, char *tn=NULL)
 
virtual void Stop ()
 
virtual void SetPos (int pos)
 
virtual void StepIt (int n=1)
 
virtual void SetTitle (char *tn)
 
void DispCounter (int n)
 

Public Attributes

CWnd * pWnd
 
UINT dialogID
 
CString title
 
BOOL enableDisPatcher
 
CStatic * dCounter
 

Protected Member Functions

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

Detailed Description

テキストカウンタ:

n<0 で SetPos(n) は "-----" を表示

Definition at line 27 of file ProgressTextDLG.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
IDD 

Definition at line 56 of file ProgressTextDLG.h.

56{ IDD = IDD_PROGTEXT };
#define IDD_PROGTEXT
Definition resource.h:8

Constructor & Destructor Documentation

◆ CProgressTextDLG() [1/2]

CProgressTextDLG ( LPCTSTR tn = NULL,
BOOL edp = FALSE,
CWnd * pParent = NULL )

Definition at line 22 of file ProgressTextDLG.cpp.

23 : CDialog(CProgressTextDLG::IDD, pParent)
24{
25 //{{AFX_DATA_INIT(CProgressTextDLG)
26 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
27 //}}AFX_DATA_INIT
28
30 pWnd = pParent;
31 title = tn;
32 enableDisPatcher = edp;
33 dCounter = NULL;
34}

References CProgressTextDLG::dCounter, CProgressTextDLG::dialogID, CProgressTextDLG::enableDisPatcher, CProgressTextDLG::IDD, CProgressTextDLG::pWnd, and CProgressTextDLG::title.

◆ CProgressTextDLG() [2/2]

CProgressTextDLG ( UINT nIDTemplate,
LPCTSTR tn = NULL,
BOOL edp = FALSE,
CWnd * pParent = NULL )

Definition at line 38 of file ProgressTextDLG.cpp.

39 : CDialog(nIDTemplate, pParent)
40{
41 dialogID = nIDTemplate;
42 pWnd = pParent;
43 title = tn;
44 enableDisPatcher = edp;
45 dCounter = NULL;
46}

References CProgressTextDLG::dCounter, CProgressTextDLG::dialogID, CProgressTextDLG::enableDisPatcher, CProgressTextDLG::pWnd, and CProgressTextDLG::title.

◆ ~CProgressTextDLG()

virtual ~CProgressTextDLG ( )
inlinevirtual

Definition at line 41 of file ProgressTextDLG.h.

41{ Stop();}

References CProgressTextDLG::Stop().

Here is the call graph for this function:

Member Function Documentation

◆ DispCounter()

void DispCounter ( int n)

Definition at line 170 of file ProgressTextDLG.cpp.

171{
172 if (n<0) dCounter->SetWindowText(_T("-----"));
173 else {
174 TCHAR buf[LNAME];
175// memset(buf, 0, LNAME);
176 sntprintf(buf, LNAME, _T("%d") , n);
177 dCounter->SetWindowText(buf);
178 }
179}

References CProgressTextDLG::dCounter.

Referenced by CProgressTextDLG::SetPos(), and CProgressTextDLG::StepIt().

Here is the caller graph for this function:

◆ DoDataExchange()

void DoDataExchange ( CDataExchange * pDX)
protectedvirtual

Definition at line 50 of file ProgressTextDLG.cpp.

51{
52 CDialog::DoDataExchange(pDX);
53 //{{AFX_DATA_MAP(CProgressTextDLG)
54 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
55 //}}AFX_DATA_MAP
56}

◆ OnCommand()

BOOL OnCommand ( WPARAM wParam,
LPARAM lParam )
protectedvirtual

Definition at line 154 of file ProgressTextDLG.cpp.

155{
156 if (wParam==IDCANCEL) {
157 cancel = true;
158 CString mesg;
159 mesg.LoadString(IDS_STR_CANCELING);
160 SetWindowText(mesg);
161 }
162
163 return TRUE;
164
165// return CDialog::OnCommand(wParam, lParam);
166}
#define IDS_STR_CANCELING
Definition resource.h:108

References IDS_STR_CANCELING.

◆ OnInitDialog()

BOOL OnInitDialog ( )

Definition at line 70 of file ProgressTextDLG.cpp.

71{
72 dCounter = (CStatic*)GetDlgItem(IDC_PROGTEXT_MSG);
73 return TRUE;
74}
#define IDC_PROGTEXT_MSG
Definition resource.h:46

References IDC_PROGTEXT_MSG.

◆ SetPos()

void SetPos ( int pos)
virtual

Definition at line 121 of file ProgressTextDLG.cpp.

122{
123 pos = num;
124 DispCounter(pos);
125
126 if (enableDisPatcher) DisPatcher();
127}

References CProgressTextDLG::DispCounter(), and CProgressTextDLG::enableDisPatcher.

Here is the call graph for this function:

◆ SetTitle()

void SetTitle ( char * tn)
virtual

Definition at line 133 of file ProgressTextDLG.cpp.

134{
135 if (tn!=NULL) title = mbs2ts(tn);
136 if (start) SetWindowText(title);
137}
CString mbs2ts(char *str)
Definition WinTools.cpp:79

References jbxwl::mbs2ts(), and CProgressTextDLG::title.

Here is the call graph for this function:

◆ Start()

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

Definition at line 81 of file ProgressTextDLG.cpp.

82{
83 cancel = false;
84 max = m;
85
86 Create(dialogID, pWnd);
87 ShowWindow(SW_SHOW);
88 if (tn!=NULL) title = mbs2ts(tn);
89 if (!title.IsEmpty()) SetWindowText(title);
90 start = true;
91
92// DispCounter(0);
93}

References CProgressTextDLG::dialogID, jbxwl::mbs2ts(), CProgressTextDLG::pWnd, and CProgressTextDLG::title.

Here is the call graph for this function:

◆ StepIt()

void StepIt ( int n = 1)
virtual

Definition at line 111 of file ProgressTextDLG.cpp.

112{
113 pos += n;
114 DispCounter(pos);
115
116 if (enableDisPatcher) DisPatcher();
117}

References CProgressTextDLG::DispCounter(), and CProgressTextDLG::enableDisPatcher.

Here is the call graph for this function:

◆ Stop()

void Stop ( )
virtual

Definition at line 99 of file ProgressTextDLG.cpp.

100{
101 pos = 0;
102 title = _T("");
103 cancel = false;
104 start = false;
105
106 DestroyWindow();
107}

References CProgressTextDLG::title.

Referenced by CProgressTextDLG::~CProgressTextDLG().

Here is the caller graph for this function:

Member Data Documentation

◆ dCounter

◆ dialogID

◆ enableDisPatcher

◆ pWnd

◆ title


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