controlsappui.h

来自「最新官方例子,图形,描述副,基本控件,通讯协议,等等,」· C头文件 代码 · 共 60 行

H
60
字号
#ifndef CONTROLSAPPUI_H
#define CONTROLSAPPUI_H

// INCLUDES

// System includes
#include <aknviewappui.h>	// CAknViewAppUi

// User includes
#include "Controls.hrh"	// TControlsViewNumber

// FORWARD DECLARATIONS
class CAknNavigationControlContainer;
class CAknNavigationDecorator;
class CAknTabGroup;
class CSimpleControlView;
class CCompoundControlView;

// CLASS DECLARATION

/**
*
* @class	CControlsAppUi ControlsAppUi.h 
* @brief	This is the main application UI class for a Hello World example based on the 
* Series 60 view switching architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
* 
*/
class CControlsAppUi : public CAknViewAppUi
	{
public: // Constructor and destructor

	void ConstructL();
	~CControlsAppUi();

private: // from CEikAppUi
	
	void HandleCommandL(TInt aCommand);
	
private: // from CCoeAppUi

	virtual TKeyResponse HandleKeyEventL(
				const TKeyEvent& aKeyEvent,TEventCode aType);

private: // data
	
	CSimpleControlView* iView1;	// Not owned by this class.
	CCompoundControlView* iView2;	// Not owned by this class.
	CAknNavigationControlContainer* iNaviPane;
	CAknTabGroup* iTabGroup;
	CAknNavigationDecorator* iDecoratedTabGroup;

	};

#endif	// #ifndef CONTROLSAPPUI_H

// End of File

⌨️ 快捷键说明

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