ex124View.h
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

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