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.
14 // The plug-in provides the client side CWsGraphic instance CWsListen, which is used in
15 // GRAPHICS-WSERV-0438.
16 // This also provides Test Case INC103472: CRedrawRegion::ContainsDrawers does not look for all drawers.
17 // The customer incident "INC103472" reports CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers in wnredraw.cpp
18 // is suppose to return whether some drawers are contained within a specific region.
19 // But right now it doesn't check for drawers in drawers.
20 // So if one drawer from the iDrawerArray contains one of the drawers passed along
21 // in aDrawers it will still return EFalse when it should return ETrue.
22 // The fix is added in CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers(const TArray& aDrawers,const RRegion& aRegion).
23 // The drawer->Contains() call will end up in HasAsChild(const TArray& aIds),
24 // where the CWsGraphicDrawer has to look for its own nested drawers and return ETrue or EFalse.
31 @internalComponent - Internal Symbian test code
34 #include "wscontaindrawer.h"
36 CWsContainGraphicBitmap::CWsContainGraphicBitmap()
40 EXPORT_C CWsContainGraphicBitmap::~CWsContainGraphicBitmap()
45 EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL()
47 CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap;
48 CleanupStack::PushL(self);
49 self->BaseConstructL(KContainDrawerImplId,KNullDesC8());
50 self->iIsReady = ETrue;
51 CleanupStack::Pop(self);
55 EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL(TUid aUid)
57 CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap;
58 CleanupStack::PushL(self);
59 self->BaseConstructL(aUid,KContainDrawerImplId,KNullDesC8());
60 self->iIsReady = ETrue;
61 CleanupStack::Pop(self);
65 EXPORT_C CWsContainGraphicBitmap* CWsContainGraphicBitmap::NewL(const TWsGraphicId& aReplace)
67 CWsContainGraphicBitmap* self = new(ELeave) CWsContainGraphicBitmap;
68 CleanupStack::PushL(self);
69 self->BaseConstructL(aReplace,KContainDrawerImplId,KNullDesC8());
70 self->iIsReady = ETrue;
71 CleanupStack::Pop(self);
75 EXPORT_C TInt CWsContainGraphicBitmap::UpdateColor(TRgb aColor)
79 // Send the color the server side
81 TInt red = aColor.Red();
82 TInt green = aColor.Green();
83 TInt blue = aColor.Blue();
94 EXPORT_C void CWsContainGraphicBitmap::HandleMessage(const TDesC8& /*aData*/)
98 EXPORT_C void CWsContainGraphicBitmap::OnReplace()
102 EXPORT_C TInt CWsContainGraphicBitmap::ShareGlobally()
104 return CWsGraphic::ShareGlobally();
107 EXPORT_C TInt CWsContainGraphicBitmap::UnShareGlobally()
109 return CWsGraphic::UnShareGlobally();
112 EXPORT_C TInt CWsContainGraphicBitmap::Share(TSecureId aClientId)
114 return CWsGraphic::Share(aClientId);
117 EXPORT_C TInt CWsContainGraphicBitmap::UnShare(TSecureId aClientId)
119 return CWsGraphic::UnShare(aClientId);