?? graphicsappui.h
字號:
/* 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -