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 "containdrawer.h"
23 #include "wsgraphicdrawercontext.h"
27 const TGraphicDrawerId KChildInterfaceId1={0x1028353A, ETrue};
28 const TGraphicDrawerId KChildInterfaceId2={0x1028353C, ETrue};
32 CWsContainGraphicDrawer* CWsContainGraphicDrawer::NewL()
34 return new(ELeave) CWsContainGraphicDrawer;
37 CWsContainGraphicDrawer::~CWsContainGraphicDrawer()
46 void CWsContainGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
48 BaseConstructL(aEnv, aId, aOwner);
50 if (!(aEnv.Screen(0)->ResolveObjectInterface(KMWsCompositionContext) || aEnv.Screen(0)->ResolveObjectInterface(KMWsScene)))
52 iContext = CWsGraphicDrawerNonNgaContext::NewL();
56 iContext = CWsGraphicDrawerNgaContext::NewL();
60 void CWsContainGraphicDrawer::HandleMessage(const TDesC8& aData)
63 TInt green = aData[1];
65 TRgb color(red, green, blue);
69 void CWsContainGraphicDrawer::DoUpdateColor(TRgb aColor)
72 // Invalidate the redrawing
76 void CWsContainGraphicDrawer::DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& aData) const
78 iContext->DrawEllipse(aGc, aRect, iColor);
80 // invoke another CRPs to draw their artwork
81 TRect rect1 = TRect(TPoint(100,150),TSize(50,50));
82 const CWsGraphicDrawer* child1 = Env().ResolveGraphic(KChildInterfaceId1);
84 child1->Draw(aGc, rect1, aData);
85 TRect rect2 = TRect(TPoint(200,150),TSize(50,50));
86 const CWsGraphicDrawer* child2 = Env().ResolveGraphic(KChildInterfaceId2);
88 child2->Draw(aGc, rect2, aData);
91 // inherited API to indicate there are contained drawers
92 TBool CWsContainGraphicDrawer::HasAsChild(const TArray<TGraphicDrawerId>& aIds) const
95 const CWsGraphicDrawer* child1 = Env().ResolveGraphic(KChildInterfaceId1);
96 const CWsGraphicDrawer* child2 = Env().ResolveGraphic(KChildInterfaceId2);
97 if (child1 && child1->Contains(aIds))
99 else if (child2 && child2->Contains(aIds))