MyFormView.h
上传用户:sisi1999
上传日期:2007-01-02
资源大小:39k
文件大小:2k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. #if !defined(AFX_MYFORMVIEW_H__96C3F27F_AD99_11D3_AB38_005004CF7A2A__INCLUDED_)
  2. #define AFX_MYFORMVIEW_H__96C3F27F_AD99_11D3_AB38_005004CF7A2A__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyFormView.h : header file
  7. //
  8. #include "PropPgFormView.h"
  9. #include "PropPages.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyFormView form view
  12. #ifndef __AFXEXT_H__
  13. #include <afxext.h>
  14. #endif
  15. class CMyFormView : public CPropPgFormView
  16. {
  17. protected:
  18. CMyFormView();           // protected constructor used by dynamic creation
  19. DECLARE_DYNCREATE(CMyFormView)
  20. // Form Data
  21. public:
  22. //{{AFX_DATA(CMyFormView)
  23. enum { IDD = IDD_VIEW_DLG };
  24. CSpinButtonCtrl m_ctlOffset;
  25. //}}AFX_DATA
  26. CPropPage1 m_Page1;
  27. CPropPage2 m_Page2;
  28. CPropPage3 m_Page3;
  29. // Attributes
  30. public:
  31. // Operations
  32. public:
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CMyFormView)
  36. public:
  37. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  38. virtual void OnInitialUpdate();
  39. protected:
  40. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41. virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. protected:
  45. virtual ~CMyFormView();
  46. #ifdef _DEBUG
  47. virtual void AssertValid() const;
  48. virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50. // Generated message map functions
  51. //{{AFX_MSG(CMyFormView)
  52. afx_msg void OnClose();
  53. afx_msg void OnResizeFrame();
  54. afx_msg void OnDisable();
  55. afx_msg void OnDeltaposOffset(NMHDR* pNMHDR, LRESULT* pResult);
  56. afx_msg void OnCenter();
  57. afx_msg void OnAllowPageChange();
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. /////////////////////////////////////////////////////////////////////////////
  62. //{{AFX_INSERT_LOCATION}}
  63. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  64. #endif // !defined(AFX_MYFORMVIEW_H__96C3F27F_AD99_11D3_AB38_005004CF7A2A__INCLUDED_)