imagemanipappui.h
来自「最新官方例子,图形,描述副,基本控件,通讯协议,等等,」· C头文件 代码 · 共 47 行
H
47 行
#ifndef IMAGEMANIPAPPUI_H
#define IMAGEMANIPAPPUI_H
// INCLUDES
// System includes
#include <aknappui.h> // CAknViewAppUi
// User includes
#include "MultimediaController.h" // MMultimediaController
// FORWARD DECLARATIONS
class CImageManipAdapter;
class CImageManipAppView;
// CLASS DECLARATION
/**
*
* @class CAnimationAppUi AnimationAppUi.h
* @brief This is the main application UI class for the Image Manip example
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CImageManipAppUi : public CAknAppUi, public MMultimediaController
{
public: // Constructor and destructor
void ConstructL();
~CImageManipAppUi();
public: // from MMultimediaController
void RedrawView(); // used by engine to redraw view
private: // from CEikAppUi
void HandleCommandL(TInt aCommand); // allows menu actions to be handled by application
private: // data
CImageManipAdapter* iAdapter; // class to manipulate image
CImageManipAppView* iAppView; // class to display image
};
#endif // #ifndef IMAGEMANIPAPPUI_H
// End of File
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?