?? appview.h
字號:
// appview.h
//
// Copyright (c) 2000 Symbian Ltd. All rights reserved.
//
#ifndef __APPVIEW_H
#define __APPVIEW_H
#include <coecntrl.h>
#include <coeccntx.h>
#include "engine.h"
// app view classes
class CEikLabel;
class CGameAppView : public CCoeControl
{
public:
~CGameAppView();
void ConstructL(CGameEngine* aEngine, const TRect& aRect);
public:
void SetEngineL(CGameEngine* aEngine);
private:
// from CCoeControl
void Draw(const TRect&) const;
TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
TInt CountComponentControls() const;
CCoeControl* ComponentControl(TInt aIndex) const;
public:
// my stuff
CEikLabel* iLastSentLabel;
CEikLabel* iLastReceivedLabel;
private:
// copy of stuff elsewhere
CGameEngine* iEngine;
};
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -