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

📄 point24appui.h

📁 symbian平台下的24点游戏编程 很适合初学者的例子
💻 H
字号:
/*
========================================================================
 Name        : Point24AppUi.h
 Author      : luomao2000
 Copyright   : luomao2000@tom.com
Reserved
 Description : 
========================================================================
*/
#ifndef POINT24APPUI_H
#define POINT24APPUI_H

#include <aknviewappui.h>

class CPoint24ContainerView;

/**
 * @class	CPoint24AppUi Point24AppUi.h
 * @brief The AppUi class handles application-wide aspects of the user interface, including
 *        view management and the default menu, control pane, and status pane.
 */
class CPoint24AppUi : public CAknViewAppUi
	{
public: 
	// constructor and destructor
	CPoint24AppUi();
	virtual ~CPoint24AppUi();
	void ConstructL();

public:
	// from CCoeAppUi
	TKeyResponse HandleKeyEventL(
				const TKeyEvent& aKeyEvent,
				TEventCode aType );

	// from CEikAppUi
	void HandleCommandL( TInt aCommand );
	void HandleResourceChangeL( TInt aType );

	// from CAknAppUi
	void HandleViewDeactivation( 
			const TVwsViewId& aViewIdToBeDeactivated, 
			const TVwsViewId& aNewlyActivatedViewId );

private:
	void InitializeContainersL();
public: 
	
private: 
	CPoint24ContainerView* iPoint24ContainerView;
	
	
protected: 
	
	};

#endif // POINT24APPUI_H			

⌨️ 快捷键说明

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