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

📄 s60mmflabappui.h

📁 symbian 3版手机程序开发与实例教程源码
💻 H
字号:
// Copyright (c) 2006 Nokia Corporation.

#ifndef S60MMFLABAPPUI_H
#define S60MMFLABAPPUI_H

// INCLUDES
#include <eikapp.h>
#include <eikdoc.h>
#include <e32std.h>
#include <coeccntx.h>
#include <aknappui.h>
#include "S60MMFLabUtility.h"

// FORWARD DECLARATIONS
class CS60MMFLabContainer;


// CLASS DECLARATION

/**
* Application UI class.
* Provides support for the following features:
* - EIKON control architecture
* 
*/
class CS60MMFLabAppUi : public CAknAppUi
    {
    public: // // Constructors and destructor

        /**
        * EPOC default constructor.
        */      
        void ConstructL();

        /**
        * Destructor.
        */      
        ~CS60MMFLabAppUi();
        
    public: // New functions

		enum
			{
			EToneUtility = 1,
			EPlayerUtility
			};

    public: // Functions from base classes

    private:
        // From MEikMenuObserver
        void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);

    private:
        
        void HandleCommandL(TInt aCommand);

        virtual void HandleScreenDeviceChangedL();

    private: //Data
    
      	CS60MMFLabContainer* iAppContainer; 
		CS60MMFLabToneUtility* iToneUtility;
		CS60MMFLabPlayerUtility* iPlayerUtility;
		TInt iCurrentUtility;
    };

#endif

// End of File

⌨️ 快捷键说明

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