shapesappui.h

来自「最新官方例子,图形,描述副,基本控件,通讯协议,等等,」· C头文件 代码 · 共 47 行

H
47
字号
#ifndef SHAPESAPPUI_H
#define SHAPESAPPUI_H

// INCLUDES

// System includes
#include <aknviewappui.h>	// CAknViewAppUi

// FORWARD DECLARATIONS
class CShapesModel;

// CLASS DECLARATION

/**
 *
 * @class	CShapesAppUi ShapesAppUi.h 
 * @brief	This is the main application UI for the Shapes example,
 * which draws some graphical charts based on data entered into a form
 * by the user
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 * 
 */
class CShapesAppUi : public CAknViewAppUi
	{
public:	// Construction and destruction
	void ConstructL();	// 2nd phase constructor
	~CShapesAppUi();	// Destructor     

private:	//From CEikAppUi
	void HandleCommandL(TInt aCommand);

private:	// From MEikMenuObserver
	void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);

private:	//Member functions
	void EditFormL();

private:	//Data
	CShapesModel* iShapesModel;		
	};

#endif	// SHAPESAPPUI_H

// End of File

⌨️ 快捷键说明

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