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 |
// Server-side base-classes for graphic drawer plugins
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __WSGRAPHICDRAWER_H__
|
sl@0
|
19 |
#define __WSGRAPHICDRAWER_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32base.h>
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <graphics/wsgraphicdrawerinterface.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
class CFbsBitGc;
|
sl@0
|
27 |
class TSurfaceId;
|
sl@0
|
28 |
|
sl@0
|
29 |
NONSHARABLE_STRUCT(TGraphicDrawerId)
|
sl@0
|
30 |
/** Represents a graphic drawer on the window-server side
|
sl@0
|
31 |
A much-abridged version of TWsGraphicId, with trivial constructor
|
sl@0
|
32 |
@publishedPartner
|
sl@0
|
33 |
@released
|
sl@0
|
34 |
*/ {
|
sl@0
|
35 |
TInt iId;
|
sl@0
|
36 |
TBool iIsUid;
|
sl@0
|
37 |
IMPORT_C TInt Compare(const TGraphicDrawerId& aOther) const;
|
sl@0
|
38 |
IMPORT_C static TInt Compare(const TGraphicDrawerId& aFirst,const TGraphicDrawerId& aSecond);
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
/** Wserv event representation to plugin side
|
sl@0
|
42 |
|
sl@0
|
43 |
@publishedPartner
|
sl@0
|
44 |
@released
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
NONSHARABLE_STRUCT(TWservCrEvent)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
public:
|
sl@0
|
49 |
/** Type of wserv events which plugin can listen to. It is a mask that can be combined
|
sl@0
|
50 |
when subscribing to notification. */
|
sl@0
|
51 |
enum
|
sl@0
|
52 |
{
|
sl@0
|
53 |
EScreenSizeModeChanged = 0x00000001,
|
sl@0
|
54 |
EWindowVisibilityChanged = 0x00000002,
|
sl@0
|
55 |
EDsaDrawingBegin = 0x00000004,
|
sl@0
|
56 |
EDsaDrawingEnd = 0x00000008,
|
sl@0
|
57 |
EScreenSizeModeAboutToChange= 0x00000010,
|
sl@0
|
58 |
EScreenUpdated = 0x00000020,
|
sl@0
|
59 |
EScreenDrawing = 0x00000040,
|
sl@0
|
60 |
EWindowGroupChanged = 0x00000080,
|
sl@0
|
61 |
EScreenOrientationChanged = 0x00000100,
|
sl@0
|
62 |
EDeviceOrientationChanged = 0x00000200,
|
sl@0
|
63 |
EWindowClosing = 0x00000400,
|
sl@0
|
64 |
ESurfaceUnreferenced = 0x00000800,
|
sl@0
|
65 |
};
|
sl@0
|
66 |
public:
|
sl@0
|
67 |
IMPORT_C TWservCrEvent(TUint32 aType);
|
sl@0
|
68 |
IMPORT_C TWservCrEvent(TUint32 aType, TUint32 aInfo);
|
sl@0
|
69 |
IMPORT_C TWservCrEvent(TUint32 aType, TUint32 aInfo, TAny* aData);
|
sl@0
|
70 |
IMPORT_C TWservCrEvent(TUint32 aType, TUint32 aInfo, TAny* aData, MWsWindow* aWindow);
|
sl@0
|
71 |
|
sl@0
|
72 |
/** Returns wserv event type */
|
sl@0
|
73 |
IMPORT_C TUint32 Type() const;
|
sl@0
|
74 |
/** Returns current wserv screen size mode as the result of event EScreenSizeModeChanged.
|
sl@0
|
75 |
Screen mode is 0,1,2,...
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
IMPORT_C TInt SizeMode() const;
|
sl@0
|
78 |
/** Returns visibile region as the result of event EWindowVisibilityChanged, this region represents
|
sl@0
|
79 |
full or some part of window which is changing visibility. NULL if window is becoming not visible
|
sl@0
|
80 |
completely.
|
sl@0
|
81 |
*/
|
sl@0
|
82 |
IMPORT_C const RRegion* VisibleRegion() const;
|
sl@0
|
83 |
/** Returns screen number where a DSA, screen updated or window group changed event occurs
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
IMPORT_C TInt ScreenNumber() const;
|
sl@0
|
86 |
/** Returns the drawing region which is referred to by an EScreenDrawing
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
IMPORT_C const TRegion* DrawingRegion() const;
|
sl@0
|
89 |
/** Returns the new window group identifier where a window group changed event occurs
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
IMPORT_C TInt WindowGroupIdentifier() const;
|
sl@0
|
92 |
/** Returns the new window server display oriention
|
sl@0
|
93 |
*/
|
sl@0
|
94 |
IMPORT_C CFbsBitGc::TGraphicsOrientation Orientation() const;
|
sl@0
|
95 |
/** Returns whether or not a window was already visible before a visibility event occurred
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
IMPORT_C TBool WasVisible() const;
|
sl@0
|
98 |
/** Returns the window this event is for. This may be null.
|
sl@0
|
99 |
@prototype
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
IMPORT_C MWsWindow* Window() const;
|
sl@0
|
102 |
/** Returns the released surface ID
|
sl@0
|
103 |
*/
|
sl@0
|
104 |
IMPORT_C const TSurfaceId* SurfaceId() const;
|
sl@0
|
105 |
|
sl@0
|
106 |
private:
|
sl@0
|
107 |
TWservCrEvent() {}
|
sl@0
|
108 |
|
sl@0
|
109 |
private:
|
sl@0
|
110 |
TUint32 iType;
|
sl@0
|
111 |
TUint32 iInfo;
|
sl@0
|
112 |
TAny* iData;
|
sl@0
|
113 |
MWsWindow* iWindow;
|
sl@0
|
114 |
TInt iReserved[7];
|
sl@0
|
115 |
};
|
sl@0
|
116 |
|
sl@0
|
117 |
/** Event notification callback. Need to be implemented to allow CWsGraphicDrawer to listen to
|
sl@0
|
118 |
wserv events.
|
sl@0
|
119 |
|
sl@0
|
120 |
@publishedPartner
|
sl@0
|
121 |
@released
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
class MWsEventHandler
|
sl@0
|
124 |
{
|
sl@0
|
125 |
public:
|
sl@0
|
126 |
/** Plugin event handler, will be called once for each event.
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
virtual void DoHandleEvent(const TWservCrEvent& aEvent) = 0;
|
sl@0
|
129 |
};
|
sl@0
|
130 |
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
Implementing this interface will give a callback notification wheater a
|
sl@0
|
133 |
graphic message which was sent has either failed or succeded.
|
sl@0
|
134 |
@publishedPartner
|
sl@0
|
135 |
@prototype
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
class MWsGraphicMessageCallback : public MWsObjectProvider
|
sl@0
|
138 |
{
|
sl@0
|
139 |
public:
|
sl@0
|
140 |
DECLARE_WS_TYPE_ID(KWsGraphicMessageCallbackInterfaceId)
|
sl@0
|
141 |
|
sl@0
|
142 |
public:
|
sl@0
|
143 |
/**
|
sl@0
|
144 |
Called with unique ID of the message, aError will be set to KErrNone if message delivery is
|
sl@0
|
145 |
successful, otherwise one of the system-wide error code.
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
virtual void HandleMessageDelivery(TInt aMessageId, TInt aError) = 0;
|
sl@0
|
148 |
};
|
sl@0
|
149 |
|
sl@0
|
150 |
/**
|
sl@0
|
151 |
Implementing this interface will give you the possibility to send synchron messages with a returnvalue to the client.
|
sl@0
|
152 |
@publishedPartner
|
sl@0
|
153 |
@prototype
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
class MWsGraphicHandleSynchronMessage: public MWsObjectProvider
|
sl@0
|
156 |
{
|
sl@0
|
157 |
public:
|
sl@0
|
158 |
DECLARE_WS_TYPE_ID(KWsGraphicHandleSynchronMessageId)
|
sl@0
|
159 |
|
sl@0
|
160 |
public:
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
Synchron handlemessage method.
|
sl@0
|
163 |
*/
|
sl@0
|
164 |
virtual TInt HandleSynchronMessage(const TDesC8& aData) = 0;
|
sl@0
|
165 |
};
|
sl@0
|
166 |
|
sl@0
|
167 |
|
sl@0
|
168 |
class CWsGraphicDrawer: public CBase, public MWsObjectProvider
|
sl@0
|
169 |
/** A window-server-side peer to a CWsGraphic
|
sl@0
|
170 |
@publishedPartner
|
sl@0
|
171 |
@released
|
sl@0
|
172 |
*/ {
|
sl@0
|
173 |
public:
|
sl@0
|
174 |
/** This function should be overriden by all derived classes. The first call the implementation of this function
|
sl@0
|
175 |
should make is to BaseConstructL().
|
sl@0
|
176 |
@param aEnv the environment this drawer exists in
|
sl@0
|
177 |
@param aId the ID of this drawer
|
sl@0
|
178 |
@param aOwner the client session that owns this drawer
|
sl@0
|
179 |
@param aData arbitrary data for constructing this instance, sent from the client.
|
sl@0
|
180 |
*/
|
sl@0
|
181 |
virtual void ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData) = 0;
|
sl@0
|
182 |
IMPORT_C ~CWsGraphicDrawer();
|
sl@0
|
183 |
IMPORT_C const TGraphicDrawerId& Id() const;
|
sl@0
|
184 |
IMPORT_C const MWsClient& Owner() const;
|
sl@0
|
185 |
IMPORT_C TBool IsSharedWith(TSecureId aClientId) const;
|
sl@0
|
186 |
IMPORT_C TInt ShareGlobally();
|
sl@0
|
187 |
IMPORT_C TInt UnShareGlobally();
|
sl@0
|
188 |
IMPORT_C TInt Share(TSecureId aClientId);
|
sl@0
|
189 |
IMPORT_C TInt UnShare(TSecureId aClientId);
|
sl@0
|
190 |
IMPORT_C void Draw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const;
|
sl@0
|
191 |
IMPORT_C TBool Contains(const TArray<TGraphicDrawerId>& aIds) const;
|
sl@0
|
192 |
virtual void HandleMessage(const TDesC8& aData) = 0;
|
sl@0
|
193 |
IMPORT_C void HandleEvent(const TWservCrEvent& aEvent);
|
sl@0
|
194 |
IMPORT_C void SetEventHandler(MWsEventHandler* aHandler);
|
sl@0
|
195 |
IMPORT_C TBool HasEventHandler() const;
|
sl@0
|
196 |
protected:
|
sl@0
|
197 |
IMPORT_C CWsGraphicDrawer();
|
sl@0
|
198 |
IMPORT_C void BaseConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner);
|
sl@0
|
199 |
IMPORT_C MWsGraphicDrawerEnvironment& Env();
|
sl@0
|
200 |
IMPORT_C const MWsGraphicDrawerEnvironment& Env() const;
|
sl@0
|
201 |
IMPORT_C TInt SendMessage(const TDesC8& aData);
|
sl@0
|
202 |
IMPORT_C TInt SendMessage(CWsMessageData& aData);
|
sl@0
|
203 |
IMPORT_C void Invalidate();
|
sl@0
|
204 |
private:
|
sl@0
|
205 |
IMPORT_C virtual TBool HasAsChild(const TArray<TGraphicDrawerId>& aIds) const;
|
sl@0
|
206 |
virtual void DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& aData) const = 0;
|
sl@0
|
207 |
private:
|
sl@0
|
208 |
class CPimpl;
|
sl@0
|
209 |
friend class CPimpl;
|
sl@0
|
210 |
CPimpl* iPimpl;
|
sl@0
|
211 |
TInt iWsGraphicDrawerSpare[3];
|
sl@0
|
212 |
private:
|
sl@0
|
213 |
friend class WsGraphicDrawer;
|
sl@0
|
214 |
TUid iDtor_ID_Key;
|
sl@0
|
215 |
};
|
sl@0
|
216 |
|
sl@0
|
217 |
|
sl@0
|
218 |
#endif //#ifndef __WSGRAPHICDRAWER_H__
|