📄 basenameappui.h
字号:
/*
============================================================================
Name : $(baseName)AppUi.h
Author : $(author)
Copyright : $(copyright)
Description : Declares UI class for application.
============================================================================
*/
#ifndef __$(baseNameUpper)APPUI_h__
#define __$(baseNameUpper)APPUI_h__
// INCLUDES
#include <aknappui.h>
#include <aknviewappui.h>
// FORWARD DECLARATIONS
class C$(baseName)AppView;
// CLASS DECLARATION
/**
* C$(baseName)AppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class C$(baseName)AppUi : public CAknViewAppUi
{
public: // Constructors and destructor
void ConstructL();
C$(baseName)AppUi();
virtual ~C$(baseName)AppUi();
private: // Functions from base classes
void HandleCommandL( TInt aCommand );
void HandleStatusPaneSizeChange();
private: // Data
C$(baseName)AppView* iAppView;
};
#endif // __$(baseNameUpper)APPUI_h__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -