📄 shapedrawerappui.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 + -