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

📄 retronodetileset.h

📁 关于symbian OS S60 2.X平台
💻 H
字号:
////////////////////////////////////////////////////////////////////////
//
// RetroNodeTileset.h
//
// Copyright (c) 2003 Nokia Mobile Phones Ltd.  All rights reserved.
//
////////////////////////////////////////////////////////////////////////

#ifndef __RETRONODETILESET_H
#define __RETRONODETILESET_H

#include "Tileset.h"

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

class CRetroLeafTileset;

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

class CRetroNodeTileset : public CTileset 
	{
public:
	static CRetroNodeTileset* NewL(CRetroLeafTileset& aLeafFactory);
	~CRetroNodeTileset();

protected:
	CRetroNodeTileset();
    void ConstructL(CRetroLeafTileset& aLeafFactory);

	enum { KTopLeftIsForeground		= 1 };
	enum { KTopRightIsForeground	= 2 };
	enum { KBottomLeftIsForeground	= 4 };
	enum { KBottomRightIsForeground	= 8 };

private:
	void CopyData(TInt aSrc[], TInt aDest[]);
	void MergeData(TInt aSrc[], TInt aDest[]);
	};

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

#endif

⌨️ 快捷键说明

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