?? saddautomenuappui.h
字號(hào):
/*
* ============================================================================
* Name : CSAddAutoMENUAppUi from SAddAutoMENUAppui.h
* Part of : SAddAutoMENU
* Created : 02.12.2008 by
* Description:
* Declares UI class for application.
* Version :
* Copyright:
* ============================================================================
*/
#ifndef SADDAUTOMENUAPPUI_H
#define SADDAUTOMENUAPPUI_H
// INCLUDES
#include <aknappui.h>
// FORWARD DECLARATIONS
class CSAddAutoMENUContainer;
// CLASS DECLARATION
/**
* Application UI class.
* Provides support for the following features:
* - EIKON control architecture
*
*/
class CSAddAutoMENUAppUi : public CAknAppUi
{
public: // // Constructors and destructor
/**
* EPOC default constructor.
*/
void ConstructL();
/**
* Destructor.
*/
~CSAddAutoMENUAppUi();
public: // New functions
public: // Functions from base classes
private:
// From MEikMenuObserver
void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
private:
/**
* From CEikAppUi, takes care of command handling.
* @param aCommand command to be handled
*/
void HandleCommandL(TInt aCommand);
/**
* From CEikAppUi, handles key events.
* @param aKeyEvent Event to handled.
* @param aType Type of the key event.
* @return Response code (EKeyWasConsumed, EKeyWasNotConsumed).
*/
virtual TKeyResponse HandleKeyEventL(
const TKeyEvent& aKeyEvent,TEventCode aType);
private: //Data
CSAddAutoMENUContainer* iAppContainer;
};
#endif
// End of File
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -