DrawRect.h
资源名称:DrawSys.zip [点击查看]
上传用户:mosfetic
上传日期:2022-06-16
资源大小:4612k
文件大小:1k
源码类别:
GDI/图象编程
开发平台:
Visual C++
- // DrawRect.h: interface for the CDrawRect class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_DRAWRECT_H__7597DBF9_39FD_4BAE_8F76_11A0E4B9E8A5__INCLUDED_)
- #define AFX_DRAWRECT_H__7597DBF9_39FD_4BAE_8F76_11A0E4B9E8A5__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "DrawShape.h"
- class CDrawRect : public CDrawShape
- {
- DECLARE_SERIAL(CDrawRect)
- private:
- CPoint m_ptFirst;
- CPoint m_ptSecond;
- CPoint m_ptTemp;
- BOOL m_bStart;
- public:
- CDrawRect();
- virtual ~CDrawRect();
- 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_DRAWRECT_H__7597DBF9_39FD_4BAE_8F76_11A0E4B9E8A5__INCLUDED_)