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.
14 // Server-side base-classes for graphic drawer plugins
18 #ifndef __WSGRAPHICDRAWER_H__
19 #define __WSGRAPHICDRAWER_H__
24 #include <graphics/wsgraphicdrawerinterface.h>
29 NONSHARABLE_STRUCT(TGraphicDrawerId)
30 /** Represents a graphic drawer on the window-server side
31 A much-abridged version of TWsGraphicId, with trivial constructor
37 IMPORT_C TInt Compare(const TGraphicDrawerId& aOther) const;
38 IMPORT_C static TInt Compare(const TGraphicDrawerId& aFirst,const TGraphicDrawerId& aSecond);
41 /** Wserv event representation to plugin side
46 NONSHARABLE_STRUCT(TWservCrEvent)
49 /** Type of wserv events which plugin can listen to. It is a mask that can be combined
50 when subscribing to notification. */
53 EScreenSizeModeChanged = 0x00000001,
54 EWindowVisibilityChanged = 0x00000002,
55 EDsaDrawingBegin = 0x00000004,
56 EDsaDrawingEnd = 0x00000008,
57 EScreenSizeModeAboutToChange= 0x00000010,
58 EScreenUpdated = 0x00000020,
59 EScreenDrawing = 0x00000040,
60 EWindowGroupChanged = 0x00000080,
61 EScreenOrientationChanged = 0x00000100,
62 EDeviceOrientationChanged = 0x00000200,
63 EWindowClosing = 0x00000400,
64 ESurfaceUnreferenced = 0x00000800,
67 IMPORT_C TWservCrEvent(TUint32 aType);
68 IMPORT_C TWservCrEvent(TUint32 aType, TUint32 aInfo);
69 IMPORT_C TWservCrEvent(TUint32 aType, TUint32 aInfo, TAny* aData);
70 IMPORT_C TWservCrEvent(TUint32 aType, TUint32 aInfo, TAny* aData, MWsWindow* aWindow);
72 /** Returns wserv event type */
73 IMPORT_C TUint32 Type() const;
74 /** Returns current wserv screen size mode as the result of event EScreenSizeModeChanged.
75 Screen mode is 0,1,2,...
77 IMPORT_C TInt SizeMode() const;
78 /** Returns visibile region as the result of event EWindowVisibilityChanged, this region represents
79 full or some part of window which is changing visibility. NULL if window is becoming not visible
82 IMPORT_C const RRegion* VisibleRegion() const;
83 /** Returns screen number where a DSA, screen updated or window group changed event occurs
85 IMPORT_C TInt ScreenNumber() const;
86 /** Returns the drawing region which is referred to by an EScreenDrawing
88 IMPORT_C const TRegion* DrawingRegion() const;
89 /** Returns the new window group identifier where a window group changed event occurs
91 IMPORT_C TInt WindowGroupIdentifier() const;
92 /** Returns the new window server display oriention
94 IMPORT_C CFbsBitGc::TGraphicsOrientation Orientation() const;
95 /** Returns whether or not a window was already visible before a visibility event occurred
97 IMPORT_C TBool WasVisible() const;
98 /** Returns the window this event is for. This may be null.
101 IMPORT_C MWsWindow* Window() const;
102 /** Returns the released surface ID
104 IMPORT_C const TSurfaceId* SurfaceId() const;
117 /** Event notification callback. Need to be implemented to allow CWsGraphicDrawer to listen to
123 class MWsEventHandler
126 /** Plugin event handler, will be called once for each event.
128 virtual void DoHandleEvent(const TWservCrEvent& aEvent) = 0;
132 Implementing this interface will give a callback notification wheater a
133 graphic message which was sent has either failed or succeded.
137 class MWsGraphicMessageCallback : public MWsObjectProvider
140 DECLARE_WS_TYPE_ID(KWsGraphicMessageCallbackInterfaceId)
144 Called with unique ID of the message, aError will be set to KErrNone if message delivery is
145 successful, otherwise one of the system-wide error code.
147 virtual void HandleMessageDelivery(TInt aMessageId, TInt aError) = 0;
151 Implementing this interface will give you the possibility to send synchron messages with a returnvalue to the client.
155 class MWsGraphicHandleSynchronMessage: public MWsObjectProvider
158 DECLARE_WS_TYPE_ID(KWsGraphicHandleSynchronMessageId)
162 Synchron handlemessage method.
164 virtual TInt HandleSynchronMessage(const TDesC8& aData) = 0;
168 class CWsGraphicDrawer: public CBase, public MWsObjectProvider
169 /** A window-server-side peer to a CWsGraphic
174 /** This function should be overriden by all derived classes. The first call the implementation of this function
175 should make is to BaseConstructL().
176 @param aEnv the environment this drawer exists in
177 @param aId the ID of this drawer
178 @param aOwner the client session that owns this drawer
179 @param aData arbitrary data for constructing this instance, sent from the client.
181 virtual void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData) = 0;
182 IMPORT_C ~CWsGraphicDrawer();
183 IMPORT_C const TGraphicDrawerId& Id() const;
184 IMPORT_C const MWsClient& Owner() const;
185 IMPORT_C TBool IsSharedWith(TSecureId aClientId) const;
186 IMPORT_C TInt ShareGlobally();
187 IMPORT_C TInt UnShareGlobally();
188 IMPORT_C TInt Share(TSecureId aClientId);
189 IMPORT_C TInt UnShare(TSecureId aClientId);
190 IMPORT_C void Draw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
191 IMPORT_C TBool Contains(const TArray<TGraphicDrawerId>& aIds) const;
192 virtual void HandleMessage(const TDesC8& aData) = 0;
193 IMPORT_C void HandleEvent(const TWservCrEvent& aEvent);
194 IMPORT_C void SetEventHandler(MWsEventHandler* aHandler);
195 IMPORT_C TBool HasEventHandler() const;
197 IMPORT_C CWsGraphicDrawer();
198 IMPORT_C void BaseConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner);
199 IMPORT_C MWsGraphicDrawerEnvironment& Env();
200 IMPORT_C const MWsGraphicDrawerEnvironment& Env() const;
201 IMPORT_C TInt SendMessage(const TDesC8& aData);
202 IMPORT_C TInt SendMessage(CWsMessageData& aData);
203 IMPORT_C void Invalidate();
205 IMPORT_C virtual TBool HasAsChild(const TArray<TGraphicDrawerId>& aIds) const;
206 virtual void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const = 0;
211 TInt iWsGraphicDrawerSpare[3];
213 friend class WsGraphicDrawer;
218 #endif //#ifndef __WSGRAPHICDRAWER_H__