DrawCliView.h
上传用户:seaboy_04
上传日期:2013-02-24
资源大小:284k
文件大小:3k
源码类别:

其他行业

开发平台:

Visual C++

  1. // DrawCliView.h : interface of the CDrawCliView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DRAWCLIVIEW_H__1BF0DCE3_3A81_49D2_988E_EEEEDBB91AFC__INCLUDED_)
  5. #define AFX_DRAWCLIVIEW_H__1BF0DCE3_3A81_49D2_988E_EEEEDBB91AFC__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CDrawItem;
  10. class CDrawCliView : public CView
  11. {
  12. protected: // create from serialization only
  13. CDrawCliView();
  14. DECLARE_DYNCREATE(CDrawCliView)
  15. // Attributes
  16. public:
  17. CDrawCliDoc* GetDocument();
  18. // m_pSelection holds the selection to the current CDrawItem.
  19. // For many applications, such a member variable isn't adequate to
  20. //  represent a selection, such as a multiple selection or a selection
  21. //  of objects that are not CDrawItem objects.  This selection
  22. //  mechanism is provided just to help you get started.
  23. // TODO: replace this selection mechanism with one appropriate to your app.
  24. CDrawItem* m_pSelection;
  25. // Operations
  26. public:
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CDrawCliView)
  30. public:
  31. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  32. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  33. protected:
  34. virtual void OnInitialUpdate(); // called first time after construct
  35. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  36. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  37. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  38. virtual BOOL IsSelected(const CObject* pDocItem) const;// Container support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. public:
  42. virtual ~CDrawCliView();
  43. #ifdef _DEBUG
  44. virtual void AssertValid() const;
  45. virtual void Dump(CDumpContext& dc) const;
  46. #endif
  47. protected:
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CDrawCliView)
  51. // NOTE - the ClassWizard will add and remove member functions here.
  52. //    DO NOT EDIT what you see in these blocks of generated code !
  53. afx_msg void OnDestroy();
  54. afx_msg void OnSetFocus(CWnd* pOldWnd);
  55. afx_msg void OnSize(UINT nType, int cx, int cy);
  56. afx_msg void OnInsertObject();
  57. afx_msg void OnCancelEditCntr();
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. #ifndef _DEBUG  // debug version in DrawCliView.cpp
  62. inline CDrawCliDoc* CDrawCliView::GetDocument()
  63.    { return (CDrawCliDoc*)m_pDocument; }
  64. #endif
  65. /////////////////////////////////////////////////////////////////////////////
  66. //{{AFX_INSERT_LOCATION}}
  67. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  68. #endif // !defined(AFX_DRAWCLIVIEW_H__1BF0DCE3_3A81_49D2_988E_EEEEDBB91AFC__INCLUDED_)