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