animationappui.h

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· C头文件 代码 · 共 46 行

H
46
字号
#ifndef ANIMATIONAPPUI_H
#define ANIMATIONAPPUI_H

// INCLUDES

// System includes
#include <aknappui.h>    // CAknViewAppUi

// User includes
#include "Animation.hrh"    
// FORWARD DECLARATIONS
class CAnimationContainer;


// CLASS DECLARATION

/**
 *
 * @class    CAnimationAppUi AnimationAppUi.h 
 * @brief    This is the main application UI class for the Animation example
 * 
 * Copyright (c) EMCC Software Ltd 2003
 * @version    1.0
 * 
 */

class CAnimationAppUi : public CAknAppUi
{
public: // Constructor and destructor

    void ConstructL();
    ~CAnimationAppUi();

private: // from CEikAppUi
    
    void HandleCommandL(TInt aCommand);
    
private: // data
    
    CAnimationContainer* iAnimContainer;
};

#endif    // #ifndef ANIMATIONAPPUI_H

// End of File

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?