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

📄 titlepaneappui.h

📁 symbian下标题栏管理者程序,超酷!
💻 H
字号:
#ifndef TITLEPANEAPPUI_H
#define TITLEPANEAPPUI_H

// INCLUDES

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

// User includes
#include "TitlePane.hrh"	// TTitlePaneViewNumber

// FORWARD DECLARATIONS

class CTitlePaneView1;
class CAknNavigationDecorator;

// CLASS DECLARATION

/**
*
* @class	CTitlePaneAppUi TitlePaneAppUi.h
* @brief	This is the main application UI class for the TitlePane example based on the
* Series 60 view switching architecture. It allows the user to change
* the visibility of the status pane.
*
* Copyright (c) EMCC Software Ltd 2003
* @version	1.0
*
*/
class CTitlePaneAppUi : public CAknViewAppUi
	{
public: // Constructor

	CTitlePaneAppUi();
	void ConstructL();

	~CTitlePaneAppUi();

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

private: // from CEikAppUi

	void HandleCommandL(TInt aCommand);

private: // data

	CTitlePaneView1* iView1;	// Not owned by this class.
	CAknNavigationDecorator* iNaviDecorator;
	};

#endif	// #ifndef TITLEPANEAPPUI_H

// End of File

⌨️ 快捷键说明

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