Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

CAbortDialog Class Reference

#include <AbortDialog.h>

List of all members.

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 ()


Member Enumeration Documentation

anonymous enum
 

Enumeration values:
IDD 

Definition at line 21 of file AbortDialog.h.

00021 { IDD = IDD_DIALOG_ABORT };


Constructor & Destructor Documentation

CAbortDialog::CAbortDialog CWnd *    pParent = NULL
 

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 }


Member Function Documentation

void CAbortDialog::DoDataExchange CDataExchange *    pDX [protected, virtual]
 

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 }

void CAbortDialog::OnAbort   [protected]
 

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 }

void CAbortDialog::OnShowWindow BOOL    bShow,
UINT    nStatus
[protected]
 

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 }


The documentation for this class was generated from the following files:
Generated on Thu Jan 23 12:32:16 2003 by doxygen1.3-rc2