point24containerview.h
来自「symbian平台下的24点游戏编程 很适合初学者的例子」· C头文件 代码 · 共 62 行
H
62 行
/*
========================================================================
Name : Point24ContainerView.h
Author : luomao2000
Copyright : luomao2000@tom.com
Reserved
Description :
========================================================================
*/
#ifndef POINT24CONTAINERVIEW_H
#define POINT24CONTAINERVIEW_H
#include <aknview.h>
class CPoint24Container;
/**
* Avkon view class for Point24ContainerView. It is register with the view server
* by the AppUi. It owns the container control.
* @class CPoint24ContainerView Point24ContainerView.h
*/
class CPoint24ContainerView : public CAknView
{
public:
// constructors and destructor
CPoint24ContainerView();
static CPoint24ContainerView* NewL();
static CPoint24ContainerView* NewLC();
void ConstructL();
virtual ~CPoint24ContainerView();
public:
// from base class CAknView
TUid Id() const;
void HandleCommandL( TInt aCommand );
protected:
// from base class CAknView
void DoActivateL(
const TVwsViewId& aPrevViewId,
TUid aCustomMessageId,
const TDesC8& aCustomMessage );
void DoDeactivate();
void HandleStatusPaneSizeChange();
private:
void SetupStatusPaneL();
void CleanupStatusPane();
void ShowMessageL();
public:
protected:
protected:
private:
CPoint24Container* iPoint24Container;
};
#endif // POINT24CONTAINERVIEW_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?