📄 controlsappui.h
字号:
#ifndef CONTROLSAPPUI_H
#define CONTROLSAPPUI_H
// INCLUDES
// System includes
#include <aknviewappui.h> // CAknViewAppUi
// User includes
#include "Controls.hrh" // TControlsViewNumber
// FORWARD DECLARATIONS
class CAknNavigationControlContainer;
class CAknNavigationDecorator;
class CAknTabGroup;
class CSimpleControlView;
class CCompoundControlView;
// CLASS DECLARATION
/**
*
* @class CControlsAppUi ControlsAppUi.h
* @brief This is the main application UI class for a Hello World example based on the
* Series 60 view switching architecture.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CControlsAppUi : public CAknViewAppUi
{
public: // Constructor and destructor
void ConstructL();
~CControlsAppUi();
private: // from CEikAppUi
void HandleCommandL(TInt aCommand);
private: // from CCoeAppUi
virtual TKeyResponse HandleKeyEventL(
const TKeyEvent& aKeyEvent,TEventCode aType);
private: // data
CSimpleControlView* iView1; // Not owned by this class.
CCompoundControlView* iView2; // Not owned by this class.
CAknNavigationControlContainer* iNaviPane;
CAknTabGroup* iTabGroup;
CAknNavigationDecorator* iDecoratedTabGroup;
};
#endif // #ifndef CONTROLSAPPUI_H
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -