sl@0: // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Demonstration handwriting class sl@0: // sl@0: // sl@0: sl@0: #if !defined(__MBMANIM_H__) sl@0: #define __MBMANIM_H__ sl@0: sl@0: #if !defined(__E32STD_H__) sl@0: #include sl@0: #endif sl@0: #if !defined(__E32BASE_H__) sl@0: #include sl@0: #endif sl@0: #if !defined(__FBS_H__) sl@0: #include sl@0: #endif sl@0: #if !defined(__W32ADLL_H__) sl@0: #include sl@0: #endif sl@0: sl@0: sl@0: class CAnimateMbmAnimDll : public CAnimDll sl@0: { sl@0: public: sl@0: CAnim *CreateInstanceL(TInt aType); sl@0: }; sl@0: sl@0: class MAnimTimer sl@0: { sl@0: public: sl@0: virtual void Animate()=0; sl@0: }; sl@0: sl@0: class CAnimTimer : public CTimer sl@0: { sl@0: public: sl@0: inline CAnimTimer(MAnimTimer* aAnimator) :CTimer(0), iAnimator(aAnimator) {} sl@0: void ConstructL(); sl@0: //pure virtual functions from CActive sl@0: void DoCancel(); sl@0: void RunL(); sl@0: private: sl@0: MAnimTimer* iAnimator; sl@0: }; sl@0: sl@0: class CAnimateMbm : public CFreeTimerWindowAnim, MAnimTimer sl@0: { sl@0: public: sl@0: ~CAnimateMbm(); sl@0: //pure virtual functions from MAnimTimer sl@0: void Animate(); sl@0: //pure virtual functions from MEventHandler sl@0: TBool OfferRawEvent(const TRawEvent &aRawEvent); sl@0: //pure virtual functions from CAnim sl@0: void ConstructL(TAny *aArgs, TBool aHasFocus); sl@0: void Animate(TDateTime *aDateTime); sl@0: void Redraw(); sl@0: void Command(TInt aOpcode, TAny *aArgs); sl@0: TInt CommandReplyL(TInt aOpcode, TAny *aArgs); sl@0: void FocusChanged(TBool aState); sl@0: private: sl@0: inline TInt LoadBitmap() {return LoadBitmap(iIndex);} sl@0: inline TInt LoadBitmap(TInt aIndex) {return iBitmap->Load(iName,aIndex);} sl@0: private: sl@0: CAnimTimer* iTimer; sl@0: CFbsBitmap* iBitmap; sl@0: TBuf<32> iName; sl@0: TInt iIndex; sl@0: TBool iRunning; sl@0: TTimeIntervalMicroSeconds32 iInterval; sl@0: }; sl@0: sl@0: #endif