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

📄 iapconnectappui.h

📁 这是一个手机编程s60 基于c++的关于手机连接internet的数据库协议
💻 H
字号:
/*
* ============================================================================
*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -