📄 shapedrawerlistview.h
字号:
#ifndef __SHAPEDRAWER_LIST_VIEW_H__
#define __SHAPEDRAWER_LIST_VIEW_H__
//INCLUDES
//System includes
#include <aknview.h> // CAknView
//User Includes
#include "shapedrawerdocument.h"
// FORWARD DECLARATIONS
class CShapeDrawerListViewContainer;
/**
*
* @class CShapeDrawerListView ShapeDrawerListView.h
* @brief This is a view class for the SHAPEDRAWER example.
* It holds the container that draws a list representation of the
* shapes (showing shape type and coordinates) that the user has added.
*
* Series 60 view switching architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CShapeDrawerListView: public CAknView
{
public: // constructors and destructor
static CShapeDrawerListView* NewL();
static CShapeDrawerListView* NewLC();
~CShapeDrawerListView();
CShapeDrawerAppUi& GetAppUi();
private: // from CAknView
TUid Id() const;
void HandleCommandL(TInt aCommand);
CShapeDrawerListView();
void DoActivateL(
const TVwsViewId& aPrevViewId,
TUid aCustomMessageId,
const TDesC8& aCustomMessage);
void DoDeactivate();
private: // constructors
void ConstructL();
private: // data
CShapeDrawerListViewContainer* iContainer;
TUid iId;
};
#endif // __SHAPEDRAWER_LIST_VIEW_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -