ggballenv.h

来自「一个symbian上成熟的小游戏源码」· C头文件 代码 · 共 33 行

H
33
字号
// GGBallEnv.h: interface for the CGGBallEnv class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GGBALLENV_H__79176DA5_97D3_4A5B_89B0_BB2F83D01DEF__INCLUDED_)
#define AFX_GGBALLENV_H__79176DA5_97D3_4A5B_89B0_BB2F83D01DEF__INCLUDED_

#include <e32base.h>
#include <e32std.h>
#include <gdi.h>

class CGGBallEnv : public CBase
{
private:
	static CFont* iFont;
	static TSize iSCreenSize;
	static TInt iPaneHeight;
	static TInt iMenuItemHeigt;

private:
	static void InitFont();

public:
	static void Init();

	static const CFont* Font();
	static TSize ScreenSize();
	static TInt PaneHeigth();
	static TInt MenuItemHeight();
};

#endif

⌨️ 快捷键说明

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