example3dappui.h

来自「手机开发3D应用平台,开发平台是诺基亚的carbird,这是一个很有用的东西,希」· C头文件 代码 · 共 47 行

H
47
字号


#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 + -
显示快捷键?