JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
MessageBoxDLG.cpp
Go to the documentation of this file.
1//
2// MessageBoxDLG.cpp : インプリメンテーション ファイル
3//
4
5#include "MessageBoxDLG.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// CMessageBoxDLG ダイアログ
21
22CMessageBoxDLG::CMessageBoxDLG(LPCTSTR tn, CWnd* pParent)
23 : CDialog(CMessageBoxDLG::IDD, pParent)
24{
25 //{{AFX_DATA_INIT(CMessageBoxDLG)
26 //}}AFX_DATA_INIT
27
29 pWnd = pParent;
30 title = tn;
31 message = NULL;
32 cancel = false;
33 //
34 Create(dialogID, pWnd);
35}
36
37
38//
39CMessageBoxDLG::CMessageBoxDLG(UINT nIDTemplate, LPCTSTR tn, CWnd* pParent)
40 : CDialog(nIDTemplate, pParent)
41{
42 dialogID = nIDTemplate;
43 pWnd = pParent;
44 title = tn;
45 message = NULL;
46 cancel = false;
47 //
48 Create(dialogID, pWnd);
49}
50
51
52//
57
58
59//
60void CMessageBoxDLG::DoDataExchange(CDataExchange* pDX)
61{
62 CDialog::DoDataExchange(pDX);
63 //{{AFX_DATA_MAP(CMessageBoxDLG)
64 //}}AFX_DATA_MAP
65}
66
67
68
69BEGIN_MESSAGE_MAP(CMessageBoxDLG, CDialog)
70 //{{AFX_MSG_MAP(CMessageBoxDLG)
71 //}}AFX_MSG_MAP
73END_MESSAGE_MAP()
74
75
76
77
78// CMessageBoxDLG メッセージ ハンドラ
79
80BOOL CMessageBoxDLG::OnInitDialog()
81{
82 message = (CStatic*)GetDlgItem(IDC_MESG_BOX_TEXT);
83 return TRUE;
84}
85
86
87//
88// Progress Dialogの開始.Windowを表示させる..
89//
90void CMessageBoxDLG::Display(LPCTSTR mesg)
91{
92 if (pWnd!=NULL) {
93 RECT rect;
94 pWnd->GetWindowRect(&rect);
95 int sx = (rect.left+rect.right)/2;
96 int sy = (rect.top+rect.bottom)/2;
97 this->GetWindowRect(&rect);
98 sx -= (rect.right-rect.left)/2;
99 sy -= (rect.bottom-rect.top)/2;
100 this->SetWindowPos(NULL, sx, sy, 0, 0, SWP_NOSIZE|SWP_NOZORDER);
101 }
102 ShowWindow(SW_SHOW);
103
104 if (!title.IsEmpty()) SetWindowText(title);
105 if (message!=NULL && mesg!=NULL) message->SetWindowText(mesg);
106}
107
108
109//
110// Progress Dialogの停止.Windowを消し,変数を初期化する.
111//
113{
114 DestroyWindow();
115}
116
117
118//
120{
121 // TODO: ここにコントロール通知ハンドラー コードを追加します。
122}
123
124
125//
126// ウィンドウがクローズされた場合.
127//
128BOOL jbxwl::CMessageBoxDLG::OnCommand(WPARAM wParam, LPARAM lParam)
129{
130 if (wParam==IDCANCEL) cancel = true;
131
132 return CDialog::OnCommand(wParam, lParam);
133}
134
135
136
137
139// CMessageBoxDLG (デフォルト:IDD_MESG_BOX) を使用したメッセージダイアログ.要 delete
140//
141
142CMessageBoxDLG* jbxwl::MessageBoxDLG(int ttl, int msg, CWnd* wnd)
143{
144 CString mesg, noti;
145 noti.LoadString(ttl);
146 mesg.LoadString(msg);
147
148 CMessageBoxDLG* mesgbox = new CMessageBoxDLG(noti, wnd);
149 if (mesgbox!=NULL) mesgbox->Display(mesg);
150 return mesgbox;
151}
152
153
154//
155CMessageBoxDLG* jbxwl::MessageBoxDLG(LPCTSTR ttl, int msg, CWnd* wnd)
156{
157 CString mesg;
158 mesg.LoadString(msg);
159
160 CMessageBoxDLG* mesgbox = new CMessageBoxDLG(ttl, wnd);
161 if (mesgbox!=NULL) mesgbox->Display(mesg);
162 return mesgbox;
163}
164
165
166//
167CMessageBoxDLG* jbxwl::MessageBoxDLG(int ttl, LPCTSTR msg, CWnd* wnd)
168{
169 CString noti;
170 noti.LoadString(ttl);
171
172 CMessageBoxDLG* mesgbox = new CMessageBoxDLG(noti, wnd);
173 if (mesgbox!=NULL) mesgbox->Display(msg);
174 return mesgbox;
175}
176
177
178//
179CMessageBoxDLG* jbxwl::MessageBoxDLG(LPCTSTR ttl, LPCTSTR msg, CWnd* wnd)
180{
181 CMessageBoxDLG* mesgbox = new CMessageBoxDLG(ttl, wnd);
182 if (mesgbox!=NULL) mesgbox->Display(msg);
183 return mesgbox;
184}
185
186
187
188
190// MessageBox() のラッパー
191//
192
193int jbxwl::MessageBoxDLG(int ttl, int msg, UINT type, CWnd* wnd)
194{
195 CString mesg, noti;
196 noti.LoadString(ttl);
197 mesg.LoadString(msg);
198
199 int ret;
200 if (wnd!=NULL) ret = ::MessageDLG(noti, mesg, type, wnd->m_hWnd);
201 else ret = ::MessageDLG(noti, mesg, type, (HWND)NULL);
202 return ret;
203}
204
205
206//
207int jbxwl::MessageBoxDLG(LPCTSTR ttl, int msg, UINT type, CWnd* wnd)
208{
209 CString mesg;
210 mesg.LoadString(msg);
211
212 int ret;
213 if (wnd!=NULL) ret = ::MessageDLG(ttl, mesg, type, wnd->m_hWnd);
214 else ret = ::MessageDLG(ttl, mesg, type, (HWND)NULL);
215 return ret;
216}
217
218
219//
220int jbxwl::MessageBoxDLG(int ttl, LPCTSTR msg, UINT type, CWnd* wnd)
221{
222 CString noti;
223 noti.LoadString(ttl);
224
225 int ret;
226 if (wnd!=NULL) ret = ::MessageDLG(noti, msg, type, wnd->m_hWnd);
227 else ret = ::MessageDLG(noti, msg, type, (HWND)NULL);
228 return ret;
229}
230
231
232//
233int jbxwl::MessageBoxDLG(LPCTSTR ttl, LPCTSTR msg, UINT type, CWnd* wnd)
234{
235 int ret;
236 if (wnd!=NULL) ret = ::MessageDLG(ttl, msg, type, wnd->m_hWnd);
237 else ret = ::MessageDLG(ttl, msg, type, (HWND)NULL);
238 return ret;
239}
240
static char THIS_FILE[]
afx_msg void OnStnClickedMesgBoxText()
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam)
void Display(LPCTSTR mesg=NULL)
CMessageBoxDLG(LPCTSTR tn=NULL, CWnd *pParent=NULL)
virtual void DoDataExchange(CDataExchange *pDX)
int MessageDLG(LPCTSTR ttl, LPCTSTR msg, UINT type, HWND hWnd)
Definition WinTools.cpp:576
CMessageBoxDLG * MessageBoxDLG(int ttl, int msg, CWnd *wnd=NULL)
#define IDC_MESG_BOX_TEXT
Definition resource.h:40