xmlparsemustsucappui.h
来自「Symbian下解析XML的代码,完全用API解析」· C头文件 代码 · 共 82 行
H
82 行
/*
============================================================================
Name : XMLParseMustSucAppUi.h
Author :
Version :
Copyright : Your copyright notice
Description : Main application UI class (controller)
============================================================================
*/
#ifndef __XMLPARSEMUSTSUCAPPUI_H__
#define __XMLPARSEMUSTSUCAPPUI_H__
// INCLUDES
#include <aknappui.h>
// FORWARD DECLARATIONS
class CXMLParseMustSucAppView;
// CLASS DECLARATION
/**
* CXMLParseMustSucAppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class CXMLParseMustSucAppUi : public CAknAppUi
{
public: // Constructors and destructor
/**
* ConstructL.
* 2nd phase constructor.
*/
void ConstructL();
/**
* CXMLParseMustSucAppUi.
* C++ default constructor. This needs to be public due to
* the way the framework constructs the AppUi
*/
CXMLParseMustSucAppUi();
/**
* ~CXMLParseMustSucAppUi.
* Virtual Destructor.
*/
virtual ~CXMLParseMustSucAppUi();
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();
private: // Data
/**
* The application view
* Owned by CXMLParseMustSucAppUi
*/
CXMLParseMustSucAppView* iAppView;
HBufC8* iBuffer;
};
#endif // __XMLPARSEMUSTSUCAPPUI_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?