PropertyFormView.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #if !defined(AFX_PROPERTYFORMVIEW_H__38E47C7A_8F05_4E08_8765_01C48BD9DEA9__INCLUDED_)
  2. #define AFX_PROPERTYFORMVIEW_H__38E47C7A_8F05_4E08_8765_01C48BD9DEA9__INCLUDED_
  3. #include "MyPropertySheet.h" // Added by ClassView
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // PropertyFormView.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CPropertyFormView form view
  11. #ifndef __AFXEXT_H__
  12. #include <afxext.h>
  13. #endif
  14. #include "ResizableFormView.h"
  15. class CPropertyFormView : public CResizableFormView
  16. {
  17. protected:
  18. CPropertyFormView(); // protected constructor used by dynamic creation
  19. DECLARE_DYNCREATE(CPropertyFormView)
  20. // Form Data
  21. public:
  22. //{{AFX_DATA(CPropertyFormView)
  23. enum { IDD = IDD_NEWFORM };
  24. // NOTE: the ClassWizard will add data members here
  25. //}}AFX_DATA
  26. // Attributes
  27. public:
  28. // Operations
  29. public:
  30. CMyPropertySheet m_Sheet;
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CPropertyFormView)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. virtual ~CPropertyFormView();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. // Generated message map functions
  45. //{{AFX_MSG(CPropertyFormView)
  46. virtual BOOL OnInitDialog();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_PROPERTYFORMVIEW_H__38E47C7A_8F05_4E08_8765_01C48BD9DEA9__INCLUDED_)