animationappview.h

来自「a Animation control of symbian」· C头文件 代码 · 共 43 行

H
43
字号
/*
============================================================================
 Name		: AnimationAppView.h
 Author	  : 
 Copyright   : Your copyright notice
 Description : Declares view class for application.
============================================================================
*/

#ifndef __ANIMATIONAPPVIEW_h__
#define __ANIMATIONAPPVIEW_h__

// INCLUDES
#include <coecntrl.h>
#include "controlbase.h"
#include "Animationcontrol.h"
// CLASS DECLARATION
class CAnimationAppView : public COggCanvas
	{
	public: // New methods
		static CAnimationAppView* NewL( const TRect& aRect );
		static CAnimationAppView* NewLC( const TRect& aRect );
		virtual ~CAnimationAppView();
	private: // Constructors
		void ConstructL(const TRect& aRect);
		CAnimationAppView();
	public:
		void Invalidate();
		void  ClearCanvases();
		static TInt CallBack(TAny* aPtr);
		void HandleCallBack();
		void StopCallBack();
		void RestartCallBack();
		COggAnimation* iAnimation;
		
		CPeriodic* iTimer;
		TCallBack* iCallBack;
	};

#endif // __ANIMATIONAPPVIEW_h__

// End of File

⌨️ 快捷键说明

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