?? helloworldview.h
字號:
// HelloWorldView.h
//
// ?Symbian Software Ltd 2005. All rights reserved.
//
#ifndef HELLOWORLDVIEW_H
#define HELLOWORLDVIEW_H
#include <QikViewBase.h>
/**
A very simple view that displays the text "Hello world", drawn using the default title
font supplied by UIQ. It also consist of three commands that will bring up infoprints.
*/
class CHelloWorldView : public CQikViewBase
{
public:
static CHelloWorldView* NewLC(CQikAppUi& aAppUi);
~CHelloWorldView();
// from CQikViewBase
TVwsViewId ViewId()const;
void HandleCommandL(CQikCommand& aCommand);
protected:
// from CQikViewBase
void ViewConstructL();
private:
CHelloWorldView(CQikAppUi& aAppUi);
void ConstructL();
private:
static TInt Tick(TAny* aObject); // directly called
TInt DoTick(); // indirectly called
private:
CPeriodic* iTimer;
TInt iCount;
};
#endif // HELLOWORLDVIEW_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -