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

📄 title.h

📁 一个symbian上成熟的小游戏源码
💻 H
字号:
// Title.h: interface for the CTitle class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_TITLE_H__3D39278F_9F80_4E65_AB89_E641E8DA1BC5__INCLUDED_)
#define AFX_TITLE_H__3D39278F_9F80_4E65_AB89_E641E8DA1BC5__INCLUDED_

#include "TiledLayer.h"
using namespace gamespace;
#include "BaseControl.h"

class CTitle : public CBaseControl
{
private:
	CTitle(const TRect& aRect );
	void ConstructL();

public:
	virtual ~CTitle();
	static CTitle* NewL(const TRect& aRect);
	static CTitle* NewLC(const TRect& aRect);

public://from base
	void Draw(CBitmapContext & aGc) const;//(CFbsBitGc,CBitmapContext)

private://new function
	void DrawTime(CBitmapContext & aGc) const;
};

#endif

⌨️ 快捷键说明

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