JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ProgressTextDLG.cpp
Go to the documentation of this file.
1//
2// ProgressTextDLG.cpp : インプリメンテーション ファイル
3//
4
5#include "ProgressTextDLG.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 jbxl;
16using namespace jbxwl;
17
18
20// CProgressTextDLG ダイアログ
21
22CProgressTextDLG::CProgressTextDLG(LPCTSTR tn, BOOL edp, CWnd* pParent)
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}
35
36
37//
38CProgressTextDLG::CProgressTextDLG(UINT nIDTemplate, LPCTSTR tn, BOOL edp, CWnd* pParent)
39 : CDialog(nIDTemplate, pParent)
40{
41 dialogID = nIDTemplate;
42 pWnd = pParent;
43 title = tn;
44 enableDisPatcher = edp;
45 dCounter = NULL;
46}
47
48
49//
50void CProgressTextDLG::DoDataExchange(CDataExchange* pDX)
51{
52 CDialog::DoDataExchange(pDX);
53 //{{AFX_DATA_MAP(CProgressTextDLG)
54 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
55 //}}AFX_DATA_MAP
56}
57
58
59
60BEGIN_MESSAGE_MAP(CProgressTextDLG, CDialog)
61 //{{AFX_MSG_MAP(CProgressTextDLG)
62 //}}AFX_MSG_MAP
63END_MESSAGE_MAP()
64
65
66
67
68// CProgressTextDLG メッセージ ハンドラ
69
70BOOL CProgressTextDLG::OnInitDialog()
71{
72 dCounter = (CStatic*)GetDlgItem(IDC_PROGTEXT_MSG);
73 return TRUE;
74}
75
76
77//
78// Progress Dialogの開始.Windowを表示させる.
79// m は目盛の最大値になる.
80//
81void CProgressTextDLG::Start(int m, char* tn)
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}
94
95
96//
97// Progress Dialogの停止.Windowを消し,変数を初期化する.
98//
100{
101 pos = 0;
102 title = _T("");
103 cancel = false;
104 start = false;
105
106 DestroyWindow();
107}
108
109
110//
112{
113 pos += n;
114 DispCounter(pos);
115
116 if (enableDisPatcher) DisPatcher();
117}
118
119
120//
122{
123 pos = num;
124 DispCounter(pos);
125
126 if (enableDisPatcher) DisPatcher();
127}
128
129
130//
131// ダイアログのタイトルを設定する.
132//
134{
135 if (tn!=NULL) title = mbs2ts(tn);
136 if (start) SetWindowText(title);
137}
138
139
140/*
141void CProgressTextDLG::OnCancel()
142{
143 cancel = true;
144 SetWindowText("キャンセル中");
145
146// CDialog::OnCancel();
147}
148*/
149
150
151//
152// ウィンドウがクローズされた場合.
153//
154BOOL CProgressTextDLG::OnCommand(WPARAM wParam, LPARAM lParam)
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}
167
168
169//
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}
180
181
static char THIS_FILE[]
virtual void SetTitle(char *tn)
CProgressTextDLG(LPCTSTR tn=NULL, BOOL edp=FALSE, CWnd *pParent=NULL)
virtual void StepIt(int n=1)
virtual void SetPos(int pos)
virtual void Start(int m=100, char *tn=NULL)
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam)
virtual void DoDataExchange(CDataExchange *pDX)
CString mbs2ts(char *str)
Definition WinTools.cpp:79
#define IDS_STR_CANCELING
Definition resource.h:108
#define IDC_PROGTEXT_MSG
Definition resource.h:46