sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// The plug-in provides the client side CWsGraphic instance CWsListen, which is used in
|
sl@0
|
15 |
// GRAPHICS-WSERV-0438.
|
sl@0
|
16 |
// This also provides Test Case INC103472: CRedrawRegion::ContainsDrawers does not look for all drawers.
|
sl@0
|
17 |
// The customer incident "INC103472" reports CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers in wnredraw.cpp
|
sl@0
|
18 |
// is suppose to return wheather some drawers are contained within a specific region.
|
sl@0
|
19 |
// But it currently fails to check for drawers in drawers.
|
sl@0
|
20 |
// So if one drawer from the iDrawerArray contains one of the drawers passed along
|
sl@0
|
21 |
// in aDrawers it will still return EFalse when it should return ETrue.
|
sl@0
|
22 |
// The fix is added in CWsRedrawMsgWindow::CRedrawRegion::ContainsDrawers(const TArray& aDrawers,const RRegion& aRegion).
|
sl@0
|
23 |
// The drawer->Contains() call will end up in HasAsChild(const TArray& aIds),
|
sl@0
|
24 |
// where the CWsGraphicDrawer has to look for its own nested drawers and return ETrue or EFalse.
|
sl@0
|
25 |
//
|
sl@0
|
26 |
//
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
@file
|
sl@0
|
30 |
@test
|
sl@0
|
31 |
@internalComponent - Internal Symbian test code
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
//CWsGraphic
|
sl@0
|
34 |
#include "wssimpledrawer.h"
|
sl@0
|
35 |
#include <s32mem.h>
|
sl@0
|
36 |
|
sl@0
|
37 |
CWsSimpleGraphicBitmap::CWsSimpleGraphicBitmap()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
EXPORT_C CWsSimpleGraphicBitmap::~CWsSimpleGraphicBitmap()
|
sl@0
|
42 |
{
|
sl@0
|
43 |
iIsReady = EFalse;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL()
|
sl@0
|
47 |
{
|
sl@0
|
48 |
CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
|
sl@0
|
49 |
CleanupStack::PushL(self);
|
sl@0
|
50 |
self->BaseConstructL(KSimpleDrawerImplId,KNullDesC8());
|
sl@0
|
51 |
self->iIsReady = ETrue;
|
sl@0
|
52 |
CleanupStack::Pop(self);
|
sl@0
|
53 |
return self;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL(TUid aUid)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
|
sl@0
|
59 |
CleanupStack::PushL(self);
|
sl@0
|
60 |
self->BaseConstructL(aUid,KSimpleDrawerImplId,KNullDesC8());
|
sl@0
|
61 |
self->iIsReady = ETrue;
|
sl@0
|
62 |
CleanupStack::Pop(self);
|
sl@0
|
63 |
return self;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
EXPORT_C CWsSimpleGraphicBitmap* CWsSimpleGraphicBitmap::NewL(const TWsGraphicId& aReplace)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
CWsSimpleGraphicBitmap* self = new(ELeave) CWsSimpleGraphicBitmap;
|
sl@0
|
69 |
CleanupStack::PushL(self);
|
sl@0
|
70 |
self->BaseConstructL(aReplace,KSimpleDrawerImplId,KNullDesC8());
|
sl@0
|
71 |
self->iIsReady = ETrue;
|
sl@0
|
72 |
CleanupStack::Pop(self);
|
sl@0
|
73 |
return self;
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
EXPORT_C TInt CWsSimpleGraphicBitmap::UpdateColor(TRgb aColor)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
if (!iIsReady)
|
sl@0
|
79 |
return KErrNotReady;
|
sl@0
|
80 |
// Send the message to server side
|
sl@0
|
81 |
TBuf8<3> cmd;
|
sl@0
|
82 |
TInt red = aColor.Red();
|
sl@0
|
83 |
TInt green = aColor.Green();
|
sl@0
|
84 |
TInt blue = aColor.Blue();
|
sl@0
|
85 |
//Append the color
|
sl@0
|
86 |
cmd.Append(red);
|
sl@0
|
87 |
cmd.Append(green);
|
sl@0
|
88 |
cmd.Append(blue);
|
sl@0
|
89 |
|
sl@0
|
90 |
SendMessage(cmd);
|
sl@0
|
91 |
return Flush();
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
EXPORT_C void CWsSimpleGraphicBitmap::HandleMessage(const TDesC8& /*aData*/)
|
sl@0
|
95 |
{
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
EXPORT_C void CWsSimpleGraphicBitmap::OnReplace()
|
sl@0
|
99 |
{
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
EXPORT_C TInt CWsSimpleGraphicBitmap::ShareGlobally()
|
sl@0
|
103 |
{
|
sl@0
|
104 |
return CWsGraphic::ShareGlobally();
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
EXPORT_C TInt CWsSimpleGraphicBitmap::UnShareGlobally()
|
sl@0
|
108 |
{
|
sl@0
|
109 |
return CWsGraphic::UnShareGlobally();
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
EXPORT_C TInt CWsSimpleGraphicBitmap::Share(TSecureId aClientId)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
return CWsGraphic::Share(aClientId);
|
sl@0
|
115 |
}
|
sl@0
|
116 |
|
sl@0
|
117 |
EXPORT_C TInt CWsSimpleGraphicBitmap::UnShare(TSecureId aClientId)
|
sl@0
|
118 |
{
|
sl@0
|
119 |
return CWsGraphic::UnShare(aClientId);
|
sl@0
|
120 |
}
|
sl@0
|
121 |
|
sl@0
|
122 |
EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL()
|
sl@0
|
123 |
{
|
sl@0
|
124 |
CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
|
sl@0
|
125 |
CleanupStack::PushL(self);
|
sl@0
|
126 |
self->BaseConstructL(KInvisibleDrawerImplId1,KNullDesC8());
|
sl@0
|
127 |
self->iIsReady = ETrue;
|
sl@0
|
128 |
CleanupStack::Pop(self);
|
sl@0
|
129 |
return self;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL(TUid aUid)
|
sl@0
|
133 |
{
|
sl@0
|
134 |
CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
|
sl@0
|
135 |
CleanupStack::PushL(self);
|
sl@0
|
136 |
self->BaseConstructL(aUid,KInvisibleDrawerImplId1,KNullDesC8());
|
sl@0
|
137 |
self->iIsReady = ETrue;
|
sl@0
|
138 |
CleanupStack::Pop(self);
|
sl@0
|
139 |
return self;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
EXPORT_C CWsInvisibleGraphicBitmap1* CWsInvisibleGraphicBitmap1::NewL(const TWsGraphicId& aReplace)
|
sl@0
|
143 |
{
|
sl@0
|
144 |
CWsInvisibleGraphicBitmap1* self = new(ELeave) CWsInvisibleGraphicBitmap1;
|
sl@0
|
145 |
CleanupStack::PushL(self);
|
sl@0
|
146 |
self->BaseConstructL(aReplace,KInvisibleDrawerImplId1,KNullDesC8());
|
sl@0
|
147 |
self->iIsReady = ETrue;
|
sl@0
|
148 |
CleanupStack::Pop(self);
|
sl@0
|
149 |
return self;
|
sl@0
|
150 |
}
|
sl@0
|
151 |
|
sl@0
|
152 |
EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL()
|
sl@0
|
153 |
{
|
sl@0
|
154 |
CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
|
sl@0
|
155 |
CleanupStack::PushL(self);
|
sl@0
|
156 |
self->BaseConstructL(KInvisibleDrawerImplId2,KNullDesC8());
|
sl@0
|
157 |
self->iIsReady = ETrue;
|
sl@0
|
158 |
CleanupStack::Pop(self);
|
sl@0
|
159 |
return self;
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL(TUid aUid)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
|
sl@0
|
165 |
CleanupStack::PushL(self);
|
sl@0
|
166 |
self->BaseConstructL(aUid,KInvisibleDrawerImplId2,KNullDesC8());
|
sl@0
|
167 |
self->iIsReady = ETrue;
|
sl@0
|
168 |
CleanupStack::Pop(self);
|
sl@0
|
169 |
return self;
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
EXPORT_C CWsInvisibleGraphicBitmap2* CWsInvisibleGraphicBitmap2::NewL(const TWsGraphicId& aReplace)
|
sl@0
|
173 |
{
|
sl@0
|
174 |
CWsInvisibleGraphicBitmap2* self = new(ELeave) CWsInvisibleGraphicBitmap2;
|
sl@0
|
175 |
CleanupStack::PushL(self);
|
sl@0
|
176 |
self->BaseConstructL(aReplace,KInvisibleDrawerImplId2,KNullDesC8());
|
sl@0
|
177 |
self->iIsReady = ETrue;
|
sl@0
|
178 |
CleanupStack::Pop(self);
|
sl@0
|
179 |
return self;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|