graphicsappui.h
来自「Symbian -画图程序 graphics-vc.rar」· C头文件 代码 · 共 64 行
H
64 行
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __GRAPHICSAPPUI_H__
#define __GRAPHICSAPPUI_H__
// INCLUDES
#include <aknappui.h>
// FORWARD DECLARATIONS
class CGraphicsAppView;
// CLASS DECLARATION
/**
* CGraphicsAppUi application UI class.
* An instance of class CGraphicsAppUi is the UserInterface part of the AVKON
* application framework for the Graphics example application
*/
class CGraphicsAppUi : public CAknAppUi
{
public: // Constructors and destructor
/**
* ConstructL.
* 2nd phase constructor.
*/
void ConstructL();
/**
* CGraphicsAppUi.
* C++ default constructor. This needs to be public due to
* the way the framework constructs the AppUi
*/
CGraphicsAppUi();
/**
* ~CGraphicsAppUi.
* Virtual Destructor.
*/
virtual ~CGraphicsAppUi();
public: // Functions from base classes
/**
* From CEikAppUi, HandleCommandL.
* Takes care of command handling.
* @param aCommand Command to be handled.
*/
void HandleCommandL( TInt aCommand );
private: // Data
/**
* iAppView
* The application view
* Owned by CGraphicsAppUi object.
*/
CGraphicsAppView* iAppView;
};
#endif // __GRAPHICSAPPUI_H__
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?