diff -r fb3763350a08 -r 4d54b72983ae idlehomescreen/xmluirendering/renderingplugins/xnanimationfactory/inc/xnanimationadapter.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/idlehomescreen/xmluirendering/renderingplugins/xnanimationfactory/inc/xnanimationadapter.h Tue Jan 26 11:48:23 2010 +0200 @@ -0,0 +1,137 @@ +/* +* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Implements Xuikon animation component. +* +*/ + + + +#ifndef _XNANIMATIONAPADAPTER_H +#define _XNANIMATIONAPADAPTER_H + +// INCLUDES +#include "xncontroladapter.h" + + +// FORWARD DECLARATIONS +class CXnNodePluginIf; +class CAknBitmapAnimation; +class CXnAnimationControl; +class CPeriodic; + +// CLASS DECLARATION +/** +* @ingroup group_xnbitmapfactory +* @lib xn3bitmapfactory.dll +* @since Series 60 3.1 +*/ +class CXnAnimationAdapter : public CXnControlAdapter + { + public: + /** + * 2 phase construction. + */ + static CXnAnimationAdapter* NewL(CXnNodePluginIf& aNode); + + /** + * Destructor. + */ + virtual ~CXnAnimationAdapter(); + + public: // From Base classes + /** + * From CXnControlAdapter Handles the property changes. + * @since Series 60 3.1 + * @return void. + */ + void DoHandlePropertyChangeL(CXnProperty* aProperty = NULL); + + protected: + /** + * From CCoeControl. + * Draws the control. + * + * @param aRect TRect to draw + */ + void Draw(const TRect& aRect) const; + + /** + * From CCoeControl. + * Control visual state. + * + * @param aVisible visibility (ETrue/EFalse) + */ + void MakeVisible( TBool aVisible ); + + private: + /** + * Constructor + * + * @param aNode plugin node + */ + CXnAnimationAdapter(CXnNodePluginIf& aNode); + + /** + * 2nd phase constructor + * + * @param aNode plugin node + */ + void ConstructL(CXnNodePluginIf& aNode); + + /** + * Periodic timer call back + * + * @param aAny pointer reference + */ + static TInt TimerCallBack(TAny* aAny); + + /** + * Update the next image for animation + * + */ + void Update(); + + /** + * Starts the animation + * + */ + void StartAnimation(); + + /** + * Stops the animation + * + */ + void StopAnimation(); + + private: // Data + + // UI node, not owned + CXnNodePluginIf& iNode; + + // display on(block) or off(none) + TBool iDisplay; + + // Whether the animation started or not + TBool iAnimationSarted; + + // Image Skind Id + TAknsItemID iSkinId; + + // Timer for animation, owned + CPeriodic* iPeriodicTimer; + }; + +#endif // _XNANIMATIONAPADAPTER_H + +// End of File