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

📄 exampleclientappui.h

📁 一个http客户端连接的程序例子
💻 H
字号:
/*
 * ============================================================================
 *  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__

⌨️ 快捷键说明

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