ClipSampView.h
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:3k
源码类别:

DNA

开发平台:

Visual C++

  1. // ClipSampView.h : interface of the CClipSampView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CLIPSAMPVIEW_H__1D48F68F_DFF7_11D2_9E78_00104B08CC22__INCLUDED_)
  5. #define AFX_CLIPSAMPVIEW_H__1D48F68F_DFF7_11D2_9E78_00104B08CC22__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CClipSampView : public CScrollView
  10. {
  11. protected: // create from serialization only
  12. CClipSampView();
  13. DECLARE_DYNCREATE(CClipSampView)
  14. // Attributes
  15. // for tracking
  16.     CRectTracker m_tracker;
  17.     CRect m_rectTracker;
  18. // for drag-and-drop
  19.     CRect m_rectTrackerEnter; // original logical coords
  20.     COleDropTarget m_dropTarget;
  21.     CSize m_dragOffset; // device coords
  22.     CSize m_sizeTotal;  // document size
  23. private:
  24.     BOOL DoPasteDib(COleDataObject* pDataObject);
  25.     COleDataSource* SaveDib();
  26.     void MoveTrackRect(CPoint point);
  27. public:
  28. CClipSampDoc* GetDocument();
  29. // Operations
  30. public:
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CClipSampView)
  34. public:
  35. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  36. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  37. protected:
  38. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  39. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  40. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  41.     virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo = NULL);
  42. virtual void OnInitialUpdate(); // called first time after construct
  43.     virtual DROPEFFECT OnDragEnter(COleDataObject* pDataObject, DWORD dwKeyState, CPoint point);
  44.     virtual DROPEFFECT OnDragOver(COleDataObject* pDataObject, DWORD dwKeyState, CPoint point);
  45.     virtual void OnDragLeave();
  46.     virtual BOOL OnDrop( COleDataObject* pDataObject, DROPEFFECT dropEffect, CPoint point );
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. public:
  50. virtual ~CClipSampView();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. protected:
  56. // Generated message map functions
  57. protected:
  58. //{{AFX_MSG(CClipSampView)
  59. // NOTE - the ClassWizard will add and remove member functions here.
  60. //    DO NOT EDIT what you see in these blocks of generated code !
  61.     afx_msg void OnEditCopy();
  62.     afx_msg void OnUpdateEditCopy(CCmdUI* pCmdUI);
  63.     afx_msg void OnEditCut();
  64.     afx_msg void OnEditPaste();
  65.     afx_msg void OnUpdateEditPaste(CCmdUI* pCmdUI);
  66.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  67.     afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  68. //}}AFX_MSG
  69. DECLARE_MESSAGE_MAP()
  70. };
  71. #ifndef _DEBUG  // debug version in ClipSampView.cpp
  72. inline CClipSampDoc* CClipSampView::GetDocument()
  73.    { return (CClipSampDoc*)m_pDocument; }
  74. #endif
  75. /////////////////////////////////////////////////////////////////////////////
  76. //{{AFX_INSERT_LOCATION}}
  77. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  78. #endif // !defined(AFX_CLIPSAMPVIEW_H__1D48F68F_DFF7_11D2_9E78_00104B08CC22__INCLUDED_)