iapconnectappui.h

来自「symbian中如何取得内部联网方式」· C头文件 代码 · 共 94 行

H
94
字号
/*
* ============================================================================
*  Name     : CIAPConnectAppUi from IAPConnectAppUi.h
*  Part of  : Internet Access Points Example v2.0
*  Description:
*     Declares UI class for application.
*  Created  : 01.09.2006 by Forum Nokia
*  Version  : 2.0
*  Copyright: Forum Nokia
* ============================================================================
*/

#ifndef IAPCONNECT_APPUI_H
#define IAPCONNECT_APPUI_H

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

// FORWARD DECLARATIONS
class CIAPConnectContainer;
class CIAPConnectEngine;
class CDocumentHandler;

// CLASS DECLARATION

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

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

    /*
     * ~CIAPConnectAppUi()
     *
     * Destructor
     *
     */      
    ~CIAPConnectAppUi();

public:  // New methods
    CIAPConnectEngine* Model();
        
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: 
    
    // Owned
    CIAPConnectContainer* iAppContainer; 
    CIAPConnectEngine* iEngine;
    CDocumentHandler* iDocHandler;
    };

#endif

// End of File

⌨️ 快捷键说明

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