📄 mylistboxappui.h
字号:
/*
============================================================================
Name : MyListBoxAppUi.h
Author : davey
Copyright : It is a software by davey
Description : Declares UI class for application.
============================================================================
*/
#ifndef __MYLISTBOXAPPUI_h__
#define __MYLISTBOXAPPUI_h__
// INCLUDES
#include <aknappui.h>
// FORWARD DECLARATIONS
class CMyListBoxAppView;
// CLASS DECLARATION
/**
* CMyListBoxAppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class CMyListBoxAppUi : public CAknAppUi
{
public: // Constructors and destructor
/**
* ConstructL.
* 2nd phase constructor.
*/
void ConstructL();
/**
* CMyListBoxAppUi.
* C++ default constructor. This needs to be public due to
* the way the framework constructs the AppUi
*/
CMyListBoxAppUi();
/**
* ~CMyListBoxAppUi.
* Virtual Destructor.
*/
virtual ~CMyListBoxAppUi();
//void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
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 CMyListBoxAppUi
*/
CMyListBoxAppView* iAppView;
};
#endif // __MYLISTBOXAPPUI_h__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -