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

📄 switchtool.h

📁 利用VisualC++写的一个比较大的画电路土软件
💻 H
字号:
// SwitchTool.h: interface for the CSwitchTool class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SWITCHTOOL_H__53B48221_6853_11D4_BBD7_600000000ECD__INCLUDED_)
#define AFX_SWITCHTOOL_H__53B48221_6853_11D4_BBD7_600000000ECD__INCLUDED_

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

#include "BaseTool.h"
#include "epoint.h"
#include "switch.h"
class CSwitchTool : public CBaseTool  
{
public:
	CSwitchTool(CWnd* cWnd,CElist* pList,CPointList* pOintList,CLineList* pLineList,CTextList* pText);
	CSwitchTool(CElist* pList,CPointList* pOintList,CLineList* pLineList,CTextList* pText);
	virtual ~CSwitchTool();
public:	
	void OnLButtonDown(UINT nFlags, CPoint point);
	void OnLButtonUp(UINT nFlags, CPoint point);
	void OnMouseMove(UINT nFlags, CPoint point);
	void AddObject(CPoint point);
public:
	CBase* p1,*p2;
};
#endif // !defined(AFX_SWITCHTOOL_H__53B48221_6853_11D4_BBD7_600000000ECD__INCLUDED_)

⌨️ 快捷键说明

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