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

📄 iapconnect_v20appui.h

📁 symbian中网络连接代码
💻 H
字号:
/*
* ============================================================================
*  Name     : CIAPConnect_v20AppUi from IAPConnect_v20AppUi.h
*  Part of  : IAPConnect_v20
*  Created  : 30.09.2003 by Forum Nokia
*  Description:
*     Application UI class declaration
*  Version  :
*  Copyright: Nokia Corporation
* ============================================================================
*/

#ifndef IAPCONNECT_V20APPUI_H
#define IAPCONNECT_V20APPUI_H

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

// FORWARD DECLARATIONS
class CIAPConnect_v20Container;
class CIAPConnect_v20Engine;
class CDocumentHandler;

// CLASS DECLARATION

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

    /*
     * ConstructL()
     *  
     * Second phase constructor
     * 
     */    
    void ConstructL();

    /*
     * ~CIAPConnect_v20AppUi()
     *
     * Destructor
     *
     */      
    ~CIAPConnect_v20AppUi();
        
private: // From CEikAppUi
    
    /*
     * HandleCommandL()
     *
     * Takes care of command handling
     *
     * Params:
     * TInt aCommand    Command to be handled
     */      
    void HandleCommandL(TInt aCommand);

    /*
     * DynInitMenuPaneL()
     *
     * Prepare the menu prior to display
     *
     * Params:
     * TInt aResourceId         The resource for the menu to be displayed
     * CEikMenuPane* aMenuPane  The handle to the menu
     */      
    void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);


private: 
    
    // Owns
    CIAPConnect_v20Container* iAppContainer; 
    CIAPConnect_v20Engine* iEngine;
    CDocumentHandler* iDocHandler;

    };

#endif

// End of File

⌨️ 快捷键说明

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