DrawFillRect.h
上传用户:mosfetic
上传日期:2022-06-16
资源大小:4612k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // DrawFillRect.h: interface for the CDrawFillRect class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DRAWFILLRECT_H__F4F6ECF9_9B37_41AF_85AF_B167A76CF867__INCLUDED_)
  5. #define AFX_DRAWFILLRECT_H__F4F6ECF9_9B37_41AF_85AF_B167A76CF867__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "DrawShape.h"
  10. class CDrawFillRect : public CDrawShape  
  11. {
  12. DECLARE_SERIAL(CDrawFillRect)
  13. private:
  14. CPoint m_ptFirst;
  15. CPoint m_ptSecond;
  16. CPoint m_ptTemp;
  17. BOOL m_bStart;
  18. public:
  19. CDrawFillRect();
  20. virtual ~CDrawFillRect();
  21. virtual void Draw(CDC* pDC);
  22. virtual void OnMouseMove(CDC* pDC, UINT nFlags, CPoint point);
  23. virtual void OnLButtonDown(CDC* pDC, UINT nFlags, CPoint point);
  24. virtual BOOL OnLButtonUp(CDC* pDC, UINT nFlags, CPoint point);
  25. virtual void Serialize(CArchive& ar);
  26. virtual BOOL PtInShape(CPoint point);
  27. virtual void ShowProperty();
  28. };
  29. #endif // !defined(AFX_DRAWFILLRECT_H__F4F6ECF9_9B37_41AF_85AF_B167A76CF867__INCLUDED_)