Update contrib.
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Demonstration handwriting class
18 #if !defined(__MBMANIM_H__)
21 #if !defined(__E32STD_H__)
24 #if !defined(__E32BASE_H__)
27 #if !defined(__FBS_H__)
30 #if !defined(__W32ADLL_H__)
35 class CAnimateMbmAnimDll : public CAnimDll
38 CAnim *CreateInstanceL(TInt aType);
44 virtual void Animate()=0;
47 class CAnimTimer : public CTimer
50 inline CAnimTimer(MAnimTimer* aAnimator) :CTimer(0), iAnimator(aAnimator) {}
52 //pure virtual functions from CActive
56 MAnimTimer* iAnimator;
59 class CAnimateMbm : public CFreeTimerWindowAnim, MAnimTimer
63 //pure virtual functions from MAnimTimer
65 //pure virtual functions from MEventHandler
66 TBool OfferRawEvent(const TRawEvent &aRawEvent);
67 //pure virtual functions from CAnim
68 void ConstructL(TAny *aArgs, TBool aHasFocus);
69 void Animate(TDateTime *aDateTime);
71 void Command(TInt aOpcode, TAny *aArgs);
72 TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
73 void FocusChanged(TBool aState);
75 inline TInt LoadBitmap() {return LoadBitmap(iIndex);}
76 inline TInt LoadBitmap(TInt aIndex) {return iBitmap->Load(iName,aIndex);}
83 TTimeIntervalMicroSeconds32 iInterval;