⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 toolpoint.h

📁 在PDA中的画图程序
💻 H
字号:
// ToolPoint.h: interface for the CToolPoint class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_TOOLPOINT_H__5636AEF5_35B1_418E_A770_D4FE68434625__INCLUDED_)
#define AFX_TOOLPOINT_H__5636AEF5_35B1_418E_A770_D4FE68434625__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Tool.h" 
#include "ShapePoint.h"
class CToolPoint : public CTool  
{
public:
	CToolPoint();
	virtual ~CToolPoint();
	CShapePoint* m_Point;
	virtual void OnMouseMove(CDrawInPDAView* pView, UINT nFlags, const CPoint& point);
	virtual void  OnLButtonUp(CDrawInPDAView* pView, UINT nFlags, const CPoint& point);
	virtual void  OnLButtonDblClk(CDrawInPDAView* pView, UINT nFlags, const CPoint& point);
	virtual void  OnLButtonDown(CDrawInPDAView* pView, UINT nFlags, const CPoint& point);

};

#endif // !defined(AFX_TOOLPOINT_H__5636AEF5_35B1_418E_A770_D4FE68434625__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -