propView.h
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:2k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // propView.h : interface of the CPropView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PROPVIEW_H__1F22506A_52B2_42C1_A1CA_0DF5C0864358__INCLUDED_)
  5. #define AFX_PROPVIEW_H__1F22506A_52B2_42C1_A1CA_0DF5C0864358__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CPropCntrItem;
  10. class CPropView : public CRichEditView
  11. {
  12. protected: // create from serialization only
  13. CPropView();
  14. DECLARE_DYNCREATE(CPropView)
  15. // Attributes
  16. public:
  17. CPropDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CPropView)
  23. public:
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual void OnInitialUpdate(); // called first time after construct
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CPropView();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CPropView)
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //    DO NOT EDIT what you see in these blocks of generated code !
  42. afx_msg void OnDestroy();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. #ifndef _DEBUG  // debug version in propView.cpp
  47. inline CPropDoc* CPropView::GetDocument()
  48.    { return (CPropDoc*)m_pDocument; }
  49. #endif
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_PROPVIEW_H__1F22506A_52B2_42C1_A1CA_0DF5C0864358__INCLUDED_)