MfcAppView.h
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小:2k
源码类别:

图形图象

开发平台:

Visual C++

  1. // MfcAppView.h : interface of the CMfcAppView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MFCAPPVIEW_H__7B4DD98F_945B_11D2_815A_444553540000__INCLUDED_)
  5. #define AFX_MFCAPPVIEW_H__7B4DD98F_945B_11D2_815A_444553540000__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CMfcAppView : public CView
  10. {
  11. protected: // create from serialization only
  12. CMfcAppView();
  13. DECLARE_DYNCREATE(CMfcAppView)
  14. // Attributes
  15. public:
  16. CMfcAppDoc* GetDocument();
  17. // Operations
  18. public:
  19. // global image params
  20. BYTE *m_buf;
  21. UINT m_width;
  22. UINT m_height;
  23. UINT m_widthDW;
  24. // draw what we've loaded
  25. void DrawBMP();
  26. // jpg load save
  27. void LoadJPG(CString fileName);
  28. void SaveJPG(CString filename, BOOL color);
  29. void LoadBMP(CString fileName);
  30. void SaveBMP24(CString fileName);
  31. // turn 24-bit to 256-color gray scale
  32. BYTE * MakeColormappedGrayscale(BYTE *inBuf,
  33.   UINT inWidth,
  34.   UINT inHeight,
  35.   UINT inWidthBytes,
  36.   UINT colors,
  37.   RGBQUAD* colormap);
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CMfcAppView)
  41. public:
  42. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  43. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  44. protected:
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. public:
  48. virtual ~CMfcAppView();
  49. #ifdef _DEBUG
  50. virtual void AssertValid() const;
  51. virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53. protected:
  54. // Generated message map functions
  55. protected:
  56. //{{AFX_MSG(CMfcAppView)
  57. afx_msg void OnFileOpen();
  58. afx_msg void OnFileSaveAs();
  59. afx_msg void OnFileSavecolormappedbmp();
  60. afx_msg void OnFileSavegrayas();
  61. afx_msg void OnFileGetdimensionsjpg();
  62. //}}AFX_MSG
  63. DECLARE_MESSAGE_MAP()
  64. };
  65. #ifndef _DEBUG  // debug version in MfcAppView.cpp
  66. inline CMfcAppDoc* CMfcAppView::GetDocument()
  67.    { return (CMfcAppDoc*)m_pDocument; }
  68. #endif
  69. /////////////////////////////////////////////////////////////////////////////
  70. //{{AFX_INSERT_LOCATION}}
  71. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  72. #endif // !defined(AFX_MFCAPPVIEW_H__7B4DD98F_945B_11D2_815A_444553540000__INCLUDED_)