Update contrib.
1 // Copyright (c) 2007-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.
19 @internalComponent - Internal Symbian test code
22 #ifndef __SIMPLEDRAWER_H__
23 #define __SIMPLEDRAWER_H__
25 #include <graphics/wsgraphicdrawer.h>
26 #include <graphics/wsgraphicdrawerinterface.h>
28 class MWsGraphicDrawerContext;
31 NONSHARABLE_CLASS(CWsSimpleGraphicDrawer): public CWsGraphicDrawer//, public MWsEventHandler
34 enum {EImplUid = 0x1028351C};
37 static CWsSimpleGraphicDrawer* NewL();
38 virtual ~CWsSimpleGraphicDrawer();
39 // override CWsGraphicDrawer
40 virtual void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& aData);
41 virtual void HandleMessage(const TDesC8& aData);
43 // override CWsGraphicDrawer
44 void BaseConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner);
45 virtual void DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& aData) const;
46 void DoUpdateColor(TRgb aColor);
48 MWsGraphicDrawerContext* iContext;
52 // First Contained (Child) drawer
53 NONSHARABLE_CLASS(CWsInvisibleGraphicDrawer1): public CWsSimpleGraphicDrawer//, public MWsEventHandler
56 enum {EImplUid = 0x10283539};
59 static CWsInvisibleGraphicDrawer1* NewL();
60 virtual ~CWsInvisibleGraphicDrawer1();
61 // override CWsGraphicDrawer
62 virtual void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& aData);
65 // Second contained (child) drawer
66 NONSHARABLE_CLASS(CWsInvisibleGraphicDrawer2): public CWsSimpleGraphicDrawer//, public MWsEventHandler
69 enum {EImplUid = 0x1028353B};
72 static CWsInvisibleGraphicDrawer2* NewL();
73 virtual ~CWsInvisibleGraphicDrawer2();
74 // override CWsGraphicDrawer
75 virtual void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& aData);