mgpixmap.h

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

H
32
字号
#ifndef		_MGPIXMAP_H_#define		_MGPIXMAP_H_class MGPainter;class MGPixmap{public:	MGPixmap();	~MGPixmap();	int width() const;	int height() const;	const MGBitmap* mask() const;	MGSize size() const;	void resize( int w, int h );	void resize( const MGSize& );		bool isNull() const;protected:	friend class MGPainter;	friend class khtml::MGCachedImage;#if( _CURRENT_PLATFORM == _PLATFORM_MINIGUI )	BITMAP bmp;public:	bool loadOk;#endif};#endif

⌨️ 快捷键说明

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