📄 circle.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -