?? blinkappui.h
字號:
/*
* ============================================================================
* Name : CBlinkAppUi from BlinkAppui.h
* Part of : Blink
* Created : 05.02.2006 by ToBeReplacedByAuthor
* Description:
* Declares UI class for application.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
#ifndef BLINKAPPUI_H
#define BLINKAPPUI_H
// INCLUDES
#include <aknappui.h>
// FORWARD DECLARATIONS
class CBlinkContainer;
// CLASS DECLARATION
/**
* Application UI class.
* Provides support for the following features:
* - EIKON control architecture
*
*/
class CBlinkAppUi : public CAknAppUi
{
public: // // Constructors and destructor
/**
* EPOC default constructor.
*/
void ConstructL();
/**
* Destructor.
*/
~CBlinkAppUi();
public: // New functions
public: // Functions from base classes
private:
/**
* From CEikAppUi, takes care of command handling.
* @param aCommand command to be handled
*/
void HandleCommandL(TInt aCommand);
private: //Data
CBlinkContainer* iAppContainer;
};
#endif
// End of File
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -