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

📄 clocationexampleappui.h

📁 Symbian Demo, why do you want to get 20 bytes.
💻 H
字号:
/*
* ============================================================================
*  Name     : clocationexampleappui.h
*  Part of  : Location Example
*  Created  : 21.05.2007 by Forum Nokia
*  Description:
*  Version  : 1.0
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef __CLOCATIONEXAMPLEAPPUI_H__
#define __CLOCATIONEXAMPLEAPPUI_H__


// INCLUDES
#include <aknViewAppUi.h>


// FORWARD DECLARATIONS
class CLocationExampleView;
class CLocationExampleEngine;

// CLASS DECLARATION

/**
* CLocationExampleAppUi application UI class.
* An instance of class CLocationExampleAppUi is the UserInterface part of the AVKON
* application framework for the MultiViews example application
*/
class CLocationExampleAppUi : public CAknViewAppUi
    {

    public: // Constructors and destructor

        /**
        * ConstructL.
        * 2nd phase constructor.
        */
        void ConstructL();
        
        virtual ~CLocationExampleAppUi();

    public: // New functions from CEikAppUi

        /**
        * HandleCommandL
        * Takes care of command handling.
        * @param aCommand Command to be handled.
        */
        void HandleCommandL( TInt aCommand );
        
        /**
        * HandleResourceChangeL()
        * Called by framework when layout is changed.
        * @param aType The type of resources that have changed.
        */
        virtual void HandleResourceChangeL( TInt aType );
        
        inline CLocationExampleEngine* Engine()
            {
            return iEngine;
            }
        
    private: // Data

        CLocationExampleView*      iAppView1;
        CLocationExampleEngine*    iEngine;

    };



#endif // __CLOCATIONEXAMPLEAPPUI_H__

// End of File

⌨️ 快捷键说明

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