📄 viewserverappview.h
字号:
/* ====================================================================
* File: ViewServerAppView.h
* Created: 07/04/05
* Author:
* Copyright (c): , All rights reserved
* ==================================================================== */
#ifndef __ViewServer_APPVIEW_H__
#define __ViewServer_APPVIEW_H__
#include <coeview.h>
#include <coecntrl.h>
class CViewServerAppView : public CCoeControl, public MCoeView {
public:
static CViewServerAppView* NewL(const TRect& aRect);
static CViewServerAppView* NewLC(const TRect& aRect);
static TInt ChangeView(TAny* appUi);
TVwsViewId ViewId() const;
~CViewServerAppView();
public: // from CCoeControl
void Draw(const TRect& aRect) const;
private:
void ConstructL(const TRect& aRect);
CViewServerAppView();
void ViewActivatedL(const TVwsViewId& aPrevViewId,TUid aCustomMessageId,const TDesC8& aCustomMessage);
void ViewDeactivated();
void SetupTimer();
};
#endif // __ViewServer_APPVIEW_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -