#include <AbortDialog.h>
Public Types | |
enum | { IDD = IDD_DIALOG_ABORT } |
Public Methods | |
CAbortDialog (CWnd *pParent=NULL) | |
Protected Methods | |
virtual void | DoDataExchange (CDataExchange *pDX) |
afx_msg void | OnShowWindow (BOOL bShow, UINT nStatus) |
afx_msg void | OnAbort () |
|
Definition at line 21 of file AbortDialog.h.
00021 { IDD = IDD_DIALOG_ABORT }; |
|
Definition at line 21 of file AbortDialog.cpp.
00022 : CDialog(CAbortDialog::IDD, pParent) 00023 { 00024 //{{AFX_DATA_INIT(CAbortDialog) 00025 // NOTE: the ClassWizard will add member initialization here 00026 //}}AFX_DATA_INIT 00027 } |
|
Definition at line 30 of file AbortDialog.cpp.
00031 { 00032 CDialog::DoDataExchange(pDX); 00033 //{{AFX_DATA_MAP(CAbortDialog) 00034 // NOTE: the ClassWizard will add DDX and DDV calls here 00035 //}}AFX_DATA_MAP 00036 } |
|
Definition at line 49 of file AbortDialog.cpp.
00050 { 00051 // TODO: Add extra cleanup here 00052 ((CMainFrame *)AfxGetMainWnd())->SendMessage(MYWM_ABORT); 00053 ShowWindow(SW_HIDE); 00054 00055 CDialog::OnCancel(); 00056 } |
|
Definition at line 58 of file AbortDialog.cpp.
00059 { 00060 CDialog::OnShowWindow(bShow, nStatus); 00061 00062 // TODO: Add your message handler code here 00063 if (!bShow) 00064 return; 00065 00066 } |