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(__HANDANIM_H__)
19 #define __HANDANIM_H__
21 #if !defined(__E32STD_H__)
24 #if !defined(__E32BASE_H__)
27 #if !defined(__GDI_H__)
30 #if !defined(__W32ADLL_H__)
33 #if !defined(__HANDCMD_H__)
38 class CPointStore : public CBase
43 void AddPoint(TPoint aPoint);
47 CArrayFixFlat<TPoint> *iPoints;
51 class CHandWritingAnimDll : public CAnimDll
54 CAnim *CreateInstanceL(TInt aType);
58 class CHandWritingAnim : public CSpriteAnim
64 EHwStateInactive, //Waiting for first point
65 EHwStateWaitingMove, //Waiting to see if a period elapses before the first move
66 EHwStateDrawing, //Pen down and drawing
67 EHwStateWaitingStroke, //Waiting for new stroke
71 //pure virtual functions from MEventHandler
72 TBool OfferRawEvent(const TRawEvent &aRawEvent);
73 //pure virtual functions from CAnim
74 void ConstructL(TAny *aArgs);
75 void Animate(TDateTime *aDateTime);
77 void Command(TInt aOpcode, TAny *aArgs);
78 TInt CommandReplyL(TInt aOpcode, TAny *aArgs);
79 void FocusChanged(TBool aState);
83 void SpriteChangeL(TBool aUsingSeparateMask);
84 void SetDrawData(THandwritingDrawData *aDrawData);
85 TBool HandlePointerDown(TPoint aPoint);
86 TBool HandlePointerMove(TPoint aPoint);
87 TBool HandlePointerUp(TPoint aPoint);
89 void DrawLine(TPoint aEndPoint);
92 void SendEatenDownEvent();
93 void CharacterFinished();
97 CFbsBitmapDevice *iBitmapDevice;
98 CFbsBitmapDevice *iMaskBitmapDevice;
101 THandwritingDrawData iDrawData;
102 TPoint iCurrentDrawPoint;
103 TTime iDownTime; //Will need to use this when taken base changes
104 CPointStore *iPointStore;
105 TInt iLastGeneratedCharacter;