?? exampleclientappui.h
字號(hào):
/*
* ============================================================================
* Name : ExampleClientAppUI.h
* Part of : HTTP Example
* Created : 11/14/2003 by Forum Nokia
* Implementation notes:
*
*
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __EXAMPLECLIENT_APPUI_H__
#define __EXAMPLECLIENT_APPUI_H__
#include <aknappui.h>
/*
* Forward declarations
*/
class CExampleClientAppView;
class CClientEngine;
class CExampleClientAppUi : public CAknAppUi
{
public:
/*
* ConstructL()
*
* Perform the second phase construction of a CExampleClientAppUi object.
*
* Params:
* -
*
* Returns:
* -
*
*/
void ConstructL();
/*
* CExampleClientAppUi()
*
* First phase construction of CExampleClientAppUi.
*
* Params:
* -
*
* Returns:
* -
*
*/
CExampleClientAppUi();
/*
* ~CExampleClientAppUi()
*
* Destructor for CExampleClientAppUi.
*
* Params:
* -
*
* Returns:
* -
*
*/
~CExampleClientAppUi();
/*
* from CAknAppUi
*/
public:
/*
* HandleCommandL()
*
* Handles user commands.
*
* Params:
* aCommand: Command ID.
*
* Returns:
* -
*
*/
void HandleCommandL(TInt aCommand);
/*
* DynInitMenuPaneL()
*
* Provides dynamic initialization of the menu pane.
* Called by framework when menu pane is activated.
*
* Params:
* aMenuId: Resource ID identifying the menu pane to initialise.
* aMenuPane: The in-memory representation of the menu pane.
*
* Returns:
* -
*
*/
void DynInitMenuPaneL(TInt aMenuId, CEikMenuPane* aMenuPane);
private:
CExampleClientAppView* iAppView;
CClientEngine* iClient;
};
#endif // __EXAMPLECLIENT_APPUI_H__
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -