⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example3dappui.h

📁 手机开发3D应用平台,开发平台是诺基亚的carbird,这是一个很有用的东西,希望能帮助你进行移动开发.
💻 H
字号:


#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -