JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
MessageBoxDLG.h
Go to the documentation of this file.
1#pragma once
2
3//
4// MessageBoxDLG.h : ヘッダー ファイル
5//
6
7#include "DLGBoxBase.h"
8
9
10//
11namespace jbxwl {
12
13
15// CMessageBoxDLG ダイアログ
16
17class CMessageBoxDLG : public CDialog
18{
19public:
20 CWnd* pWnd;
22 CString title;
23 CStatic* message;
24 bool cancel;
25
26// コンストラクション
27public:
28 CMessageBoxDLG( LPCTSTR tn=NULL, CWnd* pParent=NULL);
29 CMessageBoxDLG(UINT nIDTemplate, LPCTSTR tn=NULL, CWnd* pParent=NULL);
30
31 virtual ~CMessageBoxDLG();
32
33 BOOL OnInitDialog();
34
35 void Display(LPCTSTR mesg=NULL);
36 void Destory(void);
37 bool isCanceled() {return cancel;}
38
39// ダイアログ データ
40 //{{AFX_DATA(CMessageBoxDLG)
41 enum { IDD = IDD_MESG_BOX };
42 //}}AFX_DATA
43
44// オーバーライド
45protected:
46 //{{AFX_VIRTUAL(CMessageBoxDLG)
47 virtual void DoDataExchange(CDataExchange* pDX);
48 //}}AFX_VIRTUAL
49
50// インプリメンテーション
51protected:
52 //{{AFX_MSG(CMessageBoxDLG)
53 //}}AFX_MSG
54 DECLARE_MESSAGE_MAP()
55public:
56 afx_msg void OnStnClickedMesgBoxText();
57 virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
58};
59
60
61//{{AFX_INSERT_LOCATION}}
62
63
64
66
67// CMessageBoxDLG (デフォルト:IDD_MESG_BOX) を使用したメッセージダイアログ.要 delete
68CMessageBoxDLG* MessageBoxDLG(int ttl, int msg, CWnd* wnd=NULL);
69CMessageBoxDLG* MessageBoxDLG(LPCTSTR ttl, int msg, CWnd* wnd=NULL);
70CMessageBoxDLG* MessageBoxDLG(int ttl, LPCTSTR msg, CWnd* wnd=NULL);
71CMessageBoxDLG* MessageBoxDLG(LPCTSTR ttl, LPCTSTR msg, CWnd* wnd=NULL);
72
73// MessageBox() のラッパー
74int MessageBoxDLG(int ttl, int msg, UINT type, CWnd* wnd=NULL);
75int MessageBoxDLG(LPCTSTR ttl, int msg, UINT type, CWnd* wnd=NULL);
76int MessageBoxDLG(int ttl, LPCTSTR msg, UINT type, CWnd* wnd=NULL);
77int MessageBoxDLG(LPCTSTR ttl, LPCTSTR msg, UINT type, CWnd* wnd=NULL);
78
79
80// type ex. see MessageBox() and WjnUser.h
81/*
82#define MB_OK 0x00000000L
83#define MB_OKCANCEL 0x00000001L
84#define MB_ABORTRETRYIGNORE 0x00000002L
85#define MB_YESNOCANCEL 0x00000003L
86#define MB_YESNO 0x00000004L
87#define MB_RETRYCANCEL 0x00000005L
88*/
89
90
92
93
94} // namespace
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)
CMessageBoxDLG * MessageBoxDLG(int ttl, int msg, CWnd *wnd=NULL)
#define IDD_MESG_BOX
Definition resource.h:16