📄 ldk008appui.h
字号:
/*
============================================================================
Name : LDK008AppUi.h
Author :
Version :
Copyright : Your copyright notice
Description : Main application UI class (controller)
============================================================================
*/
#ifndef __LDK008APPUI_H__
#define __LDK008APPUI_H__
// INCLUDES
#include <aknviewappui.h>
// FORWARD DECLARATIONS
class CWorldView;
class CHelloView;
// CLASS DECLARATION
/**
* CLDK008AppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class CLDK008AppUi : public CAknViewAppUi
{
public: // Constructors and destructor
void GetPath(TDes& aPath);
CGulIcon* LoadGraphicsL(TInt aType);
/**
* ConstructL.
* 2nd phase constructor.
*/
void ConstructL();
/**
* CLDK008AppUi.
* C++ default constructor. This needs to be public due to
* the way the framework constructs the AppUi
*/
CLDK008AppUi();
/**
* ~CLDK008AppUi.
* Virtual Destructor.
*/
virtual ~CLDK008AppUi();
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;
/**
* Shows privacy statement if needed.
*/
void PrivacyStatementL();
/**
* Reads unicode file from specified location.
* @param aFs reference to open file session
* @param aFileName full file name
* @return heap descriptor which contains whole file
*/
static HBufC * ReadUnicodeFileL(RFs& aFs, const TDesC& aFileName);
private: // Data
/**
* The application view
* Owned by CLDK008AppUi
*/
CWorldView* iWorldView;
CHelloView* iHelloView;
};
#endif // __LDK008APPUI_H__
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -