First public contribution.
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 __STDGRAPHICDRAWER_H__
17 #define __STDGRAPHICDRAWER_H__
19 #include "graphics/WSGRAPHICDRAWER.H"
20 #include <graphics/WSGRAPHICDRAWERINTERFACE.H>
21 #include <icl/imagedata.h>
22 #include "stdgraphictestdrawer.h"
25 class MWsGraphicDrawerContext;
27 NONSHARABLE_CLASS(CWsGraphicDrawerBitmap): public CWsGraphicDrawer
34 static CWsGraphicDrawerBitmap* CreateL();
35 ~CWsGraphicDrawerBitmap();
36 void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData);
37 void HandleMessage(const TDesC8& aData);
39 CWsGraphicDrawerBitmap();
40 void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
42 MWsGraphicDrawerContext* iContext;
47 NONSHARABLE_CLASS(CWsGraphicDrawerBitmapAnimation): public CWsGraphicDrawer
54 static CWsGraphicDrawerBitmapAnimation* CreateL();
55 ~CWsGraphicDrawerBitmapAnimation();
56 void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData);
57 void HandleMessage(const TDesC8& aData);
59 CWsGraphicDrawerBitmapAnimation();
60 void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
63 MWsGraphicDrawerContext* iContext;
64 RPointerArray<CFrame> iFrames;
65 TInt64 iAnimationLength;
69 #endif //__STDGRAPHICDRAWER_H__