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

📄 myextedittool.h

📁 地理信息系统(GIS)相关.子图符号转成文字描述的功能.
💻 H
字号:
#if !defined (__MYEXTEDITTOOL_H)
#define __MYEXTEDITTOOL_H

#include "MyEditView.h"
#include "CGisEdit.h"

//==============================================//
//-----------------"删除点"的Tool---------------//
//==============================================//
class  CDelGroupPointTool: public BaseGisTool
{
	public:
		CDelGroupPointTool(BASEEDVIEW pEditView);
		~CDelGroupPointTool();

	private:
		CMyEditView		*m_pMyEditView;//记载编辑视指针
		
	public:
		virtual int LButtonDown (UINT nFlags, CPoint point);
		virtual int LButtonUp (UINT nFlags, CPoint point);
		virtual int MouseMove (UINT nFlags, CPoint point);
		virtual int RButtonUp (UINT nFlags, CPoint point);
		virtual int OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
		virtual void DrawGraphics(MyDC mdc);
		virtual void Reset();

	private:
		void DoDelGroupPoints();
};



#endif

⌨️ 快捷键说明

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