entryappui.h

来自「Simple database program」· C头文件 代码 · 共 88 行

H
88
字号
/*
 ============================================================================
 Name		: EntryAppUi.h
 Author	 : Sazzad and Mozaharul
 Copyright   : @Encryption 2008
 Description : Declares UI class for application.
 ============================================================================
 */

#ifndef __ENTRYAPPUI_h__
#define __ENTRYAPPUI_h__

// INCLUDES
#include <aknappui.h>

// FORWARD DECLARATIONS
class CEntryAppView;


// CLASS DECLARATION
/**
 * CEntryAppUi application UI class.
 * Interacts with the user through the UI and request message processing
 * from the handler class
 */
class CEntryAppUi : public CAknAppUi
	{
public:
	// Constructors and destructor

	/**
	 * ConstructL.
	 * 2nd phase constructor.
	 */
	void ConstructL();

	/**
	 * CEntryAppUi.
	 * C++ default constructor. This needs to be public due to
	 * the way the framework constructs the AppUi
	 */
	CEntryAppUi();

	/**
	 * ~CEntryAppUi.
	 * Virtual Destructor.
	 */
	virtual ~CEntryAppUi();

private:
	// Functions from base classes

	/**
	 * From CEikAppUi, HandleCommandL.
	 * Takes care of command handling.
	 * @param aCommand Command to be handled.
	 */
	void HandleCommandL(TInt aCommand);

	/**
	 *  HandleStatusPaneSizeChange.
	 *  Called by the framework when the application status pane
	 *  size is changed.
	 */
	void HandleStatusPaneSizeChange();

	/**
	 *  From CCoeAppUi, HelpContextL.
	 *  Provides help context for the application.
	 *  size is changed.
	 */
	CArrayFix<TCoeHelpContext>* HelpContextL() const;

private:
	// Data

	/**
	 * The application view
	 * Owned by CEntryAppUi
	 */
	CEntryAppView* iAppView;
	CEntryAppView* iAppView1;

	};

#endif // __ENTRYAPPUI_h__
// End of File

⌨️ 快捷键说明

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