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

📄 tetrisdocument.h

📁 在symbian2.0平台上开发的完整的俄罗斯方块的源码。
💻 H
字号:
#ifndef __TETRISDOCUMENT_H__
#define __TETRISDOCUMENT_H__

// INCLUDES

#include <akndoc.h>

class CGameTetris;

// CLASS DECLARATION

class CTetrisDocument : public CAknDocument
{
// Constructors and destructor
public: 
    /// Two-phased constructor.
    static CTetrisDocument* NewL(CEikApplication& aApp);
	static CTetrisDocument* NewLC(CEikApplication& aApp);
    /// Destructor.        
    ~CTetrisDocument();
private:
    /// Default constructor
    CTetrisDocument(CEikApplication& aApp);  
	/// Second phase constructor
	void ConstructL();

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

// Other method
private: 
	// From CEikDocument:
    /// Create CTetrisAppUi "App UI" object.
    CEikAppUi* CreateAppUiL();

public:
	CGameTetris* Model();

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

// data
private:
	CGameTetris* iGame;
};

#endif

⌨️ 快捷键说明

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