📄 csplash.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 + -