example3dappui.h

来自「S60 3D游戏引擎开发案例 S60 3D游戏引擎开发案例」· C头文件 代码 · 共 54 行

H
54
字号
   /*
============================================================================
    * 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

⌨️ 快捷键说明

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