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

📄 light.h

📁 此程序实现了类似protel电路画图程序。
💻 H
字号:
// Light.h: interface for the CLight class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_LIGHT_H__3A5C80E1_6C3E_11D4_BBD7_600000000ECD__INCLUDED_)
#define AFX_LIGHT_H__3A5C80E1_6C3E_11D4_BBD7_600000000ECD__INCLUDED_

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

#include "Base.h"
class CLight : public CBase  
{
public:
	CLight(int nType,CBaseList* pBaseList);
	CLight(CBase* pp1,CBase* pp2,CBaseList* pBaseList);
	virtual ~CLight();
public:
	void Draw(CDC* pDC);
	void OffSet(CSize size);
	CRect GetGraphRect();
	void SetPoint(CPoint pp);
	void RotateCell(double angle);
	void DrawCircle(CDC *pp);
public:
	CPoint aa,bb,cc,dd;
};

#endif // !defined(AFX_LIGHT_H__3A5C80E1_6C3E_11D4_BBD7_600000000ECD__INCLUDED_)

⌨️ 快捷键说明

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