styluspopupmenuexappui.h
来自「symbian touch popup示例」· C头文件 代码 · 共 76 行
H
76 行
/**
* 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 + =
减小字号Ctrl + -
显示快捷键?