clientappui.h

来自「symbian os手机程序开发」· C头文件 代码 · 共 107 行

H
107
字号
/*
 * ============================================================================
 *  Name     : CClientAppUi of ClientAppUI.h
 *  Part of  : HTTP Client Example
 *  Created  : 06/26/2006 by Forum Nokia
 *  Version  : 2.0
 *  Copyright: Forum Nokia
 * ============================================================================
 */

#ifndef __CLIENT_APPUI_H__
#define __CLIENT_APPUI_H__

#include <aknappui.h>

/*
* Forward declarations
*/
class CClientAppView;
class CClientEngine;

class CClientAppUi : public CAknAppUi
	{
public:
	/*
	* ConstructL()
	*
	* Perform the second phase construction of a CClientAppUi object.
	*
	* Params:
	*		-
	*
	* Returns:
	* 		-
	*
	*/
	void ConstructL();

	/*
	* CClientAppUi()
	*
	* First phase construction of CClientAppUi.
	*
	* Params:
	*		-
	*
	* Returns:
	* 		-
	*
	*/
	CClientAppUi();

	/*
	* ~CClientAppUi()
	*
	* Destructor for CClientAppUi.
	*
	* Params:
	*		-
	*
	* Returns:
	* 		-
	*
	*/
	~CClientAppUi();

/*
* 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:
	CClientAppView*	iAppView;
	CClientEngine*			iClient;
	};

#endif // __CLIENT_APPUI_H__

⌨️ 快捷键说明

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