ViewDIBView.h
上传用户:elida16851
上传日期:2022-08-05
资源大小:2048k
文件大小:2k
源码类别:

图形图象

开发平台:

Visual C++

  1. // ViewDIBView.h : interface of the CViewDIBView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VIEWDIBVIEW_H__E0DA1D8E_E308_11D2_9481_000021003EA5__INCLUDED_)
  5. #define AFX_VIEWDIBVIEW_H__E0DA1D8E_E308_11D2_9481_000021003EA5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CViewDIBView : public CScrollView
  10. {
  11. protected: // create from serialization only
  12. CViewDIBView();
  13. DECLARE_DYNCREATE(CViewDIBView)
  14. // Attributes
  15. public:
  16. CViewDIBDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CViewDIBView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual void OnInitialUpdate(); // called first time after construct
  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 ~CViewDIBView();
  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(CViewDIBView)
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. //    DO NOT EDIT what you see in these blocks of generated code !
  44. //}}AFX_MSG
  45. afx_msg LRESULT OnRealizePal(WPARAM wParam, LPARAM lParam);
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. #ifndef _DEBUG  // debug version in ViewDIBView.cpp
  49. inline CViewDIBDoc* CViewDIBView::GetDocument()
  50.    { return (CViewDIBDoc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_VIEWDIBVIEW_H__E0DA1D8E_E308_11D2_9481_000021003EA5__INCLUDED_)