sl@0
|
1 |
// Copyright (c) 1995-2010 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 |
// IPC implementation of client side code
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "../SERVER/w32cmd.h"
|
sl@0
|
19 |
#include "w32comm.h"
|
sl@0
|
20 |
#include <e32std.h>
|
sl@0
|
21 |
#include <w32std.h>
|
sl@0
|
22 |
#include "CLIENT.H"
|
sl@0
|
23 |
#include "graphics/windowserverconstants.h"
|
sl@0
|
24 |
#include "rtfxeffect.h"
|
sl@0
|
25 |
#include <wspublishandsubscribedata.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
const TInt KMaxWSERVMessagesSlot=-1;
|
sl@0
|
28 |
|
sl@0
|
29 |
class RWsCustomTextCursor : public RWsSpriteBase
|
sl@0
|
30 |
{
|
sl@0
|
31 |
public:
|
sl@0
|
32 |
RWsCustomTextCursor(RWsSession aWs, TInt aHandle) : RWsSpriteBase(aWs)
|
sl@0
|
33 |
{ iWsHandle = aHandle; }
|
sl@0
|
34 |
};
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
EXPORT_C RWsSession::RWsSession()
|
sl@0
|
38 |
/** Default C++ constructor.
|
sl@0
|
39 |
|
sl@0
|
40 |
Constructs an uninitialised window server session. Note that it does not establish
|
sl@0
|
41 |
a connection to the window server - this must be done explicitly by calling
|
sl@0
|
42 |
the session's Connect() function. Before Connect() is called, no corresponding
|
sl@0
|
43 |
session object exists in the server, and the RWsSession contains no meaningful
|
sl@0
|
44 |
handle. */
|
sl@0
|
45 |
{}
|
sl@0
|
46 |
|
sl@0
|
47 |
void RWsSession::connectL()
|
sl@0
|
48 |
{
|
sl@0
|
49 |
iBuffer=new(ELeave) RWsBuffer(this);
|
sl@0
|
50 |
iBuffer->SetBufferSizeL(RWsBuffer::EDefBufferSize);
|
sl@0
|
51 |
User::LeaveIfError(CreateSession(KWSERVServerName,Version(),KMaxWSERVMessagesSlot));
|
sl@0
|
52 |
iWsHandle=User::LeaveIfError(SendReceive(EWservMessInit,TIpcArgs()));
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
EXPORT_C TInt RWsSession::Connect()
|
sl@0
|
56 |
/** Connects the client session to the window server.
|
sl@0
|
57 |
|
sl@0
|
58 |
Connect() should be the first function called on an RWsSession object after
|
sl@0
|
59 |
it is created. The function establishes a connection to the window server,
|
sl@0
|
60 |
creating a corresponding session object in the server. Each session has one
|
sl@0
|
61 |
and only one connection to the server. Attempting to call Connect() when
|
sl@0
|
62 |
a connection has already been made will cause a panic.
|
sl@0
|
63 |
|
sl@0
|
64 |
After a connection has been successfully established, all events are delivered
|
sl@0
|
65 |
to the client application through the RWsSession object.
|
sl@0
|
66 |
|
sl@0
|
67 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
68 |
codes. */
|
sl@0
|
69 |
{
|
sl@0
|
70 |
TInt ret;
|
sl@0
|
71 |
|
sl@0
|
72 |
if (iBuffer!=NULL)
|
sl@0
|
73 |
Panic(EW32PanicReConnect);
|
sl@0
|
74 |
if ((ret=RFbsSession::Connect())==KErrNone)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
TRAP(ret,connectL());
|
sl@0
|
77 |
if (ret!=KErrNone)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
if (!iBuffer)
|
sl@0
|
80 |
RFbsSession::Disconnect();
|
sl@0
|
81 |
Close();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
else
|
sl@0
|
84 |
iBuffer->SetCallBack();
|
sl@0
|
85 |
}
|
sl@0
|
86 |
return(ret);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
EXPORT_C TInt RWsSession::Connect(RFs& aFileServer)
|
sl@0
|
90 |
/** Connects the client session to the window server using pre constructed file server
|
sl@0
|
91 |
session.
|
sl@0
|
92 |
|
sl@0
|
93 |
Connect() should be the first function called on an RWsSession object after
|
sl@0
|
94 |
it is created. The function establishes a connection to the window server,
|
sl@0
|
95 |
creating a corresponding session object in the server. Each session has one
|
sl@0
|
96 |
and only one connection to the server. Attempting to call Connect() when
|
sl@0
|
97 |
a connection has already been made will cause a panic.
|
sl@0
|
98 |
|
sl@0
|
99 |
After a connection has been successfully established, all events are delivered
|
sl@0
|
100 |
to the client application through the RWsSession object.
|
sl@0
|
101 |
|
sl@0
|
102 |
@param aFileServer A fully constructed file server session
|
sl@0
|
103 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
104 |
codes. */
|
sl@0
|
105 |
{
|
sl@0
|
106 |
TInt ret;
|
sl@0
|
107 |
|
sl@0
|
108 |
if (iBuffer!=NULL)
|
sl@0
|
109 |
Panic(EW32PanicReConnect);
|
sl@0
|
110 |
if ((ret=RFbsSession::Connect(aFileServer))==KErrNone)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
TRAP(ret,connectL());
|
sl@0
|
113 |
if (ret!=KErrNone)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
if (!iBuffer)
|
sl@0
|
116 |
RFbsSession::Disconnect();
|
sl@0
|
117 |
Close();
|
sl@0
|
118 |
}
|
sl@0
|
119 |
else
|
sl@0
|
120 |
iBuffer->SetCallBack();
|
sl@0
|
121 |
}
|
sl@0
|
122 |
return(ret);
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
EXPORT_C void RWsSession::Close()
|
sl@0
|
126 |
/** Closes the window server session.
|
sl@0
|
127 |
|
sl@0
|
128 |
This function cleans up all resources in the RWsSession and disconnects it
|
sl@0
|
129 |
from the server. Prior to disconnecting from the window server, the client-side
|
sl@0
|
130 |
window server buffer is destroyed without being flushed. This function should
|
sl@0
|
131 |
be called when the RWsSession is no longer needed - normally just before
|
sl@0
|
132 |
it is destroyed. */
|
sl@0
|
133 |
{
|
sl@0
|
134 |
if (iBuffer)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
__ASSERT_ALWAYS(iBuffer->iDirectAcessCount==0,Panic(EW32PanicDirectMisuse));
|
sl@0
|
137 |
iBuffer->CancelCallBack();
|
sl@0
|
138 |
iBuffer->Destroy();
|
sl@0
|
139 |
iBuffer=NULL;
|
sl@0
|
140 |
RFbsSession::Disconnect();
|
sl@0
|
141 |
}
|
sl@0
|
142 |
RSessionBase::Close();
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
// Private function(s)
|
sl@0
|
146 |
|
sl@0
|
147 |
TInt RWsSession::DoSyncMsgBuf(const TIpcArgs& aIpcArgs)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
return (SendReceive(EWservMessSyncMsgBuf,aIpcArgs));
|
sl@0
|
150 |
}
|
sl@0
|
151 |
|
sl@0
|
152 |
TInt RWsSession::DoFlush(const TIpcArgs& aIpcArgs)
|
sl@0
|
153 |
{
|
sl@0
|
154 |
return (SendReceive(EWservMessCommandBuffer,aIpcArgs));
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
EXPORT_C TVersion RWsSession::Version() const
|
sl@0
|
158 |
/** Gets the window server version.
|
sl@0
|
159 |
|
sl@0
|
160 |
@return Window server version containing major and minor version numbers,
|
sl@0
|
161 |
and build number. */
|
sl@0
|
162 |
{
|
sl@0
|
163 |
|
sl@0
|
164 |
TVersion v(KWservMajorVersionNumber,KWservMinorVersionNumber,KWservBuildVersionNumber);
|
sl@0
|
165 |
return(v);
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
TInt RWsSession::doSetHotKey(TInt aOpcode, TInt aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
TWsClCmdSetHotKey setHotKey;
|
sl@0
|
171 |
|
sl@0
|
172 |
setHotKey.type=aType;
|
sl@0
|
173 |
setHotKey.keycode=(TUint16)aKeycode;
|
sl@0
|
174 |
setHotKey.modifiers=aModifiers;
|
sl@0
|
175 |
setHotKey.modifierMask=aModifierMask;
|
sl@0
|
176 |
return(WriteReply(&setHotKey,sizeof(setHotKey),aOpcode));
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
EXPORT_C TInt RWsSession::SetHotKey(THotKey aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers)
|
sl@0
|
180 |
/** Sets the hot keys.
|
sl@0
|
181 |
|
sl@0
|
182 |
Hot keys allow standard functions to be performed by application-defined key
|
sl@0
|
183 |
combinations.
|
sl@0
|
184 |
|
sl@0
|
185 |
This function maps any key press (with optional modifiers) to one of the hot
|
sl@0
|
186 |
keys defined in THotKey. More than one key combination may be mapped to each
|
sl@0
|
187 |
hot key: a new mapping is added each time the function is called.
|
sl@0
|
188 |
|
sl@0
|
189 |
Modifier key states are defined in TEventModifier. The modifiers that you
|
sl@0
|
190 |
want to be in a particular state should be specified in aModifierMask and
|
sl@0
|
191 |
the ones of these you want to be set should be specified in aModifiers. For
|
sl@0
|
192 |
example, if you want to capture FN-A and you want the SHIFT modifier unset,
|
sl@0
|
193 |
but you don't care about the state of the other modifiers then set both the
|
sl@0
|
194 |
flags for SHIFT and FN in aModiferMask and only set FN in aModifiers.
|
sl@0
|
195 |
|
sl@0
|
196 |
Note: default hotkey settings exist, but this function can be used for customisation.
|
sl@0
|
197 |
Typically it might be be used by a shell application or other application
|
sl@0
|
198 |
that controls system-wide settings.
|
sl@0
|
199 |
|
sl@0
|
200 |
This function always causes a flush of the window server buffer.
|
sl@0
|
201 |
|
sl@0
|
202 |
@param aType The hot key to be mapped
|
sl@0
|
203 |
@param aKeyCode The keycode to be mapped to the hot key
|
sl@0
|
204 |
@param aModifierMask Modifier keys to test for a match
|
sl@0
|
205 |
@param aModifiers Modifier keys to be tested for "on" state
|
sl@0
|
206 |
@return KErrNone value if successful, otherwise another of the system-wide
|
sl@0
|
207 |
error codes.
|
sl@0
|
208 |
@capability SwEvent */
|
sl@0
|
209 |
{
|
sl@0
|
210 |
return(doSetHotKey(EWsClOpSetHotKey, aType, aKeycode, aModifierMask, aModifiers));
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
EXPORT_C TInt RWsSession::ClearHotKeys(THotKey aType)
|
sl@0
|
214 |
/** Clears all mappings for the specified hotkey, including the default mapping.
|
sl@0
|
215 |
|
sl@0
|
216 |
Hotkeys allow standard functions to be performed by application-defined key
|
sl@0
|
217 |
combinations.
|
sl@0
|
218 |
|
sl@0
|
219 |
This function always causes a flush of the window server buffer.
|
sl@0
|
220 |
|
sl@0
|
221 |
@param aType The hot key to be cleared
|
sl@0
|
222 |
@return KErrNone if successful, otherwise one of the system-wide error codes.
|
sl@0
|
223 |
@see SetHotKey()
|
sl@0
|
224 |
@see RestoreDefaultHotKey()
|
sl@0
|
225 |
@capability SwEvent */
|
sl@0
|
226 |
{
|
sl@0
|
227 |
return(WriteReplyInt(aType,EWsClOpClearHotKeys));
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
EXPORT_C TInt RWsSession::RestoreDefaultHotKey(THotKey aType)
|
sl@0
|
231 |
/** Restores the default mapping for a hot key.
|
sl@0
|
232 |
|
sl@0
|
233 |
The function clears current mappings for a hot key and restores the default
|
sl@0
|
234 |
mapping. See THotKey for the default.
|
sl@0
|
235 |
|
sl@0
|
236 |
This function always causes a flush of the window server buffer.
|
sl@0
|
237 |
|
sl@0
|
238 |
@param aType The hot key to restore to its default value
|
sl@0
|
239 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
240 |
codes.
|
sl@0
|
241 |
@see ClearHotKeys() */
|
sl@0
|
242 |
{
|
sl@0
|
243 |
return(WriteReplyInt(aType,EWsClOpRestoreDefaultHotKey));
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
EXPORT_C void RWsSession::ComputeMode(TComputeMode aMode)
|
sl@0
|
247 |
/** Sets the mode used to control process priorities.
|
sl@0
|
248 |
|
sl@0
|
249 |
The default window server behaviour is that the application that owns the
|
sl@0
|
250 |
window with keyboard focus gets foreground process priority (EPriorityForeground)
|
sl@0
|
251 |
while all other clients get background priority (EPriorityBackground). This
|
sl@0
|
252 |
function can be used to over-ride this default behaviour, as discussed in
|
sl@0
|
253 |
TComputeMode.
|
sl@0
|
254 |
|
sl@0
|
255 |
Note:
|
sl@0
|
256 |
|
sl@0
|
257 |
Unlike real Symbian phones, the Emulator runs on a single process. As a result,
|
sl@0
|
258 |
on the Emulator this function sets the priority of individual threads rather
|
sl@0
|
259 |
than of processes. The values used for thread priorities are EPriorityLess
|
sl@0
|
260 |
instead of EPriorityBackground, and EPriorityNormal instead of EPriorityForeground.
|
sl@0
|
261 |
|
sl@0
|
262 |
@param aMode The compute mode. */
|
sl@0
|
263 |
{
|
sl@0
|
264 |
WriteInt(aMode,EWsClOpComputeMode);
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
/**
|
sl@0
|
268 |
This method has been deprecated. Shadowing of a window is no longer supported.
|
sl@0
|
269 |
Calling it has no effect.
|
sl@0
|
270 |
@param aVector Ignored.
|
sl@0
|
271 |
@deprecated
|
sl@0
|
272 |
*/
|
sl@0
|
273 |
EXPORT_C void RWsSession::SetShadowVector(const TPoint& /*aVector*/)
|
sl@0
|
274 |
{
|
sl@0
|
275 |
}
|
sl@0
|
276 |
|
sl@0
|
277 |
/**
|
sl@0
|
278 |
This method has been deprecated. Shadowing of a window is no longer supported.
|
sl@0
|
279 |
Calling it has no effect.
|
sl@0
|
280 |
@return TPoint(0, 0)
|
sl@0
|
281 |
@deprecated
|
sl@0
|
282 |
*/
|
sl@0
|
283 |
EXPORT_C TPoint RWsSession::ShadowVector() const
|
sl@0
|
284 |
{
|
sl@0
|
285 |
return TPoint();
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
void RWsSession::doReadEvent(TRequestStatus *aStat, TInt aOpcode)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
*aStat=KRequestPending;
|
sl@0
|
291 |
if (iBuffer)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
iBuffer->Flush(); //ignore error since this flushing should not return any error
|
sl@0
|
294 |
}
|
sl@0
|
295 |
__ASSERT_DEBUG(EWservMessAsynchronousService>=aOpcode, Assert(EW32AssertIllegalOpcode));
|
sl@0
|
296 |
const TInt function=EWservMessAsynchronousService|aOpcode;
|
sl@0
|
297 |
SendReceive(function,TIpcArgs(),*aStat);
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
EXPORT_C void RWsSession::EventReady(TRequestStatus* aStat)
|
sl@0
|
301 |
/** Requests standard events from the window server.
|
sl@0
|
302 |
|
sl@0
|
303 |
Standard events include all events except redraws and priority key events.
|
sl@0
|
304 |
|
sl@0
|
305 |
The client application will typically handle the completed request using the
|
sl@0
|
306 |
RunL() function of an active object, and in this case the request status aStat
|
sl@0
|
307 |
should be the iStatus member of that CActive object.
|
sl@0
|
308 |
|
sl@0
|
309 |
Notes:
|
sl@0
|
310 |
|
sl@0
|
311 |
- The active object runs when an event is waiting. You should call GetEvent()
|
sl@0
|
312 |
in the RunL() function to get the event.
|
sl@0
|
313 |
|
sl@0
|
314 |
- You should not call this function again until you have either called GetEvent()
|
sl@0
|
315 |
or EventReadyCancel().
|
sl@0
|
316 |
|
sl@0
|
317 |
- Because this function is asynchronous, there is no guarantee that the Window
|
sl@0
|
318 |
Server will process the request before the function returns. However, on single
|
sl@0
|
319 |
core systems it is unusual for this function to return before the Window Server
|
sl@0
|
320 |
has processed the request, because the client generally runs in a lower priority
|
sl@0
|
321 |
thread than the Window Server. You should therefore expect the use of this
|
sl@0
|
322 |
function to give rise to different behaviour between single and multicore systems.
|
sl@0
|
323 |
|
sl@0
|
324 |
@param aStat Request status. On successful completion contains KErrNone, otherwise
|
sl@0
|
325 |
another of the system-wide error codes.
|
sl@0
|
326 |
@see CActive
|
sl@0
|
327 |
@see GetEvent() */
|
sl@0
|
328 |
{
|
sl@0
|
329 |
doReadEvent(aStat,EWsClOpEventReady);
|
sl@0
|
330 |
}
|
sl@0
|
331 |
|
sl@0
|
332 |
EXPORT_C void RWsSession::RedrawReady(TRequestStatus* aStat)
|
sl@0
|
333 |
/** Requests redraw events from the window server.
|
sl@0
|
334 |
|
sl@0
|
335 |
Typically, a client will create an active object for redraw events with a
|
sl@0
|
336 |
lower priority than the active objects for standard events. The client will
|
sl@0
|
337 |
then typically handle completed redraw requests in the active object's RunL()
|
sl@0
|
338 |
function.
|
sl@0
|
339 |
|
sl@0
|
340 |
As in EventReady(), the request status aStat should be used as the iStatus
|
sl@0
|
341 |
member of an active object. When a redraw event occurs the active object's
|
sl@0
|
342 |
RunL() function is called. The redraw event can be obtained by calling
|
sl@0
|
343 |
GetRedraw() in the RunL().
|
sl@0
|
344 |
|
sl@0
|
345 |
Notes:
|
sl@0
|
346 |
|
sl@0
|
347 |
- You should not call this function again until you have either called
|
sl@0
|
348 |
GetRedraw() or RedrawReadyCancel().
|
sl@0
|
349 |
|
sl@0
|
350 |
- Because this function is asynchronous, there is no guarantee that the Window
|
sl@0
|
351 |
Server will process the request before the function returns. However, on single
|
sl@0
|
352 |
core systems it is unusual for this function to return before the Window Server
|
sl@0
|
353 |
has processed the request, because the client generally runs in a lower priority
|
sl@0
|
354 |
thread than the Window Server. You should therefore expect the use of this
|
sl@0
|
355 |
function to give rise to different behaviour between single and multicore systems.
|
sl@0
|
356 |
|
sl@0
|
357 |
@param aStat The request status. On successful completion contains KErrNone,
|
sl@0
|
358 |
otherwise another of the system-wide error codes.
|
sl@0
|
359 |
@see RedrawReadyCancel()
|
sl@0
|
360 |
@see GetRedraw()
|
sl@0
|
361 |
@see CActive */
|
sl@0
|
362 |
{
|
sl@0
|
363 |
doReadEvent(aStat,EWsClOpRedrawReady);
|
sl@0
|
364 |
}
|
sl@0
|
365 |
|
sl@0
|
366 |
void RWsSession::GraphicMessageReady(TRequestStatus *aStat)
|
sl@0
|
367 |
{
|
sl@0
|
368 |
doReadEvent(aStat,EWsClOpGraphicMessageReady);
|
sl@0
|
369 |
}
|
sl@0
|
370 |
|
sl@0
|
371 |
void RWsSession::GetGraphicMessage(TDes8& aData) const
|
sl@0
|
372 |
{
|
sl@0
|
373 |
WriteReplyP(TWriteDescriptorType(&aData),EWsClOpGetGraphicMessage);
|
sl@0
|
374 |
}
|
sl@0
|
375 |
|
sl@0
|
376 |
void RWsSession::GraphicMessageCancel()
|
sl@0
|
377 |
{
|
sl@0
|
378 |
WriteReply(EWsClOpGraphicMessageCancel);
|
sl@0
|
379 |
}
|
sl@0
|
380 |
|
sl@0
|
381 |
void RWsSession::GraphicAbortMessage(TInt aError)
|
sl@0
|
382 |
{
|
sl@0
|
383 |
WriteReplyInt(aError, EWsClOpGraphicAbortMessage);
|
sl@0
|
384 |
}
|
sl@0
|
385 |
|
sl@0
|
386 |
TInt RWsSession::GraphicFetchHeaderMessage()
|
sl@0
|
387 |
{
|
sl@0
|
388 |
return WriteReply(EWsClOpGraphicFetchHeaderMessage);
|
sl@0
|
389 |
}
|
sl@0
|
390 |
|
sl@0
|
391 |
EXPORT_C void RWsSession::PriorityKeyReady(TRequestStatus *aStat)
|
sl@0
|
392 |
/** Requests priority key events from the window server.
|
sl@0
|
393 |
|
sl@0
|
394 |
Typically, an client will create an active object for priority key events
|
sl@0
|
395 |
with a higher priority than the active objects for standard events. The client
|
sl@0
|
396 |
will then normally handle completed priority key requests in the active object's
|
sl@0
|
397 |
RunL() function.
|
sl@0
|
398 |
|
sl@0
|
399 |
As in EventReady(), the request status argument should be the set to the iStatus
|
sl@0
|
400 |
member of CActive. When priority key events occur, they are obtained using
|
sl@0
|
401 |
GetPriorityKey().
|
sl@0
|
402 |
|
sl@0
|
403 |
Notes:
|
sl@0
|
404 |
|
sl@0
|
405 |
- You should not call this function again until you have either called
|
sl@0
|
406 |
GetPriorityKey() or PriorityKeyReadyCancel().
|
sl@0
|
407 |
|
sl@0
|
408 |
- Because this function is asynchronous, there is no guarantee that the Window
|
sl@0
|
409 |
Server will process the request before the function returns. However, on single
|
sl@0
|
410 |
core systems it is unusual for this function to return before the Window Server
|
sl@0
|
411 |
has processed the request, because the client generally runs in a lower priority
|
sl@0
|
412 |
thread than the Window Server. You should therefore expect the use of this
|
sl@0
|
413 |
function to give rise to different behaviour between single and multicore systems.
|
sl@0
|
414 |
|
sl@0
|
415 |
@param aStat Request status. On successful completion contains KErrNone, otherwise
|
sl@0
|
416 |
another of the system-wide error codes.
|
sl@0
|
417 |
@see PriorityKeyReadyCancel()
|
sl@0
|
418 |
@see GetPriorityKey()
|
sl@0
|
419 |
@see CActive */
|
sl@0
|
420 |
{
|
sl@0
|
421 |
doReadEvent(aStat,EWsClOpPriorityKeyReady);
|
sl@0
|
422 |
}
|
sl@0
|
423 |
|
sl@0
|
424 |
EXPORT_C void RWsSession::GetEvent(TWsEvent &aEvent) const
|
sl@0
|
425 |
/** Gets a standard event from the session for processing.
|
sl@0
|
426 |
|
sl@0
|
427 |
The type of event returned by GetEvent() may be any of those listed in TEventCode.
|
sl@0
|
428 |
To access the data within an event, the event should be converted to the appropriate
|
sl@0
|
429 |
type, using functions provided by the TWsEvent class. TWsEvent also provides
|
sl@0
|
430 |
a function to find out the type of the event.
|
sl@0
|
431 |
|
sl@0
|
432 |
Notes:
|
sl@0
|
433 |
|
sl@0
|
434 |
It is possible that the returned event is of type EEventNull. Clients should
|
sl@0
|
435 |
normally ignore these events.
|
sl@0
|
436 |
|
sl@0
|
437 |
This function should only be called in response to notification that an event
|
sl@0
|
438 |
has occurred, otherwise the client will be panicked.
|
sl@0
|
439 |
|
sl@0
|
440 |
This function would normally be called in the RunL() function of an active
|
sl@0
|
441 |
object which completes with the EventReady() function's request status.
|
sl@0
|
442 |
|
sl@0
|
443 |
This function always causes a flush of the window server buffer.
|
sl@0
|
444 |
|
sl@0
|
445 |
@param aEvent On return, contains the event that occurred
|
sl@0
|
446 |
@see TEventCode
|
sl@0
|
447 |
@see EventReady() */
|
sl@0
|
448 |
{
|
sl@0
|
449 |
TPckgBuf<TWsEvent> event;
|
sl@0
|
450 |
WriteReplyP(&event,EWsClOpGetEvent);
|
sl@0
|
451 |
aEvent=event();
|
sl@0
|
452 |
}
|
sl@0
|
453 |
|
sl@0
|
454 |
EXPORT_C void RWsSession::PurgePointerEvents()
|
sl@0
|
455 |
/** Removes all pointer events waiting to be delivered to this session.
|
sl@0
|
456 |
|
sl@0
|
457 |
The events are removed from the event queue without being processed. This
|
sl@0
|
458 |
might occur, for example, at application startup. */
|
sl@0
|
459 |
{
|
sl@0
|
460 |
Write(EWsClOpPurgePointerEvents);
|
sl@0
|
461 |
}
|
sl@0
|
462 |
|
sl@0
|
463 |
EXPORT_C void RWsSession::GetRedraw(TWsRedrawEvent &aEvent)
|
sl@0
|
464 |
/** Gets the redraw event from the session.
|
sl@0
|
465 |
|
sl@0
|
466 |
This function is similar to GetEvent(), except that the event is returned
|
sl@0
|
467 |
as a TWsRedrawEvent, and hence there is no need to convert it from a TWsEvent.
|
sl@0
|
468 |
|
sl@0
|
469 |
The function should only be called after notification that a redraw is waiting.
|
sl@0
|
470 |
|
sl@0
|
471 |
It always causes a flush of the window server buffer.
|
sl@0
|
472 |
|
sl@0
|
473 |
@param aEvent On return, contains the redraw event that occurred
|
sl@0
|
474 |
@see RedrawReady()
|
sl@0
|
475 |
@see GetEvent()
|
sl@0
|
476 |
@see CActive */
|
sl@0
|
477 |
{
|
sl@0
|
478 |
TPckgBuf<TWsRedrawEvent> redraw;
|
sl@0
|
479 |
WriteReplyP(&redraw,EWsClOpGetRedraw);
|
sl@0
|
480 |
aEvent=redraw();
|
sl@0
|
481 |
}
|
sl@0
|
482 |
|
sl@0
|
483 |
EXPORT_C void RWsSession::GetPriorityKey(TWsPriorityKeyEvent &aEvent) const
|
sl@0
|
484 |
/** Gets the completed priority key event from the window server session.
|
sl@0
|
485 |
|
sl@0
|
486 |
Priority key events are typically used for providing "Abort" or "Escape" keys
|
sl@0
|
487 |
for an application.
|
sl@0
|
488 |
|
sl@0
|
489 |
This function is similar to GetEvent(), except that it returns a TWsPriorityKeyEvent
|
sl@0
|
490 |
instead of a TWsEvent.
|
sl@0
|
491 |
|
sl@0
|
492 |
Note: this should only be called after notification that a priority key event has
|
sl@0
|
493 |
occurred.
|
sl@0
|
494 |
|
sl@0
|
495 |
This function always causes a flush of the window server buffer.
|
sl@0
|
496 |
|
sl@0
|
497 |
@param aEvent On return, contains the priority key event that occurred.
|
sl@0
|
498 |
@see PriorityKeyReady()
|
sl@0
|
499 |
@see PriorityKeyReadyCancel() */
|
sl@0
|
500 |
{
|
sl@0
|
501 |
TPckgBuf<TWsPriorityKeyEvent> abortEvent;
|
sl@0
|
502 |
WriteReplyP(&abortEvent,EWsClOpGetPriorityKey);
|
sl@0
|
503 |
aEvent=abortEvent();
|
sl@0
|
504 |
}
|
sl@0
|
505 |
|
sl@0
|
506 |
EXPORT_C void RWsSession::EventReadyCancel()
|
sl@0
|
507 |
/** Cancels a request for standard events from the window server.
|
sl@0
|
508 |
|
sl@0
|
509 |
This request was made using EventReady().
|
sl@0
|
510 |
|
sl@0
|
511 |
The client application will typically use an active object to handle standard
|
sl@0
|
512 |
events, and this function should be called from the active object's DoCancel()
|
sl@0
|
513 |
function.
|
sl@0
|
514 |
|
sl@0
|
515 |
This function always causes a flush of the window server buffer.
|
sl@0
|
516 |
|
sl@0
|
517 |
@see EventReady() */
|
sl@0
|
518 |
{
|
sl@0
|
519 |
if (iWsHandle)
|
sl@0
|
520 |
WriteReply(EWsClOpEventReadyCancel);
|
sl@0
|
521 |
}
|
sl@0
|
522 |
|
sl@0
|
523 |
EXPORT_C void RWsSession::RedrawReadyCancel()
|
sl@0
|
524 |
/** Cancels a redraw event request.
|
sl@0
|
525 |
|
sl@0
|
526 |
If active objects are used, this function should be called from the active
|
sl@0
|
527 |
object's DoCancel() function.
|
sl@0
|
528 |
|
sl@0
|
529 |
This function always causes a flush of the window server buffer.
|
sl@0
|
530 |
|
sl@0
|
531 |
@see RedrawReady() */
|
sl@0
|
532 |
{
|
sl@0
|
533 |
if (iWsHandle)
|
sl@0
|
534 |
WriteReply(EWsClOpRedrawReadyCancel);
|
sl@0
|
535 |
}
|
sl@0
|
536 |
|
sl@0
|
537 |
EXPORT_C void RWsSession::PriorityKeyReadyCancel()
|
sl@0
|
538 |
/** Cancels a priority key event request.
|
sl@0
|
539 |
|
sl@0
|
540 |
If active objects are used, this function should be called from the active
|
sl@0
|
541 |
object's DoCancel() function.
|
sl@0
|
542 |
|
sl@0
|
543 |
This function always causes a flush of the window server buffer.
|
sl@0
|
544 |
|
sl@0
|
545 |
@see PriorityKeyReady()
|
sl@0
|
546 |
@see CActive */
|
sl@0
|
547 |
{
|
sl@0
|
548 |
if (iWsHandle)
|
sl@0
|
549 |
WriteReply(EWsClOpPriorityKeyReadyCancel);
|
sl@0
|
550 |
}
|
sl@0
|
551 |
|
sl@0
|
552 |
EXPORT_C void RWsSession::Flush()
|
sl@0
|
553 |
/** Sends all pending commands in the buffer to the window server.
|
sl@0
|
554 |
|
sl@0
|
555 |
Delivering a command to the window server requires a context switch, and so
|
sl@0
|
556 |
it is more efficient to deliver several commands in one go. Hence all client
|
sl@0
|
557 |
commands are normally first placed into a buffer for delivery to the window
|
sl@0
|
558 |
server.
|
sl@0
|
559 |
|
sl@0
|
560 |
The buffer is delivered when it gets full, or when a command that returns a value
|
sl@0
|
561 |
is called (there are a few exceptions to this), or when this function is called.
|
sl@0
|
562 |
|
sl@0
|
563 |
Note: this function is called when a prompt response is required from the window
|
sl@0
|
564 |
server, e.g. after doing some drawing.
|
sl@0
|
565 |
|
sl@0
|
566 |
@see RWsSession::SetAutoFlush()
|
sl@0
|
567 |
@see RWsSession::SetBufferSizeL()
|
sl@0
|
568 |
@see RWsSession::SetMaxBufferSizeL()
|
sl@0
|
569 |
*/
|
sl@0
|
570 |
{
|
sl@0
|
571 |
if (iBuffer)
|
sl@0
|
572 |
iBuffer->Flush(NULL,ETrue);
|
sl@0
|
573 |
}
|
sl@0
|
574 |
|
sl@0
|
575 |
EXPORT_C TBool RWsSession::SetAutoFlush(TBool aState)
|
sl@0
|
576 |
/** Sets a session's auto-flush state.
|
sl@0
|
577 |
|
sl@0
|
578 |
If auto-flush is set to ETrue, the window server buffer is flushed immediately
|
sl@0
|
579 |
anything is put into it, instead of waiting until it becomes full. This setting
|
sl@0
|
580 |
is normally used only in a debugging environment.
|
sl@0
|
581 |
|
sl@0
|
582 |
If the auto-flush state is EFalse, the window server buffer is flushed normally.
|
sl@0
|
583 |
|
sl@0
|
584 |
@param aState ETrue to set auto-flushing on, EFalse to disable auto-flushing.
|
sl@0
|
585 |
@return Previous auto-flush state
|
sl@0
|
586 |
|
sl@0
|
587 |
@see RWsSession::Flush()
|
sl@0
|
588 |
@see RWsSession::SetBufferSizeL()
|
sl@0
|
589 |
@see RWsSession::SetMaxBufferSizeL()
|
sl@0
|
590 |
*/
|
sl@0
|
591 |
{
|
sl@0
|
592 |
return(iBuffer->SetAutoFlush(aState));
|
sl@0
|
593 |
}
|
sl@0
|
594 |
|
sl@0
|
595 |
EXPORT_C TInt RWsSession::NumWindowGroups() const
|
sl@0
|
596 |
/** Gets the total number of window groups currently running in the window server.
|
sl@0
|
597 |
|
sl@0
|
598 |
This includes all the groups running in all sessions.
|
sl@0
|
599 |
|
sl@0
|
600 |
This function always causes a flush of the window server buffer.
|
sl@0
|
601 |
|
sl@0
|
602 |
@return Total number of window groups running in the server */
|
sl@0
|
603 |
{
|
sl@0
|
604 |
return(WriteReply(EWsClOpNumWindowGroupsAllPriorities));
|
sl@0
|
605 |
}
|
sl@0
|
606 |
|
sl@0
|
607 |
EXPORT_C TInt RWsSession::NumWindowGroups(TInt aPriority) const
|
sl@0
|
608 |
/** Gets the number of window groups of a given window group priority running in
|
sl@0
|
609 |
all sessions in the window server.
|
sl@0
|
610 |
|
sl@0
|
611 |
This function always causes a flush of the window server buffer.
|
sl@0
|
612 |
|
sl@0
|
613 |
@param aPriority Window group priority
|
sl@0
|
614 |
@return Number of window groups of priority aPriority */
|
sl@0
|
615 |
{
|
sl@0
|
616 |
return(WriteReplyInt(aPriority,EWsClOpNumWindowGroups));
|
sl@0
|
617 |
}
|
sl@0
|
618 |
|
sl@0
|
619 |
EXPORT_C TInt RWsSession::NumWindowGroups(TInt aScreenNumber,TInt aPriority) const
|
sl@0
|
620 |
/** Gets the number of window groups of a given window group priority running on a specified screen
|
sl@0
|
621 |
|
sl@0
|
622 |
This function always causes a flush of the window server buffer.
|
sl@0
|
623 |
|
sl@0
|
624 |
@param aScreenNumber specifies the screen.
|
sl@0
|
625 |
@param aPriority Window group priority. EAllPriorities is the enum for all priorities
|
sl@0
|
626 |
@return Number of window groups of priority aPriority on the specified screen */
|
sl@0
|
627 |
{
|
sl@0
|
628 |
TWsClCmdNumWindowGroups params;
|
sl@0
|
629 |
params.screenNumber = aScreenNumber;
|
sl@0
|
630 |
params.priority = aPriority;
|
sl@0
|
631 |
return(WriteReply(¶ms,sizeof(params),EWsClOpNumWindowGroupsOnScreen));
|
sl@0
|
632 |
}
|
sl@0
|
633 |
|
sl@0
|
634 |
TInt RWsSession::doWindowGroupList(TInt aScreenNumber, TInt aPriority, CArrayFixFlat<TInt>* aWindowList, TInt aNumOpcode, TInt aListOpcode) const
|
sl@0
|
635 |
/** Gets the id of window groups of specified priority running on a specified screen.
|
sl@0
|
636 |
|
sl@0
|
637 |
This function always causes a flush of the window server buffer.
|
sl@0
|
638 |
|
sl@0
|
639 |
@param aScreenNumber specifies the screen.
|
sl@0
|
640 |
@param aPriority Window group priority
|
sl@0
|
641 |
@param aWindowList List of identifiers
|
sl@0
|
642 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
643 |
codes.*/
|
sl@0
|
644 |
{
|
sl@0
|
645 |
TWsClCmdWindowGroupList params;
|
sl@0
|
646 |
params.priority = aPriority;
|
sl@0
|
647 |
params.screenNumber = aScreenNumber;
|
sl@0
|
648 |
if(aScreenNumber!=KDummyScreenNumber)
|
sl@0
|
649 |
{
|
sl@0
|
650 |
TWsClCmdNumWindowGroups numWinGrp;
|
sl@0
|
651 |
numWinGrp.screenNumber = aScreenNumber;
|
sl@0
|
652 |
numWinGrp.priority = aPriority;
|
sl@0
|
653 |
params.count=WriteReply(&numWinGrp,sizeof(numWinGrp),aNumOpcode);
|
sl@0
|
654 |
}
|
sl@0
|
655 |
else
|
sl@0
|
656 |
params.count=WriteReplyInt(aPriority,aNumOpcode);
|
sl@0
|
657 |
|
sl@0
|
658 |
TRAPD(err,aWindowList->ResizeL(params.count));
|
sl@0
|
659 |
if (err!=KErrNone || params.count==0)
|
sl@0
|
660 |
return(err);
|
sl@0
|
661 |
TPtr8 listPtr(reinterpret_cast<TUint8*>(&(*aWindowList)[0]),params.count*sizeof((*aWindowList)[0]));
|
sl@0
|
662 |
TInt actualCount=WriteReplyP(¶ms, sizeof(params), &listPtr, aListOpcode);
|
sl@0
|
663 |
err=KErrNone;
|
sl@0
|
664 |
if (actualCount<0)
|
sl@0
|
665 |
{
|
sl@0
|
666 |
err=actualCount;
|
sl@0
|
667 |
actualCount=0;
|
sl@0
|
668 |
}
|
sl@0
|
669 |
if (actualCount<params.count)
|
sl@0
|
670 |
aWindowList->ResizeL(actualCount); // Can't fail, only shrinking it
|
sl@0
|
671 |
return(err);
|
sl@0
|
672 |
}
|
sl@0
|
673 |
|
sl@0
|
674 |
TInt RWsSession::doWindowGroupList(TInt aPriority, RArray<TWindowGroupChainInfo>* aWindowListCh, TInt aNumOpcode, TInt aListOpcode) const
|
sl@0
|
675 |
/** Gets the id of window groups and id of its parent window group of specified priority running in
|
sl@0
|
676 |
all sessions in the window server.
|
sl@0
|
677 |
|
sl@0
|
678 |
This function always causes a flush of the window server buffer.
|
sl@0
|
679 |
|
sl@0
|
680 |
@param aPriority Window group priority
|
sl@0
|
681 |
@param aWindowList List of identifiers
|
sl@0
|
682 |
@return KErrNone if successful else KErrNoMemory if there is insufficient memory to create the array.
|
sl@0
|
683 |
This function will panic if aWindowListCh is Null.*/
|
sl@0
|
684 |
{
|
sl@0
|
685 |
__ASSERT_ALWAYS(aWindowListCh,Panic(EW32PanicNullArray));
|
sl@0
|
686 |
TWsClCmdWindowGroupList params;
|
sl@0
|
687 |
params.priority=aPriority;
|
sl@0
|
688 |
params.count=WriteReplyInt(aPriority,aNumOpcode);
|
sl@0
|
689 |
aWindowListCh->Reset();
|
sl@0
|
690 |
TUint8* WindowList=static_cast<TUint8*>(User::Alloc(params.count*sizeof(TWindowGroupChainInfo)));
|
sl@0
|
691 |
if(WindowList==NULL)
|
sl@0
|
692 |
{
|
sl@0
|
693 |
return KErrNoMemory;
|
sl@0
|
694 |
}
|
sl@0
|
695 |
TPtr8 listPtr(WindowList,params.count*sizeof(TWindowGroupChainInfo));
|
sl@0
|
696 |
WriteReplyP(¶ms, sizeof(params), &listPtr, aListOpcode);
|
sl@0
|
697 |
new(aWindowListCh) RArray<TWindowGroupChainInfo>(sizeof(TWindowGroupChainInfo),(TWindowGroupChainInfo*)WindowList,params.count);
|
sl@0
|
698 |
return KErrNone;
|
sl@0
|
699 |
}
|
sl@0
|
700 |
|
sl@0
|
701 |
EXPORT_C TInt RWsSession::WindowGroupList(CArrayFixFlat<TInt>* aWindowList) const
|
sl@0
|
702 |
/** Gets a list of identifiers of all window groups in all window server sessions.
|
sl@0
|
703 |
|
sl@0
|
704 |
An array buffer must be created to store the resultant list.
|
sl@0
|
705 |
|
sl@0
|
706 |
This function always causes a flush of the window server buffer.
|
sl@0
|
707 |
|
sl@0
|
708 |
@param aWindowList List of identifiers of all window groups in the server.
|
sl@0
|
709 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
710 |
codes. */
|
sl@0
|
711 |
{
|
sl@0
|
712 |
return(doWindowGroupList(KDummyScreenNumber,0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAllPriorities));
|
sl@0
|
713 |
}
|
sl@0
|
714 |
|
sl@0
|
715 |
EXPORT_C TInt RWsSession::WindowGroupList(CArrayFixFlat<TInt>* aWindowList,TInt aScreenNumber,TInt aPriority) const
|
sl@0
|
716 |
/** Lists the number of window groups of a given window group priority running on a specified screen.
|
sl@0
|
717 |
|
sl@0
|
718 |
This function is the same as WindowGroupList() described above, but allows
|
sl@0
|
719 |
the application to restrict the list of window groups to those of a particular
|
sl@0
|
720 |
window group priority.
|
sl@0
|
721 |
|
sl@0
|
722 |
This function always causes a flush of the window server buffer.
|
sl@0
|
723 |
|
sl@0
|
724 |
@param aScreenNumber specifies the screen
|
sl@0
|
725 |
@param aPriority Window group priority . Enum for all priorities is EAllPriorities
|
sl@0
|
726 |
@param aWindowList List of identifiers of all window groups on the specified screen with the given priority
|
sl@0
|
727 |
aPriority.
|
sl@0
|
728 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
729 |
codes. */
|
sl@0
|
730 |
{
|
sl@0
|
731 |
return(doWindowGroupList(aScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroupsOnScreen,EWsClOpWindowGroupList));
|
sl@0
|
732 |
}
|
sl@0
|
733 |
|
sl@0
|
734 |
EXPORT_C TInt RWsSession::WindowGroupList(RArray<TWindowGroupChainInfo>* aWindowList) const
|
sl@0
|
735 |
/** Gets a list of identifier of window group and parent identifier of window group of
|
sl@0
|
736 |
all window groups in all window server sessions.
|
sl@0
|
737 |
|
sl@0
|
738 |
An array buffer must be created to store the resultant list.
|
sl@0
|
739 |
|
sl@0
|
740 |
This function always causes a flush of the window server buffer.
|
sl@0
|
741 |
|
sl@0
|
742 |
@param aWindowList List of identifiers of all window groups in the server.
|
sl@0
|
743 |
@return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array,
|
sl@0
|
744 |
Panics if aWindowList is NULL. */
|
sl@0
|
745 |
{
|
sl@0
|
746 |
return(doWindowGroupList(0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAndChainAllPriorities));
|
sl@0
|
747 |
}
|
sl@0
|
748 |
|
sl@0
|
749 |
EXPORT_C TInt RWsSession::WindowGroupList(TInt aPriority,CArrayFixFlat<TInt>* aWindowList) const
|
sl@0
|
750 |
/** Lists the number of window groups of a given window group priority running
|
sl@0
|
751 |
in all window server sessions.
|
sl@0
|
752 |
|
sl@0
|
753 |
This function is the same as WindowGroupList() described above, but allows
|
sl@0
|
754 |
the application to restrict the list of window groups to those of a particular
|
sl@0
|
755 |
window group priority.
|
sl@0
|
756 |
|
sl@0
|
757 |
This function always causes a flush of the window server buffer.
|
sl@0
|
758 |
|
sl@0
|
759 |
@param aPriority Window group priority
|
sl@0
|
760 |
@param aWindowList List of identifiers of all window groups in the server of priority
|
sl@0
|
761 |
aPriority.
|
sl@0
|
762 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
763 |
codes. */
|
sl@0
|
764 |
{
|
sl@0
|
765 |
return(doWindowGroupList(KDummyScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupList));
|
sl@0
|
766 |
}
|
sl@0
|
767 |
|
sl@0
|
768 |
EXPORT_C TInt RWsSession::WindowGroupList(TInt aPriority, RArray<TWindowGroupChainInfo>* aWindowList) const
|
sl@0
|
769 |
/** Lists the number of window groups of a given window group priority running
|
sl@0
|
770 |
in all window server sessions.
|
sl@0
|
771 |
|
sl@0
|
772 |
This function is the same as WindowGroupList() described above, but allows
|
sl@0
|
773 |
the application to restrict the list of window groups to those of a particular
|
sl@0
|
774 |
window group priority.
|
sl@0
|
775 |
|
sl@0
|
776 |
This function always causes a flush of the window server buffer.
|
sl@0
|
777 |
|
sl@0
|
778 |
@param aPriority Window group priority
|
sl@0
|
779 |
@param aWindowList List of identifiers of all window groups in the server of priority
|
sl@0
|
780 |
aPriority.
|
sl@0
|
781 |
@return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array,
|
sl@0
|
782 |
Panics if aWindowList is NULL. */
|
sl@0
|
783 |
{
|
sl@0
|
784 |
return(doWindowGroupList(aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupListAndChain));
|
sl@0
|
785 |
}
|
sl@0
|
786 |
|
sl@0
|
787 |
EXPORT_C TInt RWsSession::GetDefaultOwningWindow() const
|
sl@0
|
788 |
/** Gets the identifier of the current default owning window group.
|
sl@0
|
789 |
|
sl@0
|
790 |
This function always causes a flush of the window server buffer.
|
sl@0
|
791 |
|
sl@0
|
792 |
@return Identifier of current default owning window group. Returns 0 if there
|
sl@0
|
793 |
isn't one. */
|
sl@0
|
794 |
{
|
sl@0
|
795 |
return GetDefaultOwningWindow(KDummyScreenNumber);
|
sl@0
|
796 |
}
|
sl@0
|
797 |
|
sl@0
|
798 |
EXPORT_C TInt RWsSession::GetDefaultOwningWindow(TInt aScreenNumber) const
|
sl@0
|
799 |
/** Gets the identifier of the current default owning window group on a specified screen.
|
sl@0
|
800 |
|
sl@0
|
801 |
This function always causes a flush of the window server buffer.
|
sl@0
|
802 |
|
sl@0
|
803 |
@param aScreenNumber specifies the screen.
|
sl@0
|
804 |
@return Identifier of current default owning window group on the specified screen. Returns 0 if there
|
sl@0
|
805 |
isn't one. */
|
sl@0
|
806 |
{
|
sl@0
|
807 |
return(WriteReplyInt(aScreenNumber,EWsClOpGetDefaultOwningWindow));
|
sl@0
|
808 |
}
|
sl@0
|
809 |
|
sl@0
|
810 |
EXPORT_C TInt RWsSession::GetFocusWindowGroup() const
|
sl@0
|
811 |
/** Gets the identifier of the window group that currently has the keyboard focus.
|
sl@0
|
812 |
|
sl@0
|
813 |
Note: this might not necessarily be the front-most window group, as window groups
|
sl@0
|
814 |
can disable keyboard focus.
|
sl@0
|
815 |
|
sl@0
|
816 |
This function always causes a flush of the window server buffer.
|
sl@0
|
817 |
|
sl@0
|
818 |
@return Identifier of window group with keyboard focus. */
|
sl@0
|
819 |
{
|
sl@0
|
820 |
return GetFocusWindowGroup(KDummyScreenNumber);
|
sl@0
|
821 |
}
|
sl@0
|
822 |
|
sl@0
|
823 |
EXPORT_C TInt RWsSession::GetFocusWindowGroup(TInt aScreenNumber) const
|
sl@0
|
824 |
/** Gets the identifier of the window group on a specified screen that currently has the keyboard focus.
|
sl@0
|
825 |
|
sl@0
|
826 |
Note: this might not necessarily be the front-most window group, as window groups
|
sl@0
|
827 |
can disable keyboard focus.
|
sl@0
|
828 |
|
sl@0
|
829 |
This function always causes a flush of the window server buffer.
|
sl@0
|
830 |
|
sl@0
|
831 |
@param aScreenNumber specifies the screen.
|
sl@0
|
832 |
@return Identifier of window group with keyboard focus. */
|
sl@0
|
833 |
{
|
sl@0
|
834 |
return WriteReplyInt(aScreenNumber,EWsClOpGetFocusWindowGroup);
|
sl@0
|
835 |
}
|
sl@0
|
836 |
|
sl@0
|
837 |
EXPORT_C TInt RWsSession::SetWindowGroupOrdinalPosition(TInt aIdentifier, TInt aPosition)
|
sl@0
|
838 |
/** Sets the ordinal position of a window group.
|
sl@0
|
839 |
|
sl@0
|
840 |
This function allows the caller to change the ordinal position of an existing
|
sl@0
|
841 |
window group. It would typically be used by a shell application.
|
sl@0
|
842 |
|
sl@0
|
843 |
This function always causes a flush of the window server buffer.
|
sl@0
|
844 |
|
sl@0
|
845 |
@param aIdentifier The window group.
|
sl@0
|
846 |
@param aPosition Ordinal position for the window group.
|
sl@0
|
847 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
848 |
codes. */
|
sl@0
|
849 |
{
|
sl@0
|
850 |
TWsClCmdSetWindowGroupOrdinalPosition params(aIdentifier,aPosition);
|
sl@0
|
851 |
return(WriteReply(¶ms, sizeof(params),EWsClOpSetWindowGroupOrdinalPosition));
|
sl@0
|
852 |
}
|
sl@0
|
853 |
|
sl@0
|
854 |
EXPORT_C TInt RWsSession::GetWindowGroupClientThreadId(TInt aIdentifier, TThreadId &aThreadId) const
|
sl@0
|
855 |
/** Gets the thread ID of the client that owns the window group specified by the
|
sl@0
|
856 |
window group identifier.
|
sl@0
|
857 |
|
sl@0
|
858 |
This function always causes a flush of the window server buffer.
|
sl@0
|
859 |
|
sl@0
|
860 |
@param aIdentifier The window group identifier.
|
sl@0
|
861 |
@param aThreadId On return, contains the thread ID.
|
sl@0
|
862 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
863 |
codes. */
|
sl@0
|
864 |
{
|
sl@0
|
865 |
TPtr8 ptr(reinterpret_cast<TUint8*>(&aThreadId),sizeof(aThreadId));
|
sl@0
|
866 |
return(WriteReplyIntP(aIdentifier,&ptr,EWsClOpGetWindowGroupClientThreadId));
|
sl@0
|
867 |
}
|
sl@0
|
868 |
|
sl@0
|
869 |
EXPORT_C TInt RWsSession::GetWindowGroupHandle(TInt aIdentifier) const
|
sl@0
|
870 |
/** Gets the handle of the window specified by the window group identifier.
|
sl@0
|
871 |
|
sl@0
|
872 |
This is the handle that was passed as an argument to RWindowGroup::Construct().
|
sl@0
|
873 |
|
sl@0
|
874 |
This function always causes a flush of the window server buffer.
|
sl@0
|
875 |
|
sl@0
|
876 |
@param aIdentifier The window group identifier.
|
sl@0
|
877 |
@return Handle of the window group */
|
sl@0
|
878 |
{
|
sl@0
|
879 |
return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupHandle));
|
sl@0
|
880 |
}
|
sl@0
|
881 |
|
sl@0
|
882 |
EXPORT_C TInt RWsSession::GetWindowGroupOrdinalPriority(TInt aIdentifier) const
|
sl@0
|
883 |
/** Gets a window group's priority.
|
sl@0
|
884 |
|
sl@0
|
885 |
This function always causes a flush of the window server buffer.
|
sl@0
|
886 |
|
sl@0
|
887 |
@param aIdentifier The window group identifier.
|
sl@0
|
888 |
@return The window group priority. */
|
sl@0
|
889 |
{
|
sl@0
|
890 |
return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupOrdinalPriority));
|
sl@0
|
891 |
}
|
sl@0
|
892 |
|
sl@0
|
893 |
EXPORT_C TInt RWsSession::SendEventToWindowGroup(TInt aIdentifier, const TWsEvent &aEvent)
|
sl@0
|
894 |
/** Sends an event to a window group.
|
sl@0
|
895 |
|
sl@0
|
896 |
This function always causes a flush of the window server buffer.
|
sl@0
|
897 |
|
sl@0
|
898 |
@param aIdentifier Window group identifier.
|
sl@0
|
899 |
@param aEvent Event to send to the window group.
|
sl@0
|
900 |
@return KErrNone if successful, KErrPermissionDenied if the client does not have
|
sl@0
|
901 |
the required capability, KErrNoMemory if there is not enough room to add the
|
sl@0
|
902 |
event to the event queue and otherwise another of the system-wide error codes.
|
sl@0
|
903 |
@capability SwEvent Required when aEvent.Type() < EEventUser unless the event
|
sl@0
|
904 |
is for a window group owned by this session.
|
sl@0
|
905 |
|
sl@0
|
906 |
@deprecated */
|
sl@0
|
907 |
{
|
sl@0
|
908 |
TWsClCmdSendEventToWindowGroup params(aIdentifier,aEvent);
|
sl@0
|
909 |
return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToWindowGroup));
|
sl@0
|
910 |
}
|
sl@0
|
911 |
|
sl@0
|
912 |
EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(const TWsEvent &aEvent)
|
sl@0
|
913 |
/** Sends the specified event to all existing window groups.
|
sl@0
|
914 |
|
sl@0
|
915 |
This function always causes a flush of the window server buffer.
|
sl@0
|
916 |
|
sl@0
|
917 |
@param aEvent The event to be sent to all window groups.
|
sl@0
|
918 |
@return KErrNone if successful, KErrPermissionDenied if the client does not have
|
sl@0
|
919 |
the required capability, KErrNoMemory if there is not enough room to add the
|
sl@0
|
920 |
event to all the required event queues (although it may have been added to some
|
sl@0
|
921 |
of them) and otherwise another of the system-wide error codes.
|
sl@0
|
922 |
@capability SwEvent Required when aEvent.Type() < EEventUser
|
sl@0
|
923 |
|
sl@0
|
924 |
@deprecated */
|
sl@0
|
925 |
{
|
sl@0
|
926 |
TWsClCmdSendEventToWindowGroup params(0,aEvent);
|
sl@0
|
927 |
return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToAllWindowGroup));
|
sl@0
|
928 |
}
|
sl@0
|
929 |
|
sl@0
|
930 |
EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(TInt aPriority, const TWsEvent &aEvent)
|
sl@0
|
931 |
/** Sends the specified event to all window groups with the specified priority.
|
sl@0
|
932 |
|
sl@0
|
933 |
This function always causes a flush of the window server buffer.
|
sl@0
|
934 |
|
sl@0
|
935 |
@param aPriority The priority which window groups must have to be sent the
|
sl@0
|
936 |
message.
|
sl@0
|
937 |
@param aEvent The event to be sent to the specified window groups.
|
sl@0
|
938 |
@return KErrNone if successful, KErrPermissionDenied if the client does not have
|
sl@0
|
939 |
the required capability, KErrNoMemory if there is not enough room to add the
|
sl@0
|
940 |
event to all the required event queues (although it may have been added to some
|
sl@0
|
941 |
of them) and otherwise another of the system-wide error codes.
|
sl@0
|
942 |
@capability SwEvent Required when aEvent.Type() < EEventUser
|
sl@0
|
943 |
|
sl@0
|
944 |
@deprecated */
|
sl@0
|
945 |
{
|
sl@0
|
946 |
TWsClCmdSendEventToWindowGroup params(aPriority,aEvent);
|
sl@0
|
947 |
return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToAllWindowGroupPriority));
|
sl@0
|
948 |
}
|
sl@0
|
949 |
|
sl@0
|
950 |
EXPORT_C TInt RWsSession::SendEventToOneWindowGroupsPerClient(const TWsEvent &aEvent)
|
sl@0
|
951 |
/** This function always causes a flush of the window server buffer.
|
sl@0
|
952 |
@capability SwEvent Required when aEvent.Type() < EEventUser
|
sl@0
|
953 |
|
sl@0
|
954 |
@deprecated */
|
sl@0
|
955 |
{
|
sl@0
|
956 |
TWsClCmdSendEventToWindowGroup params(0,aEvent);
|
sl@0
|
957 |
return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToOneWindowGroupPerClient));
|
sl@0
|
958 |
}
|
sl@0
|
959 |
|
sl@0
|
960 |
EXPORT_C TInt RWsSession::GetWindowGroupNameFromIdentifier(TInt aIdentifier, TDes &aWindowName) const
|
sl@0
|
961 |
/** Gets the name of a window group from its identifier.
|
sl@0
|
962 |
|
sl@0
|
963 |
Using the list of identifiers returned by WindowGroupList(), it is possible
|
sl@0
|
964 |
to get the names of all window groups in the system. Note that window names
|
sl@0
|
965 |
are a zero length string by default.
|
sl@0
|
966 |
|
sl@0
|
967 |
Note that the window group name must have been previously set using RWindowGroup::SetName()
|
sl@0
|
968 |
to contain a meaningful value.
|
sl@0
|
969 |
|
sl@0
|
970 |
This function always causes a flush of the window server buffer.
|
sl@0
|
971 |
|
sl@0
|
972 |
@param aIdentifier The identifier of the window group whose name is to be
|
sl@0
|
973 |
inquired.
|
sl@0
|
974 |
@param aWindowName On return, contains the window group name.
|
sl@0
|
975 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
976 |
codes. */
|
sl@0
|
977 |
{
|
sl@0
|
978 |
TWsClCmdGetWindowGroupNameFromIdentifier params(aIdentifier,aWindowName.MaxLength());
|
sl@0
|
979 |
return(WriteReplyP(¶ms,sizeof(params),&aWindowName,EWsClOpGetWindowGroupNameFromIdentifier));
|
sl@0
|
980 |
}
|
sl@0
|
981 |
|
sl@0
|
982 |
EXPORT_C TInt RWsSession::FindWindowGroupIdentifier(TInt aPreviousIdentifier,const TDesC& aMatch,TInt aOffset) const
|
sl@0
|
983 |
/** Gets all window groups whose names match a given string, which can contain
|
sl@0
|
984 |
wildcards.
|
sl@0
|
985 |
|
sl@0
|
986 |
An example use of this function might be to find all the currently
|
sl@0
|
987 |
running instances of a particular application, assuming that the window group
|
sl@0
|
988 |
name contains the application name. An optional argument, aOffset, specifies
|
sl@0
|
989 |
the number of characters to be ignored at the beginning of the window group
|
sl@0
|
990 |
name. As several window group names may match the given string, and the function
|
sl@0
|
991 |
can return only one at a time, there is an argument, aPreviousIdentifier,
|
sl@0
|
992 |
which gives the identifier for the previous match that was returned. In other
|
sl@0
|
993 |
words, it means, "get me the next match after this one." The first time the
|
sl@0
|
994 |
function is called, give 0 as the previous identifier.
|
sl@0
|
995 |
|
sl@0
|
996 |
Matching is done using TDesC::MatchF(), which does a folded match. Wildcards
|
sl@0
|
997 |
'*' and '?' can be used to denote one or more characters and exactly one character,
|
sl@0
|
998 |
respectively. Windows are searched in front to back order.
|
sl@0
|
999 |
|
sl@0
|
1000 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1001 |
|
sl@0
|
1002 |
@param aPreviousIdentifier Identifier of the last window group returned. If
|
sl@0
|
1003 |
the value passed is not a valid identifier, the function returns KErrNotFound.
|
sl@0
|
1004 |
@param aMatch String to match window group name against: may contain wildcards
|
sl@0
|
1005 |
@param aOffset The first aOffset characters of the window group name are ignored
|
sl@0
|
1006 |
when doing the match.
|
sl@0
|
1007 |
@return The next window group, after the one identified by aPreviousIdentifier,
|
sl@0
|
1008 |
whose name matches aMatch. KErrNotFound if no window group matched or aPreviousIdentifier
|
sl@0
|
1009 |
was not a valid identifier. */
|
sl@0
|
1010 |
{
|
sl@0
|
1011 |
TWsClCmdFindWindowGroupIdentifier params(aPreviousIdentifier,aOffset, aMatch.Length());
|
sl@0
|
1012 |
return(WriteReply(¶ms,sizeof(params),aMatch.Ptr(),aMatch.Size(),EWsClOpFindWindowGroupIdentifier));
|
sl@0
|
1013 |
}
|
sl@0
|
1014 |
|
sl@0
|
1015 |
EXPORT_C TInt RWsSession::FindWindowGroupIdentifier(TInt aPreviousIdentifier,TThreadId aThreadId) const
|
sl@0
|
1016 |
/** Gets the identifiers of window groups belonging to a client which is owned
|
sl@0
|
1017 |
by a thread with the specified thread ID.
|
sl@0
|
1018 |
|
sl@0
|
1019 |
The thread may own more than one window group, so the identifier returned
|
sl@0
|
1020 |
is the one after aPreviousIdentifier. The first time the function is called,
|
sl@0
|
1021 |
use 0 for the previous identifier.
|
sl@0
|
1022 |
|
sl@0
|
1023 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1024 |
|
sl@0
|
1025 |
@param aPreviousIdentifier Identifier returned by previous call
|
sl@0
|
1026 |
@param aThreadId Thread owning the window group or groups.
|
sl@0
|
1027 |
@return Next window group identifier after the one identified by aPreviousIdentifier */
|
sl@0
|
1028 |
{
|
sl@0
|
1029 |
TWsClCmdFindWindowGroupIdentifierThread params(aPreviousIdentifier, aThreadId);
|
sl@0
|
1030 |
return(WriteReply(¶ms,sizeof(params),EWsClOpFindWindowGroupIdentifierThread));
|
sl@0
|
1031 |
}
|
sl@0
|
1032 |
|
sl@0
|
1033 |
EXPORT_C TInt RWsSession::SendMessageToWindowGroup(TInt aIdentifier, TUid aUid, const TDesC8 &aParams)
|
sl@0
|
1034 |
/** Sends a message to a window group.
|
sl@0
|
1035 |
|
sl@0
|
1036 |
The window group will then receive an event of type EEventMessageReady notifying
|
sl@0
|
1037 |
it that a message has been received. The window group can belong to this or
|
sl@0
|
1038 |
another session.
|
sl@0
|
1039 |
|
sl@0
|
1040 |
In order to receive messages sent using this function you will need to implement
|
sl@0
|
1041 |
the MCoeMessageObserver interface which is defined in the UI Control Framework API.
|
sl@0
|
1042 |
|
sl@0
|
1043 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1044 |
|
sl@0
|
1045 |
@param aIdentifier The identifier of the window group to receive the message.
|
sl@0
|
1046 |
@param aUid A UID which uniquely identifies the session sending the message.
|
sl@0
|
1047 |
@param aParams The message data. An unlimited amount of data can be passed
|
sl@0
|
1048 |
in this argument.
|
sl@0
|
1049 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
1050 |
codes.
|
sl@0
|
1051 |
@see MCoeMessageObserver
|
sl@0
|
1052 |
|
sl@0
|
1053 |
@deprecated */
|
sl@0
|
1054 |
{
|
sl@0
|
1055 |
TWsClCmdSendMessageToWindowGroup params(aIdentifier, aUid, aParams.Length(),&aParams);
|
sl@0
|
1056 |
return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToWindowGroup));
|
sl@0
|
1057 |
}
|
sl@0
|
1058 |
|
sl@0
|
1059 |
EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TUid aUid, const TDesC8& aParams)
|
sl@0
|
1060 |
/** Sends a message to all window groups.
|
sl@0
|
1061 |
|
sl@0
|
1062 |
In order to receive messages sent using this function you will need to implement
|
sl@0
|
1063 |
the MCoeMessageObserver interface which is defined in the UI Control Framework
|
sl@0
|
1064 |
API.
|
sl@0
|
1065 |
|
sl@0
|
1066 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1067 |
|
sl@0
|
1068 |
@param aUid A UID which uniquely identifies the session sending the message.
|
sl@0
|
1069 |
@param aParams The message data. An unlimited amount of data can be passed
|
sl@0
|
1070 |
in this argument.
|
sl@0
|
1071 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
1072 |
codes.
|
sl@0
|
1073 |
|
sl@0
|
1074 |
@deprecated */
|
sl@0
|
1075 |
{
|
sl@0
|
1076 |
TWsClCmdSendMessageToWindowGroup params(0, aUid, aParams.Length(),&aParams);
|
sl@0
|
1077 |
return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroups));
|
sl@0
|
1078 |
}
|
sl@0
|
1079 |
|
sl@0
|
1080 |
EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TInt aPriority, TUid aUid, const TDesC8& aParams)
|
sl@0
|
1081 |
/** Sends a message to all window groups with the specified priority.
|
sl@0
|
1082 |
|
sl@0
|
1083 |
In order to receive messages sent using this function you will need to implement
|
sl@0
|
1084 |
the MCoeMessageObserver interface which is defined in the UI Control Framework
|
sl@0
|
1085 |
API.
|
sl@0
|
1086 |
|
sl@0
|
1087 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1088 |
|
sl@0
|
1089 |
@param aPriority The priority which window groups must have to be sent the
|
sl@0
|
1090 |
message.
|
sl@0
|
1091 |
@param aUid A UID which uniquely identifies the session sending the message.
|
sl@0
|
1092 |
@param aParams The message data. An unlimited amount of data can be passed
|
sl@0
|
1093 |
in this argument.
|
sl@0
|
1094 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
1095 |
codes.
|
sl@0
|
1096 |
|
sl@0
|
1097 |
@deprecated */
|
sl@0
|
1098 |
{
|
sl@0
|
1099 |
TWsClCmdSendMessageToWindowGroup params(aPriority, aUid, aParams.Length(),&aParams);
|
sl@0
|
1100 |
return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroupsPriority));
|
sl@0
|
1101 |
}
|
sl@0
|
1102 |
|
sl@0
|
1103 |
|
sl@0
|
1104 |
/** Called by the client in response to an EEventMessageReady event to receive the message data.
|
sl@0
|
1105 |
|
sl@0
|
1106 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1107 |
|
sl@0
|
1108 |
@param aUid A UID which uniquely identifies the session sending the message.
|
sl@0
|
1109 |
@param aParams The message data. An unlimited amount of data can be passed
|
sl@0
|
1110 |
in this argument.
|
sl@0
|
1111 |
@param aMessageEvent The event sent from the server to the client to identify the message.
|
sl@0
|
1112 |
@return KErrNone if successful, KErrNoMemory if there is insufficient memory for
|
sl@0
|
1113 |
the message data, otherwise another of the system-wide error codes.
|
sl@0
|
1114 |
*/
|
sl@0
|
1115 |
EXPORT_C TInt RWsSession::FetchMessage(TUid& aUid, TPtr8& aParams, const TWsEvent& aMessageEvent) const
|
sl@0
|
1116 |
{
|
sl@0
|
1117 |
const SEventMessageReady& eventMessageReady=*(SEventMessageReady*)aMessageEvent.EventData();
|
sl@0
|
1118 |
TUint8* ptr=(TUint8*)User::Alloc(eventMessageReady.iMessageParametersSize);
|
sl@0
|
1119 |
if (ptr==NULL)
|
sl@0
|
1120 |
{
|
sl@0
|
1121 |
aParams.Set(NULL, 0, 0);
|
sl@0
|
1122 |
return KErrNoMemory;
|
sl@0
|
1123 |
}
|
sl@0
|
1124 |
aUid=eventMessageReady.iMessageUid;
|
sl@0
|
1125 |
aParams.Set(ptr, eventMessageReady.iMessageParametersSize, eventMessageReady.iMessageParametersSize);
|
sl@0
|
1126 |
TWsClCmdFetchMessage outGoingParams(eventMessageReady.iWindowGroupIdentifier);
|
sl@0
|
1127 |
const TInt error=WriteReplyP(&outGoingParams, sizeof(outGoingParams), &aParams, EWsClOpFetchMessage); // must be called even if eventMessageReady.iMessageParametersSize==0
|
sl@0
|
1128 |
if (error!=KErrNone)
|
sl@0
|
1129 |
{
|
sl@0
|
1130 |
delete ptr;
|
sl@0
|
1131 |
aParams.Set(NULL, 0, 0);
|
sl@0
|
1132 |
}
|
sl@0
|
1133 |
return error;
|
sl@0
|
1134 |
}
|
sl@0
|
1135 |
|
sl@0
|
1136 |
EXPORT_C TInt RWsSession::SetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime)
|
sl@0
|
1137 |
/** Sets the system-wide keyboard repeat rate.
|
sl@0
|
1138 |
|
sl@0
|
1139 |
This is the rate at which keyboard events are generated when a key is held
|
sl@0
|
1140 |
down.
|
sl@0
|
1141 |
|
sl@0
|
1142 |
The default settings for the keyboard repeat rate are 0.3 seconds for the
|
sl@0
|
1143 |
initial delay, and 0.1 seconds for the interval between subsequent repeats.
|
sl@0
|
1144 |
However, since the settings are system-wide, these will not necessarily be
|
sl@0
|
1145 |
the current settings when an application is launched: the settings may have
|
sl@0
|
1146 |
been over-ridden by another module.
|
sl@0
|
1147 |
|
sl@0
|
1148 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1149 |
|
sl@0
|
1150 |
@param aInitialTime Time before first repeat key event
|
sl@0
|
1151 |
@param aTime Time between subsequent repeat key events
|
sl@0
|
1152 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
1153 |
codes.
|
sl@0
|
1154 |
@see GetKeyboardRepeatRate()
|
sl@0
|
1155 |
@capability WriteDeviceData */
|
sl@0
|
1156 |
{
|
sl@0
|
1157 |
TWsClCmdSetKeyboardRepeatRate repeat(aInitialTime,aTime);
|
sl@0
|
1158 |
return(WriteReply(&repeat,sizeof(repeat),EWsClOpSetKeyboardRepeatRate));
|
sl@0
|
1159 |
}
|
sl@0
|
1160 |
|
sl@0
|
1161 |
EXPORT_C void RWsSession::GetKeyboardRepeatRate(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime) const
|
sl@0
|
1162 |
/** Gets the current system-wide settings for the keyboard repeat rate.
|
sl@0
|
1163 |
|
sl@0
|
1164 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1165 |
|
sl@0
|
1166 |
@param aInitialTime Time before first repeat key event
|
sl@0
|
1167 |
@param aTime Time between subsequent repeat key events
|
sl@0
|
1168 |
@see SetKeyboardRepeatRate() */
|
sl@0
|
1169 |
{
|
sl@0
|
1170 |
TPckgBuf<SKeyRepeatSettings> settings;
|
sl@0
|
1171 |
WriteReplyP(&settings,EWsClOpGetKeyboardRepeatRate);
|
sl@0
|
1172 |
aInitialTime=settings().iInitialTime;
|
sl@0
|
1173 |
aTime=settings().iTime;
|
sl@0
|
1174 |
}
|
sl@0
|
1175 |
|
sl@0
|
1176 |
EXPORT_C TInt RWsSession::SetDoubleClick(const TTimeIntervalMicroSeconds32 &aInterval, TInt aDistance)
|
sl@0
|
1177 |
/** Sets the system-wide double click settings.
|
sl@0
|
1178 |
|
sl@0
|
1179 |
Double click distance is measured, in pixels, as the sum of the X distance
|
sl@0
|
1180 |
moved and the Y distance moved between clicks. For example: a first click
|
sl@0
|
1181 |
at 10, 20 and a second click at 13,19 gives a distance of (13-10)+(21-20) = 4.
|
sl@0
|
1182 |
|
sl@0
|
1183 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1184 |
|
sl@0
|
1185 |
@param aInterval Maximum interval between clicks that constitutes a double
|
sl@0
|
1186 |
click
|
sl@0
|
1187 |
@param aDistance Maximum distance between clicks that constitutes a double
|
sl@0
|
1188 |
click
|
sl@0
|
1189 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
1190 |
codes.
|
sl@0
|
1191 |
@see GetDoubleClickSettings()
|
sl@0
|
1192 |
@capability WriteDeviceData */
|
sl@0
|
1193 |
{
|
sl@0
|
1194 |
TWsClCmdSetDoubleClick dblClick(aInterval,aDistance);
|
sl@0
|
1195 |
return(WriteReply(&dblClick,sizeof(dblClick),EWsClOpSetDoubleClick));
|
sl@0
|
1196 |
}
|
sl@0
|
1197 |
|
sl@0
|
1198 |
EXPORT_C void RWsSession::GetDoubleClickSettings(TTimeIntervalMicroSeconds32 &aInterval, TInt &aDistance) const
|
sl@0
|
1199 |
/** Gets the current system-wide settings for pointer double clicks.
|
sl@0
|
1200 |
|
sl@0
|
1201 |
Double click distances are measured in pixels as the sum of the X distance
|
sl@0
|
1202 |
moved and the Y distance moved between clicks. For example: a first click
|
sl@0
|
1203 |
at 10, 20 and a second click at 13,19 gives a distance of (13-10)+(21-20) = 4.
|
sl@0
|
1204 |
|
sl@0
|
1205 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1206 |
|
sl@0
|
1207 |
@param aInterval Maximum interval between clicks that constitutes a double
|
sl@0
|
1208 |
click
|
sl@0
|
1209 |
@param aDistance Maximum distance between clicks that constitutes a double
|
sl@0
|
1210 |
click
|
sl@0
|
1211 |
@see SetDoubleClick() */
|
sl@0
|
1212 |
{
|
sl@0
|
1213 |
TPckgBuf<SDoubleClickSettings> settings;
|
sl@0
|
1214 |
WriteReplyP(&settings,EWsClOpGetDoubleClickSettings);
|
sl@0
|
1215 |
aInterval=settings().iInterval;
|
sl@0
|
1216 |
aDistance=settings().iDistance;
|
sl@0
|
1217 |
}
|
sl@0
|
1218 |
|
sl@0
|
1219 |
EXPORT_C void RWsSession::SetBackgroundColor(TRgb aColor)
|
sl@0
|
1220 |
/** Sets the background colour for the window server.
|
sl@0
|
1221 |
|
sl@0
|
1222 |
This background can only be seen in areas of the display that have no windows
|
sl@0
|
1223 |
on them: so for many applications it will never be seen. It affects no
|
sl@0
|
1224 |
other windows.
|
sl@0
|
1225 |
|
sl@0
|
1226 |
@param aColor Background colour */
|
sl@0
|
1227 |
{
|
sl@0
|
1228 |
WriteInt(aColor.Internal(),EWsClOpSetBackgroundColor);
|
sl@0
|
1229 |
}
|
sl@0
|
1230 |
|
sl@0
|
1231 |
EXPORT_C TRgb RWsSession::GetBackgroundColor() const
|
sl@0
|
1232 |
/** Gets the window server's background colour.
|
sl@0
|
1233 |
|
sl@0
|
1234 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1235 |
|
sl@0
|
1236 |
@return Background colour */
|
sl@0
|
1237 |
{
|
sl@0
|
1238 |
TRgb col;
|
sl@0
|
1239 |
col.SetInternal((TUint32)WriteReply(EWsClOpGetBackgroundColor));
|
sl@0
|
1240 |
return col;
|
sl@0
|
1241 |
}
|
sl@0
|
1242 |
|
sl@0
|
1243 |
EXPORT_C TInt RWsSession::RegisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface)
|
sl@0
|
1244 |
/**
|
sl@0
|
1245 |
This function registers a surface for use in composition on the screen associated
|
sl@0
|
1246 |
with this device within this session.
|
sl@0
|
1247 |
|
sl@0
|
1248 |
A surface may be registered as a separate step before it is added as a background surface
|
sl@0
|
1249 |
for a window created in the same session and that is displayed on this screen. This then
|
sl@0
|
1250 |
allows content to be provisioned before the surface is displayed for the first time, and
|
sl@0
|
1251 |
to be kept "live" while not assigned to any window.
|
sl@0
|
1252 |
|
sl@0
|
1253 |
A surface can be successfully registered in multiple sessions and on multiple screens, but
|
sl@0
|
1254 |
only once for a given combination of session and screen.
|
sl@0
|
1255 |
|
sl@0
|
1256 |
The client should call UnregisterSurface when finished with the surface registered using
|
sl@0
|
1257 |
this method. The surface will be automatically unregistered if necessary when the session closes.
|
sl@0
|
1258 |
|
sl@0
|
1259 |
@param aScreenNumber The screen to which to register.
|
sl@0
|
1260 |
@param aSurface The surface to be registered.
|
sl@0
|
1261 |
@return KErrNone on success or a system-wide error code
|
sl@0
|
1262 |
- KErrNoMemory if registration fails due to low memory.
|
sl@0
|
1263 |
- KErrInUse if the surface ID is already registered for this session and screen.
|
sl@0
|
1264 |
@pre aSurface has been initialized and is compatible with being composited on this device's
|
sl@0
|
1265 |
screen; otherwise the client thread is panicked with code EWservPanicIncompatibleSurface.
|
sl@0
|
1266 |
@pre aScreenNumber is an acceptable screen number. Otherwise the client thread is panicked
|
sl@0
|
1267 |
with code EWservPanicScreenNumber.
|
sl@0
|
1268 |
@post The surface has been successfully registered for use in composition on this device's screen.
|
sl@0
|
1269 |
@post The surface’s content is in an undefined state, but the surface remains initialized.
|
sl@0
|
1270 |
@post This function always causes a flush of the WServ session buffer.
|
sl@0
|
1271 |
@see UnregisterSurface
|
sl@0
|
1272 |
|
sl@0
|
1273 |
@publishedPartner
|
sl@0
|
1274 |
@prototype
|
sl@0
|
1275 |
*/
|
sl@0
|
1276 |
{
|
sl@0
|
1277 |
TWsClCmdSurfaceRegister surfaceRegister(aScreenNumber,aSurface);
|
sl@0
|
1278 |
return(WriteReply(&surfaceRegister,sizeof(surfaceRegister),EWsClOpRegisterSurface));
|
sl@0
|
1279 |
}
|
sl@0
|
1280 |
|
sl@0
|
1281 |
EXPORT_C void RWsSession::UnregisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface)
|
sl@0
|
1282 |
/**
|
sl@0
|
1283 |
This function removes the surface from the session's register of surfaces that are used in
|
sl@0
|
1284 |
composition on the screen associated with this device.
|
sl@0
|
1285 |
|
sl@0
|
1286 |
Calling this function with a surface that is not currently explicitly registered on this screen
|
sl@0
|
1287 |
in this session by RegisterSurface() will have no effect.
|
sl@0
|
1288 |
|
sl@0
|
1289 |
Calling this function while the surface is still assigned to a window will have no immediate
|
sl@0
|
1290 |
effect. However, when the surface is unassigned from the window, and is not held by another
|
sl@0
|
1291 |
session it will then be automatically unregistered.
|
sl@0
|
1292 |
|
sl@0
|
1293 |
An unregistered surface can be re-registered again, if necessary.
|
sl@0
|
1294 |
|
sl@0
|
1295 |
This function does not explicitly force a flush of the WServ session buffer. Internal reference
|
sl@0
|
1296 |
counting will keep the Surface ID "live" until the client code has released any handles and
|
sl@0
|
1297 |
provisioners, and WServ processes the buffered remove command, and the final frame containing
|
sl@0
|
1298 |
this surface has finished being displayed.
|
sl@0
|
1299 |
|
sl@0
|
1300 |
@param aScreenNumber The screen to which to unregister.
|
sl@0
|
1301 |
@param aSurface The surface to be unregistered.
|
sl@0
|
1302 |
@pre aSurface has been initialized; otherwise the client thread is panicked with
|
sl@0
|
1303 |
code EWservPanicIncompatibleSurface.
|
sl@0
|
1304 |
@pre aScreenNumber is an acceptable screen number. Otherwise the client thread is
|
sl@0
|
1305 |
panicked with code EWservPanicScreenNumber.
|
sl@0
|
1306 |
@post If no window is using the surface, then it is unregistered on this screen in this session.
|
sl@0
|
1307 |
@see RegisterSurface
|
sl@0
|
1308 |
|
sl@0
|
1309 |
@publishedPartner
|
sl@0
|
1310 |
@prototype
|
sl@0
|
1311 |
*/
|
sl@0
|
1312 |
{
|
sl@0
|
1313 |
TWsClCmdSurfaceRegister surfaceRegister(aScreenNumber,aSurface);
|
sl@0
|
1314 |
Write(&surfaceRegister,sizeof(surfaceRegister),EWsClOpUnregisterSurface);
|
sl@0
|
1315 |
}
|
sl@0
|
1316 |
|
sl@0
|
1317 |
EXPORT_C TInt RWsSession::PreferredSurfaceConfigurationSize() const
|
sl@0
|
1318 |
/**
|
sl@0
|
1319 |
Returns the window server's preferred size for the TSurfaceConfiguration object, used
|
sl@0
|
1320 |
for RWindow::SetBackgroundSurface.
|
sl@0
|
1321 |
|
sl@0
|
1322 |
Client code is permitted to present any defined version of the TSurfaceConfiguration
|
sl@0
|
1323 |
class, distinguished by its size. If smaller, earlier versions are presented, the server
|
sl@0
|
1324 |
will substitute the stated default values. If later, larger, structures are presented to
|
sl@0
|
1325 |
the server then the additional data will be ignored.
|
sl@0
|
1326 |
|
sl@0
|
1327 |
However, by using this method, the client can fine-tune its use of the interface, avoiding
|
sl@0
|
1328 |
generating attribute data that may not be supported, or reduce the options presented to users.
|
sl@0
|
1329 |
|
sl@0
|
1330 |
@return The preferred size in bytes
|
sl@0
|
1331 |
- Should match one of the TSurfaceConfiguration classes defined in the client's header
|
sl@0
|
1332 |
file, or be larger than them all, indicating a version newer that the client is compiled for.
|
sl@0
|
1333 |
- If the server does not support surface configuration
|
sl@0
|
1334 |
- Return KErrNotSupported.
|
sl@0
|
1335 |
|
sl@0
|
1336 |
@publishedPartner
|
sl@0
|
1337 |
@prototype
|
sl@0
|
1338 |
*/
|
sl@0
|
1339 |
{
|
sl@0
|
1340 |
return sizeof(TSurfaceConfiguration);
|
sl@0
|
1341 |
}
|
sl@0
|
1342 |
|
sl@0
|
1343 |
EXPORT_C TInt RWsSession::SetSystemPointerCursor(const RWsPointerCursor &aPointerCursor,TInt aCursorNumber)
|
sl@0
|
1344 |
/** Sets a cursor in the system pointer cursor list.
|
sl@0
|
1345 |
|
sl@0
|
1346 |
To gain access to the list, the client must first call ClaimSystemPointerCursorList().
|
sl@0
|
1347 |
|
sl@0
|
1348 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1349 |
|
sl@0
|
1350 |
@param aPointerCursor Pointer cursor to set in the list
|
sl@0
|
1351 |
@param aCursorNumber Cursor number in the list
|
sl@0
|
1352 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
1353 |
codes. */
|
sl@0
|
1354 |
{
|
sl@0
|
1355 |
TWsClCmdSetSystemPointerCursor setpc;
|
sl@0
|
1356 |
setpc.handle=aPointerCursor.WsHandle();
|
sl@0
|
1357 |
setpc.number=aCursorNumber;
|
sl@0
|
1358 |
return(WriteReply(&setpc,sizeof(setpc),EWsClOpSetSystemPointerCursor));
|
sl@0
|
1359 |
}
|
sl@0
|
1360 |
|
sl@0
|
1361 |
EXPORT_C void RWsSession::ClearSystemPointerCursor(TInt aCursorNumber)
|
sl@0
|
1362 |
/** Clears a system pointer cursor from the list.
|
sl@0
|
1363 |
|
sl@0
|
1364 |
Before calling this function, the client must first gain access to the list
|
sl@0
|
1365 |
by calling ClaimSystemPointerCursorList().
|
sl@0
|
1366 |
|
sl@0
|
1367 |
@param aCursorNumber Cursor number to clear */
|
sl@0
|
1368 |
{
|
sl@0
|
1369 |
WriteInt(aCursorNumber,EWsClOpClearSystemPointerCursor);
|
sl@0
|
1370 |
}
|
sl@0
|
1371 |
|
sl@0
|
1372 |
EXPORT_C TInt RWsSession::ClaimSystemPointerCursorList()
|
sl@0
|
1373 |
/** Claims the system pointer cursor list.
|
sl@0
|
1374 |
|
sl@0
|
1375 |
You must call this function before you can call SetSystemPointerCursor() or
|
sl@0
|
1376 |
ClearSystemPointerCursor().
|
sl@0
|
1377 |
|
sl@0
|
1378 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1379 |
|
sl@0
|
1380 |
@return KErrNone if successful, KErrInUse if another client is already using
|
sl@0
|
1381 |
the system pointer cursor list, otherwise another of the system-wide error
|
sl@0
|
1382 |
codes.
|
sl@0
|
1383 |
@see FreeSystemPointerCursorList()
|
sl@0
|
1384 |
@capability WriteDeviceData */
|
sl@0
|
1385 |
{
|
sl@0
|
1386 |
return(WriteReply(EWsClOpClaimSystemPointerCursorList));
|
sl@0
|
1387 |
}
|
sl@0
|
1388 |
|
sl@0
|
1389 |
EXPORT_C void RWsSession::FreeSystemPointerCursorList()
|
sl@0
|
1390 |
/** Releases the system pointer cursor list and deletes all the entries in it.
|
sl@0
|
1391 |
|
sl@0
|
1392 |
A client should call this function when it no longer needs the system pointer
|
sl@0
|
1393 |
cursor list. */
|
sl@0
|
1394 |
{
|
sl@0
|
1395 |
if (iWsHandle)
|
sl@0
|
1396 |
Write(EWsClOpFreeSystemPointerCursorList);
|
sl@0
|
1397 |
}
|
sl@0
|
1398 |
|
sl@0
|
1399 |
EXPORT_C TInt RWsSession::SetCustomTextCursor(TInt aIdentifier, const TArray<TSpriteMember>& aSpriteMemberArray, TUint aSpriteFlags, TCustomTextCursorAlignment aAlignment)
|
sl@0
|
1400 |
/** Adds a custom text cursor to the server's list of cursors.
|
sl@0
|
1401 |
|
sl@0
|
1402 |
After adding a custom text cursor, it can be selected for use by calling
|
sl@0
|
1403 |
RWindowGroup::SetTextCursor().
|
sl@0
|
1404 |
|
sl@0
|
1405 |
Note that once added, custom text cursors cannot be removed.
|
sl@0
|
1406 |
|
sl@0
|
1407 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1408 |
|
sl@0
|
1409 |
@param aIdentifier The unique identifier for the cursor.
|
sl@0
|
1410 |
@param aSpriteMemberArray An array defining the bitmap(s) that make up the
|
sl@0
|
1411 |
cursor. Typically, this array will contain a single element for a static,
|
sl@0
|
1412 |
non-animated cursor.
|
sl@0
|
1413 |
@param aSpriteFlags Flags affecting the sprite behaviour. For possible values
|
sl@0
|
1414 |
see TSpriteFlags.
|
sl@0
|
1415 |
@param aAlignment The vertical alignment of the cursor sprite.
|
sl@0
|
1416 |
@return KErrNone if successful, KErrAlreadyExists if a custom cursor with the
|
sl@0
|
1417 |
specified identifier already exists, or another of the standard system wide
|
sl@0
|
1418 |
error codes. */
|
sl@0
|
1419 |
{
|
sl@0
|
1420 |
// Create the cursor
|
sl@0
|
1421 |
TWsClCmdCustomTextCursorData params;
|
sl@0
|
1422 |
params.identifier = aIdentifier;
|
sl@0
|
1423 |
params.flags = aSpriteFlags;
|
sl@0
|
1424 |
params.alignment = aAlignment;
|
sl@0
|
1425 |
const TInt handle = iBuffer->WriteReplyWs(¶ms, sizeof(params), EWsClOpStartSetCustomTextCursor);
|
sl@0
|
1426 |
if (handle < 0)
|
sl@0
|
1427 |
{
|
sl@0
|
1428 |
return handle; // Failed to create
|
sl@0
|
1429 |
}
|
sl@0
|
1430 |
|
sl@0
|
1431 |
RWsCustomTextCursor cursor(*this, handle);
|
sl@0
|
1432 |
TInt err = KErrNone;
|
sl@0
|
1433 |
for (TInt ii = 0; ii < aSpriteMemberArray.Count(); ii++)
|
sl@0
|
1434 |
{
|
sl@0
|
1435 |
err = cursor.AppendMember(aSpriteMemberArray[ii]);
|
sl@0
|
1436 |
if (err != KErrNone)
|
sl@0
|
1437 |
{
|
sl@0
|
1438 |
break;
|
sl@0
|
1439 |
}
|
sl@0
|
1440 |
}
|
sl@0
|
1441 |
cursor.Close();
|
sl@0
|
1442 |
err = iBuffer->WriteReplyWs(&err, sizeof(err), EWsClOpCompleteSetCustomTextCursor);
|
sl@0
|
1443 |
return err;
|
sl@0
|
1444 |
}
|
sl@0
|
1445 |
|
sl@0
|
1446 |
EXPORT_C TInt RWsSession::SetModifierState(TEventModifier aModifier,TModifierState aState)
|
sl@0
|
1447 |
/** Sets the state of the modifier keys.
|
sl@0
|
1448 |
|
sl@0
|
1449 |
This function is typically used for permanent modifier states such as Caps
|
sl@0
|
1450 |
Lock or Num Lock, but other possible uses include on-screen function key simulation,
|
sl@0
|
1451 |
or the implementation of a Shift Lock key.
|
sl@0
|
1452 |
|
sl@0
|
1453 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1454 |
|
sl@0
|
1455 |
@param aModifier Modifier to set.
|
sl@0
|
1456 |
@param aState Modifier state.
|
sl@0
|
1457 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
1458 |
codes.
|
sl@0
|
1459 |
@see GetModifierState()
|
sl@0
|
1460 |
@capability WriteDeviceData */
|
sl@0
|
1461 |
{
|
sl@0
|
1462 |
TWsClCmdSetModifierState params;
|
sl@0
|
1463 |
params.modifier=aModifier;
|
sl@0
|
1464 |
params.state=aState;
|
sl@0
|
1465 |
return(WriteReply(¶ms,sizeof(params),EWsClOpSetModifierState));
|
sl@0
|
1466 |
}
|
sl@0
|
1467 |
|
sl@0
|
1468 |
EXPORT_C TInt RWsSession::GetModifierState() const
|
sl@0
|
1469 |
/** Gets the state of the modifier keys.
|
sl@0
|
1470 |
|
sl@0
|
1471 |
The state of each modifier key (defined in TEventModifier) is returned in
|
sl@0
|
1472 |
a bitmask.
|
sl@0
|
1473 |
|
sl@0
|
1474 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1475 |
|
sl@0
|
1476 |
@return Modifier state
|
sl@0
|
1477 |
@see TEventModifier */
|
sl@0
|
1478 |
{
|
sl@0
|
1479 |
return(WriteReply(EWsClOpGetModifierState));
|
sl@0
|
1480 |
}
|
sl@0
|
1481 |
|
sl@0
|
1482 |
EXPORT_C TInt RWsSession::HeapCount() const
|
sl@0
|
1483 |
/** Gets the heap count.
|
sl@0
|
1484 |
|
sl@0
|
1485 |
This function calls RHeap::Count() on the window server's heap, after throwing
|
sl@0
|
1486 |
away all the temporary objects allocated for each window.
|
sl@0
|
1487 |
|
sl@0
|
1488 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1489 |
|
sl@0
|
1490 |
@return The window server's heap count. */
|
sl@0
|
1491 |
{
|
sl@0
|
1492 |
return(WriteReply(EWsClOpHeapCount));
|
sl@0
|
1493 |
}
|
sl@0
|
1494 |
|
sl@0
|
1495 |
EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TInt aParam) const
|
sl@0
|
1496 |
{
|
sl@0
|
1497 |
TWsClCmdDebugInfo params(aFunction,aParam);
|
sl@0
|
1498 |
return(WriteReply(¶ms,sizeof(params),EWsClOpDebugInfo));
|
sl@0
|
1499 |
}
|
sl@0
|
1500 |
|
sl@0
|
1501 |
EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TDes8& aReturnBuf, TInt aParam) const
|
sl@0
|
1502 |
{
|
sl@0
|
1503 |
TWsClCmdDebugInfo params(aFunction,aParam);
|
sl@0
|
1504 |
return(WriteReplyP(¶ms,sizeof(params),TWriteDescriptorType(&aReturnBuf),EWsClOpDebugInfoReplyBuf));
|
sl@0
|
1505 |
}
|
sl@0
|
1506 |
|
sl@0
|
1507 |
EXPORT_C TInt RWsSession::ResourceCount() const
|
sl@0
|
1508 |
/** Gets the number of objects that the server has allocated for that client.
|
sl@0
|
1509 |
|
sl@0
|
1510 |
This function can be used to check that the client has correctly cleaned up
|
sl@0
|
1511 |
all of its objects.
|
sl@0
|
1512 |
|
sl@0
|
1513 |
It always causes a flush of the window server buffer.
|
sl@0
|
1514 |
|
sl@0
|
1515 |
@return The number of resources allocated to the client. */
|
sl@0
|
1516 |
{
|
sl@0
|
1517 |
return(iWsHandle ? WriteReply(EWsClOpResourceCount) : 0);
|
sl@0
|
1518 |
}
|
sl@0
|
1519 |
|
sl@0
|
1520 |
EXPORT_C void RWsSession::PasswordEntered()
|
sl@0
|
1521 |
/** Disables the window server password mode.
|
sl@0
|
1522 |
|
sl@0
|
1523 |
This function must be called by the session which owns the password window
|
sl@0
|
1524 |
when the correct machine password has been entered.
|
sl@0
|
1525 |
|
sl@0
|
1526 |
@deprecated */
|
sl@0
|
1527 |
{
|
sl@0
|
1528 |
Write(EWsClOpPasswordEntered);
|
sl@0
|
1529 |
}
|
sl@0
|
1530 |
|
sl@0
|
1531 |
EXPORT_C void RWsSession::HeapSetFail(TInt aTAllocFail,TInt aValue)
|
sl@0
|
1532 |
/** Sets the heap failure mode in the window server.
|
sl@0
|
1533 |
|
sl@0
|
1534 |
The release version of the base does not support simulated heap failure functionality,
|
sl@0
|
1535 |
and the result of this function is additional error messages. In the debug
|
sl@0
|
1536 |
version the clients are notified of the simulated failure and handle it. See
|
sl@0
|
1537 |
RHeap::__DbgSetAllocFail() for more information.
|
sl@0
|
1538 |
|
sl@0
|
1539 |
Note:
|
sl@0
|
1540 |
|
sl@0
|
1541 |
It is unlikely, but possible to create a ROM with a mixture of Release and
|
sl@0
|
1542 |
Debug versions of the Base and Window Server DLLs, which results in different
|
sl@0
|
1543 |
behaviour to that described above. If you run a debug Window Server with a
|
sl@0
|
1544 |
release version of the Base, then calling this function will result in neither
|
sl@0
|
1545 |
extra error messages (e.g. EDrawingRegion) nor simulated heap failures. However
|
sl@0
|
1546 |
if you have a release Window Server with a debug Base then you will get both
|
sl@0
|
1547 |
simulated heap failures and the extra error messages.
|
sl@0
|
1548 |
|
sl@0
|
1549 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1550 |
|
sl@0
|
1551 |
@param aTAllocFail A value from the RHeap::TAllocFail enumeration which
|
sl@0
|
1552 |
indicates how to simulate heap allocation failure.
|
sl@0
|
1553 |
@param aValue The rate of failure; when aType is RHeap::EDeterministic, heap
|
sl@0
|
1554 |
allocation fails every aRate attempt
|
sl@0
|
1555 |
@see RHeap::__DbgSetAllocFail()
|
sl@0
|
1556 |
@capability WriteDeviceData */
|
sl@0
|
1557 |
{
|
sl@0
|
1558 |
TWsClCmdHeapSetFail params;
|
sl@0
|
1559 |
params.type=(RHeap::TAllocFail)aTAllocFail;
|
sl@0
|
1560 |
params.value=aValue;
|
sl@0
|
1561 |
params.burst=-1;
|
sl@0
|
1562 |
WriteReply(¶ms,sizeof(params),EWsClOpHeapSetFail);
|
sl@0
|
1563 |
}
|
sl@0
|
1564 |
|
sl@0
|
1565 |
EXPORT_C void RWsSession::HeapSetBurstFail(TInt aTAllocFail,TInt aRate,TInt aBurst)
|
sl@0
|
1566 |
/** Sets the heap failure burst mode in the window server.
|
sl@0
|
1567 |
|
sl@0
|
1568 |
The release version of the base does not support simulated heap failure functionality,
|
sl@0
|
1569 |
and the result of this function is additional error messages. In the debug
|
sl@0
|
1570 |
version the clients are notified of the simulated failure and handle it. See
|
sl@0
|
1571 |
RHeap::__DbgSetBurstAllocFail() for more information.
|
sl@0
|
1572 |
|
sl@0
|
1573 |
Note:
|
sl@0
|
1574 |
|
sl@0
|
1575 |
It is unlikely, but possible to create a ROM with a mixture of Release and
|
sl@0
|
1576 |
Debug versions of the Base and Window Server DLLs, which results in different
|
sl@0
|
1577 |
behaviour to that described above. If you run a debug Window Server with a
|
sl@0
|
1578 |
release version of the Base, then calling this function will result in neither
|
sl@0
|
1579 |
extra error messages (e.g. EDrawingRegion) nor simulated heap failures. However
|
sl@0
|
1580 |
if you have a release Window Server with a debug Base then you will get both
|
sl@0
|
1581 |
simulated heap failures and the extra error messages.
|
sl@0
|
1582 |
|
sl@0
|
1583 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1584 |
|
sl@0
|
1585 |
@param aTAllocFail A value from the RHeap::TAllocFail enumeration which
|
sl@0
|
1586 |
indicates how to simulate heap allocation failure.
|
sl@0
|
1587 |
@param aRate The rate of failure; when aType is RHeap::EDeterministic, heap
|
sl@0
|
1588 |
allocation fails every aRate attempt.
|
sl@0
|
1589 |
@param aBurst The number of consecutive allocations that should fail.
|
sl@0
|
1590 |
@see RHeap::__DbgSetBurstAllocFail()
|
sl@0
|
1591 |
@capability WriteDeviceData */
|
sl@0
|
1592 |
{
|
sl@0
|
1593 |
TWsClCmdHeapSetFail params;
|
sl@0
|
1594 |
params.type=(RHeap::TAllocFail)aTAllocFail;
|
sl@0
|
1595 |
params.value=aRate;
|
sl@0
|
1596 |
params.burst=aBurst;
|
sl@0
|
1597 |
WriteReply(¶ms,sizeof(params),EWsClOpHeapSetFail);
|
sl@0
|
1598 |
}
|
sl@0
|
1599 |
|
sl@0
|
1600 |
EXPORT_C TInt RWsSession::RequestOffEvents(TBool aOn,RWindowTreeNode *aWin/*=NULL*/)
|
sl@0
|
1601 |
/** Requests the window server to send OFF events to a window.
|
sl@0
|
1602 |
|
sl@0
|
1603 |
After calling this function, the window server sends OFF events to the window
|
sl@0
|
1604 |
when an event occurs which requires power down, rather than handling powering
|
sl@0
|
1605 |
down itself.
|
sl@0
|
1606 |
|
sl@0
|
1607 |
Notes:
|
sl@0
|
1608 |
|
sl@0
|
1609 |
Any client can ask for OFF events, but only one window in the system can be
|
sl@0
|
1610 |
set to receive them. If this function is called when another window is set
|
sl@0
|
1611 |
to receive OFF events then the client will be panicked. The exception is the
|
sl@0
|
1612 |
shell, which is allowed to take receipt of OFF events from other clients.
|
sl@0
|
1613 |
|
sl@0
|
1614 |
The window server identifies the shell client by comparing the process name
|
sl@0
|
1615 |
of the client with the process name of the shell. Only the first client created
|
sl@0
|
1616 |
by the shell is guaranteed to have the extra shell client privileges.
|
sl@0
|
1617 |
|
sl@0
|
1618 |
If the shell dies or terminates just before the action requiring power down
|
sl@0
|
1619 |
happens then the window server will handle it rather than passing it on to
|
sl@0
|
1620 |
the shell.
|
sl@0
|
1621 |
|
sl@0
|
1622 |
The window server has a queue of messages that it is waiting to send to clients.
|
sl@0
|
1623 |
If the shell's client's queue is full and the window server cannot make room
|
sl@0
|
1624 |
for the OFF message then it will power down the machine itself.
|
sl@0
|
1625 |
|
sl@0
|
1626 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1627 |
|
sl@0
|
1628 |
@param aOn ETrue to get the window server to send EEventShellSwitchOff messages
|
sl@0
|
1629 |
to the shell (rather than powering down). EFalse makes the window server switch
|
sl@0
|
1630 |
back to powering down the machine itself.
|
sl@0
|
1631 |
@param aWin The handle to the window or window group of the shell to which
|
sl@0
|
1632 |
the message is to be sent. This may be NULL only if aOn=EFalse, in other words,
|
sl@0
|
1633 |
the window server is handling power down itself. If aOn=ETrue then this must not
|
sl@0
|
1634 |
be NULL, or the Window Server will panic the shell. Note that as far as the window
|
sl@0
|
1635 |
server is concerned the handle must exist when this function is called.
|
sl@0
|
1636 |
@return KErrNone if successful, otherwise one of the system-wide error codes.
|
sl@0
|
1637 |
@panic WSERV 51 aOn is true, but no window was specified (aWin is NULL).
|
sl@0
|
1638 |
@capability PowerMgmt */
|
sl@0
|
1639 |
{
|
sl@0
|
1640 |
TWsClCmdOffEventsToShell OffEventsToShell(aOn,(aWin ? aWin->WsHandle():0));
|
sl@0
|
1641 |
return WriteReply(&OffEventsToShell,sizeof(OffEventsToShell),EWsClOpSendOffEventsToShell);
|
sl@0
|
1642 |
}
|
sl@0
|
1643 |
|
sl@0
|
1644 |
EXPORT_C TDisplayMode RWsSession::GetDefModeMaxNumColors(TInt& aColor,TInt& aGray) const
|
sl@0
|
1645 |
/** Gets the number of colours available in the richest supported colour mode, the
|
sl@0
|
1646 |
number of greys available in the richest grey mode, and returns the default
|
sl@0
|
1647 |
display mode.
|
sl@0
|
1648 |
|
sl@0
|
1649 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1650 |
|
sl@0
|
1651 |
@param aColor The number of colours in the richest supported colour mode.
|
sl@0
|
1652 |
@param aGray The number of greys in the richest supported grey mode.
|
sl@0
|
1653 |
@return The default display mode. */
|
sl@0
|
1654 |
{
|
sl@0
|
1655 |
return GetDefModeMaxNumColors(KDummyScreenNumber,aColor,aGray);
|
sl@0
|
1656 |
}
|
sl@0
|
1657 |
|
sl@0
|
1658 |
EXPORT_C TDisplayMode RWsSession::GetDefModeMaxNumColors(TInt aScreenNumber,TInt& aColor,TInt& aGray) const
|
sl@0
|
1659 |
/** Gets the number of colours available in the richest supported colour mode, the
|
sl@0
|
1660 |
number of greys available in the richest grey mode, and returns the default
|
sl@0
|
1661 |
display mode, on the specified screen.
|
sl@0
|
1662 |
|
sl@0
|
1663 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1664 |
|
sl@0
|
1665 |
@param aScreenNumber specifies the screen.
|
sl@0
|
1666 |
@param aColor The number of colours in the richest supported colour mode.
|
sl@0
|
1667 |
@param aGray The number of greys in the richest supported grey mode.
|
sl@0
|
1668 |
@return The default display mode. */
|
sl@0
|
1669 |
{
|
sl@0
|
1670 |
TPckgBuf<SDefModeMaxNumColors> colors;
|
sl@0
|
1671 |
WriteReplyIntP(aScreenNumber,&colors,EWsClOpGetDefModeMaxNumColors);
|
sl@0
|
1672 |
aColor=colors().iColors;
|
sl@0
|
1673 |
aGray=colors().iGrays;
|
sl@0
|
1674 |
return colors().iDisplayMode;
|
sl@0
|
1675 |
}
|
sl@0
|
1676 |
|
sl@0
|
1677 |
#define MODE_TO_FLAG(x) 1<<(x-1)
|
sl@0
|
1678 |
|
sl@0
|
1679 |
LOCAL_C void HandleColorMode(CArrayFix<TInt>* aModeList,TUint aModeBits, TInt& aNumberOfModes, TInt aMode)
|
sl@0
|
1680 |
{
|
sl@0
|
1681 |
if (aModeBits&(MODE_TO_FLAG(aMode)))
|
sl@0
|
1682 |
{
|
sl@0
|
1683 |
if (aModeList!=NULL)
|
sl@0
|
1684 |
{
|
sl@0
|
1685 |
(*aModeList)[aNumberOfModes]=aMode;
|
sl@0
|
1686 |
}
|
sl@0
|
1687 |
++aNumberOfModes;
|
sl@0
|
1688 |
}
|
sl@0
|
1689 |
}
|
sl@0
|
1690 |
|
sl@0
|
1691 |
LOCAL_C TInt DoGetColorModeList(CArrayFix<TInt>* aModeList,TUint aModeBits)
|
sl@0
|
1692 |
{
|
sl@0
|
1693 |
TInt numberOfModes=0;
|
sl@0
|
1694 |
for (TInt mode=EGray2; mode<=EColor256; ++mode)
|
sl@0
|
1695 |
{
|
sl@0
|
1696 |
HandleColorMode(aModeList,aModeBits,numberOfModes,mode);
|
sl@0
|
1697 |
}
|
sl@0
|
1698 |
HandleColorMode(aModeList,aModeBits,numberOfModes,EColor4K);
|
sl@0
|
1699 |
HandleColorMode(aModeList,aModeBits,numberOfModes,EColor64K);
|
sl@0
|
1700 |
HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16M);
|
sl@0
|
1701 |
HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MU);
|
sl@0
|
1702 |
HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MA);
|
sl@0
|
1703 |
HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MAP);
|
sl@0
|
1704 |
return numberOfModes;
|
sl@0
|
1705 |
}
|
sl@0
|
1706 |
|
sl@0
|
1707 |
EXPORT_C TInt RWsSession::GetColorModeList(CArrayFixFlat<TInt> *aModeList) const
|
sl@0
|
1708 |
/** Gets the list of available colour modes.
|
sl@0
|
1709 |
|
sl@0
|
1710 |
Note that this function should usually be called within User::LeaveIfError().
|
sl@0
|
1711 |
The only time that an error can be generated is when the array gets resized
|
sl@0
|
1712 |
to the number of display modes. Thus if you make the size of your array equal
|
sl@0
|
1713 |
to the maximum number of display modes over all hardware (this is the number
|
sl@0
|
1714 |
of different values in TDisplayMode) then this function will never leave.
|
sl@0
|
1715 |
|
sl@0
|
1716 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1717 |
|
sl@0
|
1718 |
@param aModeList On return, contains a TDisplayMode entry for each of the
|
sl@0
|
1719 |
available display modes. Note that the array's contents are deleted prior
|
sl@0
|
1720 |
to filling with display mode information.
|
sl@0
|
1721 |
@return The number of color modes if the parameter is passed NULL. Otherwise KErrNone or KErrNoMemory. */
|
sl@0
|
1722 |
{
|
sl@0
|
1723 |
return GetColorModeList(KDummyScreenNumber,aModeList);
|
sl@0
|
1724 |
}
|
sl@0
|
1725 |
|
sl@0
|
1726 |
EXPORT_C TInt RWsSession::GetColorModeList(TInt aScreenNumber,CArrayFixFlat<TInt>* aModeList) const
|
sl@0
|
1727 |
/** Gets the list of available colour modes on a particular screen.
|
sl@0
|
1728 |
|
sl@0
|
1729 |
Note that this function should usually be called within User::LeaveIfError().
|
sl@0
|
1730 |
The only time that an error can be generated is when the array gets resized
|
sl@0
|
1731 |
to the number of display modes. Thus if you make the size of your array equal
|
sl@0
|
1732 |
to the maximum number of display modes over all hardware (this is the number
|
sl@0
|
1733 |
of different values in TDisplayMode) then this function will never leave.
|
sl@0
|
1734 |
|
sl@0
|
1735 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1736 |
|
sl@0
|
1737 |
@param aModeList On return, contains a TDisplayMode entry for each of the
|
sl@0
|
1738 |
available display modes. Note that the array's contents are deleted prior
|
sl@0
|
1739 |
to filling with display mode information.
|
sl@0
|
1740 |
@param aScreenNumber specifies the screen.
|
sl@0
|
1741 |
@return The number of color modes if the parameter is passed NULL. Otherwise KErrNone or KErrNoMemory. */
|
sl@0
|
1742 |
{
|
sl@0
|
1743 |
const TUint modeList=STATIC_CAST(TUint,WriteReplyInt(aScreenNumber,EWsClOpGetColorModeList));
|
sl@0
|
1744 |
const TInt numberOfModes=DoGetColorModeList(NULL, modeList);
|
sl@0
|
1745 |
if (aModeList==NULL)
|
sl@0
|
1746 |
{
|
sl@0
|
1747 |
return numberOfModes;
|
sl@0
|
1748 |
}
|
sl@0
|
1749 |
TRAPD(error,aModeList->ResizeL(numberOfModes));
|
sl@0
|
1750 |
if (error!=KErrNone)
|
sl@0
|
1751 |
{
|
sl@0
|
1752 |
return error;
|
sl@0
|
1753 |
}
|
sl@0
|
1754 |
DoGetColorModeList(aModeList, modeList);
|
sl@0
|
1755 |
return KErrNone;
|
sl@0
|
1756 |
}
|
sl@0
|
1757 |
|
sl@0
|
1758 |
EXPORT_C void RWsSession::SetPointerCursorArea(const TRect& aArea)
|
sl@0
|
1759 |
/**
|
sl@0
|
1760 |
@publishedPartner
|
sl@0
|
1761 |
@released
|
sl@0
|
1762 |
|
sl@0
|
1763 |
Sets the area of the screen in which the virtual cursor can be used while in
|
sl@0
|
1764 |
relative mouse mode, for the first screen display mode.
|
sl@0
|
1765 |
|
sl@0
|
1766 |
This function sets the area for the first screen mode - the one with index
|
sl@0
|
1767 |
0, which in most devices will be the only screen mode. The other function
|
sl@0
|
1768 |
overload can be used to set the screen area for other modes. The area is set
|
sl@0
|
1769 |
and stored independently on each screen mode, so that it is not necessary
|
sl@0
|
1770 |
to call this function again when switching back to the first screen mode.
|
sl@0
|
1771 |
|
sl@0
|
1772 |
The default area is the full digitiser area. When you set the area it will
|
sl@0
|
1773 |
come into immediate affect, i.e. if necessary the current pointer position
|
sl@0
|
1774 |
will be updated to be within the new area.
|
sl@0
|
1775 |
|
sl@0
|
1776 |
Notes:
|
sl@0
|
1777 |
|
sl@0
|
1778 |
Relative mouse mode is where the events received from the base by window server
|
sl@0
|
1779 |
are deltas from the last position of the pointer, as opposed to absolute co-ordinates.
|
sl@0
|
1780 |
|
sl@0
|
1781 |
This function is honoured even if there is a mouse or pen (e.g. on the emulator),
|
sl@0
|
1782 |
by mapping the co-ordinates of where you click into the area set using this
|
sl@0
|
1783 |
function. However the function does not restrict clicks outside of the 'drawing
|
sl@0
|
1784 |
area' on the Emulator, to allow you to select items on the fascia.
|
sl@0
|
1785 |
|
sl@0
|
1786 |
@param aArea The area of the screen in which the virtual cursor can be used.
|
sl@0
|
1787 |
@capability WriteDeviceData */
|
sl@0
|
1788 |
{
|
sl@0
|
1789 |
SetPointerCursorArea(0,aArea);
|
sl@0
|
1790 |
}
|
sl@0
|
1791 |
|
sl@0
|
1792 |
EXPORT_C void RWsSession::SetPointerCursorArea(TInt aScreenSizeMode,const TRect& aArea)
|
sl@0
|
1793 |
/** Sets the area of the screen in which the virtual cursor can be used while in
|
sl@0
|
1794 |
relative mouse mode, for a specified screen display mode.
|
sl@0
|
1795 |
|
sl@0
|
1796 |
The default area is the full digitiser area for the given mode. When you set
|
sl@0
|
1797 |
the area it will come into immediate affect, i.e. if necessary the current
|
sl@0
|
1798 |
pointer position will be updated to be within the new area.
|
sl@0
|
1799 |
|
sl@0
|
1800 |
The area is set and stored independently on each screen mode, so that it is
|
sl@0
|
1801 |
not necessary to call this function again when switching back to a mode.
|
sl@0
|
1802 |
|
sl@0
|
1803 |
Notes:
|
sl@0
|
1804 |
|
sl@0
|
1805 |
Relative mouse mode is where the events received from the base by window server
|
sl@0
|
1806 |
are deltas from the last position of the pointer, as opposed to absolute co-ordinates.
|
sl@0
|
1807 |
|
sl@0
|
1808 |
The previous function overload may be used to set the screen area for only
|
sl@0
|
1809 |
the first mode.
|
sl@0
|
1810 |
|
sl@0
|
1811 |
This function is honoured even if there is a mouse or pen (e.g. on the emulator),
|
sl@0
|
1812 |
by mapping the co-ordinates of where you click into the area set using this
|
sl@0
|
1813 |
function. However the function does not restrict clicks outside of the 'drawing
|
sl@0
|
1814 |
area' on the Emulator, to allow you to select items on the fascia.
|
sl@0
|
1815 |
|
sl@0
|
1816 |
@param aScreenSizeMode The screen mode to which the new area applies.
|
sl@0
|
1817 |
@param aArea The area of the screen, in the aScreenSizeMode screen mode, within
|
sl@0
|
1818 |
which the virtual cursor can be used.
|
sl@0
|
1819 |
@capability WriteDeviceData */
|
sl@0
|
1820 |
{
|
sl@0
|
1821 |
TWsClCmdSetPointerCursorArea SetPointerCursorArea(aScreenSizeMode,aArea);
|
sl@0
|
1822 |
Write(&SetPointerCursorArea,sizeof(SetPointerCursorArea),EWsClOpSetPointerCursorArea);
|
sl@0
|
1823 |
}
|
sl@0
|
1824 |
|
sl@0
|
1825 |
EXPORT_C TRect RWsSession::PointerCursorArea() const
|
sl@0
|
1826 |
/** Gets the pointer cursor area for the first screen display mode.
|
sl@0
|
1827 |
|
sl@0
|
1828 |
This is the area of the screen in which the virtual cursor can be used while
|
sl@0
|
1829 |
in relative mouse mode. While in pen or mouse mode the event co-ordinates
|
sl@0
|
1830 |
are forced to be within this area unless you click outside the drawable area.
|
sl@0
|
1831 |
|
sl@0
|
1832 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1833 |
|
sl@0
|
1834 |
@return The pointer cursor area for the first screen display mode.
|
sl@0
|
1835 |
@see SetPointerCursorArea() */
|
sl@0
|
1836 |
{
|
sl@0
|
1837 |
return PointerCursorArea(0);
|
sl@0
|
1838 |
}
|
sl@0
|
1839 |
|
sl@0
|
1840 |
EXPORT_C TRect RWsSession::PointerCursorArea(TInt aScreenSizeMode) const
|
sl@0
|
1841 |
/** Gets the pointer cursor area for the specified screen display mode.
|
sl@0
|
1842 |
|
sl@0
|
1843 |
This is the area of the screen in which the virtual cursor can be used while
|
sl@0
|
1844 |
in relative mouse mode. While in pen or mouse mode the event co-ordinates
|
sl@0
|
1845 |
are forced to be within this area unless you click outside the drawable area.
|
sl@0
|
1846 |
|
sl@0
|
1847 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1848 |
|
sl@0
|
1849 |
@param aScreenSizeMode The screen mode for which the pointer cursor area is
|
sl@0
|
1850 |
required.
|
sl@0
|
1851 |
@return The pointer cursor area for the specified screen display mode.
|
sl@0
|
1852 |
@see SetPointerCursorArea() */
|
sl@0
|
1853 |
{
|
sl@0
|
1854 |
TPckgBuf<TRect> rectPkg;
|
sl@0
|
1855 |
WriteReplyP(&aScreenSizeMode,sizeof(aScreenSizeMode),&rectPkg,EWsClOpPointerCursorArea);
|
sl@0
|
1856 |
return(rectPkg());
|
sl@0
|
1857 |
}
|
sl@0
|
1858 |
|
sl@0
|
1859 |
EXPORT_C void RWsSession::SetPointerCursorMode(TPointerCursorMode aMode)
|
sl@0
|
1860 |
/** Sets the current mode for the pointer cursor.
|
sl@0
|
1861 |
|
sl@0
|
1862 |
The mode determines which sprite is used for the pointer cursor at any point.
|
sl@0
|
1863 |
The request is ignored unless the calling application is the application
|
sl@0
|
1864 |
that currently has keyboard focus.
|
sl@0
|
1865 |
See TPointerCursorMode for more information.
|
sl@0
|
1866 |
|
sl@0
|
1867 |
@param aMode The new mode for the pointer cursor.
|
sl@0
|
1868 |
@see TPointerCursorMode */
|
sl@0
|
1869 |
{
|
sl@0
|
1870 |
WriteInt(aMode,EWsClOpSetPointerCursorMode);
|
sl@0
|
1871 |
}
|
sl@0
|
1872 |
|
sl@0
|
1873 |
EXPORT_C TInt RWsSession::SetClientCursorMode(TPointerCursorMode aMode)
|
sl@0
|
1874 |
/** Sets the current mode for the pointer cursor.
|
sl@0
|
1875 |
|
sl@0
|
1876 |
The mode determines which sprite is used for the pointer cursor at any point.
|
sl@0
|
1877 |
See TPointerCursorMode for more information.
|
sl@0
|
1878 |
|
sl@0
|
1879 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1880 |
|
sl@0
|
1881 |
@param aMode The new mode for the pointer cursor.
|
sl@0
|
1882 |
@see TPointerCursorMode
|
sl@0
|
1883 |
@return KErrNone if successful, otherwise returns system wide errors. Returns
|
sl@0
|
1884 |
KErrPermissionDenied if calling thread lacks WriteDeviceData capability
|
sl@0
|
1885 |
@capability WriteDeviceData */
|
sl@0
|
1886 |
{
|
sl@0
|
1887 |
return(WriteReplyInt(aMode,EWsClOpSetClientCursorMode));
|
sl@0
|
1888 |
}
|
sl@0
|
1889 |
|
sl@0
|
1890 |
EXPORT_C TPointerCursorMode RWsSession::PointerCursorMode() const
|
sl@0
|
1891 |
/** Gets the current mode for the pointer cursor.
|
sl@0
|
1892 |
|
sl@0
|
1893 |
The mode determines which sprite is used for the pointer cursor at any point.
|
sl@0
|
1894 |
|
sl@0
|
1895 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1896 |
|
sl@0
|
1897 |
@return The current mode for the pointer cursor. */
|
sl@0
|
1898 |
{
|
sl@0
|
1899 |
return(STATIC_CAST(TPointerCursorMode,WriteReply(EWsClOpPointerCursorMode)));
|
sl@0
|
1900 |
}
|
sl@0
|
1901 |
|
sl@0
|
1902 |
EXPORT_C void RWsSession::SetDefaultSystemPointerCursor(TInt aCursorNumber)
|
sl@0
|
1903 |
/** Sets the default system pointer cursor.
|
sl@0
|
1904 |
|
sl@0
|
1905 |
This function can only be called by the owner of the system pointer cursor
|
sl@0
|
1906 |
list. By default the 0th entry in the pointer cursor list is assigned as the
|
sl@0
|
1907 |
system pointer. The function allows any cursor from the list or even no cursor
|
sl@0
|
1908 |
to be set as the system pointer cursor.
|
sl@0
|
1909 |
|
sl@0
|
1910 |
Note: ownership of the system pointer cursor list can be obtained by calling
|
sl@0
|
1911 |
ClaimSystemPointerCursorList() when no-one else has ownership.
|
sl@0
|
1912 |
|
sl@0
|
1913 |
@param aCursorNumber The index of the new default system pointer cursor within
|
sl@0
|
1914 |
the system cursor list. */
|
sl@0
|
1915 |
{
|
sl@0
|
1916 |
WriteInt(aCursorNumber,EWsClOpSetDefaultSystemPointerCursor);
|
sl@0
|
1917 |
}
|
sl@0
|
1918 |
|
sl@0
|
1919 |
EXPORT_C void RWsSession::ClearDefaultSystemPointerCursor()
|
sl@0
|
1920 |
/** Clears the default system pointer cursor.
|
sl@0
|
1921 |
|
sl@0
|
1922 |
This sets the pointer to the current default system pointer cursor to NULL.
|
sl@0
|
1923 |
|
sl@0
|
1924 |
@panic WSERV 42 If this function is called by a client other than the owner of the
|
sl@0
|
1925 |
system pointer cursor list. */
|
sl@0
|
1926 |
{
|
sl@0
|
1927 |
Write(EWsClOpClearDefaultSystemPointerCursor);
|
sl@0
|
1928 |
}
|
sl@0
|
1929 |
|
sl@0
|
1930 |
EXPORT_C TInt RWsSession::SetPointerCursorPosition(const TPoint& aPosition)
|
sl@0
|
1931 |
/** Sets the pointer cursor position.
|
sl@0
|
1932 |
|
sl@0
|
1933 |
This function allows an application to move the virtual cursor. It works in
|
sl@0
|
1934 |
all modes, not just relative mouse mode.
|
sl@0
|
1935 |
|
sl@0
|
1936 |
Note: the function works in screen co-ordinates and honours the pointer cursor area
|
sl@0
|
1937 |
exactly as pen presses do, i.e. only when they are in the drawing area
|
sl@0
|
1938 |
on the Emulator.
|
sl@0
|
1939 |
|
sl@0
|
1940 |
This function always causes a flush of the window server buffer.
|
sl@0
|
1941 |
|
sl@0
|
1942 |
@param aPosition The new pointer cursor position.
|
sl@0
|
1943 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
1944 |
codes.
|
sl@0
|
1945 |
@capability WriteDeviceData required, if the client calling the function doesn't have keyboard focus.
|
sl@0
|
1946 |
However, if the client have keyboard focus then he doesn't need any capability to call this function. */
|
sl@0
|
1947 |
{
|
sl@0
|
1948 |
return(WriteReply(&aPosition,sizeof(aPosition),EWsClOpSetPointerCursorPosition));
|
sl@0
|
1949 |
}
|
sl@0
|
1950 |
|
sl@0
|
1951 |
EXPORT_C TPoint RWsSession::PointerCursorPosition() const
|
sl@0
|
1952 |
/** Gets the pointer cursor position.
|
sl@0
|
1953 |
|
sl@0
|
1954 |
This function allows an application to determine the position of the virtual
|
sl@0
|
1955 |
cursor.
|
sl@0
|
1956 |
|
sl@0
|
1957 |
It always causes a flush of the window server buffer.
|
sl@0
|
1958 |
|
sl@0
|
1959 |
Please note that on devices with multiple pointers (for example with multi-touch screen)
|
sl@0
|
1960 |
the pointer cursor's position will be equal to the last known position of the emulated pointer.
|
sl@0
|
1961 |
More information about the emulated pointer can be found in description of method
|
sl@0
|
1962 |
RWindowBase::EnableAdvancedPointers().
|
sl@0
|
1963 |
|
sl@0
|
1964 |
@return The position of the virtual cursor.
|
sl@0
|
1965 |
@see RWindowBase::EnableAdvancedPointers() */
|
sl@0
|
1966 |
{
|
sl@0
|
1967 |
TPckgBuf<TPoint> pointPkg;
|
sl@0
|
1968 |
WriteReplyP(&pointPkg,EWsClOpPointerCursorPosition);
|
sl@0
|
1969 |
return(pointPkg());
|
sl@0
|
1970 |
}
|
sl@0
|
1971 |
|
sl@0
|
1972 |
EXPORT_C void RWsSession::SetDefaultFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap)
|
sl@0
|
1973 |
/**
|
sl@0
|
1974 |
@publishedPartner
|
sl@0
|
1975 |
@released
|
sl@0
|
1976 |
|
sl@0
|
1977 |
Sets the default fading parameters.
|
sl@0
|
1978 |
|
sl@0
|
1979 |
Fading is used to change the colour of windows to be either closer
|
sl@0
|
1980 |
to white or closer to black, so that another window stands out. For example,
|
sl@0
|
1981 |
when displaying a dialogue you could fade all visible windows, then unfade
|
sl@0
|
1982 |
the dialog window. This function sets whether, and the amount by which, faded
|
sl@0
|
1983 |
windows appear closer to white or closer to black.
|
sl@0
|
1984 |
|
sl@0
|
1985 |
The white and black mapping values define the range over which colours are
|
sl@0
|
1986 |
re-mapped when a window is faded. If aBlackMap=0 and aWhiteMap=255 then the
|
sl@0
|
1987 |
colours are mapped unchanged. As the two values get closer together, all colours
|
sl@0
|
1988 |
in the faded window becomes more similar - creating the fading effect. When
|
sl@0
|
1989 |
the numbers cross over (so that the black value is greater than the white
|
sl@0
|
1990 |
value) the colours in the faded window start to invert - i.e. colours that
|
sl@0
|
1991 |
were closer to white in the unfaded window are mapped to a darker colour in
|
sl@0
|
1992 |
the faded window.
|
sl@0
|
1993 |
|
sl@0
|
1994 |
Changing the default will automatically apply to current graphics contexts
|
sl@0
|
1995 |
but will not have any affect on windows that are already faded.
|
sl@0
|
1996 |
|
sl@0
|
1997 |
Note: RWindowTreeNode::SetFaded(), CWindowGc::SetFaded() and RWsSession::SetSystemFaded()
|
sl@0
|
1998 |
use these fading parameters, and in addition allow the default fading value
|
sl@0
|
1999 |
to be overridden.
|
sl@0
|
2000 |
|
sl@0
|
2001 |
@param aBlackMap Black map fading parameter.
|
sl@0
|
2002 |
@param aWhiteMap White map fading parameter.
|
sl@0
|
2003 |
@see RWindowTreeNode::SetFaded()
|
sl@0
|
2004 |
@see CWindowGc::SetFadingParameters()
|
sl@0
|
2005 |
@capability WriteDeviceData */
|
sl@0
|
2006 |
{
|
sl@0
|
2007 |
WriteInt(WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap),EWsClOpSetDefaultFadingParams);
|
sl@0
|
2008 |
}
|
sl@0
|
2009 |
|
sl@0
|
2010 |
/**
|
sl@0
|
2011 |
@publishedPartner
|
sl@0
|
2012 |
@released
|
sl@0
|
2013 |
|
sl@0
|
2014 |
Prepares for switch off.
|
sl@0
|
2015 |
|
sl@0
|
2016 |
This stops the window server heart beat timer if running.
|
sl@0
|
2017 |
|
sl@0
|
2018 |
@capability PowerMgmt
|
sl@0
|
2019 |
*/
|
sl@0
|
2020 |
EXPORT_C void RWsSession::PrepareForSwitchOff()
|
sl@0
|
2021 |
{
|
sl@0
|
2022 |
Write(EWsClOpPrepareForSwitchOff);
|
sl@0
|
2023 |
}
|
sl@0
|
2024 |
|
sl@0
|
2025 |
#if defined(__WINS__)
|
sl@0
|
2026 |
EXPORT_C void RWsSession::SetRemoveKeyCode(TBool aRemove)
|
sl@0
|
2027 |
/** Sets whether to remove the top 16 bits of a key code (Emulator builds only).
|
sl@0
|
2028 |
|
sl@0
|
2029 |
This function allows the Emulator to use Windows to translate keypresses into
|
sl@0
|
2030 |
the correct key code for each locale, rather than having to do the translation
|
sl@0
|
2031 |
for each international keyboard itself.
|
sl@0
|
2032 |
|
sl@0
|
2033 |
The top 16 bits of a keypress code contains the keycode that Windows would
|
sl@0
|
2034 |
produce if the key had been pressed in a typical Windows program. If aRemove
|
sl@0
|
2035 |
is EFalse the client can get these top 16 bits. If the value is non-zero
|
sl@0
|
2036 |
the CKeyTranslator uses it rather than calculating it's own value. If aRemove
|
sl@0
|
2037 |
is ETrue the window server strips the top 16 bits of the scan code before
|
sl@0
|
2038 |
passing the value on to the client.
|
sl@0
|
2039 |
|
sl@0
|
2040 |
Note: this function is intended for Java but it will be useful to any client who
|
sl@0
|
2041 |
creates their own CKeyTranslator and processes keyups and downs.
|
sl@0
|
2042 |
|
sl@0
|
2043 |
@param aRemove ETrue to remove the code (default), EFalse to pass it to the
|
sl@0
|
2044 |
client. */
|
sl@0
|
2045 |
{
|
sl@0
|
2046 |
WriteInt(aRemove,EWsClOpRemoveKeyCode);
|
sl@0
|
2047 |
}
|
sl@0
|
2048 |
|
sl@0
|
2049 |
EXPORT_C void RWsSession::SimulateXyInputType(TInt aInputType)
|
sl@0
|
2050 |
{
|
sl@0
|
2051 |
WriteInt(aInputType,EWsClOpSimulateXyInput);
|
sl@0
|
2052 |
}
|
sl@0
|
2053 |
#endif
|
sl@0
|
2054 |
|
sl@0
|
2055 |
EXPORT_C void RWsSession::LogCommand(TLoggingCommand aCommand)
|
sl@0
|
2056 |
/** Allows the window server client to enable or disable logging of window server
|
sl@0
|
2057 |
events.
|
sl@0
|
2058 |
|
sl@0
|
2059 |
The type of logging that takes place (e.g. whether to file or to serial port)
|
sl@0
|
2060 |
depends on the settings specified in the wsini.ini file.
|
sl@0
|
2061 |
|
sl@0
|
2062 |
Clients can also force a dump of the window tree or information about the
|
sl@0
|
2063 |
window server's heap size and usage.
|
sl@0
|
2064 |
|
sl@0
|
2065 |
For logging to work, the wsini.ini file has to specify the type of logging
|
sl@0
|
2066 |
required and the DLLs for that type of logging must have been correctly installed.
|
sl@0
|
2067 |
Otherwise, calling this function will have no effect.
|
sl@0
|
2068 |
|
sl@0
|
2069 |
@param aCommand The logging command. */
|
sl@0
|
2070 |
{
|
sl@0
|
2071 |
WriteInt(aCommand,EWsClOpLogCommand);
|
sl@0
|
2072 |
}
|
sl@0
|
2073 |
|
sl@0
|
2074 |
EXPORT_C void RWsSession::LogMessage(const TLogMessageText &aMessage)
|
sl@0
|
2075 |
/** Adds a message to the window server debug log if one is currently in operation.
|
sl@0
|
2076 |
|
sl@0
|
2077 |
This function always causes a flush of the window server buffer.
|
sl@0
|
2078 |
|
sl@0
|
2079 |
@param aMessage The text added to the message log. */
|
sl@0
|
2080 |
{
|
sl@0
|
2081 |
TInt len=aMessage.Length();
|
sl@0
|
2082 |
WriteReply(&len,sizeof(len),aMessage.Ptr(),aMessage.Size(),EWsClOpLogMessage);
|
sl@0
|
2083 |
}
|
sl@0
|
2084 |
|
sl@0
|
2085 |
EXPORT_C void RWsSession::SimulateRawEvent(TRawEvent aEvent)
|
sl@0
|
2086 |
/**
|
sl@0
|
2087 |
@internalAll
|
sl@0
|
2088 |
|
sl@0
|
2089 |
Simulates raw events.
|
sl@0
|
2090 |
|
sl@0
|
2091 |
For most purposes, RWsSession::SimulateKeyEvent() should be used instead to
|
sl@0
|
2092 |
simulate key events because low-level scan-code up/down events are not meaningful
|
sl@0
|
2093 |
to anything other than the keyboard to which they apply.
|
sl@0
|
2094 |
|
sl@0
|
2095 |
For example, the driver for an external keyboard should do its own conversion from
|
sl@0
|
2096 |
raw scan-codes to higher-level character code key events and pass these to the
|
sl@0
|
2097 |
window server using SimulateKeyEvent().
|
sl@0
|
2098 |
|
sl@0
|
2099 |
@param aEvent The raw event.
|
sl@0
|
2100 |
@capability SwEvent */
|
sl@0
|
2101 |
{
|
sl@0
|
2102 |
Write(&aEvent,sizeof(aEvent),EWsClOpRawEvent);
|
sl@0
|
2103 |
}
|
sl@0
|
2104 |
|
sl@0
|
2105 |
EXPORT_C void RWsSession::SimulateKeyEvent(TKeyEvent aEvent)
|
sl@0
|
2106 |
/**
|
sl@0
|
2107 |
@internalAll
|
sl@0
|
2108 |
|
sl@0
|
2109 |
Sends a simulated key event to the window server.
|
sl@0
|
2110 |
|
sl@0
|
2111 |
All the fields in TKeyEvent are honoured except iRepeats, which is overridden
|
sl@0
|
2112 |
with zero.
|
sl@0
|
2113 |
|
sl@0
|
2114 |
@param aEvent The key event to be simulated.
|
sl@0
|
2115 |
@capability SwEvent */
|
sl@0
|
2116 |
{
|
sl@0
|
2117 |
Write(&aEvent,sizeof(aEvent),EWsClOpKeyEvent);
|
sl@0
|
2118 |
}
|
sl@0
|
2119 |
|
sl@0
|
2120 |
|
sl@0
|
2121 |
EXPORT_C void RWsSession::SystemInfo(TInt &aSystemInfoNumber, SSystemInfo &aSystemInfo)
|
sl@0
|
2122 |
/** @internalComponent */
|
sl@0
|
2123 |
{
|
sl@0
|
2124 |
TPckgBuf<SSystemInfo> systemInfoPckg;
|
sl@0
|
2125 |
WriteReplyP(&aSystemInfoNumber,sizeof(aSystemInfoNumber),&systemInfoPckg,EWsClOpSystemInfo);
|
sl@0
|
2126 |
aSystemInfo=systemInfoPckg();
|
sl@0
|
2127 |
}
|
sl@0
|
2128 |
|
sl@0
|
2129 |
void RWsSession::DirectAcessActivation(TBool aIsNowActive)
|
sl@0
|
2130 |
{
|
sl@0
|
2131 |
if (aIsNowActive)
|
sl@0
|
2132 |
++iBuffer->iDirectAcessCount;
|
sl@0
|
2133 |
else
|
sl@0
|
2134 |
{
|
sl@0
|
2135 |
--iBuffer->iDirectAcessCount;
|
sl@0
|
2136 |
__ASSERT_DEBUG(iBuffer->iDirectAcessCount>=0,Assert(EW32AssertDirectMisuse));
|
sl@0
|
2137 |
}
|
sl@0
|
2138 |
}
|
sl@0
|
2139 |
|
sl@0
|
2140 |
EXPORT_C void RWsSession::TestWrite(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength)
|
sl@0
|
2141 |
/** @internalComponent */
|
sl@0
|
2142 |
{
|
sl@0
|
2143 |
iBuffer->Write(aHandle,aOpcode,pData,aLength);
|
sl@0
|
2144 |
}
|
sl@0
|
2145 |
|
sl@0
|
2146 |
EXPORT_C void RWsSession::TestWriteReply(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength)
|
sl@0
|
2147 |
/** @internalComponent */
|
sl@0
|
2148 |
{
|
sl@0
|
2149 |
iBuffer->WriteReply(aHandle,aOpcode,pData,aLength);
|
sl@0
|
2150 |
}
|
sl@0
|
2151 |
|
sl@0
|
2152 |
EXPORT_C void RWsSession::TestWriteReplyP(TInt aHandle,TInt aOpcode,const TAny *pData,TInt aLength,TDes8 *aReplyPackage)
|
sl@0
|
2153 |
/** @internalComponent */
|
sl@0
|
2154 |
{
|
sl@0
|
2155 |
iBuffer->WriteReplyP(aHandle,aOpcode,pData,aLength,aReplyPackage);
|
sl@0
|
2156 |
}
|
sl@0
|
2157 |
|
sl@0
|
2158 |
EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC8& aRemoteReadBuffer)
|
sl@0
|
2159 |
/** @internalComponent */
|
sl@0
|
2160 |
{
|
sl@0
|
2161 |
return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer);
|
sl@0
|
2162 |
}
|
sl@0
|
2163 |
|
sl@0
|
2164 |
EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC16& aRemoteReadBuffer)
|
sl@0
|
2165 |
/** @internalComponent */
|
sl@0
|
2166 |
{
|
sl@0
|
2167 |
return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer);
|
sl@0
|
2168 |
}
|
sl@0
|
2169 |
|
sl@0
|
2170 |
/** Sets both the buffer size and maximum buffer size for queuing commands to send to the Windows Server.
|
sl@0
|
2171 |
The value should be at least the size of the largest message that will be sent,
|
sl@0
|
2172 |
otherwise a panic of the client may occur.
|
sl@0
|
2173 |
|
sl@0
|
2174 |
The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes.
|
sl@0
|
2175 |
The default size of 640 bytes is sufficient for most uses.
|
sl@0
|
2176 |
|
sl@0
|
2177 |
Larger buffers can reduce drawing flicker by allowing more drawing commands to be
|
sl@0
|
2178 |
collected in the buffer before being sent to the server.
|
sl@0
|
2179 |
|
sl@0
|
2180 |
Smaller buffers conserve system memory.
|
sl@0
|
2181 |
|
sl@0
|
2182 |
Can be used to set a minimum buffer size, sufficient for largest drawing command used,
|
sl@0
|
2183 |
before calling RWsSession::SetMaxBufferSizeL() to set a maximum buffer size for queuing commands.
|
sl@0
|
2184 |
|
sl@0
|
2185 |
@param aBufSize The desired buffer size in bytes, at least the size of largest message to be sent.
|
sl@0
|
2186 |
@leave KErrNoMemory Could not allocate the required memory.
|
sl@0
|
2187 |
|
sl@0
|
2188 |
@panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer.
|
sl@0
|
2189 |
|
sl@0
|
2190 |
@see RWsSession::Flush()
|
sl@0
|
2191 |
@see RWsSession::SetAutoFlush()
|
sl@0
|
2192 |
@see RWsSession::SetMaxBufferSizeL()
|
sl@0
|
2193 |
*/
|
sl@0
|
2194 |
EXPORT_C void RWsSession::SetBufferSizeL(TInt aBufSize)
|
sl@0
|
2195 |
{
|
sl@0
|
2196 |
iBuffer->SetBufferSizeL(aBufSize);
|
sl@0
|
2197 |
}
|
sl@0
|
2198 |
|
sl@0
|
2199 |
/** Sets the maximum size that the buffer for queuing commands to send to the Windows Server can expand to.
|
sl@0
|
2200 |
|
sl@0
|
2201 |
The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes.
|
sl@0
|
2202 |
|
sl@0
|
2203 |
If the buffer size is larger than the new maximum it is reduced.
|
sl@0
|
2204 |
|
sl@0
|
2205 |
A minimum size is calculated to be one quarter the maximum size, but in any case at least 640 bytes.
|
sl@0
|
2206 |
If the buffer size is smaller than the calculated minimum it is expanded.
|
sl@0
|
2207 |
|
sl@0
|
2208 |
RWsSession::SetBufferSizeL() can be used to set a specific minimum size >640 bytes before setting a maximum size.
|
sl@0
|
2209 |
This is useful if you will send very large drawing commands.
|
sl@0
|
2210 |
|
sl@0
|
2211 |
After calling this function the buffer size will be between the specified maximum and calculated minimum sizes.
|
sl@0
|
2212 |
|
sl@0
|
2213 |
The algorithm for growing the buffer up to the maximum is chosen to balance the cost of expanding the buffer
|
sl@0
|
2214 |
with the waste of an excessively large buffer that is never filled.
|
sl@0
|
2215 |
|
sl@0
|
2216 |
If the buffer becomes too full to add a new drawing command, and the buffer size is less than the maximum,
|
sl@0
|
2217 |
the buffer size will be expanded.
|
sl@0
|
2218 |
If the buffer is already at the maximum size, or the expansion fails due to low memory,
|
sl@0
|
2219 |
the buffer will be emptied with RWsSession::Flush().
|
sl@0
|
2220 |
If there is not enough space now for the new command a panic occurs.
|
sl@0
|
2221 |
|
sl@0
|
2222 |
@param aMaxBufSize The desired maximum buffer size in bytes.
|
sl@0
|
2223 |
@leave KErrNoMemory Could not allocate the required minimum memory.
|
sl@0
|
2224 |
|
sl@0
|
2225 |
@panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer.
|
sl@0
|
2226 |
|
sl@0
|
2227 |
@see RWsSession::Flush()
|
sl@0
|
2228 |
@see RWsSession::SetAutoFlush()
|
sl@0
|
2229 |
@see RWsSession::SetBufferSizeL()
|
sl@0
|
2230 |
*/
|
sl@0
|
2231 |
EXPORT_C void RWsSession::SetMaxBufferSizeL(TInt aMaxBufSize)
|
sl@0
|
2232 |
{
|
sl@0
|
2233 |
iBuffer->SetMaxBufferSizeL(aMaxBufSize);
|
sl@0
|
2234 |
}
|
sl@0
|
2235 |
|
sl@0
|
2236 |
EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded)
|
sl@0
|
2237 |
/** Sets all windows in the system as faded or unfaded, using the default fading
|
sl@0
|
2238 |
parameters.
|
sl@0
|
2239 |
|
sl@0
|
2240 |
This function allows all windows that currently exist, not just those in a
|
sl@0
|
2241 |
single window group, to be faded or unfaded.
|
sl@0
|
2242 |
|
sl@0
|
2243 |
Notes: The window server generates a redraw to un-fade a window, because information
|
sl@0
|
2244 |
is lost during fading. Blank (RBlankWindow) and backup (RBackupWindow) windows
|
sl@0
|
2245 |
deal with this themselves. Areas in shadow when the window is faded will also
|
sl@0
|
2246 |
have redraw events generated for them by the window server. While a window
|
sl@0
|
2247 |
is faded, all drawing to that window will be adjusted appropriately by the
|
sl@0
|
2248 |
window server.
|
sl@0
|
2249 |
|
sl@0
|
2250 |
This function always causes a flush of the window server buffer.
|
sl@0
|
2251 |
|
sl@0
|
2252 |
@param aFaded ETrue to fade all windows, EFalse to un-fade all windows.
|
sl@0
|
2253 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
2254 |
codes.
|
sl@0
|
2255 |
@capability WriteDeviceData */
|
sl@0
|
2256 |
{
|
sl@0
|
2257 |
TWsClCmdSetSystemFaded params(aFaded);
|
sl@0
|
2258 |
return WriteReply(¶ms,sizeof(params),EWsClOpSetFaded);
|
sl@0
|
2259 |
}
|
sl@0
|
2260 |
|
sl@0
|
2261 |
EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded,TUint8 aBlackMap,TUint8 aWhiteMap)
|
sl@0
|
2262 |
/** Sets all windows in the system as faded or unfaded, overriding the default
|
sl@0
|
2263 |
fading parameters (as set by SetDefaultFadingParameters()).
|
sl@0
|
2264 |
|
sl@0
|
2265 |
This function allows all windows that currently exist, not just those in the
|
sl@0
|
2266 |
same window group, to be faded or unfaded.
|
sl@0
|
2267 |
|
sl@0
|
2268 |
Notes: Fading a window for a second time (that is fading it when it is already
|
sl@0
|
2269 |
faded) will not change the fading map used. The window server generates a
|
sl@0
|
2270 |
redraw to un-fade a window, because information is lost during fading. Blank
|
sl@0
|
2271 |
(RBlankWindow) and backup (RBackupWindow) windows deal with this themselves.
|
sl@0
|
2272 |
Areas in shadow when the window is faded will also have redraw events generated
|
sl@0
|
2273 |
for them by the window server. While a window is faded, all drawing to that
|
sl@0
|
2274 |
window will be adjusted appropriately by the window server.
|
sl@0
|
2275 |
|
sl@0
|
2276 |
This function always causes a flush of the window server buffer.
|
sl@0
|
2277 |
|
sl@0
|
2278 |
@param aFaded ETrue to fade all windows, EFalse to un-fade all windows.
|
sl@0
|
2279 |
@param aBlackMap Black map fading parameter.
|
sl@0
|
2280 |
@param aWhiteMap White map fading parameter.
|
sl@0
|
2281 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
2282 |
codes.
|
sl@0
|
2283 |
@capability WriteDeviceData */
|
sl@0
|
2284 |
{
|
sl@0
|
2285 |
TWsClCmdSetSystemFaded params(aFaded,EFalse,aBlackMap,aWhiteMap);
|
sl@0
|
2286 |
return WriteReply(¶ms,sizeof(params),EWsClOpSetFaded);
|
sl@0
|
2287 |
}
|
sl@0
|
2288 |
|
sl@0
|
2289 |
EXPORT_C TInt RWsSession::SetFocusScreen(TInt aScreenNumber)
|
sl@0
|
2290 |
/** Set focus screen
|
sl@0
|
2291 |
@param aScreenNumber The new focus screen.
|
sl@0
|
2292 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
2293 |
codes. */
|
sl@0
|
2294 |
{
|
sl@0
|
2295 |
return WriteReplyInt(aScreenNumber,EWsClOpSetFocusScreen);
|
sl@0
|
2296 |
}
|
sl@0
|
2297 |
|
sl@0
|
2298 |
EXPORT_C TInt RWsSession::GetFocusScreen() const
|
sl@0
|
2299 |
/** Get focus screen
|
sl@0
|
2300 |
@return The screen number of current focus screen */
|
sl@0
|
2301 |
{
|
sl@0
|
2302 |
return WriteReply(EWsClOpGetFocusScreen);
|
sl@0
|
2303 |
}
|
sl@0
|
2304 |
|
sl@0
|
2305 |
EXPORT_C TInt RWsSession::NumberOfScreens() const
|
sl@0
|
2306 |
/** Number Of Screens
|
sl@0
|
2307 |
@return The number of screens on the phone */
|
sl@0
|
2308 |
{
|
sl@0
|
2309 |
return WriteReply(EWsClOpGetNumberOfScreens);
|
sl@0
|
2310 |
}
|
sl@0
|
2311 |
|
sl@0
|
2312 |
EXPORT_C void RWsSession::ClearAllRedrawStores()
|
sl@0
|
2313 |
/** Clear the redraw store for all windows in the system.
|
sl@0
|
2314 |
By default Windows will record the drawing commands used during a redraw and re-use them later if the window needs to be redrawn.
|
sl@0
|
2315 |
Calling this function will cause all these server-side stores to be thrown away, redraw requests will then be sent to all client-side windows. Visible windows will receive them first.
|
sl@0
|
2316 |
|
sl@0
|
2317 |
In most cases you should be using RWindow::ClearRedrawStore instead of this function.
|
sl@0
|
2318 |
|
sl@0
|
2319 |
This function always causes a flush of the window server buffer.*/
|
sl@0
|
2320 |
{
|
sl@0
|
2321 |
Write(EWsClOpClearAllRedrawStores);
|
sl@0
|
2322 |
}
|
sl@0
|
2323 |
|
sl@0
|
2324 |
EXPORT_C TInt RWsSession::Finish()
|
sl@0
|
2325 |
/**
|
sl@0
|
2326 |
Blocks until all outstanding window server rendering has been completed.
|
sl@0
|
2327 |
@return KErrNone if successful
|
sl@0
|
2328 |
*/
|
sl@0
|
2329 |
{
|
sl@0
|
2330 |
SyncMsgBuf();
|
sl@0
|
2331 |
return SendReceive(EWservMessFinish);
|
sl@0
|
2332 |
}
|
sl@0
|
2333 |
|
sl@0
|
2334 |
EXPORT_C void RWsSession::SyncMsgBuf()
|
sl@0
|
2335 |
/**
|
sl@0
|
2336 |
Sends all pending commands in the buffer to the window server.
|
sl@0
|
2337 |
*/
|
sl@0
|
2338 |
{
|
sl@0
|
2339 |
if (iBuffer)
|
sl@0
|
2340 |
iBuffer->Flush();
|
sl@0
|
2341 |
}
|
sl@0
|
2342 |
|
sl@0
|
2343 |
EXPORT_C TInt RWsSession::SetCloseProximityThresholds(TInt aEnterCloseProximityThreshold, TInt aExitCloseProximityThreshold)
|
sl@0
|
2344 |
/** Sets Z coordinate threshold values for TPointerEvent::EEnterCloseProximity
|
sl@0
|
2345 |
and TPointerEvent::EExitCloseProximity events.
|
sl@0
|
2346 |
As proximity occupies the negative range of Z coordinates, on most platforms
|
sl@0
|
2347 |
threshold values for these events should be specified as negative.
|
sl@0
|
2348 |
|
sl@0
|
2349 |
However, all possible Z coordinate values are accepted by this method
|
sl@0
|
2350 |
regardless of the fact that positive Z coordinate values are interpreted as
|
sl@0
|
2351 |
pressure and only negative Z coordinate values are interpreted as proximity.
|
sl@0
|
2352 |
This means that if a particular platform supports an Up pointer state while a pointer is
|
sl@0
|
2353 |
touching the screen, it is possible to base the firing of
|
sl@0
|
2354 |
EnterCloseProximity/ExitCloseProximity events on pressure readings by specifying
|
sl@0
|
2355 |
positive threshold values.
|
sl@0
|
2356 |
|
sl@0
|
2357 |
EnterCloseProximity/ExitCloseProximity event generation can be switched off completely by
|
sl@0
|
2358 |
specifying the following thresholds: aEnterCloseProximityThreshold = KMaxTInt,
|
sl@0
|
2359 |
aExitCloseProximityThreshold = KMinTInt.
|
sl@0
|
2360 |
|
sl@0
|
2361 |
This method is supposed to be used only by the UI platform or device's configuration tool.
|
sl@0
|
2362 |
|
sl@0
|
2363 |
Modified thresholds will be persisted across system reboots in the following HAL
|
sl@0
|
2364 |
attributes: HALData::EPointer3DEnterCloseProximityThreshold, HALData::EPointer3DExitCloseProximityThreshold.
|
sl@0
|
2365 |
|
sl@0
|
2366 |
If this method is never called on a particular device, the default threshold values defined by this device's
|
sl@0
|
2367 |
manufacturer are used.
|
sl@0
|
2368 |
|
sl@0
|
2369 |
@param aEnterCloseProximityThreshold a new threshold for TPointerEvent::EEnterCloseProximity
|
sl@0
|
2370 |
to be set, specified as Z coordinate value
|
sl@0
|
2371 |
@param aExitCloseProximityThreshold a new threshold for TPointerEvent::EExitCloseProximity
|
sl@0
|
2372 |
to be set, specified as Z coordinate value
|
sl@0
|
2373 |
@return KErrNone if successful,
|
sl@0
|
2374 |
KErrNotSupported if the platform doesn't support threshold values for
|
sl@0
|
2375 |
Close Proximity events,
|
sl@0
|
2376 |
KErrArgument if aEnterCloseProximityThreshold is less than aExitCloseProximityThreshold;
|
sl@0
|
2377 |
when this error occurs, threshold values are not changed.
|
sl@0
|
2378 |
@capability WriteDeviceData
|
sl@0
|
2379 |
@see TPointerEvent::EEnterCloseProximity
|
sl@0
|
2380 |
@see TPointerEvent::EExitCloseProximity
|
sl@0
|
2381 |
@see HALData::EPointer3DEnterCloseProximityThreshold
|
sl@0
|
2382 |
@see HALData::EPointer3DExitCloseProximityThreshold
|
sl@0
|
2383 |
@publishedPartner
|
sl@0
|
2384 |
@prototype To become released with WSERV NGA APIs */
|
sl@0
|
2385 |
{
|
sl@0
|
2386 |
TWsClCmdZThresholdPair params(aEnterCloseProximityThreshold, aExitCloseProximityThreshold);
|
sl@0
|
2387 |
return WriteReply(¶ms,sizeof(params),EWsClOpSetCloseProximityThresholds);
|
sl@0
|
2388 |
}
|
sl@0
|
2389 |
|
sl@0
|
2390 |
EXPORT_C TInt RWsSession::GetEnterCloseProximityThreshold() const
|
sl@0
|
2391 |
/**
|
sl@0
|
2392 |
@return Z coordinate threshold value for TPointerEvent::EEnterCloseProximity events.
|
sl@0
|
2393 |
@see TPointerEvent::EEnterCloseProximity
|
sl@0
|
2394 |
@publishedPartner To become publishedAll with WSERV NGA APIs
|
sl@0
|
2395 |
@prototype To become released with WSERV NGA APIs */
|
sl@0
|
2396 |
{
|
sl@0
|
2397 |
return WriteReply(EWsClOpGetEnterCloseProximityThreshold);
|
sl@0
|
2398 |
}
|
sl@0
|
2399 |
|
sl@0
|
2400 |
EXPORT_C TInt RWsSession::GetExitCloseProximityThreshold() const
|
sl@0
|
2401 |
/**
|
sl@0
|
2402 |
@return Z coordinate threshold value for TPointerEvent::EExitCloseProximity events
|
sl@0
|
2403 |
@see TPointerEvent::EExitCloseProximity
|
sl@0
|
2404 |
@publishedPartner To become publishedAll with WSERV NGA APIs
|
sl@0
|
2405 |
@prototype To become released with WSERV NGA APIs */
|
sl@0
|
2406 |
{
|
sl@0
|
2407 |
return WriteReply(EWsClOpGetExitCloseProximityThreshold);
|
sl@0
|
2408 |
}
|
sl@0
|
2409 |
|
sl@0
|
2410 |
EXPORT_C TInt RWsSession::SetHighPressureThresholds(TInt aEnterHighPressureThreshold, TInt aExitHighPressureThreshold)
|
sl@0
|
2411 |
/** Sets Z coordinate threshold values for TPointerEvent::EEnterHighPressure
|
sl@0
|
2412 |
and TPointerEvent::EExitHighPressure events.
|
sl@0
|
2413 |
As pressure occupies the positive range of Z coordinates, on most platforms
|
sl@0
|
2414 |
threshold values for these events should be specified as positive values.
|
sl@0
|
2415 |
|
sl@0
|
2416 |
However, all possible Z coordinate values are accepted by this method
|
sl@0
|
2417 |
regardless of the fact that only the positive Z coordinate values are interpreted as
|
sl@0
|
2418 |
pressure and the negative Z coordinate values are interpreted as proximity.
|
sl@0
|
2419 |
This means that if a particular platform supports the Down pointer state while a pointer is
|
sl@0
|
2420 |
in proximity to the screen, it is possible to base the firing of
|
sl@0
|
2421 |
EnterHighPressure/ExitHighPressure events on proximity readings by specifying
|
sl@0
|
2422 |
negative threshold values.
|
sl@0
|
2423 |
|
sl@0
|
2424 |
EnterHighPressure/ExitHighPressure event generation can be switched off completely by
|
sl@0
|
2425 |
specifying the following thresholds: aEnterHighPressureThreshold = KMaxTInt,
|
sl@0
|
2426 |
aExitHighPressureThreshold = KMinTInt.
|
sl@0
|
2427 |
|
sl@0
|
2428 |
This method is supposed to be used only by the UI platform or device's configuration tool.
|
sl@0
|
2429 |
|
sl@0
|
2430 |
Modified thresholds will be persisted across system reboots in the following HAL
|
sl@0
|
2431 |
attributes: HALData::EPointer3DEnterHighPressureThreshold, HALData::EPointer3DExitHighPressureThreshold.
|
sl@0
|
2432 |
|
sl@0
|
2433 |
If this method is never called on a particular device, the default threshold values defined by this device's
|
sl@0
|
2434 |
manufacturer are used.
|
sl@0
|
2435 |
|
sl@0
|
2436 |
@param aEnterHighPressureThreshold a new threshold for TPointerEvent::EEnterHighPressure
|
sl@0
|
2437 |
to be set, specified as Z coordinate value
|
sl@0
|
2438 |
@param aExitHighPressureThreshold a new threshold for TPointerEvent::EExitHighPressure
|
sl@0
|
2439 |
to be set, specified as Z coordinate value
|
sl@0
|
2440 |
@return KErrNone if successful,
|
sl@0
|
2441 |
KErrNotSupported if the platform doesn't support threshold values for
|
sl@0
|
2442 |
High Pressure events,
|
sl@0
|
2443 |
KErrArgument if aEnterHighPressureThreshold is less than aExitHighPressureThreshold;
|
sl@0
|
2444 |
when this error occurs, threshold values are not changed.
|
sl@0
|
2445 |
@capability WriteDeviceData
|
sl@0
|
2446 |
@see TPointerEvent::EEnterHighPressure
|
sl@0
|
2447 |
@see TPointerEvent::EExitHighPressure
|
sl@0
|
2448 |
@see HALData::EPointer3DEnterHighPressureThreshold
|
sl@0
|
2449 |
@see HALData::EPointer3DExitHighPressureThreshold
|
sl@0
|
2450 |
@publishedPartner
|
sl@0
|
2451 |
@prototype To become released with WSERV NGA APIs */
|
sl@0
|
2452 |
{
|
sl@0
|
2453 |
TWsClCmdZThresholdPair params(aEnterHighPressureThreshold, aExitHighPressureThreshold);
|
sl@0
|
2454 |
return WriteReply(¶ms,sizeof(params),EWsClOpSetHighPressureThresholds);
|
sl@0
|
2455 |
}
|
sl@0
|
2456 |
|
sl@0
|
2457 |
EXPORT_C TInt RWsSession::GetEnterHighPressureThreshold() const
|
sl@0
|
2458 |
/**
|
sl@0
|
2459 |
@return Z coordinate threshold value for TPointerEvent::EEnterHighPressure events
|
sl@0
|
2460 |
@see TPointerEvent::EEnterHighPressure
|
sl@0
|
2461 |
@publishedPartner To become publishedAll with WSERV NGA APIs
|
sl@0
|
2462 |
@prototype To become released with WSERV NGA APIs */
|
sl@0
|
2463 |
{
|
sl@0
|
2464 |
return WriteReply(EWsClOpGetEnterHighPressureThreshold);
|
sl@0
|
2465 |
}
|
sl@0
|
2466 |
|
sl@0
|
2467 |
EXPORT_C TInt RWsSession::GetExitHighPressureThreshold() const
|
sl@0
|
2468 |
/**
|
sl@0
|
2469 |
@return Z coordinate threshold value for TPointerEvent::EExitHighPressure events
|
sl@0
|
2470 |
@see TPointerEvent::EExitHighPressure
|
sl@0
|
2471 |
@publishedPartner To become publishedAll with WSERV NGA APIs
|
sl@0
|
2472 |
@prototype To become released with WSERV NGA APIs */
|
sl@0
|
2473 |
{
|
sl@0
|
2474 |
return WriteReply(EWsClOpGetExitHighPressureThreshold);
|
sl@0
|
2475 |
}
|
sl@0
|
2476 |
|
sl@0
|
2477 |
EXPORT_C void RWsSession::EnableWindowSizeCacheL()
|
sl@0
|
2478 |
/**
|
sl@0
|
2479 |
Enables client side cache of window size to reduce client-server
|
sl@0
|
2480 |
activity triggered by calls to RWindowBase::Size()
|
sl@0
|
2481 |
@leave KErrNoMemory Could not allocate the required memory.
|
sl@0
|
2482 |
@internalAll */
|
sl@0
|
2483 |
{
|
sl@0
|
2484 |
iBuffer->EnableWindowSizeCacheL();
|
sl@0
|
2485 |
}
|
sl@0
|
2486 |
|
sl@0
|
2487 |
EXPORT_C void RWsSession::SendEffectCommand(TInt aTfxCmd,const TDesC8& aTfxCmdData)
|
sl@0
|
2488 |
/**
|
sl@0
|
2489 |
Set the WServ session specific effect data or execute commands
|
sl@0
|
2490 |
to TFX Render Stage. The data or command passed by the client
|
sl@0
|
2491 |
API will be directed to MWsTfxApplication::SendEffectCommand.
|
sl@0
|
2492 |
TFX Render Stage will accept only TFX application specific commands and data.
|
sl@0
|
2493 |
@param aTfxCmd TFX Render Stage command.
|
sl@0
|
2494 |
@param aTfxCmdData Structure related to the specified value of aTfxCmd, the default value is KNullDesC8.
|
sl@0
|
2495 |
|
sl@0
|
2496 |
@capability WriteDeviceData Only if aTfxCmd has value ETfxCmdEnableAllTransitions or ETfxCmdDisableAllTransitions
|
sl@0
|
2497 |
|
sl@0
|
2498 |
@publishedPartner
|
sl@0
|
2499 |
*/
|
sl@0
|
2500 |
{
|
sl@0
|
2501 |
__ASSERT_ALWAYS(aTfxCmdData.Length()<=KMaxWservStringSize, Panic(EW32PanicStringTooLong));
|
sl@0
|
2502 |
TWsClCmdSendEffectCommand params(aTfxCmd,aTfxCmdData.Size(), NULL);
|
sl@0
|
2503 |
Write(¶ms,sizeof(params),aTfxCmdData.Ptr(),aTfxCmdData.Size(),EWsClOpSendEffectCommand);
|
sl@0
|
2504 |
}
|
sl@0
|
2505 |
|
sl@0
|
2506 |
EXPORT_C void RWsSession::RegisterEffect(TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TUint aAppUid, TBitFlags aFlags)
|
sl@0
|
2507 |
/**
|
sl@0
|
2508 |
Sets a specific animation for a particular transition effect.
|
sl@0
|
2509 |
|
sl@0
|
2510 |
Transition effect is represented by one of the values of enum TTfxTransitionActions.
|
sl@0
|
2511 |
|
sl@0
|
2512 |
An animation is specified by a filename and directory; the file will contain a description of the animation
|
sl@0
|
2513 |
for that transition. In fact each transition can have two animations associated with it, for example
|
sl@0
|
2514 |
an App shut down could have one animation with the old application disappearing and then another animation
|
sl@0
|
2515 |
for the App Launcher (or home screen) appearing.
|
sl@0
|
2516 |
|
sl@0
|
2517 |
Animation can be applied to all App's Transition effect or to a specfic App by providing its AppUid.
|
sl@0
|
2518 |
|
sl@0
|
2519 |
@param aAction Particular transition to register the animation for.
|
sl@0
|
2520 |
@param aPurpose The purpose of the window.
|
sl@0
|
2521 |
@param aResourceDir The name of the directory that contains the animation description files.
|
sl@0
|
2522 |
@param aFilenameOutgoing The file containing the description of the animation for the outgoing phase of the transition.
|
sl@0
|
2523 |
Specify KNullDesC for no outgoing phase effect.
|
sl@0
|
2524 |
@param aFilenameIncoming The file containing the description of the animation for the incoming phase of the transition.
|
sl@0
|
2525 |
Specify KNullDesC for no incoming phase effect.
|
sl@0
|
2526 |
@param aAppUid The Application UID this effect applies to. Set to zero to specify that all apps will use default effect.
|
sl@0
|
2527 |
@param aFlags Flag for the effect. Please see TTfxFlags for values this flag parameter can use.
|
sl@0
|
2528 |
|
sl@0
|
2529 |
@capability WriteDeviceData This API does nothing if the client does not possess required Capability
|
sl@0
|
2530 |
|
sl@0
|
2531 |
@publishedPartner
|
sl@0
|
2532 |
*/
|
sl@0
|
2533 |
{
|
sl@0
|
2534 |
RTFXEffect tfxEffect(iWsHandle, iBuffer);
|
sl@0
|
2535 |
tfxEffect.RegisterTFXEffect(aAction, aPurpose, aResourceDir, aFilenameOutgoing, aFilenameIncoming, aAppUid, aFlags);
|
sl@0
|
2536 |
}
|
sl@0
|
2537 |
|
sl@0
|
2538 |
EXPORT_C void RWsSession::UnregisterEffect(TInt aAction, TInt aPurpose, TUint aAppUid)
|
sl@0
|
2539 |
/**
|
sl@0
|
2540 |
Unregister already set animation for a particular transition effect
|
sl@0
|
2541 |
|
sl@0
|
2542 |
@param aAction Particular transition to unregister the animation for.
|
sl@0
|
2543 |
@param aPurpose The purpose of the window.
|
sl@0
|
2544 |
@param aAppUid The Application UID this effect applies to. Set to 0 to specify the default effect will be unregistered.
|
sl@0
|
2545 |
|
sl@0
|
2546 |
@capability WriteDeviceData This API does nothing if the client does not possess required Capability
|
sl@0
|
2547 |
|
sl@0
|
2548 |
@publishedPartner
|
sl@0
|
2549 |
*/
|
sl@0
|
2550 |
{
|
sl@0
|
2551 |
TWsClCmdUnRegisterEffect unregisterEffect(aAction, aPurpose, aAppUid);
|
sl@0
|
2552 |
Write(&unregisterEffect, sizeof(unregisterEffect), EWsClOpUnregisterTFXEffect);
|
sl@0
|
2553 |
}
|
sl@0
|
2554 |
|
sl@0
|
2555 |
EXPORT_C void RWsSession::UnregisterAllEffects()
|
sl@0
|
2556 |
/**
|
sl@0
|
2557 |
Unregister animation for all transition effects.
|
sl@0
|
2558 |
|
sl@0
|
2559 |
@capability WriteDeviceData This API does nothing if the client does not possess required Capability
|
sl@0
|
2560 |
|
sl@0
|
2561 |
@publishedPartner
|
sl@0
|
2562 |
*/
|
sl@0
|
2563 |
{
|
sl@0
|
2564 |
Write(EWsClOpUnregisterAllTFXEffect);
|
sl@0
|
2565 |
}
|
sl@0
|
2566 |
|
sl@0
|
2567 |
EXPORT_C void RWsSession::OverrideEffects(TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TBitFlags aFlags)
|
sl@0
|
2568 |
/**
|
sl@0
|
2569 |
Overides the default animation for given app's transition effect by sent animation description.
|
sl@0
|
2570 |
Please refer RWsSession::RegisterEffect() comments for more information on animation description.
|
sl@0
|
2571 |
|
sl@0
|
2572 |
@param aAction The particular transition to set the animation for.
|
sl@0
|
2573 |
@param aPurpose This override only effects the window/layers owned by the application that have the specified purpose.
|
sl@0
|
2574 |
@param aResourceDir The name of the directory that contains the animation description files.
|
sl@0
|
2575 |
@param aFilenameOutgoing The file containing the description of the animation for the outgoing phase of the transition.
|
sl@0
|
2576 |
Specify KNullDesC for no outgoing phase effect.
|
sl@0
|
2577 |
@param aFilenameIncoming The file containing the description of the animation for the incoming phase of the transition.
|
sl@0
|
2578 |
Specify KNullDesC for no incoming phase effect.
|
sl@0
|
2579 |
@param aFlags Flag for the effect. Please see TTfxFlags for values this flag parameter can use.
|
sl@0
|
2580 |
|
sl@0
|
2581 |
@capability WriteDeviceData This API does nothing if the client does not possess required Capability
|
sl@0
|
2582 |
|
sl@0
|
2583 |
@publishedPartner
|
sl@0
|
2584 |
*/
|
sl@0
|
2585 |
{
|
sl@0
|
2586 |
RTFXEffect tfxEffect(iWsHandle, iBuffer);
|
sl@0
|
2587 |
tfxEffect.OverrideTFXEffect(RTFXEffect::ETFXSession, aAction, aPurpose, aResourceDir, aFilenameOutgoing, aFilenameIncoming, aFlags);
|
sl@0
|
2588 |
}
|
sl@0
|
2589 |
|
sl@0
|
2590 |
EXPORT_C void RWsSession::IndicateAppOrientation(TRenderOrientation aOrientation)
|
sl@0
|
2591 |
/**
|
sl@0
|
2592 |
Application informs window server the orientation of rendering it intends to use
|
sl@0
|
2593 |
|
sl@0
|
2594 |
@param aOrientation The orientation the application intends to use
|
sl@0
|
2595 |
|
sl@0
|
2596 |
@publishedPartner
|
sl@0
|
2597 |
*/
|
sl@0
|
2598 |
{
|
sl@0
|
2599 |
return(WriteInt(aOrientation,EWsClOpIndicateAppOrientation));
|
sl@0
|
2600 |
}
|