📄 point24containerview.h
字号:
/*
========================================================================
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -