mgpen.h

来自「monqueror一个很具有参考价值的源玛」· C头文件 代码 · 共 23 行

H
23
字号
#ifndef		_MGPEN_H_#define		_MGPEN_H_class MGPen{public:	MGPen();	~MGPen();	MGPen( const MGPen& p );	MGPen( const MGColor& c, unsigned int width = 0, int style = MG::SolidLine );	const MGColor& color() const { return cl; }	void init( const MGColor&, unsigned int width, int style );protected:	friend class MGPainter;	unsigned int width;	int style;	MGColor cl;};#endif

⌨️ 快捷键说明

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