circle.h
来自「电子白板程序」· C头文件 代码 · 共 33 行
H
33 行
// Circle.h: interface for the CCircle class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CIRCLE_H__96B42D65_1341_4160_9B9A_FD33D5C4F39C__INCLUDED_)
#define AFX_CIRCLE_H__96B42D65_1341_4160_9B9A_FD33D5C4F39C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Line.h"
class CCircle : public CLine
{
public:
CCircle( CDrawView & v );
virtual ~CCircle();
virtual CDrawBase * Clone( void );
virtual bool Select( CRect & rc );
protected:
virtual void OnMouseMove( UINT nFlags, CPoint point );
virtual void OnDraw( CDC * pDC );
};
#endif // !defined(AFX_CIRCLE_H__96B42D65_1341_4160_9B9A_FD33D5C4F39C__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?