csplash.h
来自「在symbian2.0平台上开发的完整的俄罗斯方块的源码。」· C头文件 代码 · 共 38 行
H
38 行
#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 + =
减小字号Ctrl + -
显示快捷键?