titlepaneappui.h
来自「详细演示了symbian中标题面板的设置程序。很使用的程序」· C头文件 代码 · 共 54 行
H
54 行
#ifndef TITLEPANEAPPUI_H
#define TITLEPANEAPPUI_H
// INCLUDES
// System includes
#include <aknviewappui.h> // CAknViewAppUi
// User includes
#include "TitlePane.hrh" // TTitlePaneViewNumber
// FORWARD DECLARATIONS
class CTitlePaneView1;
class CAknNavigationDecorator;
// CLASS DECLARATION
/**
*
* @class CTitlePaneAppUi TitlePaneAppUi.h
* @brief This is the main application UI class for the TitlePane example based on the
* Series 60 view switching architecture. It allows the user to change
* the visibility of the status pane.
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CTitlePaneAppUi : public CAknViewAppUi
{
public: // Constructor
CTitlePaneAppUi();
void ConstructL();
~CTitlePaneAppUi();
TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType);
private: // from CEikAppUi
void HandleCommandL(TInt aCommand);
private: // data
CTitlePaneView1* iView1; // Not owned by this class.
CAknNavigationDecorator* iNaviDecorator;
};
#endif // #ifndef TITLEPANEAPPUI_H
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?