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

📄 ddbouncingball_appui.h

📁 symbian平台下的一个游戏源代码
💻 H
字号:
// DDBouncingBall_AppUi.h
// ---------------------------
//
// Copyright (c) 2002 Symbian Ltd.  All rights reserved.
//

////////////////////////////////////////////////////////////////////
//
//	CDDBouncingBallAppUi 
//
//		Implements DynInitMenuPaneL() to ensure user can only Stop 
//		Bouncing ball if the ball is bouncing and vice versa.
//
//
////////////////////////////////////////////////////////////////////

#ifndef __DDBOUNCINGBALL_APPUI_H__
#define __DDBOUNCINGBALL_APPUI_H__

#include <aknappui.h>

class CDDBouncingBallAppView;

class CDDBouncingBallAppUi : public CAknAppUi
    {

public:

    void ConstructL();
    CDDBouncingBallAppUi();
    ~CDDBouncingBallAppUi();

public: 
	
	// from CEikAppUi
    void HandleCommandL(TInt aCommand);
	void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);

private:

    CDDBouncingBallAppView* iAppView;
    
	};


#endif 

⌨️ 快捷键说明

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