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

📄 shapedrawerappui.h

📁 最新官方例子,图形,描述副,基本控件,通讯协议,等等,
💻 H
字号:
#ifndef __SHAPEDRAWERAPPUI_H__
#define __SHAPEDRAWERAPPUI_H__

//INCLUDES

//System Includes
#include <aknviewappui.h>
#include <eikmenup.h>

//User Includes
#include "ShapeListManager.h"
#include "ShapeDrawer.hrh"	

//FORWARD DECLARATIONS
class CShapeDrawerGraphicView;
class CShapeDrawerListView;
class CShapeDrawerDocument;


/**
 *
 * @class	CShapesDrawerAppUi ShapeDrawerAppUi.h 
 * @brief	This is the main application UI for the SHAPEDRAWER example.
 * It manages the two different views in the app; one of the shows
 * a grahical represenation of drawn shapes, and the other shows a list view
 * of the same information.
 * 
 *
 * Copyright (c) EMCC Software Ltd 2003
 * @version	1.0
 * 
 */
class CShapeDrawerAppUi : public CAknViewAppUi
{
public: 
    void ConstructL();
    CShapeDrawerAppUi();

public:	//	from CEikAppUi
    void HandleModelChangeL();
    void HandleCommandL(TInt aCommand);

protected:
	//From CCoeEnv
	void HandleForegroundEventL(TBool aForeground);
	TBool CheckDiscSpaceL();

private:
    CShapeDrawerGraphicView* iView1;
	CShapeDrawerListView* iView2;
	};


#endif // __SHAPEDRAWERAPPUI_H__

⌨️ 快捷键说明

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