DIALOG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // $$dlg_hfile$$.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1995-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  13. #define $$FILE_NAME_SYMBOL$$_INCLUDED_
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17. $$IF(AUTOMATION)
  18. class $$DLGAUTOPROXY_CLASS$$;
  19. $$ENDIF //AUTOMATION
  20. /////////////////////////////////////////////////////////////////////////////
  21. // $$DLG_CLASS$$ dialog
  22. class $$DLG_CLASS$$ : public $$DLG_BASE_CLASS$$
  23. {
  24. $$IF(AUTOMATION)
  25. DECLARE_DYNAMIC($$DLG_CLASS$$);
  26. friend class $$DLGAUTOPROXY_CLASS$$;
  27. $$ENDIF
  28. // Construction
  29. public:
  30. $$DLG_CLASS$$(CWnd* pParent = NULL);    // standard constructor
  31. $$IF(AUTOMATION)
  32. virtual ~$$DLG_CLASS$$();
  33. $$ENDIF
  34. // Dialog Data
  35. //{{AFX_DATA($$DLG_CLASS$$)
  36. enum { IDD = IDD_$$SAFE_ROOT$$_DIALOG };
  37. // NOTE: the ClassWizard will add data members here
  38. //}}AFX_DATA
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL($$DLG_CLASS$$)
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. protected:
  46. $$IF(AUTOMATION)
  47. $$DLGAUTOPROXY_CLASS$$* m_pAutoProxy;
  48. $$ENDIF
  49. HICON m_hIcon;
  50. $$IF(AUTOMATION)
  51. BOOL CanExit();
  52. $$ENDIF //AUTOMATION
  53. // Generated message map functions
  54. //{{AFX_MSG($$DLG_CLASS$$)
  55. virtual BOOL OnInitDialog();
  56. $$IF(ABOUT)
  57. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  58. $$ENDIF
  59. $$IF(HELP)
  60. afx_msg void OnDestroy();
  61. $$ENDIF
  62. $$IF(PRESS_ME_DIALOG)
  63. afx_msg void OnPressMe();
  64. $$ENDIF
  65. afx_msg void OnPaint();
  66. afx_msg HCURSOR OnQueryDragIcon();
  67. $$IF(AUTOMATION)
  68. afx_msg void OnClose();
  69. virtual void OnOK();
  70. virtual void OnCancel();
  71. $$ENDIF //AUTOMATION
  72. //}}AFX_MSG
  73. DECLARE_MESSAGE_MAP()
  74. };
  75. //{{AFX_INSERT_LOCATION}}
  76. // $$INSERT_LOCATION_COMMENT$$
  77. #endif // !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)