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(__HNDLODR_H__) sl@0: #define __HNDLODR_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(__W32STD_H__) sl@0: #include "W32STD.H" sl@0: #endif sl@0: #if !defined(__HANDCMD_H__) sl@0: #include "HANDCMD.H" sl@0: #endif sl@0: sl@0: sl@0: class RHandWritingAnim : public RAnim sl@0: { sl@0: public: sl@0: inline RHandWritingAnim(RAnimDll& aDll) :RAnim(aDll) {} sl@0: TInt Construct(const RWsSprite& aDevice); sl@0: void Activate(); sl@0: void Deactivate(); sl@0: TInt SpriteMaskChange(TBool aUsingSeparateMask); sl@0: void SetDrawData(const THandwritingDrawData& aDrawData); sl@0: TInt GetLastGeneratedCharacter(); sl@0: }; sl@0: sl@0: class CHandWriting : public CBase sl@0: { sl@0: public: sl@0: CHandWriting(RWsSession& aSession); sl@0: void ConstructL(TSize aScreenSize,RWindowGroup& aGroup,TBool aUseSeparateMask); sl@0: ~CHandWriting(); sl@0: void SetMaskL(TBool aUseSeparateMask); sl@0: void ToggleStatus(); sl@0: private: sl@0: void CreateSpriteL(TSize aScreenSize,RWindowGroup& aGroup,TBool aUseSeparateMask); sl@0: void LoadDllL(); sl@0: void FillInSpriteMember(TSpriteMember& aMember); sl@0: private: sl@0: RWsSession& iSession; sl@0: RAnimDll iAnimDll; sl@0: RHandWritingAnim iAnim; sl@0: RWsSprite iSprite; sl@0: CFbsBitmap *iBitmap; sl@0: CFbsBitmap *iMaskBitmap; sl@0: TBool iActive; sl@0: }; sl@0: sl@0: #endif