WaitDlg.h
上传用户:pengminm
上传日期:2007-01-01
资源大小:30k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_WAITDLG_H__55050813_F8E6_11D2_837D_00500406DAEB__INCLUDED_)
  2. #define AFX_WAITDLG_H__55050813_F8E6_11D2_837D_00500406DAEB__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // WaitDlg.h : header file
  7. //
  8. #include <afxmt.h>
  9. #include "WaitDlgThread.h"
  10. #include "AnimWnd.h"
  11. /////////////////////////////////////////////////////////////////////////////
  12. // cWaitDlg dialog
  13. class cWaitDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17. cWaitDlg(CWnd* pParent = NULL);   // standard constructor
  18. // Dialog Data
  19. //{{AFX_DATA(cWaitDlg)
  20. enum { IDD = IDD_BUSY_DLG };
  21. // NOTE: the ClassWizard will add data members here
  22. //}}AFX_DATA
  23.    cWaitDlgThread *m_Thread;
  24.    cAnimWnd    m_Anim;
  25.    CString        m_Text;
  26.    bool           m_bShowCancelButton;
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(cWaitDlg)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. virtual void OnCancel();
  36. // Generated message map functions
  37. //{{AFX_MSG(cWaitDlg)
  38. virtual void OnOK();
  39. virtual BOOL OnInitDialog();
  40. afx_msg void OnTimer(UINT nIDEvent);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_WAITDLG_H__55050813_F8E6_11D2_837D_00500406DAEB__INCLUDED_)