📄 styluspopupmenuexappui.h
字号:
/**
* Copyright (c) 2007 Nokia Corporation.
* This material, including documentation and any related
* computer programs, is protected by
* copyright controlled by Nokia Corporation.
*/
#ifndef __STYLUSPOPUPMENUEX_APPUI_H__
#define __STYLUSPOPUPMENUEX_APPUI_H__
// INCLUDES
#include <aknappui.h>
#include <eikmobs.h>
// FORWARD DECLARATIONS
class CStylusPopupMenuExContainer;
// CLASS DECLARATION
/**
* CStylusPopupMenuExAppUi application UI class.
* Interacts with the user through the UI and request message processing
* from the handler class
*/
class CStylusPopupMenuExAppUi : public CAknAppUi
{
public:
/**
* ConstructL.
* 2nd phase constructor.
*/
void ConstructL();
/**
* CStylusPopupMenuExAppUi.
* C++ default constructor. This needs to be public due to
* the way the framework constructs the AppUi
*/
CStylusPopupMenuExAppUi();
/**
* ~CStylusPopupMenuExAppUi.
* Virtual Destructor.
*/
virtual ~CStylusPopupMenuExAppUi();
public: // from CEikAppui
/**
* From CEikAppUi, HandleCommandL.
* Takes care of command handling.
* @param aCommand Command to be handled.
*/
void HandleCommandL( TInt aCommand );
void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane *aMenuPane);
private: // data
/*
* Pointer to the container
* own
*/
CStylusPopupMenuExContainer* iAppContainer;
/**
* From CEikAppUi, HandleResourceChangeL.
* Handles resource changes.
* @param aType Resource change type to be handled
*/
//void HandleResourceChangeL( TInt aType );
};
#endif // __STYLUSPOPUPMENUEX_APPUI_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -