PCTestView.h
上传用户:xajzjg
上传日期:2007-01-01
资源大小:277k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // PCTestView.h : interface of the CPCTestView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PCTESTVIEW_H__D1BB416F_804D_11D1_80B6_080009CC78D8__INCLUDED_)
  5. #define AFX_PCTESTVIEW_H__D1BB416F_804D_11D1_80B6_080009CC78D8__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "PCWnd.h"
  10. class CPCTestView : public CView
  11. {
  12. protected: // create from serialization only
  13. CPCTestView();
  14. DECLARE_DYNCREATE(CPCTestView)
  15. // Attributes
  16. public:
  17. CPCTestDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CPCTestView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CPCTestView();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CPCTestView)
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. afx_msg void OnDestroy();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. CPopChildWnd m_pcWnd;
  47. };
  48. #ifndef _DEBUG  // debug version in PCTestView.cpp
  49. inline CPCTestDoc* CPCTestView::GetDocument()
  50.    { return (CPCTestDoc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_PCTESTVIEW_H__D1BB416F_804D_11D1_80B6_080009CC78D8__INCLUDED_)