Update contrib.
1 // Copyright (c) 1995-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.
16 #ifndef __WSGRAPHICMSGBUF_H__
17 #define __WSGRAPHICMSGBUF_H__
21 class TWsGraphicMsgBufParser
22 /** Utility class for parsing incoming data associated with individual draw commands
23 @see CWindowGc::DrawWsGraphic
29 IMPORT_C TWsGraphicMsgBufParser(const TDesC8& aData);
30 IMPORT_C TInt Verify() const;
31 IMPORT_C TInt Count() const;
32 IMPORT_C TUid Uid(TInt aIndex) const;
33 IMPORT_C TPtrC8 Data(TInt aIndex) const;
34 IMPORT_C TInt Find(TUid aUid,TInt aStartingFrom = 0) const;
35 IMPORT_C TBool LoadFixed(TUid aUid,TAny* aMsg,TInt aMsgSize,TInt aStartingFrom = 0) const;
37 TInt IntAt(TInt aOfs) const;
42 class TWsGraphicMsgAnimation
43 /** Utility class for parsing incoming TWsGraphicAnimation messages
44 @see CWindowGc::DrawWsGraphic
50 IMPORT_C TWsGraphicMsgAnimation();
51 IMPORT_C TInt Load(const TWsGraphicMsgBufParser& aData);
52 IMPORT_C TInt Load(const TWsGraphicMsgBufParser& aData,TInt aIndex);
53 IMPORT_C TTimeIntervalMicroSeconds AnimationTime(const TTime& aNow,const TTimeIntervalMicroSeconds& aAnimationLength) const;
54 IMPORT_C TBool IsPlaying(const TTime& aNow,const TTimeIntervalMicroSeconds& aAnimationLength) const;
58 // animation state in lowest nibble
69 TTime iPauseOrStopping;
72 #endif //__WSGRAPHICMSGBUF_H__