sl@0
|
1 |
// Copyright (c) 2005-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 |
// WSGRAPHIC.CPP
|
sl@0
|
15 |
// The client-side representation of a WsGraphic artwork
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "../SERVER/w32cmd.h"
|
sl@0
|
20 |
#include "Graphics/WSGRAPHICDRAWER.H"
|
sl@0
|
21 |
#include <Graphics/WSGRAPHICDRAWERINTERFACE.H>
|
sl@0
|
22 |
#include <s32mem.h>
|
sl@0
|
23 |
#include "panics.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
GLDEF_C void Panic(TWsGraphicDrawerPanic aPanic)
|
sl@0
|
26 |
{
|
sl@0
|
27 |
_LIT(KCategory,"WsGraphicDrawer");
|
sl@0
|
28 |
User::Panic(KCategory,aPanic);
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
//
|
sl@0
|
32 |
// TWservCrEvent implementation
|
sl@0
|
33 |
//
|
sl@0
|
34 |
EXPORT_C TWservCrEvent::TWservCrEvent(TUint32 aType): iType(aType), iInfo(0), iData(NULL), iWindow(NULL)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
EXPORT_C TWservCrEvent::TWservCrEvent(TUint32 aType, TUint32 aInfo): iType(aType), iInfo(aInfo), iData(NULL), iWindow(NULL)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
EXPORT_C TWservCrEvent::TWservCrEvent(TUint32 aType, TUint32 aInfo, TAny* aData): iType(aType), iInfo(aInfo), iData(aData), iWindow(NULL)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
EXPORT_C TWservCrEvent::TWservCrEvent(TUint32 aType, TUint32 aInfo, TAny* aData, MWsWindow* aWindow): iType(aType), iInfo(aInfo), iData(aData), iWindow(aWindow)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
EXPORT_C TUint32 TWservCrEvent::Type() const
|
sl@0
|
51 |
{
|
sl@0
|
52 |
return iType;
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
EXPORT_C TInt TWservCrEvent::SizeMode() const
|
sl@0
|
56 |
{
|
sl@0
|
57 |
return iInfo;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
EXPORT_C const RRegion* TWservCrEvent::VisibleRegion() const
|
sl@0
|
61 |
{
|
sl@0
|
62 |
return reinterpret_cast<RRegion*>(iData);
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
EXPORT_C TInt TWservCrEvent::ScreenNumber() const
|
sl@0
|
66 |
{
|
sl@0
|
67 |
return iInfo;
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
EXPORT_C CFbsBitGc::TGraphicsOrientation TWservCrEvent::Orientation() const
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return *reinterpret_cast<CFbsBitGc::TGraphicsOrientation*>(iData);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
EXPORT_C const TRegion* TWservCrEvent::DrawingRegion() const
|
sl@0
|
76 |
{
|
sl@0
|
77 |
return reinterpret_cast<TRegion*>(iData);
|
sl@0
|
78 |
}
|
sl@0
|
79 |
|
sl@0
|
80 |
EXPORT_C TInt TWservCrEvent::WindowGroupIdentifier() const
|
sl@0
|
81 |
{
|
sl@0
|
82 |
return reinterpret_cast<TInt>(iData);
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
//This is NGA-specific, but does not rely on any NGA-compiled code
|
sl@0
|
86 |
EXPORT_C const TSurfaceId* TWservCrEvent::SurfaceId() const
|
sl@0
|
87 |
{
|
sl@0
|
88 |
return reinterpret_cast<const TSurfaceId*>(iData);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
EXPORT_C TBool TWservCrEvent::WasVisible() const
|
sl@0
|
92 |
{
|
sl@0
|
93 |
return iInfo;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
EXPORT_C MWsWindow * TWservCrEvent::Window() const
|
sl@0
|
97 |
{
|
sl@0
|
98 |
return iWindow;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
// CWsGraphicDrawer::CPimpl \\\\\\\\\\\\\\\\\\\\\\\\
|
sl@0
|
102 |
|
sl@0
|
103 |
NONSHARABLE_STRUCT(CWsGraphicDrawer::CPimpl): public CBase
|
sl@0
|
104 |
/** @internalComponent
|
sl@0
|
105 |
@released
|
sl@0
|
106 |
*/ {
|
sl@0
|
107 |
enum
|
sl@0
|
108 |
{
|
sl@0
|
109 |
EActive = 0x01,
|
sl@0
|
110 |
EIsPublic = 0x02,
|
sl@0
|
111 |
EInContains = 0x04,
|
sl@0
|
112 |
EInDraw = 0x08,
|
sl@0
|
113 |
EDrawn = 0x10,
|
sl@0
|
114 |
};
|
sl@0
|
115 |
CPimpl(CWsGraphicDrawer& aGraphic,MWsGraphicDrawerEnvironment& aEnv,MWsClient& aOwner);
|
sl@0
|
116 |
~CPimpl();
|
sl@0
|
117 |
CWsGraphicDrawer& iGraphic;
|
sl@0
|
118 |
MWsGraphicDrawerEnvironment& iEnv;
|
sl@0
|
119 |
MWsClient& iOwner;
|
sl@0
|
120 |
TGraphicDrawerId iId;
|
sl@0
|
121 |
RArray<TUint> iSharedWith;
|
sl@0
|
122 |
TUint iFlags;
|
sl@0
|
123 |
MWsEventHandler* iEventHandler;
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
CWsGraphicDrawer::CPimpl::CPimpl(CWsGraphicDrawer& aGraphic,MWsGraphicDrawerEnvironment& aEnv,MWsClient& aOwner):
|
sl@0
|
127 |
iGraphic(aGraphic), iEnv(aEnv), iOwner(aOwner)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
}
|
sl@0
|
130 |
|
sl@0
|
131 |
CWsGraphicDrawer::CPimpl::~CPimpl()
|
sl@0
|
132 |
{
|
sl@0
|
133 |
iSharedWith.Close();
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
// CWsGraphicDrawer \\\\\\\\\\\\\\\\\\\\\\\\
|
sl@0
|
137 |
|
sl@0
|
138 |
EXPORT_C CWsGraphicDrawer::CWsGraphicDrawer()
|
sl@0
|
139 |
/** Constructor
|
sl@0
|
140 |
*/ {
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
EXPORT_C CWsGraphicDrawer::~CWsGraphicDrawer()
|
sl@0
|
144 |
/** Destructor
|
sl@0
|
145 |
*/ {
|
sl@0
|
146 |
delete iPimpl;
|
sl@0
|
147 |
|
sl@0
|
148 |
if(KNullUid != iDtor_ID_Key)
|
sl@0
|
149 |
{
|
sl@0
|
150 |
REComSession::DestroyedImplementation(iDtor_ID_Key);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
EXPORT_C void CWsGraphicDrawer::BaseConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner)
|
sl@0
|
155 |
/** Completes construction of the baseclass. Derived drawers should call this from their ConstructL() implementations
|
sl@0
|
156 |
@param aEnv the environment this drawer exists in
|
sl@0
|
157 |
@param aId the ID of this drawer
|
sl@0
|
158 |
@param aOwner the client session that owns this drawer
|
sl@0
|
159 |
@param aData arbitrary data for constructing this instance, sent from the client.
|
sl@0
|
160 |
*/ {
|
sl@0
|
161 |
iPimpl = new(ELeave) CPimpl(*this,aEnv,aOwner);
|
sl@0
|
162 |
iPimpl->iId = aId;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
EXPORT_C MWsGraphicDrawerEnvironment& CWsGraphicDrawer::Env()
|
sl@0
|
166 |
/** The environment this drawer exists in
|
sl@0
|
167 |
@return the environment
|
sl@0
|
168 |
*/ {
|
sl@0
|
169 |
return iPimpl->iEnv;
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
EXPORT_C const MWsGraphicDrawerEnvironment& CWsGraphicDrawer::Env() const
|
sl@0
|
173 |
/** The environment this drawer exists in
|
sl@0
|
174 |
@return the environment
|
sl@0
|
175 |
*/ {
|
sl@0
|
176 |
return iPimpl->iEnv;
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
EXPORT_C const TGraphicDrawerId& CWsGraphicDrawer::Id() const
|
sl@0
|
180 |
/** The ID of this graphic
|
sl@0
|
181 |
@return the ID
|
sl@0
|
182 |
*/ {
|
sl@0
|
183 |
return iPimpl->iId;
|
sl@0
|
184 |
}
|
sl@0
|
185 |
|
sl@0
|
186 |
EXPORT_C const MWsClient& CWsGraphicDrawer::Owner() const
|
sl@0
|
187 |
/** Only the owner can delete, replace or send messages to this graphic.
|
sl@0
|
188 |
The owner and any session sharing the owner's Secure ID can always
|
sl@0
|
189 |
draw the graphic.
|
sl@0
|
190 |
@return the Client session which created and owns this graphic.
|
sl@0
|
191 |
*/ {
|
sl@0
|
192 |
return iPimpl->iOwner;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
EXPORT_C TBool CWsGraphicDrawer::IsSharedWith(TSecureId aClientId) const
|
sl@0
|
196 |
/** tests whether the client is allowed to draw this graphic
|
sl@0
|
197 |
Conditions include whether the client is the owner of this graphic,
|
sl@0
|
198 |
whether the graphic is shared globally, or whether this graphic
|
sl@0
|
199 |
has been explicitly shared with the client
|
sl@0
|
200 |
@param aClientId the Secure ID of the client session's process
|
sl@0
|
201 |
@return ETrue if the client can draw this graphic
|
sl@0
|
202 |
*/ {
|
sl@0
|
203 |
return ((iPimpl->iFlags & CPimpl::EIsPublic) ||
|
sl@0
|
204 |
(0 <= iPimpl->iSharedWith.FindInOrder(aClientId.iId)) ||
|
sl@0
|
205 |
(aClientId == iPimpl->iOwner.SecureId()));
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
EXPORT_C TInt CWsGraphicDrawer::Share(TSecureId aClientId)
|
sl@0
|
209 |
/** Explicitly shares this graphic with client sessions with the specified Secure ID
|
sl@0
|
210 |
@param aClientId the Secure ID of the client sessions to share with
|
sl@0
|
211 |
@return KErrNone if the graphic was shared, else one of the system-wide error codes
|
sl@0
|
212 |
*/ {
|
sl@0
|
213 |
return iPimpl->iSharedWith.InsertInOrder(aClientId.iId);
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
EXPORT_C TInt CWsGraphicDrawer::ShareGlobally()
|
sl@0
|
217 |
/** Share this drawer with all client sessions
|
sl@0
|
218 |
Sharing globally trumps explicit shares
|
sl@0
|
219 |
@return KErrNone if the graphic is globally shared, else one of the system-wide error codes
|
sl@0
|
220 |
*/ {
|
sl@0
|
221 |
iPimpl->iFlags |= CPimpl::EIsPublic;
|
sl@0
|
222 |
return KErrNone;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
EXPORT_C TInt CWsGraphicDrawer::UnShareGlobally()
|
sl@0
|
226 |
/** Stop this drawer from being shared with all client sessions
|
sl@0
|
227 |
A drawer that isn't shared explicitly is only available to clients it
|
sl@0
|
228 |
has been explicitly shared with using Share()
|
sl@0
|
229 |
@return KErrNone if the graphic is not globally shared, else one of the system-wide error codes
|
sl@0
|
230 |
*/ {
|
sl@0
|
231 |
iPimpl->iFlags &= ~CPimpl::EIsPublic;
|
sl@0
|
232 |
return KErrNone;
|
sl@0
|
233 |
}
|
sl@0
|
234 |
|
sl@0
|
235 |
EXPORT_C TInt CWsGraphicDrawer::UnShare(TSecureId aClientId)
|
sl@0
|
236 |
/** Stop this drawer from being shared with all client sessions with the specific Secure ID
|
sl@0
|
237 |
ShareGlobally() trumps explicit sharing
|
sl@0
|
238 |
@param aClientId the Secure ID of the client sessions to not share with
|
sl@0
|
239 |
@return KErrNone if the graphic is no longer shared, KErrNotFound if the graphic was not shared anyway, else one of the system-wide error codes
|
sl@0
|
240 |
*/ {
|
sl@0
|
241 |
const TInt idx = iPimpl->iSharedWith.FindInOrder(aClientId.iId);
|
sl@0
|
242 |
if(0 <= idx)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
iPimpl->iSharedWith.Remove(idx);
|
sl@0
|
245 |
return KErrNone;
|
sl@0
|
246 |
}
|
sl@0
|
247 |
else
|
sl@0
|
248 |
{
|
sl@0
|
249 |
return idx;
|
sl@0
|
250 |
}
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
EXPORT_C void CWsGraphicDrawer::Draw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const
|
sl@0
|
254 |
{
|
sl@0
|
255 |
// avoid infinite recursion
|
sl@0
|
256 |
if(iPimpl->iFlags & CPimpl::EInDraw)
|
sl@0
|
257 |
{
|
sl@0
|
258 |
return;
|
sl@0
|
259 |
}
|
sl@0
|
260 |
// draw
|
sl@0
|
261 |
iPimpl->iFlags |= (CPimpl::EInDraw | CPimpl::EDrawn);
|
sl@0
|
262 |
DoDraw(aGc,aRect,aData); // implemented by derived classes
|
sl@0
|
263 |
iPimpl->iFlags &= ~CPimpl::EInDraw;
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
|
sl@0
|
267 |
EXPORT_C TInt CWsGraphicDrawer::SendMessage(const TDesC8& aData)
|
sl@0
|
268 |
/** Sends this message to the client-side peer
|
sl@0
|
269 |
@param aData the data to send
|
sl@0
|
270 |
@return KErrNone if successful, else one of the System-wide error codes
|
sl@0
|
271 |
*/ {
|
sl@0
|
272 |
return iPimpl->iOwner.SendMessage(this,aData);
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
EXPORT_C TInt CWsGraphicDrawer::SendMessage(CWsMessageData& aData)
|
sl@0
|
276 |
/** Sends this message to the client-side peer
|
sl@0
|
277 |
@param aData the data to send
|
sl@0
|
278 |
@return KErrNone if successful, else one of the System-wide error codes
|
sl@0
|
279 |
*/ {
|
sl@0
|
280 |
return iPimpl->iOwner.SendMessage(this,aData);
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
EXPORT_C void CWsGraphicDrawer::Invalidate()
|
sl@0
|
284 |
/** Schedules all potentially affected parts of the screen to repaint
|
sl@0
|
285 |
Called by derived classes when their presentation changes (e.g. they
|
sl@0
|
286 |
receive new artwork via a SendMessage())
|
sl@0
|
287 |
Note: this is not a suitable method for animating a graphic. For animation,
|
sl@0
|
288 |
use MWsGc::Invalidate when the graphic is being drawn to schedule the next
|
sl@0
|
289 |
animation frame instead.
|
sl@0
|
290 |
*/ {
|
sl@0
|
291 |
if(iPimpl && (iPimpl->iFlags & CPimpl::EDrawn))
|
sl@0
|
292 |
{
|
sl@0
|
293 |
iPimpl->iEnv.Invalidate(iPimpl->iId);
|
sl@0
|
294 |
iPimpl->iFlags &= ~CPimpl::EDrawn;
|
sl@0
|
295 |
}
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
EXPORT_C TBool CWsGraphicDrawer::Contains(const TArray<TGraphicDrawerId>& aIds) const
|
sl@0
|
299 |
/** Tests whether this drawer is, or itself draws, any of the graphic drawers identified by the IDs.
|
sl@0
|
300 |
Calls HasAsChild() on itself to determine if this graphic does itself contain
|
sl@0
|
301 |
any of the IDs. Derived classes which themselves draw other graphic drawers should
|
sl@0
|
302 |
override HasAsChild().
|
sl@0
|
303 |
@param aIds the (sorted in TGraphicDrawerId::Compare order) list of IDs
|
sl@0
|
304 |
@return ETrue if this graphic is, or contains, any of the graphic drawers listed
|
sl@0
|
305 |
*/ {
|
sl@0
|
306 |
// avoid infinite recursion
|
sl@0
|
307 |
if(iPimpl->iFlags & CPimpl::EInContains)
|
sl@0
|
308 |
{
|
sl@0
|
309 |
return EFalse;
|
sl@0
|
310 |
}
|
sl@0
|
311 |
// is it us?
|
sl@0
|
312 |
const TInt count = aIds.Count();
|
sl@0
|
313 |
for(TInt i=0; i<count; i++)
|
sl@0
|
314 |
{
|
sl@0
|
315 |
if(0 == aIds[i].Compare(iPimpl->iId))
|
sl@0
|
316 |
{
|
sl@0
|
317 |
return ETrue;
|
sl@0
|
318 |
}
|
sl@0
|
319 |
}
|
sl@0
|
320 |
// is it a child of us?
|
sl@0
|
321 |
iPimpl->iFlags |= CPimpl::EInContains;
|
sl@0
|
322 |
const TBool ret = HasAsChild(aIds);
|
sl@0
|
323 |
iPimpl->iFlags &= ~CPimpl::EInContains;
|
sl@0
|
324 |
return ret;
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
EXPORT_C TBool CWsGraphicDrawer::HasAsChild(const TArray<TGraphicDrawerId>& /*aIds*/) const
|
sl@0
|
328 |
/** Called by Contains() to determine if the graphic identified by Id is contained within the
|
sl@0
|
329 |
other graphic drawers that this graphic drawer itself draws.
|
sl@0
|
330 |
Derived classes which draw other drawers should override this method and call
|
sl@0
|
331 |
Contains() on all graphics which they draw.
|
sl@0
|
332 |
@param aIds a (sorted in TGraphicDrawerId::Compare order) list of the drawer IDs to see if this drawer draws
|
sl@0
|
333 |
@return ETrue if this drawer draws any of those graphics
|
sl@0
|
334 |
*/ {
|
sl@0
|
335 |
return EFalse;
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
EXPORT_C void CWsGraphicDrawer::HandleEvent(const TWservCrEvent& aEvent)
|
sl@0
|
339 |
{
|
sl@0
|
340 |
if (iPimpl->iEventHandler)
|
sl@0
|
341 |
iPimpl->iEventHandler->DoHandleEvent(aEvent);
|
sl@0
|
342 |
}
|
sl@0
|
343 |
|
sl@0
|
344 |
EXPORT_C void CWsGraphicDrawer::SetEventHandler(MWsEventHandler* aHandler)
|
sl@0
|
345 |
{
|
sl@0
|
346 |
iPimpl->iEventHandler = aHandler;
|
sl@0
|
347 |
}
|
sl@0
|
348 |
|
sl@0
|
349 |
EXPORT_C TBool CWsGraphicDrawer::HasEventHandler() const
|
sl@0
|
350 |
{
|
sl@0
|
351 |
return iPimpl->iEventHandler!=NULL;
|
sl@0
|
352 |
}
|