iapconnect_v20appui.h

来自「symbian手机通讯的一个例子程序」· C头文件 代码 · 共 92 行

H
92
字号
/*
* ============================================================================
*  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 + =
减小字号Ctrl + -
显示快捷键?