?? clientanimationcontainer.h
字號:
#ifndef __CLIENTANIMATIONCONTAINER_H__
#define __CLIENTANIMATIONCONTAINER_H__
// INCLUDES
#include <coecntrl.h> // CCoeControl
// FORWARD DECLARATIONS
class CDoubleBufferedArea;
class CExplosionArray;
class CExplosionCreator;
// CLASS DECLARATION
/**
*
* @class CClientAnimationContainer ClientAnimationContainer.h
* @brief This is a container class which performs the animating
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*
*/
class CClientAnimationContainer : public CCoeControl
{
public: // constructors and destructor
static CClientAnimationContainer* NewL(const TRect& aRect);
static CClientAnimationContainer* NewLC(const TRect& aRect);
~CClientAnimationContainer();
void StartAnimationL();
void StopAnimation();
private: //timer functions
static TInt AnimationCallback(TAny* aPtr);
void DrawFrame();
void DrawToDoubleBufferedArea();
private: // constructor
void ConstructL(const TRect& aRect);
private: // from CoeControl
private: // data
CDoubleBufferedArea* iDoubleBufferedArea;
CExplosionArray* iExplosions;
CExplosionCreator* iExplosionCreator;
CPeriodic* iTimer;
};
#endif // __CLIENTANIMATIONCONTAINER_H__
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -