?? exerciseappui.h
字號:
/*
========================================================================
Name : ExerciseAppUi.h
Author :
Copyright : Your copyright notice
Description :
========================================================================
*/
#ifndef EXERCISEAPPUI_H
#define EXERCISEAPPUI_H
// [[[ begin generated region: do not modify [Generated Includes]
#include <aknviewappui.h>
// ]]] end generated region [Generated Includes]
// [[[ begin generated region: do not modify [Generated Forward Declarations]
class CExerciseContainerView;
class CExerciseListBoxView;
// ]]] end generated region [Generated Forward Declarations]
/**
* @class CExerciseAppUi ExerciseAppUi.h
* @brief The AppUi class handles application-wide aspects of the user interface, including
* view management and the default menu, control pane, and status pane.
*/
class CExerciseAppUi : public CAknViewAppUi
{
public:
// constructor and destructor
CExerciseAppUi();
virtual ~CExerciseAppUi();
void ConstructL();
public:
// from CCoeAppUi
TKeyResponse HandleKeyEventL(
const TKeyEvent& aKeyEvent,
TEventCode aType );
// from CEikAppUi
void HandleCommandL( TInt aCommand );
void HandleResourceChangeL( TInt aType );
// from CAknAppUi
void HandleViewDeactivation(
const TVwsViewId& aViewIdToBeDeactivated,
const TVwsViewId& aNewlyActivatedViewId );
private:
void InitializeContainersL();
// [[[ begin generated region: do not modify [Generated Methods]
public:
// ]]] end generated region [Generated Methods]
// [[[ begin generated region: do not modify [Generated Instance Variables]
private:
CExerciseContainerView* iExerciseContainerView;
CExerciseListBoxView* iExerciseListBoxView;
TInt iView;
// ]]] end generated region [Generated Instance Variables]
// [[[ begin [User Handlers]
protected:
// ]]] end [User Handlers]
};
#endif // EXERCISEAPPUI_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -