DEMODOC.H
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:1k
源码类别:

图片显示

开发平台:

Visual C++

  1. // demoDoc.h : interface of the CDemoDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CImage;
  5. class CDemoDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8. CDemoDoc();
  9. DECLARE_DYNCREATE(CDemoDoc)
  10. // Attributes
  11. public:
  12. CImage *image;
  13. BOOL stretchMode;
  14. // Operations
  15. public:
  16. inline CImage *GetImage() { return image; }
  17. inline BOOL GetStretchMode() { return stretchMode; }
  18. int ComputePixel(float x, float y, float &x1, float &y1);
  19. void ComputeNewImage(void);
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CDemoDoc)
  23. public:
  24. virtual BOOL OnNewDocument();
  25. virtual void Serialize(CArchive& ar);
  26. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  27. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  28. virtual BOOL DoSave(LPCTSTR pszPathName, BOOL bReplace =TRUE);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CDemoDoc();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CDemoDoc)
  41. afx_msg void OnUpdateFileSaveAs(CCmdUI* pCmdUI);
  42. afx_msg void OnUpdateFileSave(CCmdUI* pCmdUI);
  43. afx_msg void OnStretchMode();
  44. afx_msg void OnUpdateStretchMode(CCmdUI* pCmdUI);
  45. afx_msg void OnTransformEllipse();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. /////////////////////////////////////////////////////////////////////////////