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