Update contrib.
1 // Copyright (c) 2005-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.
15 // The client-side representation of a WsGraphic artwork
19 #include "../SERVER/w32cmd.h"
20 #include "graphics/WSGRAPHICDRAWER.H"
21 #include <graphics/WSGRAPHICDRAWERINTERFACE.H>
25 GLDEF_C void Panic(TWsGraphicDrawerPanic aPanic)
27 _LIT(KCategory,"WsGraphicDrawer");
28 User::Panic(KCategory,aPanic);
32 // TWservCrEvent implementation
34 EXPORT_C TWservCrEvent::TWservCrEvent(TUint32 aType): iType(aType), iInfo(0), iData(NULL), iWindow(NULL)
38 EXPORT_C TWservCrEvent::TWservCrEvent(TUint32 aType, TUint32 aInfo): iType(aType), iInfo(aInfo), iData(NULL), iWindow(NULL)
42 EXPORT_C TWservCrEvent::TWservCrEvent(TUint32 aType, TUint32 aInfo, TAny* aData): iType(aType), iInfo(aInfo), iData(aData), iWindow(NULL)
46 EXPORT_C TWservCrEvent::TWservCrEvent(TUint32 aType, TUint32 aInfo, TAny* aData, MWsWindow* aWindow): iType(aType), iInfo(aInfo), iData(aData), iWindow(aWindow)
50 EXPORT_C TUint32 TWservCrEvent::Type() const
55 EXPORT_C TInt TWservCrEvent::SizeMode() const
60 EXPORT_C const RRegion* TWservCrEvent::VisibleRegion() const
62 return reinterpret_cast<RRegion*>(iData);
65 EXPORT_C TInt TWservCrEvent::ScreenNumber() const
70 EXPORT_C CFbsBitGc::TGraphicsOrientation TWservCrEvent::Orientation() const
72 return *reinterpret_cast<CFbsBitGc::TGraphicsOrientation*>(iData);
75 EXPORT_C const TRegion* TWservCrEvent::DrawingRegion() const
77 return reinterpret_cast<TRegion*>(iData);
80 EXPORT_C TInt TWservCrEvent::WindowGroupIdentifier() const
82 return reinterpret_cast<TInt>(iData);
85 EXPORT_C const TSurfaceId* TWservCrEvent::SurfaceId() const
87 return reinterpret_cast<const TSurfaceId*>(iData);
90 EXPORT_C TBool TWservCrEvent::WasVisible() const
95 EXPORT_C MWsWindow * TWservCrEvent::Window() const
100 // CWsGraphicDrawer::CPimpl \\\\\\\\\\\\\\\\\\\\\\\\
102 NONSHARABLE_STRUCT(CWsGraphicDrawer::CPimpl): public CBase
103 /** @internalComponent
114 CPimpl(CWsGraphicDrawer& aGraphic,MWsGraphicDrawerEnvironment& aEnv,MWsClient& aOwner);
116 CWsGraphicDrawer& iGraphic;
117 MWsGraphicDrawerEnvironment& iEnv;
119 TGraphicDrawerId iId;
120 RArray<TUint> iSharedWith;
122 MWsEventHandler* iEventHandler;
125 CWsGraphicDrawer::CPimpl::CPimpl(CWsGraphicDrawer& aGraphic,MWsGraphicDrawerEnvironment& aEnv,MWsClient& aOwner):
126 iGraphic(aGraphic), iEnv(aEnv), iOwner(aOwner)
130 CWsGraphicDrawer::CPimpl::~CPimpl()
135 // CWsGraphicDrawer \\\\\\\\\\\\\\\\\\\\\\\\
137 EXPORT_C CWsGraphicDrawer::CWsGraphicDrawer()
142 EXPORT_C CWsGraphicDrawer::~CWsGraphicDrawer()
145 // Invalidate(); // the client will now ask for the redraw
148 if(KNullUid != iDtor_ID_Key)
150 REComSession::DestroyedImplementation(iDtor_ID_Key);
154 EXPORT_C void CWsGraphicDrawer::BaseConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner)
155 /** Completes construction of the baseclass. Derived drawers should call this from their ConstructL() implementations
156 @param aEnv the environment this drawer exists in
157 @param aId the ID of this drawer
158 @param aOwner the client session that owns this drawer
159 @param aData arbitrary data for constructing this instance, sent from the client.
161 iPimpl = new(ELeave) CPimpl(*this,aEnv,aOwner);
165 EXPORT_C MWsGraphicDrawerEnvironment& CWsGraphicDrawer::Env()
166 /** The environment this drawer exists in
167 @return the environment
172 EXPORT_C const MWsGraphicDrawerEnvironment& CWsGraphicDrawer::Env() const
173 /** The environment this drawer exists in
174 @return the environment
179 EXPORT_C const TGraphicDrawerId& CWsGraphicDrawer::Id() const
180 /** The ID of this graphic
186 EXPORT_C const MWsClient& CWsGraphicDrawer::Owner() const
187 /** Only the owner can delete, replace or send messages to this graphic.
188 The owner and any session sharing the owner's Secure ID can always
190 @return the Client session which created and owns this graphic.
192 return iPimpl->iOwner;
195 EXPORT_C TBool CWsGraphicDrawer::IsSharedWith(TSecureId aClientId) const
196 /** tests whether the client is allowed to draw this graphic
197 Conditions include whether the client is the owner of this graphic,
198 whether the graphic is shared globally, or whether this graphic
199 has been explicitly shared with the client
200 @param aClientId the Secure ID of the client session's process
201 @return ETrue if the client can draw this graphic
203 return ((iPimpl->iFlags & CPimpl::EIsPublic) ||
204 (0 <= iPimpl->iSharedWith.FindInOrder(aClientId.iId)) ||
205 (aClientId == iPimpl->iOwner.SecureId()));
208 EXPORT_C TInt CWsGraphicDrawer::Share(TSecureId aClientId)
209 /** Explicitly shares this graphic with client sessions with the specified Secure ID
210 @param aClientId the Secure ID of the client sessions to share with
211 @return KErrNone if the graphic was shared, else one of the system-wide error codes
213 return iPimpl->iSharedWith.InsertInOrder(aClientId.iId);
216 EXPORT_C TInt CWsGraphicDrawer::ShareGlobally()
217 /** Share this drawer with all client sessions
218 Sharing globally trumps explicit shares
219 @return KErrNone if the graphic is globally shared, else one of the system-wide error codes
221 iPimpl->iFlags |= CPimpl::EIsPublic;
225 EXPORT_C TInt CWsGraphicDrawer::UnShareGlobally()
226 /** Stop this drawer from being shared with all client sessions
227 A drawer that isn't shared explicitly is only available to clients it
228 has been explicitly shared with using Share()
229 @return KErrNone if the graphic is not globally shared, else one of the system-wide error codes
231 iPimpl->iFlags &= ~CPimpl::EIsPublic;
235 EXPORT_C TInt CWsGraphicDrawer::UnShare(TSecureId aClientId)
236 /** Stop this drawer from being shared with all client sessions with the specific Secure ID
237 ShareGlobally() trumps explicit sharing
238 @param aClientId the Secure ID of the client sessions to not share with
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
241 const TInt idx = iPimpl->iSharedWith.FindInOrder(aClientId.iId);
244 iPimpl->iSharedWith.Remove(idx);
253 EXPORT_C void CWsGraphicDrawer::Draw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const
255 // avoid infinite recursion
256 if(iPimpl->iFlags & CPimpl::EInDraw)
261 iPimpl->iFlags |= (CPimpl::EInDraw | CPimpl::EDrawn);
262 DoDraw(aGc,aRect,aData); // implemented by derived classes
263 iPimpl->iFlags &= ~CPimpl::EInDraw;
267 EXPORT_C TInt CWsGraphicDrawer::SendMessage(const TDesC8& aData)
268 /** Sends this message to the client-side peer
269 @param aData the data to send
270 @return KErrNone if successful, else one of the System-wide error codes
272 return iPimpl->iOwner.SendMessage(this,aData);
275 EXPORT_C TInt CWsGraphicDrawer::SendMessage(CWsMessageData& aData)
276 /** Sends this message to the client-side peer
277 @param aData the data to send
278 @return KErrNone if successful, else one of the System-wide error codes
280 return iPimpl->iOwner.SendMessage(this,aData);
283 EXPORT_C void CWsGraphicDrawer::Invalidate()
284 /** Schedules all potentially affected parts of the screen to repaint
285 Called by derived classes when their presentation changes (e.g. they
286 receive new artwork via a SendMessage())
287 Note: this is not a suitable method for animating a graphic. For animation,
288 use MWsGc::Invalidate when the graphic is being drawn to schedule the next
289 animation frame instead.
291 if(iPimpl && (iPimpl->iFlags & CPimpl::EDrawn))
293 iPimpl->iEnv.Invalidate(iPimpl->iId);
294 iPimpl->iFlags &= ~CPimpl::EDrawn;
298 EXPORT_C TBool CWsGraphicDrawer::Contains(const TArray<TGraphicDrawerId>& aIds) const
299 /** Tests whether this drawer is, or itself draws, any of the graphic drawers identified by the IDs.
300 Calls HasAsChild() on itself to determine if this graphic does itself contain
301 any of the IDs. Derived classes which themselves draw other graphic drawers should
302 override HasAsChild().
303 @param aIds the (sorted in TGraphicDrawerId::Compare order) list of IDs
304 @return ETrue if this graphic is, or contains, any of the graphic drawers listed
306 // avoid infinite recursion
307 if(iPimpl->iFlags & CPimpl::EInContains)
312 const TInt count = aIds.Count();
313 for(TInt i=0; i<count; i++)
315 if(0 == aIds[i].Compare(iPimpl->iId))
320 // is it a child of us?
321 iPimpl->iFlags |= CPimpl::EInContains;
322 const TBool ret = HasAsChild(aIds);
323 iPimpl->iFlags &= ~CPimpl::EInContains;
327 EXPORT_C TBool CWsGraphicDrawer::HasAsChild(const TArray<TGraphicDrawerId>& /*aIds*/) const
328 /** Called by Contains() to determine if the graphic identified by Id is contained within the
329 other graphic drawers that this graphic drawer itself draws.
330 Derived classes which draw other drawers should override this method and call
331 Contains() on all graphics which they draw.
332 @param aIds a (sorted in TGraphicDrawerId::Compare order) list of the drawer IDs to see if this drawer draws
333 @return ETrue if this drawer draws any of those graphics
338 EXPORT_C void CWsGraphicDrawer::HandleEvent(const TWservCrEvent& aEvent)
340 if (iPimpl->iEventHandler)
341 iPimpl->iEventHandler->DoHandleEvent(aEvent);
344 EXPORT_C void CWsGraphicDrawer::SetEventHandler(MWsEventHandler* aHandler)
346 iPimpl->iEventHandler = aHandler;
349 EXPORT_C TBool CWsGraphicDrawer::HasEventHandler() const
351 return iPimpl->iEventHandler!=NULL;