⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagemanipappui.h

📁 鲜为人知的symbian s60 2rd图形图像处理源代码
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -