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 #include "simpledrawer.h"
23 #include "wsgraphicdrawercontext.h"
28 CWsSimpleGraphicDrawer* CWsSimpleGraphicDrawer::NewL()
30 return new(ELeave) CWsSimpleGraphicDrawer;
33 CWsSimpleGraphicDrawer::~CWsSimpleGraphicDrawer()
42 void CWsSimpleGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
44 BaseConstructL(aEnv, aId, aOwner);
49 void CWsSimpleGraphicDrawer::HandleMessage(const TDesC8& aData)
52 TInt green = aData[1];
54 TRgb color(red, green, blue);
58 void CWsSimpleGraphicDrawer::BaseConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner)
60 CWsGraphicDrawer::BaseConstructL(aEnv, aId, aOwner);
61 if (!(aEnv.Screen(0)->ResolveObjectInterface(KMWsCompositionContext) || aEnv.Screen(0)->ResolveObjectInterface(KMWsScene)))
63 iContext = CWsGraphicDrawerNonNgaContext::NewL();
67 iContext = CWsGraphicDrawerNgaContext::NewL();
71 void CWsSimpleGraphicDrawer::DoUpdateColor(TRgb aColor)
74 // Invalidate the redrawing
78 void CWsSimpleGraphicDrawer::DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& /*aData*/) const
80 iContext->DrawEllipse(aGc, aRect, iColor);
83 // First contained (child) drawer
84 CWsInvisibleGraphicDrawer1* CWsInvisibleGraphicDrawer1::NewL()
86 return new(ELeave) CWsInvisibleGraphicDrawer1;
89 CWsInvisibleGraphicDrawer1::~CWsInvisibleGraphicDrawer1()
93 void CWsInvisibleGraphicDrawer1::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
95 BaseConstructL(aEnv, aId, aOwner);
100 // Second contained (child) drawer
101 CWsInvisibleGraphicDrawer2* CWsInvisibleGraphicDrawer2::NewL()
103 return new(ELeave) CWsInvisibleGraphicDrawer2;
106 CWsInvisibleGraphicDrawer2::~CWsInvisibleGraphicDrawer2()
110 void CWsInvisibleGraphicDrawer2::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
112 BaseConstructL(aEnv, aId, aOwner);