?? example3dappui.h
字號(hào):
/*
============================================================================
* Name : Example3DAppUi.h
* Part of : Example3D
* Description : Definition of Example3DAppUi
* Copyright (c) 2007 Nokia Corporation
============================================================================
*/
#ifndef __EXAMPLE3DAPPUI_H__
#define __EXAMPLE3DAPPUI_H__
// INCLUDES
#include <eikapp.h>
#include <eikdoc.h>
#include <e32std.h>
#include <coeccntx.h>
#include <aknsoundsystem.h>
#include <aknappui.h>
// FORWARD DECLARATIONS
class CExample3DContainer;
// CLASS DECLARATION
/// App Ui class for application
class CExample3DAppUi
: public CAknAppUi
{
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
CAknKeySoundSystem* iSoundSystem;
CExample3DContainer* iAppContainer;
TBool iFullScreen;
};
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -