DrawFillRect.h
资源名称:DrawSys.zip [点击查看]
上传用户:mosfetic
上传日期:2022-06-16
资源大小:4612k
文件大小:1k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- // DrawFillRect.h: interface for the CDrawFillRect class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_DRAWFILLRECT_H__F4F6ECF9_9B37_41AF_85AF_B167A76CF867__INCLUDED_)
- #define AFX_DRAWFILLRECT_H__F4F6ECF9_9B37_41AF_85AF_B167A76CF867__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "DrawShape.h"
- class CDrawFillRect : public CDrawShape
- {
- DECLARE_SERIAL(CDrawFillRect)
- private:
- CPoint m_ptFirst;
- CPoint m_ptSecond;
- CPoint m_ptTemp;
- BOOL m_bStart;
- public:
- CDrawFillRect();
- virtual ~CDrawFillRect();
- virtual void Draw(CDC* pDC);
- virtual void OnMouseMove(CDC* pDC, UINT nFlags, CPoint point);
- virtual void OnLButtonDown(CDC* pDC, UINT nFlags, CPoint point);
- virtual BOOL OnLButtonUp(CDC* pDC, UINT nFlags, CPoint point);
- virtual void Serialize(CArchive& ar);
- virtual BOOL PtInShape(CPoint point);
- virtual void ShowProperty();
- };
- #endif // !defined(AFX_DRAWFILLRECT_H__F4F6ECF9_9B37_41AF_85AF_B167A76CF867__INCLUDED_)