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

📄 helpexampleappui.h

📁 应用于S60平台的示例程序
💻 H
字号:
/*
* ==============================================================================
*  Name        : helpexampleappui.h
*  Part of     : Help example
*  Interface   :
*  Description :
*  Version     :
*
*  Copyright (c) 2004 - 2006 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef __HELPEXAMPLE_APPUI_H__
#define __HELPEXAMPLE_APPUI_H__

// INCLUDES
#include <aknappui.h>

// FORWARD DECLARATION
class CHelpExampleAppView;

/**
* CHelpExampleAppUi
* An instance of class CHelpExampleAppUi is the UserInterface part of the 
* AVKON application framework for the HelpExample example application
*/

class CHelpExampleAppUi : public CAknAppUi
    {
        public: // Constructors and destructor.

            /**
            * ConstructL()
            * Perform the second phase construction of a CHelpExampleAppUi 
            * object this needs to be public due to the way the framework 
            * constructs the AppUi
            */
            void ConstructL();

            /**
            * CHelpExampleAppUi()
            * Perform the first phase of two phase construction.
            * This needs to be public due to the way the framework 
            * constructs the AppUi 
            */
            CHelpExampleAppUi();

            /**
            * ~CHelpExampleAppUi()
            * Destroy the object
            */
            virtual ~CHelpExampleAppUi();


        public: // from CAknAppUi

            /**
            * HandleCommandL()
            * Handle user menu selections
            * @param aCommand The enumerated code for the option selected
            */
            void HandleCommandL( TInt aCommand );

        private: // from CAknAppUi

            /**
            * HelpContextL()
            * Return the help context for this application
            * @return A pointer to the help context
            */
            CArrayFix<TCoeHelpContext>* HelpContextL() const;

        private:    // data

            /** 
            * iAppView 
            * The application view 
            * Owned by CHelpExampleAppUi
            */
            CHelpExampleAppView* iAppView;
    };


#endif // __HELPEXAMPLE_APPUI_H__

// End of File

⌨️ 快捷键说明

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