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 wheather some drawers are contained within a specific region.
19 // But it currently fails to 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 "wssimpledrawer.h"
37 CWsSimpleGraphicBitmap::CWsSimpleGraphicBitmap()
41 EXPORT_C CWsSimpleGraphicBitmap::~CWsSimpleGraphicBitmap()
46 EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL()
48 CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
49 CleanupStack::PushL(self);
50 self->BaseConstructL(KSimpleDrawerImplId,KNullDesC8());
51 self->iIsReady = ETrue;
52 CleanupStack::Pop(self);
56 EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL(TUid aUid)
58 CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
59 CleanupStack::PushL(self);
60 self->BaseConstructL(aUid,KSimpleDrawerImplId,KNullDesC8());
61 self->iIsReady = ETrue;
62 CleanupStack::Pop(self);
66 EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL(const TWsGraphicId& aReplace)
68 CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
69 CleanupStack::PushL(self);
70 self->BaseConstructL(aReplace,KSimpleDrawerImplId,KNullDesC8());
71 self->iIsReady = ETrue;
72 CleanupStack::Pop(self);
76 EXPORT_C TInt CWsSimpleGraphicBitmap::UpdateColor(TRgb aColor)
80 // Send the message to server side
82 TInt red = aColor.Red();
83 TInt green = aColor.Green();
84 TInt blue = aColor.Blue();
94 EXPORT_C void CWsSimpleGraphicBitmap::HandleMessage(const TDesC8& /*aData*/)
98 EXPORT_C void CWsSimpleGraphicBitmap::OnReplace()
102 EXPORT_C TInt CWsSimpleGraphicBitmap::ShareGlobally()
104 return CWsGraphic::ShareGlobally();
107 EXPORT_C TInt CWsSimpleGraphicBitmap::UnShareGlobally()
109 return CWsGraphic::UnShareGlobally();
112 EXPORT_C TInt CWsSimpleGraphicBitmap::Share(TSecureId aClientId)
114 return CWsGraphic::Share(aClientId);
117 EXPORT_C TInt CWsSimpleGraphicBitmap::UnShare(TSecureId aClientId)
119 return CWsGraphic::UnShare(aClientId);
122 EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL()
124 CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
125 CleanupStack::PushL(self);
126 self->BaseConstructL(KInvisibleDrawerImplId1,KNullDesC8());
127 self->iIsReady = ETrue;
128 CleanupStack::Pop(self);
132 EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL(TUid aUid)
134 CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
135 CleanupStack::PushL(self);
136 self->BaseConstructL(aUid,KInvisibleDrawerImplId1,KNullDesC8());
137 self->iIsReady = ETrue;
138 CleanupStack::Pop(self);
142 EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL(const TWsGraphicId& aReplace)
144 CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
145 CleanupStack::PushL(self);
146 self->BaseConstructL(aReplace,KInvisibleDrawerImplId1,KNullDesC8());
147 self->iIsReady = ETrue;
148 CleanupStack::Pop(self);
152 EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL()
154 CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
155 CleanupStack::PushL(self);
156 self->BaseConstructL(KInvisibleDrawerImplId2,KNullDesC8());
157 self->iIsReady = ETrue;
158 CleanupStack::Pop(self);
162 EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL(TUid aUid)
164 CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
165 CleanupStack::PushL(self);
166 self->BaseConstructL(aUid,KInvisibleDrawerImplId2,KNullDesC8());
167 self->iIsReady = ETrue;
168 CleanupStack::Pop(self);
172 EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL(const TWsGraphicId& aReplace)
174 CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
175 CleanupStack::PushL(self);
176 self->BaseConstructL(aReplace,KInvisibleDrawerImplId2,KNullDesC8());
177 self->iIsReady = ETrue;
178 CleanupStack::Pop(self);