s60mmflabappui.h

来自「symbianOS第三版开发与实用教程部分源码和部分试验」· C头文件 代码 · 共 71 行

H
71
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?