shapedrawerappui.h

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 56 行

H
56
字号
#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 + =
减小字号Ctrl + -
显示快捷键?