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

Windows编程

开发平台:

Visual C++

  1. // PlateLocateDoc.h : interface of the CPlateLocateDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PLATELOCATEDOC_H__445B85D3_FDD8_4CA6_AD10_23C72A597E68__INCLUDED_)
  5. #define AFX_PLATELOCATEDOC_H__445B85D3_FDD8_4CA6_AD10_23C72A597E68__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "dibapi.h"
  10. class CPlateLocateDoc : public CDocument
  11. {
  12. protected: // create from serialization only
  13. CPlateLocateDoc();
  14. DECLARE_DYNCREATE(CPlateLocateDoc)
  15. // Attributes
  16. public:
  17. HDIB GetHDIB() const
  18. { return m_hDIB; }
  19. CPalette* GetDocPalette() const
  20. { return m_palDIB; }
  21. CSize GetDocSize() const
  22. { return m_sizeDoc; }
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CPlateLocateDoc)
  28. public:
  29. virtual BOOL OnNewDocument();
  30. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  31. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  32. virtual void Serialize(CArchive& ar);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. void ReplaceHDIB(HDIB hDIB);
  37. COLORREF m_refColorBKG;
  38. void InitDIBData();
  39. virtual ~CPlateLocateDoc();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:
  45. // Generated message map functions
  46. protected:
  47. HDIB m_hDIB;
  48. CPalette* m_palDIB;
  49. CSize m_sizeDoc;
  50. //{{AFX_MSG(CPlateLocateDoc)
  51. // NOTE - the ClassWizard will add and remove member functions here.
  52. //    DO NOT EDIT what you see in these blocks of generated code !
  53. afx_msg void OnFileReopen();
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. /////////////////////////////////////////////////////////////////////////////
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_PLATELOCATEDOC_H__445B85D3_FDD8_4CA6_AD10_23C72A597E68__INCLUDED_)