📄 example2dappui.h
字号:
/*
* ============================================================================
* Name : CExample2DAppUi from Example2DAppui.h
* Part of : Example2D
* Created : 23.09.2005 by
* Description:
* Declares UI class for application.
* Version :
* Copyright:
* ============================================================================
*/
#ifndef __EXAMPLE2DAPPUI_H__
#define __EXAMPLE2DAPPUI_H__
// FORWARD DECLARATIONS
class CExample2DContainer;
class CSoundPlayer;
// CLASS DECLARATION
#ifdef __SERIES_90__
#include <eikappui.h>
class CExample2DAppUi : public CEikAppUi
#else
// We use CAknAppUi in series 60
// because with it we can change the
// KeyBlockMode..
// with CEikAppUi we cant do it.
// and in series 90 CAknAppUi is not supported.
#include <aknappui.h>
class CExample2DAppUi : public CAknAppUi
#endif
{
public: // Constructors and destructor
/**
* Second phase constructor
*/
void ConstructL();
/**
* Destructor
*/
~CExample2DAppUi();
private:
void HandleCommandL( TInt aCommand );
private: //Data
CExample2DContainer* iAppContainer;
};
#endif
// End of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -