example3dappui.h
来自「symbian C++ 手机二维软件开发例子程序」· C头文件 代码 · 共 65 行
H
65 行
/*
============================================================================
* Name : Example3DAppUi.h
* Part of : Example3D
* Description : Definition of Example3DAppUi
* Copyright (c) 2005 Nokia Corporation
============================================================================
*/
#ifndef __EXAMPLE3DAPPUI_H__
#define __EXAMPLE3DAPPUI_H__
// INCLUDES
#include <eikapp.h>
#include <eikdoc.h>
#include <e32std.h>
#include <coeccntx.h>
#ifdef __S80__
#include <eikappui.h>
#endif
#ifdef __S60__
#include <aknappui.h>
#endif
// FORWARD DECLARATIONS
class CExample3DContainer;
// CLASS DECLARATION
/// App Ui class for application
class CExample3DAppUi
#ifdef __S80__
: public CEikAppUi
#endif
#ifdef __S60__
: public CAknAppUi
#endif
{
public: // Constructors and destructor
void ConstructL();
~CExample3DAppUi();
private:
/// From CEikAppUi, takes care of command handling.
/// @param aCommand command to be handled
void HandleCommandL( TInt aCommand );
/// From CEikAppUi, enables dynamic menus
void DynInitMenuPaneL( TInt aResourceId, CEikMenuPane* aMenuPane );
private: //Data
CExample3DContainer* iAppContainer;
TBool iFullScreen;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?