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

#include <MessageBoxDLG.h>

Inheritance diagram for CMessageBoxDLG:
Collaboration diagram for CMessageBoxDLG:

Public Types

enum  { IDD = IDD_MESG_BOX }
 

Public Member Functions

 CMessageBoxDLG (LPCTSTR tn=NULL, CWnd *pParent=NULL)
 
 CMessageBoxDLG (UINT nIDTemplate, LPCTSTR tn=NULL, CWnd *pParent=NULL)
 
virtual ~CMessageBoxDLG ()
 
BOOL OnInitDialog ()
 
void Display (LPCTSTR mesg=NULL)
 
void Destory (void)
 
bool isCanceled ()
 
afx_msg void OnStnClickedMesgBoxText ()
 
virtual BOOL OnCommand (WPARAM wParam, LPARAM lParam)
 

Public Attributes

CWnd * pWnd
 
UINT dialogID
 
CString title
 
CStatic * message
 
bool cancel
 

Protected Member Functions

virtual void DoDataExchange (CDataExchange *pDX)
 

Detailed Description

Definition at line 17 of file MessageBoxDLG.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
IDD 

Definition at line 41 of file MessageBoxDLG.h.

41{ IDD = IDD_MESG_BOX };
#define IDD_MESG_BOX
Definition resource.h:16

Constructor & Destructor Documentation

◆ CMessageBoxDLG() [1/2]

CMessageBoxDLG ( LPCTSTR tn = NULL,
CWnd * pParent = NULL )

Definition at line 22 of file MessageBoxDLG.cpp.

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}

References CMessageBoxDLG::cancel, CMessageBoxDLG::dialogID, CMessageBoxDLG::IDD, CMessageBoxDLG::message, CMessageBoxDLG::pWnd, and CMessageBoxDLG::title.

◆ CMessageBoxDLG() [2/2]

CMessageBoxDLG ( UINT nIDTemplate,
LPCTSTR tn = NULL,
CWnd * pParent = NULL )

Definition at line 39 of file MessageBoxDLG.cpp.

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}

References CMessageBoxDLG::cancel, CMessageBoxDLG::dialogID, CMessageBoxDLG::message, CMessageBoxDLG::pWnd, and CMessageBoxDLG::title.

◆ ~CMessageBoxDLG()

~CMessageBoxDLG ( )
virtual

Definition at line 53 of file MessageBoxDLG.cpp.

54{
55 Destory();
56}

References CMessageBoxDLG::Destory().

Here is the call graph for this function:

Member Function Documentation

◆ Destory()

void Destory ( void )

Definition at line 112 of file MessageBoxDLG.cpp.

113{
114 DestroyWindow();
115}

Referenced by CMessageBoxDLG::~CMessageBoxDLG().

Here is the caller graph for this function:

◆ Display()

void Display ( LPCTSTR mesg = NULL)

Definition at line 90 of file MessageBoxDLG.cpp.

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}

References CMessageBoxDLG::message, CMessageBoxDLG::pWnd, and CMessageBoxDLG::title.

Referenced by jbxwl::MessageBoxDLG(), jbxwl::MessageBoxDLG(), jbxwl::MessageBoxDLG(), and jbxwl::MessageBoxDLG().

Here is the caller graph for this function:

◆ DoDataExchange()

void DoDataExchange ( CDataExchange * pDX)
protectedvirtual

Definition at line 60 of file MessageBoxDLG.cpp.

61{
62 CDialog::DoDataExchange(pDX);
63 //{{AFX_DATA_MAP(CMessageBoxDLG)
64 //}}AFX_DATA_MAP
65}

◆ isCanceled()

bool isCanceled ( )
inline

Definition at line 37 of file MessageBoxDLG.h.

37{return cancel;}

References CMessageBoxDLG::cancel.

◆ OnCommand()

BOOL OnCommand ( WPARAM wParam,
LPARAM lParam )
virtual

Definition at line 128 of file MessageBoxDLG.cpp.

129{
130 if (wParam==IDCANCEL) cancel = true;
131
132 return CDialog::OnCommand(wParam, lParam);
133}

◆ OnInitDialog()

BOOL OnInitDialog ( )

Definition at line 80 of file MessageBoxDLG.cpp.

81{
82 message = (CStatic*)GetDlgItem(IDC_MESG_BOX_TEXT);
83 return TRUE;
84}
#define IDC_MESG_BOX_TEXT
Definition resource.h:40

References IDC_MESG_BOX_TEXT.

◆ OnStnClickedMesgBoxText()

void OnStnClickedMesgBoxText ( )

Definition at line 119 of file MessageBoxDLG.cpp.

120{
121 // TODO: ここにコントロール通知ハンドラー コードを追加します。
122}

Member Data Documentation

◆ cancel

◆ dialogID

UINT dialogID

◆ message

CStatic* message

◆ pWnd

◆ title


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