ground.h
来自「此程序实现了类似protel电路画图程序。」· C头文件 代码 · 共 31 行
H
31 行
// Ground.h: interface for the CGround class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_GROUND_H__AFC29FE3_67BB_11D4_BBD7_600000000ECD__INCLUDED_)
#define AFX_GROUND_H__AFC29FE3_67BB_11D4_BBD7_600000000ECD__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Base.h"
class CGround : public CBase
{
public:
CGround(int nType,CBaseList* pBaseList);
CGround(CBase* pp1,CBaseList* pBaseList);
virtual ~CGround();
public:
void Draw(CDC* pDC);
void OffSet(CSize size);
CRect GetGraphRect();
void SetPoint(CPoint pp);
void RotateCell(double angle);
public:
CPoint aa[6];
};
#endif // !defined(AFX_GROUND_H__AFC29FE3_67BB_11D4_BBD7_600000000ECD__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?