point24appui.h

来自「symbian平台下的24点游戏编程 很适合初学者的例子」· C头文件 代码 · 共 58 行

H
58
字号
/*
========================================================================
 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 + =
减小字号Ctrl + -
显示快捷键?