bsView.h
上传用户:yuzhuan
上传日期:2013-03-16
资源大小:3596k
文件大小:2k
源码类别:

2D图形编程

开发平台:

Visual C++

  1. // bsView.h : interface of the CBsView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_BSVIEW_H__D1CE24A2_20C7_43F8_BAB6_C7B9A279EBA6__INCLUDED_)
  5. #define AFX_BSVIEW_H__D1CE24A2_20C7_43F8_BAB6_C7B9A279EBA6__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Dib.h"
  10. class CBsView :public CView
  11. {
  12. protected: // create from serialization only
  13. CBsView();
  14. DECLARE_DYNCREATE(CBsView)
  15. // Attributes
  16. public:
  17. CBsDoc* GetDocument();
  18.     void Sub(BYTE *p_data,BYTE *p_dataBK,int wide,int height,DWORD size);
  19. // void Sub(LPBYTE p_data,  LPBYTE p_dataBK,int wide,int height,int bitcount);
  20. void mid(CDib *dib,int n);
  21. CDib dib1;
  22. CDib dib2;
  23. CDib *dib;
  24. CString FilePathname2;
  25. CString FilePathname1;
  26.     CString FileName2;
  27. CString FileName1;
  28. BOOL valid;
  29. BYTE *FilePath;
  30. // Operations
  31. public:
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CBsView)
  35. public:
  36. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  37. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  38. protected:
  39. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  40. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  41. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. public:
  45. virtual ~CBsView();
  46. #ifdef _DEBUG
  47. virtual void AssertValid() const;
  48. virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50. protected:
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CBsView)
  54. afx_msg void OnOperate();
  55. afx_msg void OnFileOpenb();
  56. afx_msg void OnFileOpeno();
  57. //}}AFX_MSG
  58. DECLARE_MESSAGE_MAP()
  59. };
  60. #ifndef _DEBUG  // debug version in bsView.cpp
  61. inline CBsDoc* CBsView::GetDocument()
  62.    { return (CBsDoc*)m_pDocument; }
  63. #endif
  64. /////////////////////////////////////////////////////////////////////////////
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  67. #endif // !defined(AFX_BSVIEW_H__D1CE24A2_20C7_43F8_BAB6_C7B9A279EBA6__INCLUDED_)