⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 csplash.h

📁 Symbian开发提高的一个很好的实例,其实现了一个非常好理解的Symbian游戏开发流程
💻 H
字号:
#ifndef __CSPLASH_H
#define __CSPLASH_H

#include <w32std.h>			// for CWindowGc


class CSplash : CBase
{
// constructors and destructor
public:

	static CSplash* NewL(CWindowGc&	aGc, RWindow&	aWindow);

	~CSplash();

private:
	CSplash(CWindowGc&	aGc, RWindow&	aWindow);
	void ConstructL();

///////////////////////////////////////////////////////////////////////////////

// Other method
public:
	TBool Draw();

//////////////////////////////////////////////////////////////////////////////////
// data
private:
	CWindowGc&			iGc;
	RWindow&			iWindow;

	CFbsBitmap*			ibitmap;			// has a

	TInt8				iCount;	
};


#endif

⌨️ 快捷键说明

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