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

📄 mylistboxappui.h

📁 MyListBox Symbian 3rd custom control.
💻 H
字号:
/*
* ============================================================================
*  Name     : CMyListBoxAppUi from MyListBoxAppui.h
*  Part of  : MyListBox
*  Created  : 12.04.2005 by Antony Pranata
*  Description:
*     Declares UI class for application.
*  Version  :
*  Copyright: Copyright 2005
* ============================================================================
*/

#ifndef MYLISTBOXAPPUI_H
#define MYLISTBOXAPPUI_H

// INCLUDES
#include <qikappui.h>

// FORWARD DECLARATIONS
class CMyListBoxAppView;

// CLASS DECLARATION

/**
 * Application UI class.
 */
class CMyListBoxAppUi: public CQikAppUi
	{
public: // constructors and destructor
	void ConstructL();
	~CMyListBoxAppUi();
        
public: // from MEikMenuObserver
	void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);

private: // from CEikAppUi
	virtual void HandleCommandL(TInt aCommand);
	virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent,
		TEventCode aType);

private: // data
	CMyListBoxAppView* iAppView; 
	};

#endif // MYLISTBOXAPPUI_H

// End of File

⌨️ 快捷键说明

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