⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 retroappview.h

📁 symbian系统上的2D图形游戏
💻 H
字号:
// RetroAppView.h
// ---------------------------
//
// Copyright (c) 2003 Nokia Mobile Phones limitedLtd.  All rights reserved.
//

#ifndef __RETROAPPVIEW_H__
#define __RETROAPPVIEW_H__

#include <coecntrl.h>

#include "KeyHandler.h"

// Forward Declarations
//class TKeyHandler;
class CImageFactory;
class CRetroEngine;


class CRetroAppView : public CCoeControl
    {

public:

    static CRetroAppView* NewL(const TRect& aRect);
    static CRetroAppView* NewLC(const TRect& aRect);
    ~CRetroAppView();

public:  
	
	// from CCoeControl
    void Draw(const TRect& aRect) const;
	TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);

public:
	void StartGameL();
	TBool IsPlaying();
	void StopGame();
  
private:
    void ConstructL(const TRect& aRect);
    CRetroAppView();

private:
	TKeyHandler iKeyHandler;
	CImageFactory* iImageFactory;
	CRetroEngine* iEngine;
    };


#endif 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -