📄 ldcno17appui.h
字号:
/* Copyright (c) 2008, Nokia. All rights reserved */
#ifndef __LDCNO17_APPUI_H__
#define __LDCNO17_APPUI_H__
#include <aknviewappui.h>
//class CLDCNO17AppView;
class CHelloView;
class CWorldView;
class CFace2View;
class CFace3View;
class CFace4View;
class CFace5View;
/*!
@class CLDCNO17AppUi
@discussion An instance of class CLDCNO17AppUi is the UserInterface part of the AVKON
application framework for the LDCNO17 example application
*/
class CLDCNO17AppUi : public CAknViewAppUi
{
public:
/*!
@function ConstructL
@discussion Perform the second phase construction of a CLDCNO17AppUi object
this needs to be public due to the way the framework constructs the AppUi
*/
void ConstructL();
/*!
@function CLDCNO17AppUi
@discussion Perform the first phase of two phase construction.
This needs to be public due to the way the framework constructs the AppUi
*/
CLDCNO17AppUi();
/*!
@function ~CLDCNO17AppUi
@discussion Destroy the object
*/
~CLDCNO17AppUi();
public: // from CAknAppUi
/*!
@function HandleCommandL
@discussion Handle user menu selections
@param aCommand the enumerated code for the option selected
*/
void HandleCommandL(TInt aCommand);
private:
/*! @var iAppView The application view */
// CLDCNO17AppView* iAppView;
CHelloView* m_pHelloView;
CWorldView* m_pWorldView;
CFace2View* m_pFace2View;
CFace3View* m_pFace3View;
CFace4View* m_pFace4View;
CFace5View* m_pFace5View;
};
#endif // __LDCNO17_APPUI_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -