📄 multimediafappui.h
字号:
#ifndef MULTIMEDIAFAPPUI_H
#define MULTIMEDIAFAPPUI_H
// INCLUDES
// System includes
#include <aknappui.h> // CAknViewAppUi
// User includes
#include "MultimediaController.h" // MMultimediaController
// FORWARD DECLARATIONS
class CMultiMediaFAdapter;
class CMultiMediaFAppView;
// CLASS DECLARATION
/**
*
* @class CAnimationAppUi AnimationAppUi.h
* @brief This is the main application UI class for the MultiMediaF example
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CMultiMediaFAppUi : public CAknAppUi, public MMultimediaController
{
public: // Constructor and destructor
void ConstructL();
~CMultiMediaFAppUi();
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
CMultiMediaFAdapter* iAdapter; // class to manipulate image
CMultiMediaFAppView* iAppView; // class to display image
};
#endif // #ifndef MULTIMEDIAFAPPUI_H
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -