Update contrib.
1 // Copyright (c) 1995-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // IPC implementation of client side code
18 #include "../SERVER/w32cmd.h"
23 #include "graphics/windowserverconstants.h"
24 #include "rtfxeffect.h"
25 #include <wspublishandsubscribedata.h>
27 const TInt KMaxWSERVMessagesSlot=-1;
29 class RWsCustomTextCursor : public RWsSpriteBase
32 RWsCustomTextCursor(RWsSession aWs, TInt aHandle) : RWsSpriteBase(aWs)
33 { iWsHandle = aHandle; }
37 EXPORT_C RWsSession::RWsSession()
38 /** Default C++ constructor.
40 Constructs an uninitialised window server session. Note that it does not establish
41 a connection to the window server - this must be done explicitly by calling
42 the session's Connect() function. Before Connect() is called, no corresponding
43 session object exists in the server, and the RWsSession contains no meaningful
47 void RWsSession::connectL()
49 iBuffer=new(ELeave) RWsBuffer(this);
50 iBuffer->SetBufferSizeL(RWsBuffer::EDefBufferSize);
51 User::LeaveIfError(CreateSession(KWSERVServerName,Version(),KMaxWSERVMessagesSlot));
52 iWsHandle=User::LeaveIfError(SendReceive(EWservMessInit,TIpcArgs()));
55 EXPORT_C TInt RWsSession::Connect()
56 /** Connects the client session to the window server.
58 Connect() should be the first function called on an RWsSession object after
59 it is created. The function establishes a connection to the window server,
60 creating a corresponding session object in the server. Each session has one
61 and only one connection to the server. Attempting to call Connect() when
62 a connection has already been made will cause a panic.
64 After a connection has been successfully established, all events are delivered
65 to the client application through the RWsSession object.
67 @return KErrNone if successful, otherwise another of the system-wide error
73 Panic(EW32PanicReConnect);
74 if ((ret=RFbsSession::Connect())==KErrNone)
80 RFbsSession::Disconnect();
84 iBuffer->SetCallBack();
89 EXPORT_C TInt RWsSession::Connect(RFs& aFileServer)
90 /** Connects the client session to the window server using pre constructed file server
93 Connect() should be the first function called on an RWsSession object after
94 it is created. The function establishes a connection to the window server,
95 creating a corresponding session object in the server. Each session has one
96 and only one connection to the server. Attempting to call Connect() when
97 a connection has already been made will cause a panic.
99 After a connection has been successfully established, all events are delivered
100 to the client application through the RWsSession object.
102 @param aFileServer A fully constructed file server session
103 @return KErrNone if successful, otherwise another of the system-wide error
109 Panic(EW32PanicReConnect);
110 if ((ret=RFbsSession::Connect(aFileServer))==KErrNone)
112 TRAP(ret,connectL());
116 RFbsSession::Disconnect();
120 iBuffer->SetCallBack();
125 EXPORT_C void RWsSession::Close()
126 /** Closes the window server session.
128 This function cleans up all resources in the RWsSession and disconnects it
129 from the server. Prior to disconnecting from the window server, the client-side
130 window server buffer is destroyed without being flushed. This function should
131 be called when the RWsSession is no longer needed - normally just before
136 __ASSERT_ALWAYS(iBuffer->iDirectAcessCount==0,Panic(EW32PanicDirectMisuse));
137 iBuffer->CancelCallBack();
140 RFbsSession::Disconnect();
142 RSessionBase::Close();
145 // Private function(s)
147 TInt RWsSession::DoSyncMsgBuf(const TIpcArgs& aIpcArgs)
149 return (SendReceive(EWservMessSyncMsgBuf,aIpcArgs));
152 TInt RWsSession::DoFlush(const TIpcArgs& aIpcArgs)
154 return (SendReceive(EWservMessCommandBuffer,aIpcArgs));
157 EXPORT_C TVersion RWsSession::Version() const
158 /** Gets the window server version.
160 @return Window server version containing major and minor version numbers,
164 TVersion v(KWservMajorVersionNumber,KWservMinorVersionNumber,KWservBuildVersionNumber);
168 TInt RWsSession::doSetHotKey(TInt aOpcode, TInt aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers)
170 TWsClCmdSetHotKey setHotKey;
172 setHotKey.type=aType;
173 setHotKey.keycode=(TUint16)aKeycode;
174 setHotKey.modifiers=aModifiers;
175 setHotKey.modifierMask=aModifierMask;
176 return(WriteReply(&setHotKey,sizeof(setHotKey),aOpcode));
179 EXPORT_C TInt RWsSession::SetHotKey(THotKey aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers)
180 /** Sets the hot keys.
182 Hot keys allow standard functions to be performed by application-defined key
185 This function maps any key press (with optional modifiers) to one of the hot
186 keys defined in THotKey. More than one key combination may be mapped to each
187 hot key: a new mapping is added each time the function is called.
189 Modifier key states are defined in TEventModifier. The modifiers that you
190 want to be in a particular state should be specified in aModifierMask and
191 the ones of these you want to be set should be specified in aModifiers. For
192 example, if you want to capture FN-A and you want the SHIFT modifier unset,
193 but you don't care about the state of the other modifiers then set both the
194 flags for SHIFT and FN in aModiferMask and only set FN in aModifiers.
196 Note: default hotkey settings exist, but this function can be used for customisation.
197 Typically it might be be used by a shell application or other application
198 that controls system-wide settings.
200 This function always causes a flush of the window server buffer.
202 @param aType The hot key to be mapped
203 @param aKeyCode The keycode to be mapped to the hot key
204 @param aModifierMask Modifier keys to test for a match
205 @param aModifiers Modifier keys to be tested for "on" state
206 @return KErrNone value if successful, otherwise another of the system-wide
208 @capability SwEvent */
210 return(doSetHotKey(EWsClOpSetHotKey, aType, aKeycode, aModifierMask, aModifiers));
213 EXPORT_C TInt RWsSession::ClearHotKeys(THotKey aType)
214 /** Clears all mappings for the specified hotkey, including the default mapping.
216 Hotkeys allow standard functions to be performed by application-defined key
219 This function always causes a flush of the window server buffer.
221 @param aType The hot key to be cleared
222 @return KErrNone if successful, otherwise one of the system-wide error codes.
224 @see RestoreDefaultHotKey()
225 @capability SwEvent */
227 return(WriteReplyInt(aType,EWsClOpClearHotKeys));
230 EXPORT_C TInt RWsSession::RestoreDefaultHotKey(THotKey aType)
231 /** Restores the default mapping for a hot key.
233 The function clears current mappings for a hot key and restores the default
234 mapping. See THotKey for the default.
236 This function always causes a flush of the window server buffer.
238 @param aType The hot key to restore to its default value
239 @return KErrNone if successful, otherwise another of the system-wide error
241 @see ClearHotKeys() */
243 return(WriteReplyInt(aType,EWsClOpRestoreDefaultHotKey));
246 EXPORT_C void RWsSession::ComputeMode(TComputeMode aMode)
247 /** Sets the mode used to control process priorities.
249 The default window server behaviour is that the application that owns the
250 window with keyboard focus gets foreground process priority (EPriorityForeground)
251 while all other clients get background priority (EPriorityBackground). This
252 function can be used to over-ride this default behaviour, as discussed in
257 Unlike real Symbian phones, the Emulator runs on a single process. As a result,
258 on the Emulator this function sets the priority of individual threads rather
259 than of processes. The values used for thread priorities are EPriorityLess
260 instead of EPriorityBackground, and EPriorityNormal instead of EPriorityForeground.
262 @param aMode The compute mode. */
264 WriteInt(aMode,EWsClOpComputeMode);
268 This method has been deprecated. Shadowing of a window is no longer supported.
269 Calling it has no effect.
270 @param aVector Ignored.
273 EXPORT_C void RWsSession::SetShadowVector(const TPoint& /*aVector*/)
278 This method has been deprecated. Shadowing of a window is no longer supported.
279 Calling it has no effect.
283 EXPORT_C TPoint RWsSession::ShadowVector() const
288 void RWsSession::doReadEvent(TRequestStatus *aStat, TInt aOpcode)
290 *aStat=KRequestPending;
293 iBuffer->Flush(); //ignore error since this flushing should not return any error
295 __ASSERT_DEBUG(EWservMessAsynchronousService>=aOpcode, Assert(EW32AssertIllegalOpcode));
296 const TInt function=EWservMessAsynchronousService|aOpcode;
297 SendReceive(function,TIpcArgs(),*aStat);
300 EXPORT_C void RWsSession::EventReady(TRequestStatus* aStat)
301 /** Requests standard events from the window server.
303 Standard events include all events except redraws and priority key events.
305 The client application will typically handle the completed request using the
306 RunL() function of an active object, and in this case the request status aStat
307 should be the iStatus member of that CActive object.
311 - The active object runs when an event is waiting. You should call GetEvent()
312 in the RunL() function to get the event.
314 - You should not call this function again until you have either called GetEvent()
315 or EventReadyCancel().
317 - Because this function is asynchronous, there is no guarantee that the Window
318 Server will process the request before the function returns. However, on single
319 core systems it is unusual for this function to return before the Window Server
320 has processed the request, because the client generally runs in a lower priority
321 thread than the Window Server. You should therefore expect the use of this
322 function to give rise to different behaviour between single and multicore systems.
324 @param aStat Request status. On successful completion contains KErrNone, otherwise
325 another of the system-wide error codes.
329 doReadEvent(aStat,EWsClOpEventReady);
332 EXPORT_C void RWsSession::RedrawReady(TRequestStatus* aStat)
333 /** Requests redraw events from the window server.
335 Typically, a client will create an active object for redraw events with a
336 lower priority than the active objects for standard events. The client will
337 then typically handle completed redraw requests in the active object's RunL()
340 As in EventReady(), the request status aStat should be used as the iStatus
341 member of an active object. When a redraw event occurs the active object's
342 RunL() function is called. The redraw event can be obtained by calling
343 GetRedraw() in the RunL().
347 - You should not call this function again until you have either called
348 GetRedraw() or RedrawReadyCancel().
350 - Because this function is asynchronous, there is no guarantee that the Window
351 Server will process the request before the function returns. However, on single
352 core systems it is unusual for this function to return before the Window Server
353 has processed the request, because the client generally runs in a lower priority
354 thread than the Window Server. You should therefore expect the use of this
355 function to give rise to different behaviour between single and multicore systems.
357 @param aStat The request status. On successful completion contains KErrNone,
358 otherwise another of the system-wide error codes.
359 @see RedrawReadyCancel()
363 doReadEvent(aStat,EWsClOpRedrawReady);
366 void RWsSession::GraphicMessageReady(TRequestStatus *aStat)
368 doReadEvent(aStat,EWsClOpGraphicMessageReady);
371 void RWsSession::GetGraphicMessage(TDes8& aData) const
373 WriteReplyP(TWriteDescriptorType(&aData),EWsClOpGetGraphicMessage);
376 void RWsSession::GraphicMessageCancel()
378 WriteReply(EWsClOpGraphicMessageCancel);
381 void RWsSession::GraphicAbortMessage(TInt aError)
383 WriteReplyInt(aError, EWsClOpGraphicAbortMessage);
386 TInt RWsSession::GraphicFetchHeaderMessage()
388 return WriteReply(EWsClOpGraphicFetchHeaderMessage);
391 EXPORT_C void RWsSession::PriorityKeyReady(TRequestStatus *aStat)
392 /** Requests priority key events from the window server.
394 Typically, an client will create an active object for priority key events
395 with a higher priority than the active objects for standard events. The client
396 will then normally handle completed priority key requests in the active object's
399 As in EventReady(), the request status argument should be the set to the iStatus
400 member of CActive. When priority key events occur, they are obtained using
405 - You should not call this function again until you have either called
406 GetPriorityKey() or PriorityKeyReadyCancel().
408 - Because this function is asynchronous, there is no guarantee that the Window
409 Server will process the request before the function returns. However, on single
410 core systems it is unusual for this function to return before the Window Server
411 has processed the request, because the client generally runs in a lower priority
412 thread than the Window Server. You should therefore expect the use of this
413 function to give rise to different behaviour between single and multicore systems.
415 @param aStat Request status. On successful completion contains KErrNone, otherwise
416 another of the system-wide error codes.
417 @see PriorityKeyReadyCancel()
418 @see GetPriorityKey()
421 doReadEvent(aStat,EWsClOpPriorityKeyReady);
424 EXPORT_C void RWsSession::GetEvent(TWsEvent &aEvent) const
425 /** Gets a standard event from the session for processing.
427 The type of event returned by GetEvent() may be any of those listed in TEventCode.
428 To access the data within an event, the event should be converted to the appropriate
429 type, using functions provided by the TWsEvent class. TWsEvent also provides
430 a function to find out the type of the event.
434 It is possible that the returned event is of type EEventNull. Clients should
435 normally ignore these events.
437 This function should only be called in response to notification that an event
438 has occurred, otherwise the client will be panicked.
440 This function would normally be called in the RunL() function of an active
441 object which completes with the EventReady() function's request status.
443 This function always causes a flush of the window server buffer.
445 @param aEvent On return, contains the event that occurred
449 TPckgBuf<TWsEvent> event;
450 WriteReplyP(&event,EWsClOpGetEvent);
454 EXPORT_C void RWsSession::PurgePointerEvents()
455 /** Removes all pointer events waiting to be delivered to this session.
457 The events are removed from the event queue without being processed. This
458 might occur, for example, at application startup. */
460 Write(EWsClOpPurgePointerEvents);
463 EXPORT_C void RWsSession::GetRedraw(TWsRedrawEvent &aEvent)
464 /** Gets the redraw event from the session.
466 This function is similar to GetEvent(), except that the event is returned
467 as a TWsRedrawEvent, and hence there is no need to convert it from a TWsEvent.
469 The function should only be called after notification that a redraw is waiting.
471 It always causes a flush of the window server buffer.
473 @param aEvent On return, contains the redraw event that occurred
478 TPckgBuf<TWsRedrawEvent> redraw;
479 WriteReplyP(&redraw,EWsClOpGetRedraw);
483 EXPORT_C void RWsSession::GetPriorityKey(TWsPriorityKeyEvent &aEvent) const
484 /** Gets the completed priority key event from the window server session.
486 Priority key events are typically used for providing "Abort" or "Escape" keys
489 This function is similar to GetEvent(), except that it returns a TWsPriorityKeyEvent
490 instead of a TWsEvent.
492 Note: this should only be called after notification that a priority key event has
495 This function always causes a flush of the window server buffer.
497 @param aEvent On return, contains the priority key event that occurred.
498 @see PriorityKeyReady()
499 @see PriorityKeyReadyCancel() */
501 TPckgBuf<TWsPriorityKeyEvent> abortEvent;
502 WriteReplyP(&abortEvent,EWsClOpGetPriorityKey);
506 EXPORT_C void RWsSession::EventReadyCancel()
507 /** Cancels a request for standard events from the window server.
509 This request was made using EventReady().
511 The client application will typically use an active object to handle standard
512 events, and this function should be called from the active object's DoCancel()
515 This function always causes a flush of the window server buffer.
520 WriteReply(EWsClOpEventReadyCancel);
523 EXPORT_C void RWsSession::RedrawReadyCancel()
524 /** Cancels a redraw event request.
526 If active objects are used, this function should be called from the active
527 object's DoCancel() function.
529 This function always causes a flush of the window server buffer.
531 @see RedrawReady() */
534 WriteReply(EWsClOpRedrawReadyCancel);
537 EXPORT_C void RWsSession::PriorityKeyReadyCancel()
538 /** Cancels a priority key event request.
540 If active objects are used, this function should be called from the active
541 object's DoCancel() function.
543 This function always causes a flush of the window server buffer.
545 @see PriorityKeyReady()
549 WriteReply(EWsClOpPriorityKeyReadyCancel);
552 EXPORT_C void RWsSession::Flush()
553 /** Sends all pending commands in the buffer to the window server.
555 Delivering a command to the window server requires a context switch, and so
556 it is more efficient to deliver several commands in one go. Hence all client
557 commands are normally first placed into a buffer for delivery to the window
560 The buffer is delivered when it gets full, or when a command that returns a value
561 is called (there are a few exceptions to this), or when this function is called.
563 Note: this function is called when a prompt response is required from the window
564 server, e.g. after doing some drawing.
566 @see RWsSession::SetAutoFlush()
567 @see RWsSession::SetBufferSizeL()
568 @see RWsSession::SetMaxBufferSizeL()
572 iBuffer->Flush(NULL,ETrue);
575 EXPORT_C TBool RWsSession::SetAutoFlush(TBool aState)
576 /** Sets a session's auto-flush state.
578 If auto-flush is set to ETrue, the window server buffer is flushed immediately
579 anything is put into it, instead of waiting until it becomes full. This setting
580 is normally used only in a debugging environment.
582 If the auto-flush state is EFalse, the window server buffer is flushed normally.
584 @param aState ETrue to set auto-flushing on, EFalse to disable auto-flushing.
585 @return Previous auto-flush state
587 @see RWsSession::Flush()
588 @see RWsSession::SetBufferSizeL()
589 @see RWsSession::SetMaxBufferSizeL()
592 return(iBuffer->SetAutoFlush(aState));
595 EXPORT_C TInt RWsSession::NumWindowGroups() const
596 /** Gets the total number of window groups currently running in the window server.
598 This includes all the groups running in all sessions.
600 This function always causes a flush of the window server buffer.
602 @return Total number of window groups running in the server */
604 return(WriteReply(EWsClOpNumWindowGroupsAllPriorities));
607 EXPORT_C TInt RWsSession::NumWindowGroups(TInt aPriority) const
608 /** Gets the number of window groups of a given window group priority running in
609 all sessions in the window server.
611 This function always causes a flush of the window server buffer.
613 @param aPriority Window group priority
614 @return Number of window groups of priority aPriority */
616 return(WriteReplyInt(aPriority,EWsClOpNumWindowGroups));
619 EXPORT_C TInt RWsSession::NumWindowGroups(TInt aScreenNumber,TInt aPriority) const
620 /** Gets the number of window groups of a given window group priority running on a specified screen
622 This function always causes a flush of the window server buffer.
624 @param aScreenNumber specifies the screen.
625 @param aPriority Window group priority. EAllPriorities is the enum for all priorities
626 @return Number of window groups of priority aPriority on the specified screen */
628 TWsClCmdNumWindowGroups params;
629 params.screenNumber = aScreenNumber;
630 params.priority = aPriority;
631 return(WriteReply(¶ms,sizeof(params),EWsClOpNumWindowGroupsOnScreen));
634 TInt RWsSession::doWindowGroupList(TInt aScreenNumber, TInt aPriority, CArrayFixFlat<TInt>* aWindowList, TInt aNumOpcode, TInt aListOpcode) const
635 /** Gets the id of window groups of specified priority running on a specified screen.
637 This function always causes a flush of the window server buffer.
639 @param aScreenNumber specifies the screen.
640 @param aPriority Window group priority
641 @param aWindowList List of identifiers
642 @return KErrNone if successful, otherwise another of the system-wide error
645 TWsClCmdWindowGroupList params;
646 params.priority = aPriority;
647 params.screenNumber = aScreenNumber;
648 if(aScreenNumber!=KDummyScreenNumber)
650 TWsClCmdNumWindowGroups numWinGrp;
651 numWinGrp.screenNumber = aScreenNumber;
652 numWinGrp.priority = aPriority;
653 params.count=WriteReply(&numWinGrp,sizeof(numWinGrp),aNumOpcode);
656 params.count=WriteReplyInt(aPriority,aNumOpcode);
658 TRAPD(err,aWindowList->ResizeL(params.count));
659 if (err!=KErrNone || params.count==0)
661 TPtr8 listPtr(reinterpret_cast<TUint8*>(&(*aWindowList)[0]),params.count*sizeof((*aWindowList)[0]));
662 TInt actualCount=WriteReplyP(¶ms, sizeof(params), &listPtr, aListOpcode);
669 if (actualCount<params.count)
670 aWindowList->ResizeL(actualCount); // Can't fail, only shrinking it
674 TInt RWsSession::doWindowGroupList(TInt aPriority, RArray<TWindowGroupChainInfo>* aWindowListCh, TInt aNumOpcode, TInt aListOpcode) const
675 /** Gets the id of window groups and id of its parent window group of specified priority running in
676 all sessions in the window server.
678 This function always causes a flush of the window server buffer.
680 @param aPriority Window group priority
681 @param aWindowList List of identifiers
682 @return KErrNone if successful else KErrNoMemory if there is insufficient memory to create the array.
683 This function will panic if aWindowListCh is Null.*/
685 __ASSERT_ALWAYS(aWindowListCh,Panic(EW32PanicNullArray));
686 TWsClCmdWindowGroupList params;
687 params.priority=aPriority;
688 params.count=WriteReplyInt(aPriority,aNumOpcode);
689 aWindowListCh->Reset();
690 TUint8* WindowList=static_cast<TUint8*>(User::Alloc(params.count*sizeof(TWindowGroupChainInfo)));
695 TPtr8 listPtr(WindowList,params.count*sizeof(TWindowGroupChainInfo));
696 WriteReplyP(¶ms, sizeof(params), &listPtr, aListOpcode);
697 new(aWindowListCh) RArray<TWindowGroupChainInfo>(sizeof(TWindowGroupChainInfo),(TWindowGroupChainInfo*)WindowList,params.count);
701 EXPORT_C TInt RWsSession::WindowGroupList(CArrayFixFlat<TInt>* aWindowList) const
702 /** Gets a list of identifiers of all window groups in all window server sessions.
704 An array buffer must be created to store the resultant list.
706 This function always causes a flush of the window server buffer.
708 @param aWindowList List of identifiers of all window groups in the server.
709 @return KErrNone if successful, otherwise another of the system-wide error
712 return(doWindowGroupList(KDummyScreenNumber,0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAllPriorities));
715 EXPORT_C TInt RWsSession::WindowGroupList(CArrayFixFlat<TInt>* aWindowList,TInt aScreenNumber,TInt aPriority) const
716 /** Lists the number of window groups of a given window group priority running on a specified screen.
718 This function is the same as WindowGroupList() described above, but allows
719 the application to restrict the list of window groups to those of a particular
720 window group priority.
722 This function always causes a flush of the window server buffer.
724 @param aScreenNumber specifies the screen
725 @param aPriority Window group priority . Enum for all priorities is EAllPriorities
726 @param aWindowList List of identifiers of all window groups on the specified screen with the given priority
728 @return KErrNone if successful, otherwise another of the system-wide error
731 return(doWindowGroupList(aScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroupsOnScreen,EWsClOpWindowGroupList));
734 EXPORT_C TInt RWsSession::WindowGroupList(RArray<TWindowGroupChainInfo>* aWindowList) const
735 /** Gets a list of identifier of window group and parent identifier of window group of
736 all window groups in all window server sessions.
738 An array buffer must be created to store the resultant list.
740 This function always causes a flush of the window server buffer.
742 @param aWindowList List of identifiers of all window groups in the server.
743 @return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array,
744 Panics if aWindowList is NULL. */
746 return(doWindowGroupList(0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAndChainAllPriorities));
749 EXPORT_C TInt RWsSession::WindowGroupList(TInt aPriority,CArrayFixFlat<TInt>* aWindowList) const
750 /** Lists the number of window groups of a given window group priority running
751 in all window server sessions.
753 This function is the same as WindowGroupList() described above, but allows
754 the application to restrict the list of window groups to those of a particular
755 window group priority.
757 This function always causes a flush of the window server buffer.
759 @param aPriority Window group priority
760 @param aWindowList List of identifiers of all window groups in the server of priority
762 @return KErrNone if successful, otherwise another of the system-wide error
765 return(doWindowGroupList(KDummyScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupList));
768 EXPORT_C TInt RWsSession::WindowGroupList(TInt aPriority, RArray<TWindowGroupChainInfo>* aWindowList) const
769 /** Lists the number of window groups of a given window group priority running
770 in all window server sessions.
772 This function is the same as WindowGroupList() described above, but allows
773 the application to restrict the list of window groups to those of a particular
774 window group priority.
776 This function always causes a flush of the window server buffer.
778 @param aPriority Window group priority
779 @param aWindowList List of identifiers of all window groups in the server of priority
781 @return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array,
782 Panics if aWindowList is NULL. */
784 return(doWindowGroupList(aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupListAndChain));
787 EXPORT_C TInt RWsSession::GetDefaultOwningWindow() const
788 /** Gets the identifier of the current default owning window group.
790 This function always causes a flush of the window server buffer.
792 @return Identifier of current default owning window group. Returns 0 if there
795 return GetDefaultOwningWindow(KDummyScreenNumber);
798 EXPORT_C TInt RWsSession::GetDefaultOwningWindow(TInt aScreenNumber) const
799 /** Gets the identifier of the current default owning window group on a specified screen.
801 This function always causes a flush of the window server buffer.
803 @param aScreenNumber specifies the screen.
804 @return Identifier of current default owning window group on the specified screen. Returns 0 if there
807 return(WriteReplyInt(aScreenNumber,EWsClOpGetDefaultOwningWindow));
810 EXPORT_C TInt RWsSession::GetFocusWindowGroup() const
811 /** Gets the identifier of the window group that currently has the keyboard focus.
813 Note: this might not necessarily be the front-most window group, as window groups
814 can disable keyboard focus.
816 This function always causes a flush of the window server buffer.
818 @return Identifier of window group with keyboard focus. */
820 return GetFocusWindowGroup(KDummyScreenNumber);
823 EXPORT_C TInt RWsSession::GetFocusWindowGroup(TInt aScreenNumber) const
824 /** Gets the identifier of the window group on a specified screen that currently has the keyboard focus.
826 Note: this might not necessarily be the front-most window group, as window groups
827 can disable keyboard focus.
829 This function always causes a flush of the window server buffer.
831 @param aScreenNumber specifies the screen.
832 @return Identifier of window group with keyboard focus. */
834 return WriteReplyInt(aScreenNumber,EWsClOpGetFocusWindowGroup);
837 EXPORT_C TInt RWsSession::SetWindowGroupOrdinalPosition(TInt aIdentifier, TInt aPosition)
838 /** Sets the ordinal position of a window group.
840 This function allows the caller to change the ordinal position of an existing
841 window group. It would typically be used by a shell application.
843 This function always causes a flush of the window server buffer.
845 @param aIdentifier The window group.
846 @param aPosition Ordinal position for the window group.
847 @return KErrNone if successful, otherwise another of the system-wide error
850 TWsClCmdSetWindowGroupOrdinalPosition params(aIdentifier,aPosition);
851 return(WriteReply(¶ms, sizeof(params),EWsClOpSetWindowGroupOrdinalPosition));
854 EXPORT_C TInt RWsSession::GetWindowGroupClientThreadId(TInt aIdentifier, TThreadId &aThreadId) const
855 /** Gets the thread ID of the client that owns the window group specified by the
856 window group identifier.
858 This function always causes a flush of the window server buffer.
860 @param aIdentifier The window group identifier.
861 @param aThreadId On return, contains the thread ID.
862 @return KErrNone if successful, otherwise another of the system-wide error
865 TPtr8 ptr(reinterpret_cast<TUint8*>(&aThreadId),sizeof(aThreadId));
866 return(WriteReplyIntP(aIdentifier,&ptr,EWsClOpGetWindowGroupClientThreadId));
869 EXPORT_C TInt RWsSession::GetWindowGroupHandle(TInt aIdentifier) const
870 /** Gets the handle of the window specified by the window group identifier.
872 This is the handle that was passed as an argument to RWindowGroup::Construct().
874 This function always causes a flush of the window server buffer.
876 @param aIdentifier The window group identifier.
877 @return Handle of the window group */
879 return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupHandle));
882 EXPORT_C TInt RWsSession::GetWindowGroupOrdinalPriority(TInt aIdentifier) const
883 /** Gets a window group's priority.
885 This function always causes a flush of the window server buffer.
887 @param aIdentifier The window group identifier.
888 @return The window group priority. */
890 return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupOrdinalPriority));
893 EXPORT_C TInt RWsSession::SendEventToWindowGroup(TInt aIdentifier, const TWsEvent &aEvent)
894 /** Sends an event to a window group.
896 This function always causes a flush of the window server buffer.
898 @param aIdentifier Window group identifier.
899 @param aEvent Event to send to the window group.
900 @return KErrNone if successful, KErrPermissionDenied if the client does not have
901 the required capability, KErrNoMemory if there is not enough room to add the
902 event to the event queue and otherwise another of the system-wide error codes.
903 @capability SwEvent Required when aEvent.Type() < EEventUser unless the event
904 is for a window group owned by this session.
908 TWsClCmdSendEventToWindowGroup params(aIdentifier,aEvent);
909 return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToWindowGroup));
912 EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(const TWsEvent &aEvent)
913 /** Sends the specified event to all existing window groups.
915 This function always causes a flush of the window server buffer.
917 @param aEvent The event to be sent to all window groups.
918 @return KErrNone if successful, KErrPermissionDenied if the client does not have
919 the required capability, KErrNoMemory if there is not enough room to add the
920 event to all the required event queues (although it may have been added to some
921 of them) and otherwise another of the system-wide error codes.
922 @capability SwEvent Required when aEvent.Type() < EEventUser
926 TWsClCmdSendEventToWindowGroup params(0,aEvent);
927 return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToAllWindowGroup));
930 EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(TInt aPriority, const TWsEvent &aEvent)
931 /** Sends the specified event to all window groups with the specified priority.
933 This function always causes a flush of the window server buffer.
935 @param aPriority The priority which window groups must have to be sent the
937 @param aEvent The event to be sent to the specified window groups.
938 @return KErrNone if successful, KErrPermissionDenied if the client does not have
939 the required capability, KErrNoMemory if there is not enough room to add the
940 event to all the required event queues (although it may have been added to some
941 of them) and otherwise another of the system-wide error codes.
942 @capability SwEvent Required when aEvent.Type() < EEventUser
946 TWsClCmdSendEventToWindowGroup params(aPriority,aEvent);
947 return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToAllWindowGroupPriority));
950 EXPORT_C TInt RWsSession::SendEventToOneWindowGroupsPerClient(const TWsEvent &aEvent)
951 /** This function always causes a flush of the window server buffer.
952 @capability SwEvent Required when aEvent.Type() < EEventUser
956 TWsClCmdSendEventToWindowGroup params(0,aEvent);
957 return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToOneWindowGroupPerClient));
960 EXPORT_C TInt RWsSession::GetWindowGroupNameFromIdentifier(TInt aIdentifier, TDes &aWindowName) const
961 /** Gets the name of a window group from its identifier.
963 Using the list of identifiers returned by WindowGroupList(), it is possible
964 to get the names of all window groups in the system. Note that window names
965 are a zero length string by default.
967 Note that the window group name must have been previously set using RWindowGroup::SetName()
968 to contain a meaningful value.
970 This function always causes a flush of the window server buffer.
972 @param aIdentifier The identifier of the window group whose name is to be
974 @param aWindowName On return, contains the window group name.
975 @return KErrNone if successful, otherwise another of the system-wide error
978 TWsClCmdGetWindowGroupNameFromIdentifier params(aIdentifier,aWindowName.MaxLength());
979 return(WriteReplyP(¶ms,sizeof(params),&aWindowName,EWsClOpGetWindowGroupNameFromIdentifier));
982 EXPORT_C TInt RWsSession::FindWindowGroupIdentifier(TInt aPreviousIdentifier,const TDesC& aMatch,TInt aOffset) const
983 /** Gets all window groups whose names match a given string, which can contain
986 An example use of this function might be to find all the currently
987 running instances of a particular application, assuming that the window group
988 name contains the application name. An optional argument, aOffset, specifies
989 the number of characters to be ignored at the beginning of the window group
990 name. As several window group names may match the given string, and the function
991 can return only one at a time, there is an argument, aPreviousIdentifier,
992 which gives the identifier for the previous match that was returned. In other
993 words, it means, "get me the next match after this one." The first time the
994 function is called, give 0 as the previous identifier.
996 Matching is done using TDesC::MatchF(), which does a folded match. Wildcards
997 '*' and '?' can be used to denote one or more characters and exactly one character,
998 respectively. Windows are searched in front to back order.
1000 This function always causes a flush of the window server buffer.
1002 @param aPreviousIdentifier Identifier of the last window group returned. If
1003 the value passed is not a valid identifier, the function returns KErrNotFound.
1004 @param aMatch String to match window group name against: may contain wildcards
1005 @param aOffset The first aOffset characters of the window group name are ignored
1006 when doing the match.
1007 @return The next window group, after the one identified by aPreviousIdentifier,
1008 whose name matches aMatch. KErrNotFound if no window group matched or aPreviousIdentifier
1009 was not a valid identifier. */
1011 TWsClCmdFindWindowGroupIdentifier params(aPreviousIdentifier,aOffset, aMatch.Length());
1012 return(WriteReply(¶ms,sizeof(params),aMatch.Ptr(),aMatch.Size(),EWsClOpFindWindowGroupIdentifier));
1015 EXPORT_C TInt RWsSession::FindWindowGroupIdentifier(TInt aPreviousIdentifier,TThreadId aThreadId) const
1016 /** Gets the identifiers of window groups belonging to a client which is owned
1017 by a thread with the specified thread ID.
1019 The thread may own more than one window group, so the identifier returned
1020 is the one after aPreviousIdentifier. The first time the function is called,
1021 use 0 for the previous identifier.
1023 This function always causes a flush of the window server buffer.
1025 @param aPreviousIdentifier Identifier returned by previous call
1026 @param aThreadId Thread owning the window group or groups.
1027 @return Next window group identifier after the one identified by aPreviousIdentifier */
1029 TWsClCmdFindWindowGroupIdentifierThread params(aPreviousIdentifier, aThreadId);
1030 return(WriteReply(¶ms,sizeof(params),EWsClOpFindWindowGroupIdentifierThread));
1033 EXPORT_C TInt RWsSession::SendMessageToWindowGroup(TInt aIdentifier, TUid aUid, const TDesC8 &aParams)
1034 /** Sends a message to a window group.
1036 The window group will then receive an event of type EEventMessageReady notifying
1037 it that a message has been received. The window group can belong to this or
1040 In order to receive messages sent using this function you will need to implement
1041 the MCoeMessageObserver interface which is defined in the UI Control Framework API.
1043 This function always causes a flush of the window server buffer.
1045 @param aIdentifier The identifier of the window group to receive the message.
1046 @param aUid A UID which uniquely identifies the session sending the message.
1047 @param aParams The message data. An unlimited amount of data can be passed
1049 @return KErrNone if successful, otherwise another of the system-wide error
1051 @see MCoeMessageObserver
1055 TWsClCmdSendMessageToWindowGroup params(aIdentifier, aUid, aParams.Length(),&aParams);
1056 return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToWindowGroup));
1059 EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TUid aUid, const TDesC8& aParams)
1060 /** Sends a message to all window groups.
1062 In order to receive messages sent using this function you will need to implement
1063 the MCoeMessageObserver interface which is defined in the UI Control Framework
1066 This function always causes a flush of the window server buffer.
1068 @param aUid A UID which uniquely identifies the session sending the message.
1069 @param aParams The message data. An unlimited amount of data can be passed
1071 @return KErrNone if successful, otherwise another of the system-wide error
1076 TWsClCmdSendMessageToWindowGroup params(0, aUid, aParams.Length(),&aParams);
1077 return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroups));
1080 EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TInt aPriority, TUid aUid, const TDesC8& aParams)
1081 /** Sends a message to all window groups with the specified priority.
1083 In order to receive messages sent using this function you will need to implement
1084 the MCoeMessageObserver interface which is defined in the UI Control Framework
1087 This function always causes a flush of the window server buffer.
1089 @param aPriority The priority which window groups must have to be sent the
1091 @param aUid A UID which uniquely identifies the session sending the message.
1092 @param aParams The message data. An unlimited amount of data can be passed
1094 @return KErrNone if successful, otherwise another of the system-wide error
1099 TWsClCmdSendMessageToWindowGroup params(aPriority, aUid, aParams.Length(),&aParams);
1100 return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroupsPriority));
1104 /** Called by the client in response to an EEventMessageReady event to receive the message data.
1106 This function always causes a flush of the window server buffer.
1108 @param aUid A UID which uniquely identifies the session sending the message.
1109 @param aParams The message data. An unlimited amount of data can be passed
1111 @param aMessageEvent The event sent from the server to the client to identify the message.
1112 @return KErrNone if successful, KErrNoMemory if there is insufficient memory for
1113 the message data, otherwise another of the system-wide error codes.
1115 EXPORT_C TInt RWsSession::FetchMessage(TUid& aUid, TPtr8& aParams, const TWsEvent& aMessageEvent) const
1117 const SEventMessageReady& eventMessageReady=*(SEventMessageReady*)aMessageEvent.EventData();
1118 TUint8* ptr=(TUint8*)User::Alloc(eventMessageReady.iMessageParametersSize);
1121 aParams.Set(NULL, 0, 0);
1122 return KErrNoMemory;
1124 aUid=eventMessageReady.iMessageUid;
1125 aParams.Set(ptr, eventMessageReady.iMessageParametersSize, eventMessageReady.iMessageParametersSize);
1126 TWsClCmdFetchMessage outGoingParams(eventMessageReady.iWindowGroupIdentifier);
1127 const TInt error=WriteReplyP(&outGoingParams, sizeof(outGoingParams), &aParams, EWsClOpFetchMessage); // must be called even if eventMessageReady.iMessageParametersSize==0
1128 if (error!=KErrNone)
1131 aParams.Set(NULL, 0, 0);
1136 EXPORT_C TInt RWsSession::SetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime)
1137 /** Sets the system-wide keyboard repeat rate.
1139 This is the rate at which keyboard events are generated when a key is held
1142 The default settings for the keyboard repeat rate are 0.3 seconds for the
1143 initial delay, and 0.1 seconds for the interval between subsequent repeats.
1144 However, since the settings are system-wide, these will not necessarily be
1145 the current settings when an application is launched: the settings may have
1146 been over-ridden by another module.
1148 This function always causes a flush of the window server buffer.
1150 @param aInitialTime Time before first repeat key event
1151 @param aTime Time between subsequent repeat key events
1152 @return KErrNone if successful, otherwise another of the system-wide error
1154 @see GetKeyboardRepeatRate()
1155 @capability WriteDeviceData */
1157 TWsClCmdSetKeyboardRepeatRate repeat(aInitialTime,aTime);
1158 return(WriteReply(&repeat,sizeof(repeat),EWsClOpSetKeyboardRepeatRate));
1161 EXPORT_C void RWsSession::GetKeyboardRepeatRate(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime) const
1162 /** Gets the current system-wide settings for the keyboard repeat rate.
1164 This function always causes a flush of the window server buffer.
1166 @param aInitialTime Time before first repeat key event
1167 @param aTime Time between subsequent repeat key events
1168 @see SetKeyboardRepeatRate() */
1170 TPckgBuf<SKeyRepeatSettings> settings;
1171 WriteReplyP(&settings,EWsClOpGetKeyboardRepeatRate);
1172 aInitialTime=settings().iInitialTime;
1173 aTime=settings().iTime;
1176 EXPORT_C TInt RWsSession::SetDoubleClick(const TTimeIntervalMicroSeconds32 &aInterval, TInt aDistance)
1177 /** Sets the system-wide double click settings.
1179 Double click distance is measured, in pixels, as the sum of the X distance
1180 moved and the Y distance moved between clicks. For example: a first click
1181 at 10, 20 and a second click at 13,19 gives a distance of (13-10)+(21-20) = 4.
1183 This function always causes a flush of the window server buffer.
1185 @param aInterval Maximum interval between clicks that constitutes a double
1187 @param aDistance Maximum distance between clicks that constitutes a double
1189 @return KErrNone if successful, otherwise another of the system-wide error
1191 @see GetDoubleClickSettings()
1192 @capability WriteDeviceData */
1194 TWsClCmdSetDoubleClick dblClick(aInterval,aDistance);
1195 return(WriteReply(&dblClick,sizeof(dblClick),EWsClOpSetDoubleClick));
1198 EXPORT_C void RWsSession::GetDoubleClickSettings(TTimeIntervalMicroSeconds32 &aInterval, TInt &aDistance) const
1199 /** Gets the current system-wide settings for pointer double clicks.
1201 Double click distances are measured in pixels as the sum of the X distance
1202 moved and the Y distance moved between clicks. For example: a first click
1203 at 10, 20 and a second click at 13,19 gives a distance of (13-10)+(21-20) = 4.
1205 This function always causes a flush of the window server buffer.
1207 @param aInterval Maximum interval between clicks that constitutes a double
1209 @param aDistance Maximum distance between clicks that constitutes a double
1211 @see SetDoubleClick() */
1213 TPckgBuf<SDoubleClickSettings> settings;
1214 WriteReplyP(&settings,EWsClOpGetDoubleClickSettings);
1215 aInterval=settings().iInterval;
1216 aDistance=settings().iDistance;
1219 EXPORT_C void RWsSession::SetBackgroundColor(TRgb aColor)
1220 /** Sets the background colour for the window server.
1222 This background can only be seen in areas of the display that have no windows
1223 on them: so for many applications it will never be seen. It affects no
1226 @param aColor Background colour */
1228 WriteInt(aColor.Internal(),EWsClOpSetBackgroundColor);
1231 EXPORT_C TRgb RWsSession::GetBackgroundColor() const
1232 /** Gets the window server's background colour.
1234 This function always causes a flush of the window server buffer.
1236 @return Background colour */
1239 col.SetInternal((TUint32)WriteReply(EWsClOpGetBackgroundColor));
1243 EXPORT_C TInt RWsSession::RegisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface)
1245 This function registers a surface for use in composition on the screen associated
1246 with this device within this session.
1248 A surface may be registered as a separate step before it is added as a background surface
1249 for a window created in the same session and that is displayed on this screen. This then
1250 allows content to be provisioned before the surface is displayed for the first time, and
1251 to be kept "live" while not assigned to any window.
1253 A surface can be successfully registered in multiple sessions and on multiple screens, but
1254 only once for a given combination of session and screen.
1256 The client should call UnregisterSurface when finished with the surface registered using
1257 this method. The surface will be automatically unregistered if necessary when the session closes.
1259 @param aScreenNumber The screen to which to register.
1260 @param aSurface The surface to be registered.
1261 @return KErrNone on success or a system-wide error code
1262 - KErrNoMemory if registration fails due to low memory.
1263 - KErrInUse if the surface ID is already registered for this session and screen.
1264 @pre aSurface has been initialized and is compatible with being composited on this device's
1265 screen; otherwise the client thread is panicked with code EWservPanicIncompatibleSurface.
1266 @pre aScreenNumber is an acceptable screen number. Otherwise the client thread is panicked
1267 with code EWservPanicScreenNumber.
1268 @post The surface has been successfully registered for use in composition on this device's screen.
1269 @post The surface’s content is in an undefined state, but the surface remains initialized.
1270 @post This function always causes a flush of the WServ session buffer.
1271 @see UnregisterSurface
1277 TWsClCmdSurfaceRegister surfaceRegister(aScreenNumber,aSurface);
1278 return(WriteReply(&surfaceRegister,sizeof(surfaceRegister),EWsClOpRegisterSurface));
1281 EXPORT_C void RWsSession::UnregisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface)
1283 This function removes the surface from the session's register of surfaces that are used in
1284 composition on the screen associated with this device.
1286 Calling this function with a surface that is not currently explicitly registered on this screen
1287 in this session by RegisterSurface() will have no effect.
1289 Calling this function while the surface is still assigned to a window will have no immediate
1290 effect. However, when the surface is unassigned from the window, and is not held by another
1291 session it will then be automatically unregistered.
1293 An unregistered surface can be re-registered again, if necessary.
1295 This function does not explicitly force a flush of the WServ session buffer. Internal reference
1296 counting will keep the Surface ID "live" until the client code has released any handles and
1297 provisioners, and WServ processes the buffered remove command, and the final frame containing
1298 this surface has finished being displayed.
1300 @param aScreenNumber The screen to which to unregister.
1301 @param aSurface The surface to be unregistered.
1302 @pre aSurface has been initialized; otherwise the client thread is panicked with
1303 code EWservPanicIncompatibleSurface.
1304 @pre aScreenNumber is an acceptable screen number. Otherwise the client thread is
1305 panicked with code EWservPanicScreenNumber.
1306 @post If no window is using the surface, then it is unregistered on this screen in this session.
1307 @see RegisterSurface
1313 TWsClCmdSurfaceRegister surfaceRegister(aScreenNumber,aSurface);
1314 Write(&surfaceRegister,sizeof(surfaceRegister),EWsClOpUnregisterSurface);
1317 EXPORT_C TInt RWsSession::PreferredSurfaceConfigurationSize() const
1319 Returns the window server's preferred size for the TSurfaceConfiguration object, used
1320 for RWindow::SetBackgroundSurface.
1322 Client code is permitted to present any defined version of the TSurfaceConfiguration
1323 class, distinguished by its size. If smaller, earlier versions are presented, the server
1324 will substitute the stated default values. If later, larger, structures are presented to
1325 the server then the additional data will be ignored.
1327 However, by using this method, the client can fine-tune its use of the interface, avoiding
1328 generating attribute data that may not be supported, or reduce the options presented to users.
1330 @return The preferred size in bytes
1331 - Should match one of the TSurfaceConfiguration classes defined in the client's header
1332 file, or be larger than them all, indicating a version newer that the client is compiled for.
1333 - If the server does not support surface configuration
1334 - Return KErrNotSupported.
1340 return sizeof(TSurfaceConfiguration);
1343 EXPORT_C TInt RWsSession::SetSystemPointerCursor(const RWsPointerCursor &aPointerCursor,TInt aCursorNumber)
1344 /** Sets a cursor in the system pointer cursor list.
1346 To gain access to the list, the client must first call ClaimSystemPointerCursorList().
1348 This function always causes a flush of the window server buffer.
1350 @param aPointerCursor Pointer cursor to set in the list
1351 @param aCursorNumber Cursor number in the list
1352 @return KErrNone if successful, otherwise another of the system-wide error
1355 TWsClCmdSetSystemPointerCursor setpc;
1356 setpc.handle=aPointerCursor.WsHandle();
1357 setpc.number=aCursorNumber;
1358 return(WriteReply(&setpc,sizeof(setpc),EWsClOpSetSystemPointerCursor));
1361 EXPORT_C void RWsSession::ClearSystemPointerCursor(TInt aCursorNumber)
1362 /** Clears a system pointer cursor from the list.
1364 Before calling this function, the client must first gain access to the list
1365 by calling ClaimSystemPointerCursorList().
1367 @param aCursorNumber Cursor number to clear */
1369 WriteInt(aCursorNumber,EWsClOpClearSystemPointerCursor);
1372 EXPORT_C TInt RWsSession::ClaimSystemPointerCursorList()
1373 /** Claims the system pointer cursor list.
1375 You must call this function before you can call SetSystemPointerCursor() or
1376 ClearSystemPointerCursor().
1378 This function always causes a flush of the window server buffer.
1380 @return KErrNone if successful, KErrInUse if another client is already using
1381 the system pointer cursor list, otherwise another of the system-wide error
1383 @see FreeSystemPointerCursorList()
1384 @capability WriteDeviceData */
1386 return(WriteReply(EWsClOpClaimSystemPointerCursorList));
1389 EXPORT_C void RWsSession::FreeSystemPointerCursorList()
1390 /** Releases the system pointer cursor list and deletes all the entries in it.
1392 A client should call this function when it no longer needs the system pointer
1396 Write(EWsClOpFreeSystemPointerCursorList);
1399 EXPORT_C TInt RWsSession::SetCustomTextCursor(TInt aIdentifier, const TArray<TSpriteMember>& aSpriteMemberArray, TUint aSpriteFlags, TCustomTextCursorAlignment aAlignment)
1400 /** Adds a custom text cursor to the server's list of cursors.
1402 After adding a custom text cursor, it can be selected for use by calling
1403 RWindowGroup::SetTextCursor().
1405 Note that once added, custom text cursors cannot be removed.
1407 This function always causes a flush of the window server buffer.
1409 @param aIdentifier The unique identifier for the cursor.
1410 @param aSpriteMemberArray An array defining the bitmap(s) that make up the
1411 cursor. Typically, this array will contain a single element for a static,
1412 non-animated cursor.
1413 @param aSpriteFlags Flags affecting the sprite behaviour. For possible values
1415 @param aAlignment The vertical alignment of the cursor sprite.
1416 @return KErrNone if successful, KErrAlreadyExists if a custom cursor with the
1417 specified identifier already exists, or another of the standard system wide
1420 // Create the cursor
1421 TWsClCmdCustomTextCursorData params;
1422 params.identifier = aIdentifier;
1423 params.flags = aSpriteFlags;
1424 params.alignment = aAlignment;
1425 const TInt handle = iBuffer->WriteReplyWs(¶ms, sizeof(params), EWsClOpStartSetCustomTextCursor);
1428 return handle; // Failed to create
1431 RWsCustomTextCursor cursor(*this, handle);
1432 TInt err = KErrNone;
1433 for (TInt ii = 0; ii < aSpriteMemberArray.Count(); ii++)
1435 err = cursor.AppendMember(aSpriteMemberArray[ii]);
1436 if (err != KErrNone)
1442 err = iBuffer->WriteReplyWs(&err, sizeof(err), EWsClOpCompleteSetCustomTextCursor);
1446 EXPORT_C TInt RWsSession::SetModifierState(TEventModifier aModifier,TModifierState aState)
1447 /** Sets the state of the modifier keys.
1449 This function is typically used for permanent modifier states such as Caps
1450 Lock or Num Lock, but other possible uses include on-screen function key simulation,
1451 or the implementation of a Shift Lock key.
1453 This function always causes a flush of the window server buffer.
1455 @param aModifier Modifier to set.
1456 @param aState Modifier state.
1457 @return KErrNone if successful, otherwise another of the system-wide error
1459 @see GetModifierState()
1460 @capability WriteDeviceData */
1462 TWsClCmdSetModifierState params;
1463 params.modifier=aModifier;
1464 params.state=aState;
1465 return(WriteReply(¶ms,sizeof(params),EWsClOpSetModifierState));
1468 EXPORT_C TInt RWsSession::GetModifierState() const
1469 /** Gets the state of the modifier keys.
1471 The state of each modifier key (defined in TEventModifier) is returned in
1474 This function always causes a flush of the window server buffer.
1476 @return Modifier state
1477 @see TEventModifier */
1479 return(WriteReply(EWsClOpGetModifierState));
1482 EXPORT_C TInt RWsSession::HeapCount() const
1483 /** Gets the heap count.
1485 This function calls RHeap::Count() on the window server's heap, after throwing
1486 away all the temporary objects allocated for each window.
1488 This function always causes a flush of the window server buffer.
1490 @return The window server's heap count. */
1492 return(WriteReply(EWsClOpHeapCount));
1495 EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TInt aParam) const
1497 TWsClCmdDebugInfo params(aFunction,aParam);
1498 return(WriteReply(¶ms,sizeof(params),EWsClOpDebugInfo));
1501 EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TDes8& aReturnBuf, TInt aParam) const
1503 TWsClCmdDebugInfo params(aFunction,aParam);
1504 return(WriteReplyP(¶ms,sizeof(params),TWriteDescriptorType(&aReturnBuf),EWsClOpDebugInfoReplyBuf));
1507 EXPORT_C TInt RWsSession::ResourceCount() const
1508 /** Gets the number of objects that the server has allocated for that client.
1510 This function can be used to check that the client has correctly cleaned up
1513 It always causes a flush of the window server buffer.
1515 @return The number of resources allocated to the client. */
1517 return(iWsHandle ? WriteReply(EWsClOpResourceCount) : 0);
1520 EXPORT_C void RWsSession::PasswordEntered()
1521 /** Disables the window server password mode.
1523 This function must be called by the session which owns the password window
1524 when the correct machine password has been entered.
1528 Write(EWsClOpPasswordEntered);
1531 EXPORT_C void RWsSession::HeapSetFail(TInt aTAllocFail,TInt aValue)
1532 /** Sets the heap failure mode in the window server.
1534 The release version of the base does not support simulated heap failure functionality,
1535 and the result of this function is additional error messages. In the debug
1536 version the clients are notified of the simulated failure and handle it. See
1537 RHeap::__DbgSetAllocFail() for more information.
1541 It is unlikely, but possible to create a ROM with a mixture of Release and
1542 Debug versions of the Base and Window Server DLLs, which results in different
1543 behaviour to that described above. If you run a debug Window Server with a
1544 release version of the Base, then calling this function will result in neither
1545 extra error messages (e.g. EDrawingRegion) nor simulated heap failures. However
1546 if you have a release Window Server with a debug Base then you will get both
1547 simulated heap failures and the extra error messages.
1549 This function always causes a flush of the window server buffer.
1551 @param aTAllocFail A value from the RHeap::TAllocFail enumeration which
1552 indicates how to simulate heap allocation failure.
1553 @param aValue The rate of failure; when aType is RHeap::EDeterministic, heap
1554 allocation fails every aRate attempt
1555 @see RHeap::__DbgSetAllocFail()
1556 @capability WriteDeviceData */
1558 TWsClCmdHeapSetFail params;
1559 params.type=(RHeap::TAllocFail)aTAllocFail;
1560 params.value=aValue;
1562 WriteReply(¶ms,sizeof(params),EWsClOpHeapSetFail);
1565 EXPORT_C void RWsSession::HeapSetBurstFail(TInt aTAllocFail,TInt aRate,TInt aBurst)
1566 /** Sets the heap failure burst mode in the window server.
1568 The release version of the base does not support simulated heap failure functionality,
1569 and the result of this function is additional error messages. In the debug
1570 version the clients are notified of the simulated failure and handle it. See
1571 RHeap::__DbgSetBurstAllocFail() for more information.
1575 It is unlikely, but possible to create a ROM with a mixture of Release and
1576 Debug versions of the Base and Window Server DLLs, which results in different
1577 behaviour to that described above. If you run a debug Window Server with a
1578 release version of the Base, then calling this function will result in neither
1579 extra error messages (e.g. EDrawingRegion) nor simulated heap failures. However
1580 if you have a release Window Server with a debug Base then you will get both
1581 simulated heap failures and the extra error messages.
1583 This function always causes a flush of the window server buffer.
1585 @param aTAllocFail A value from the RHeap::TAllocFail enumeration which
1586 indicates how to simulate heap allocation failure.
1587 @param aRate The rate of failure; when aType is RHeap::EDeterministic, heap
1588 allocation fails every aRate attempt.
1589 @param aBurst The number of consecutive allocations that should fail.
1590 @see RHeap::__DbgSetBurstAllocFail()
1591 @capability WriteDeviceData */
1593 TWsClCmdHeapSetFail params;
1594 params.type=(RHeap::TAllocFail)aTAllocFail;
1596 params.burst=aBurst;
1597 WriteReply(¶ms,sizeof(params),EWsClOpHeapSetFail);
1600 EXPORT_C TInt RWsSession::RequestOffEvents(TBool aOn,RWindowTreeNode *aWin/*=NULL*/)
1601 /** Requests the window server to send OFF events to a window.
1603 After calling this function, the window server sends OFF events to the window
1604 when an event occurs which requires power down, rather than handling powering
1609 Any client can ask for OFF events, but only one window in the system can be
1610 set to receive them. If this function is called when another window is set
1611 to receive OFF events then the client will be panicked. The exception is the
1612 shell, which is allowed to take receipt of OFF events from other clients.
1614 The window server identifies the shell client by comparing the process name
1615 of the client with the process name of the shell. Only the first client created
1616 by the shell is guaranteed to have the extra shell client privileges.
1618 If the shell dies or terminates just before the action requiring power down
1619 happens then the window server will handle it rather than passing it on to
1622 The window server has a queue of messages that it is waiting to send to clients.
1623 If the shell's client's queue is full and the window server cannot make room
1624 for the OFF message then it will power down the machine itself.
1626 This function always causes a flush of the window server buffer.
1628 @param aOn ETrue to get the window server to send EEventShellSwitchOff messages
1629 to the shell (rather than powering down). EFalse makes the window server switch
1630 back to powering down the machine itself.
1631 @param aWin The handle to the window or window group of the shell to which
1632 the message is to be sent. This may be NULL only if aOn=EFalse, in other words,
1633 the window server is handling power down itself. If aOn=ETrue then this must not
1634 be NULL, or the Window Server will panic the shell. Note that as far as the window
1635 server is concerned the handle must exist when this function is called.
1636 @return KErrNone if successful, otherwise one of the system-wide error codes.
1637 @panic WSERV 51 aOn is true, but no window was specified (aWin is NULL).
1638 @capability PowerMgmt */
1640 TWsClCmdOffEventsToShell OffEventsToShell(aOn,(aWin ? aWin->WsHandle():0));
1641 return WriteReply(&OffEventsToShell,sizeof(OffEventsToShell),EWsClOpSendOffEventsToShell);
1644 EXPORT_C TDisplayMode RWsSession::GetDefModeMaxNumColors(TInt& aColor,TInt& aGray) const
1645 /** Gets the number of colours available in the richest supported colour mode, the
1646 number of greys available in the richest grey mode, and returns the default
1649 This function always causes a flush of the window server buffer.
1651 @param aColor The number of colours in the richest supported colour mode.
1652 @param aGray The number of greys in the richest supported grey mode.
1653 @return The default display mode. */
1655 return GetDefModeMaxNumColors(KDummyScreenNumber,aColor,aGray);
1658 EXPORT_C TDisplayMode RWsSession::GetDefModeMaxNumColors(TInt aScreenNumber,TInt& aColor,TInt& aGray) const
1659 /** Gets the number of colours available in the richest supported colour mode, the
1660 number of greys available in the richest grey mode, and returns the default
1661 display mode, on the specified screen.
1663 This function always causes a flush of the window server buffer.
1665 @param aScreenNumber specifies the screen.
1666 @param aColor The number of colours in the richest supported colour mode.
1667 @param aGray The number of greys in the richest supported grey mode.
1668 @return The default display mode. */
1670 TPckgBuf<SDefModeMaxNumColors> colors;
1671 WriteReplyIntP(aScreenNumber,&colors,EWsClOpGetDefModeMaxNumColors);
1672 aColor=colors().iColors;
1673 aGray=colors().iGrays;
1674 return colors().iDisplayMode;
1677 #define MODE_TO_FLAG(x) 1<<(x-1)
1679 LOCAL_C void HandleColorMode(CArrayFix<TInt>* aModeList,TUint aModeBits, TInt& aNumberOfModes, TInt aMode)
1681 if (aModeBits&(MODE_TO_FLAG(aMode)))
1683 if (aModeList!=NULL)
1685 (*aModeList)[aNumberOfModes]=aMode;
1691 LOCAL_C TInt DoGetColorModeList(CArrayFix<TInt>* aModeList,TUint aModeBits)
1693 TInt numberOfModes=0;
1694 for (TInt mode=EGray2; mode<=EColor256; ++mode)
1696 HandleColorMode(aModeList,aModeBits,numberOfModes,mode);
1698 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor4K);
1699 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor64K);
1700 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16M);
1701 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MU);
1702 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MA);
1703 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MAP);
1704 return numberOfModes;
1707 EXPORT_C TInt RWsSession::GetColorModeList(CArrayFixFlat<TInt> *aModeList) const
1708 /** Gets the list of available colour modes.
1710 Note that this function should usually be called within User::LeaveIfError().
1711 The only time that an error can be generated is when the array gets resized
1712 to the number of display modes. Thus if you make the size of your array equal
1713 to the maximum number of display modes over all hardware (this is the number
1714 of different values in TDisplayMode) then this function will never leave.
1716 This function always causes a flush of the window server buffer.
1718 @param aModeList On return, contains a TDisplayMode entry for each of the
1719 available display modes. Note that the array's contents are deleted prior
1720 to filling with display mode information.
1721 @return The number of color modes if the parameter is passed NULL. Otherwise KErrNone or KErrNoMemory. */
1723 return GetColorModeList(KDummyScreenNumber,aModeList);
1726 EXPORT_C TInt RWsSession::GetColorModeList(TInt aScreenNumber,CArrayFixFlat<TInt>* aModeList) const
1727 /** Gets the list of available colour modes on a particular screen.
1729 Note that this function should usually be called within User::LeaveIfError().
1730 The only time that an error can be generated is when the array gets resized
1731 to the number of display modes. Thus if you make the size of your array equal
1732 to the maximum number of display modes over all hardware (this is the number
1733 of different values in TDisplayMode) then this function will never leave.
1735 This function always causes a flush of the window server buffer.
1737 @param aModeList On return, contains a TDisplayMode entry for each of the
1738 available display modes. Note that the array's contents are deleted prior
1739 to filling with display mode information.
1740 @param aScreenNumber specifies the screen.
1741 @return The number of color modes if the parameter is passed NULL. Otherwise KErrNone or KErrNoMemory. */
1743 const TUint modeList=STATIC_CAST(TUint,WriteReplyInt(aScreenNumber,EWsClOpGetColorModeList));
1744 const TInt numberOfModes=DoGetColorModeList(NULL, modeList);
1745 if (aModeList==NULL)
1747 return numberOfModes;
1749 TRAPD(error,aModeList->ResizeL(numberOfModes));
1750 if (error!=KErrNone)
1754 DoGetColorModeList(aModeList, modeList);
1758 EXPORT_C void RWsSession::SetPointerCursorArea(const TRect& aArea)
1763 Sets the area of the screen in which the virtual cursor can be used while in
1764 relative mouse mode, for the first screen display mode.
1766 This function sets the area for the first screen mode - the one with index
1767 0, which in most devices will be the only screen mode. The other function
1768 overload can be used to set the screen area for other modes. The area is set
1769 and stored independently on each screen mode, so that it is not necessary
1770 to call this function again when switching back to the first screen mode.
1772 The default area is the full digitiser area. When you set the area it will
1773 come into immediate affect, i.e. if necessary the current pointer position
1774 will be updated to be within the new area.
1778 Relative mouse mode is where the events received from the base by window server
1779 are deltas from the last position of the pointer, as opposed to absolute co-ordinates.
1781 This function is honoured even if there is a mouse or pen (e.g. on the emulator),
1782 by mapping the co-ordinates of where you click into the area set using this
1783 function. However the function does not restrict clicks outside of the 'drawing
1784 area' on the Emulator, to allow you to select items on the fascia.
1786 @param aArea The area of the screen in which the virtual cursor can be used.
1787 @capability WriteDeviceData */
1789 SetPointerCursorArea(0,aArea);
1792 EXPORT_C void RWsSession::SetPointerCursorArea(TInt aScreenSizeMode,const TRect& aArea)
1793 /** Sets the area of the screen in which the virtual cursor can be used while in
1794 relative mouse mode, for a specified screen display mode.
1796 The default area is the full digitiser area for the given mode. When you set
1797 the area it will come into immediate affect, i.e. if necessary the current
1798 pointer position will be updated to be within the new area.
1800 The area is set and stored independently on each screen mode, so that it is
1801 not necessary to call this function again when switching back to a mode.
1805 Relative mouse mode is where the events received from the base by window server
1806 are deltas from the last position of the pointer, as opposed to absolute co-ordinates.
1808 The previous function overload may be used to set the screen area for only
1811 This function is honoured even if there is a mouse or pen (e.g. on the emulator),
1812 by mapping the co-ordinates of where you click into the area set using this
1813 function. However the function does not restrict clicks outside of the 'drawing
1814 area' on the Emulator, to allow you to select items on the fascia.
1816 @param aScreenSizeMode The screen mode to which the new area applies.
1817 @param aArea The area of the screen, in the aScreenSizeMode screen mode, within
1818 which the virtual cursor can be used.
1819 @capability WriteDeviceData */
1821 TWsClCmdSetPointerCursorArea SetPointerCursorArea(aScreenSizeMode,aArea);
1822 Write(&SetPointerCursorArea,sizeof(SetPointerCursorArea),EWsClOpSetPointerCursorArea);
1825 EXPORT_C TRect RWsSession::PointerCursorArea() const
1826 /** Gets the pointer cursor area for the first screen display mode.
1828 This is the area of the screen in which the virtual cursor can be used while
1829 in relative mouse mode. While in pen or mouse mode the event co-ordinates
1830 are forced to be within this area unless you click outside the drawable area.
1832 This function always causes a flush of the window server buffer.
1834 @return The pointer cursor area for the first screen display mode.
1835 @see SetPointerCursorArea() */
1837 return PointerCursorArea(0);
1840 EXPORT_C TRect RWsSession::PointerCursorArea(TInt aScreenSizeMode) const
1841 /** Gets the pointer cursor area for the specified screen display mode.
1843 This is the area of the screen in which the virtual cursor can be used while
1844 in relative mouse mode. While in pen or mouse mode the event co-ordinates
1845 are forced to be within this area unless you click outside the drawable area.
1847 This function always causes a flush of the window server buffer.
1849 @param aScreenSizeMode The screen mode for which the pointer cursor area is
1851 @return The pointer cursor area for the specified screen display mode.
1852 @see SetPointerCursorArea() */
1854 TPckgBuf<TRect> rectPkg;
1855 WriteReplyP(&aScreenSizeMode,sizeof(aScreenSizeMode),&rectPkg,EWsClOpPointerCursorArea);
1859 EXPORT_C void RWsSession::SetPointerCursorMode(TPointerCursorMode aMode)
1860 /** Sets the current mode for the pointer cursor.
1862 The mode determines which sprite is used for the pointer cursor at any point.
1863 The request is ignored unless the calling application is the application
1864 that currently has keyboard focus.
1865 See TPointerCursorMode for more information.
1867 @param aMode The new mode for the pointer cursor.
1868 @see TPointerCursorMode */
1870 WriteInt(aMode,EWsClOpSetPointerCursorMode);
1873 EXPORT_C TInt RWsSession::SetClientCursorMode(TPointerCursorMode aMode)
1874 /** Sets the current mode for the pointer cursor.
1876 The mode determines which sprite is used for the pointer cursor at any point.
1877 See TPointerCursorMode for more information.
1879 This function always causes a flush of the window server buffer.
1881 @param aMode The new mode for the pointer cursor.
1882 @see TPointerCursorMode
1883 @return KErrNone if successful, otherwise returns system wide errors. Returns
1884 KErrPermissionDenied if calling thread lacks WriteDeviceData capability
1885 @capability WriteDeviceData */
1887 return(WriteReplyInt(aMode,EWsClOpSetClientCursorMode));
1890 EXPORT_C TPointerCursorMode RWsSession::PointerCursorMode() const
1891 /** Gets the current mode for the pointer cursor.
1893 The mode determines which sprite is used for the pointer cursor at any point.
1895 This function always causes a flush of the window server buffer.
1897 @return The current mode for the pointer cursor. */
1899 return(STATIC_CAST(TPointerCursorMode,WriteReply(EWsClOpPointerCursorMode)));
1902 EXPORT_C void RWsSession::SetDefaultSystemPointerCursor(TInt aCursorNumber)
1903 /** Sets the default system pointer cursor.
1905 This function can only be called by the owner of the system pointer cursor
1906 list. By default the 0th entry in the pointer cursor list is assigned as the
1907 system pointer. The function allows any cursor from the list or even no cursor
1908 to be set as the system pointer cursor.
1910 Note: ownership of the system pointer cursor list can be obtained by calling
1911 ClaimSystemPointerCursorList() when no-one else has ownership.
1913 @param aCursorNumber The index of the new default system pointer cursor within
1914 the system cursor list. */
1916 WriteInt(aCursorNumber,EWsClOpSetDefaultSystemPointerCursor);
1919 EXPORT_C void RWsSession::ClearDefaultSystemPointerCursor()
1920 /** Clears the default system pointer cursor.
1922 This sets the pointer to the current default system pointer cursor to NULL.
1924 @panic WSERV 42 If this function is called by a client other than the owner of the
1925 system pointer cursor list. */
1927 Write(EWsClOpClearDefaultSystemPointerCursor);
1930 EXPORT_C TInt RWsSession::SetPointerCursorPosition(const TPoint& aPosition)
1931 /** Sets the pointer cursor position.
1933 This function allows an application to move the virtual cursor. It works in
1934 all modes, not just relative mouse mode.
1936 Note: the function works in screen co-ordinates and honours the pointer cursor area
1937 exactly as pen presses do, i.e. only when they are in the drawing area
1940 This function always causes a flush of the window server buffer.
1942 @param aPosition The new pointer cursor position.
1943 @return KErrNone if successful, otherwise another of the system-wide error
1945 @capability WriteDeviceData required, if the client calling the function doesn't have keyboard focus.
1946 However, if the client have keyboard focus then he doesn't need any capability to call this function. */
1948 return(WriteReply(&aPosition,sizeof(aPosition),EWsClOpSetPointerCursorPosition));
1951 EXPORT_C TPoint RWsSession::PointerCursorPosition() const
1952 /** Gets the pointer cursor position.
1954 This function allows an application to determine the position of the virtual
1957 It always causes a flush of the window server buffer.
1959 Please note that on devices with multiple pointers (for example with multi-touch screen)
1960 the pointer cursor's position will be equal to the last known position of the emulated pointer.
1961 More information about the emulated pointer can be found in description of method
1962 RWindowBase::EnableAdvancedPointers().
1964 @return The position of the virtual cursor.
1965 @see RWindowBase::EnableAdvancedPointers() */
1967 TPckgBuf<TPoint> pointPkg;
1968 WriteReplyP(&pointPkg,EWsClOpPointerCursorPosition);
1972 EXPORT_C void RWsSession::SetDefaultFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap)
1977 Sets the default fading parameters.
1979 Fading is used to change the colour of windows to be either closer
1980 to white or closer to black, so that another window stands out. For example,
1981 when displaying a dialogue you could fade all visible windows, then unfade
1982 the dialog window. This function sets whether, and the amount by which, faded
1983 windows appear closer to white or closer to black.
1985 The white and black mapping values define the range over which colours are
1986 re-mapped when a window is faded. If aBlackMap=0 and aWhiteMap=255 then the
1987 colours are mapped unchanged. As the two values get closer together, all colours
1988 in the faded window becomes more similar - creating the fading effect. When
1989 the numbers cross over (so that the black value is greater than the white
1990 value) the colours in the faded window start to invert - i.e. colours that
1991 were closer to white in the unfaded window are mapped to a darker colour in
1994 Changing the default will automatically apply to current graphics contexts
1995 but will not have any affect on windows that are already faded.
1997 Note: RWindowTreeNode::SetFaded(), CWindowGc::SetFaded() and RWsSession::SetSystemFaded()
1998 use these fading parameters, and in addition allow the default fading value
2001 @param aBlackMap Black map fading parameter.
2002 @param aWhiteMap White map fading parameter.
2003 @see RWindowTreeNode::SetFaded()
2004 @see CWindowGc::SetFadingParameters()
2005 @capability WriteDeviceData */
2007 WriteInt(WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap),EWsClOpSetDefaultFadingParams);
2014 Prepares for switch off.
2016 This stops the window server heart beat timer if running.
2018 @capability PowerMgmt
2020 EXPORT_C void RWsSession::PrepareForSwitchOff()
2022 Write(EWsClOpPrepareForSwitchOff);
2025 #if defined(__WINS__)
2026 EXPORT_C void RWsSession::SetRemoveKeyCode(TBool aRemove)
2027 /** Sets whether to remove the top 16 bits of a key code (Emulator builds only).
2029 This function allows the Emulator to use Windows to translate keypresses into
2030 the correct key code for each locale, rather than having to do the translation
2031 for each international keyboard itself.
2033 The top 16 bits of a keypress code contains the keycode that Windows would
2034 produce if the key had been pressed in a typical Windows program. If aRemove
2035 is EFalse the client can get these top 16 bits. If the value is non-zero
2036 the CKeyTranslator uses it rather than calculating it's own value. If aRemove
2037 is ETrue the window server strips the top 16 bits of the scan code before
2038 passing the value on to the client.
2040 Note: this function is intended for Java but it will be useful to any client who
2041 creates their own CKeyTranslator and processes keyups and downs.
2043 @param aRemove ETrue to remove the code (default), EFalse to pass it to the
2046 WriteInt(aRemove,EWsClOpRemoveKeyCode);
2049 EXPORT_C void RWsSession::SimulateXyInputType(TInt aInputType)
2051 WriteInt(aInputType,EWsClOpSimulateXyInput);
2055 EXPORT_C void RWsSession::LogCommand(TLoggingCommand aCommand)
2056 /** Allows the window server client to enable or disable logging of window server
2059 The type of logging that takes place (e.g. whether to file or to serial port)
2060 depends on the settings specified in the wsini.ini file.
2062 Clients can also force a dump of the window tree or information about the
2063 window server's heap size and usage.
2065 For logging to work, the wsini.ini file has to specify the type of logging
2066 required and the DLLs for that type of logging must have been correctly installed.
2067 Otherwise, calling this function will have no effect.
2069 @param aCommand The logging command. */
2071 WriteInt(aCommand,EWsClOpLogCommand);
2074 EXPORT_C void RWsSession::LogMessage(const TLogMessageText &aMessage)
2075 /** Adds a message to the window server debug log if one is currently in operation.
2077 This function always causes a flush of the window server buffer.
2079 @param aMessage The text added to the message log. */
2081 TInt len=aMessage.Length();
2082 WriteReply(&len,sizeof(len),aMessage.Ptr(),aMessage.Size(),EWsClOpLogMessage);
2085 EXPORT_C void RWsSession::SimulateRawEvent(TRawEvent aEvent)
2089 Simulates raw events.
2091 For most purposes, RWsSession::SimulateKeyEvent() should be used instead to
2092 simulate key events because low-level scan-code up/down events are not meaningful
2093 to anything other than the keyboard to which they apply.
2095 For example, the driver for an external keyboard should do its own conversion from
2096 raw scan-codes to higher-level character code key events and pass these to the
2097 window server using SimulateKeyEvent().
2099 @param aEvent The raw event.
2100 @capability SwEvent */
2102 Write(&aEvent,sizeof(aEvent),EWsClOpRawEvent);
2105 EXPORT_C void RWsSession::SimulateKeyEvent(TKeyEvent aEvent)
2109 Sends a simulated key event to the window server.
2111 All the fields in TKeyEvent are honoured except iRepeats, which is overridden
2114 @param aEvent The key event to be simulated.
2115 @capability SwEvent */
2117 Write(&aEvent,sizeof(aEvent),EWsClOpKeyEvent);
2121 EXPORT_C void RWsSession::SystemInfo(TInt &aSystemInfoNumber, SSystemInfo &aSystemInfo)
2122 /** @internalComponent */
2124 TPckgBuf<SSystemInfo> systemInfoPckg;
2125 WriteReplyP(&aSystemInfoNumber,sizeof(aSystemInfoNumber),&systemInfoPckg,EWsClOpSystemInfo);
2126 aSystemInfo=systemInfoPckg();
2129 void RWsSession::DirectAcessActivation(TBool aIsNowActive)
2132 ++iBuffer->iDirectAcessCount;
2135 --iBuffer->iDirectAcessCount;
2136 __ASSERT_DEBUG(iBuffer->iDirectAcessCount>=0,Assert(EW32AssertDirectMisuse));
2140 EXPORT_C void RWsSession::TestWrite(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength)
2141 /** @internalComponent */
2143 iBuffer->Write(aHandle,aOpcode,pData,aLength);
2146 EXPORT_C void RWsSession::TestWriteReply(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength)
2147 /** @internalComponent */
2149 iBuffer->WriteReply(aHandle,aOpcode,pData,aLength);
2152 EXPORT_C void RWsSession::TestWriteReplyP(TInt aHandle,TInt aOpcode,const TAny *pData,TInt aLength,TDes8 *aReplyPackage)
2153 /** @internalComponent */
2155 iBuffer->WriteReplyP(aHandle,aOpcode,pData,aLength,aReplyPackage);
2158 EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC8& aRemoteReadBuffer)
2159 /** @internalComponent */
2161 return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer);
2164 EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC16& aRemoteReadBuffer)
2165 /** @internalComponent */
2167 return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer);
2170 /** Sets both the buffer size and maximum buffer size for queuing commands to send to the Windows Server.
2171 The value should be at least the size of the largest message that will be sent,
2172 otherwise a panic of the client may occur.
2174 The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes.
2175 The default size of 640 bytes is sufficient for most uses.
2177 Larger buffers can reduce drawing flicker by allowing more drawing commands to be
2178 collected in the buffer before being sent to the server.
2180 Smaller buffers conserve system memory.
2182 Can be used to set a minimum buffer size, sufficient for largest drawing command used,
2183 before calling RWsSession::SetMaxBufferSizeL() to set a maximum buffer size for queuing commands.
2185 @param aBufSize The desired buffer size in bytes, at least the size of largest message to be sent.
2186 @leave KErrNoMemory Could not allocate the required memory.
2188 @panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer.
2190 @see RWsSession::Flush()
2191 @see RWsSession::SetAutoFlush()
2192 @see RWsSession::SetMaxBufferSizeL()
2194 EXPORT_C void RWsSession::SetBufferSizeL(TInt aBufSize)
2196 iBuffer->SetBufferSizeL(aBufSize);
2199 /** Sets the maximum size that the buffer for queuing commands to send to the Windows Server can expand to.
2201 The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes.
2203 If the buffer size is larger than the new maximum it is reduced.
2205 A minimum size is calculated to be one quarter the maximum size, but in any case at least 640 bytes.
2206 If the buffer size is smaller than the calculated minimum it is expanded.
2208 RWsSession::SetBufferSizeL() can be used to set a specific minimum size >640 bytes before setting a maximum size.
2209 This is useful if you will send very large drawing commands.
2211 After calling this function the buffer size will be between the specified maximum and calculated minimum sizes.
2213 The algorithm for growing the buffer up to the maximum is chosen to balance the cost of expanding the buffer
2214 with the waste of an excessively large buffer that is never filled.
2216 If the buffer becomes too full to add a new drawing command, and the buffer size is less than the maximum,
2217 the buffer size will be expanded.
2218 If the buffer is already at the maximum size, or the expansion fails due to low memory,
2219 the buffer will be emptied with RWsSession::Flush().
2220 If there is not enough space now for the new command a panic occurs.
2222 @param aMaxBufSize The desired maximum buffer size in bytes.
2223 @leave KErrNoMemory Could not allocate the required minimum memory.
2225 @panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer.
2227 @see RWsSession::Flush()
2228 @see RWsSession::SetAutoFlush()
2229 @see RWsSession::SetBufferSizeL()
2231 EXPORT_C void RWsSession::SetMaxBufferSizeL(TInt aMaxBufSize)
2233 iBuffer->SetMaxBufferSizeL(aMaxBufSize);
2236 EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded)
2237 /** Sets all windows in the system as faded or unfaded, using the default fading
2240 This function allows all windows that currently exist, not just those in a
2241 single window group, to be faded or unfaded.
2243 Notes: The window server generates a redraw to un-fade a window, because information
2244 is lost during fading. Blank (RBlankWindow) and backup (RBackupWindow) windows
2245 deal with this themselves. Areas in shadow when the window is faded will also
2246 have redraw events generated for them by the window server. While a window
2247 is faded, all drawing to that window will be adjusted appropriately by the
2250 This function always causes a flush of the window server buffer.
2252 @param aFaded ETrue to fade all windows, EFalse to un-fade all windows.
2253 @return KErrNone if successful, otherwise another of the system-wide error
2255 @capability WriteDeviceData */
2257 TWsClCmdSetSystemFaded params(aFaded);
2258 return WriteReply(¶ms,sizeof(params),EWsClOpSetFaded);
2261 EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded,TUint8 aBlackMap,TUint8 aWhiteMap)
2262 /** Sets all windows in the system as faded or unfaded, overriding the default
2263 fading parameters (as set by SetDefaultFadingParameters()).
2265 This function allows all windows that currently exist, not just those in the
2266 same window group, to be faded or unfaded.
2268 Notes: Fading a window for a second time (that is fading it when it is already
2269 faded) will not change the fading map used. The window server generates a
2270 redraw to un-fade a window, because information is lost during fading. Blank
2271 (RBlankWindow) and backup (RBackupWindow) windows deal with this themselves.
2272 Areas in shadow when the window is faded will also have redraw events generated
2273 for them by the window server. While a window is faded, all drawing to that
2274 window will be adjusted appropriately by the window server.
2276 This function always causes a flush of the window server buffer.
2278 @param aFaded ETrue to fade all windows, EFalse to un-fade all windows.
2279 @param aBlackMap Black map fading parameter.
2280 @param aWhiteMap White map fading parameter.
2281 @return KErrNone if successful, otherwise another of the system-wide error
2283 @capability WriteDeviceData */
2285 TWsClCmdSetSystemFaded params(aFaded,EFalse,aBlackMap,aWhiteMap);
2286 return WriteReply(¶ms,sizeof(params),EWsClOpSetFaded);
2289 EXPORT_C TInt RWsSession::SetFocusScreen(TInt aScreenNumber)
2290 /** Set focus screen
2291 @param aScreenNumber The new focus screen.
2292 @return KErrNone if successful, otherwise another of the system-wide error
2295 return WriteReplyInt(aScreenNumber,EWsClOpSetFocusScreen);
2298 EXPORT_C TInt RWsSession::GetFocusScreen() const
2299 /** Get focus screen
2300 @return The screen number of current focus screen */
2302 return WriteReply(EWsClOpGetFocusScreen);
2305 EXPORT_C TInt RWsSession::NumberOfScreens() const
2306 /** Number Of Screens
2307 @return The number of screens on the phone */
2309 return WriteReply(EWsClOpGetNumberOfScreens);
2312 EXPORT_C void RWsSession::ClearAllRedrawStores()
2313 /** Clear the redraw store for all windows in the system.
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.
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.
2317 In most cases you should be using RWindow::ClearRedrawStore instead of this function.
2319 This function always causes a flush of the window server buffer.*/
2321 Write(EWsClOpClearAllRedrawStores);
2324 EXPORT_C TInt RWsSession::Finish()
2326 Blocks until all outstanding window server rendering has been completed.
2327 @return KErrNone if successful
2331 return SendReceive(EWservMessFinish);
2334 EXPORT_C void RWsSession::SyncMsgBuf()
2336 Sends all pending commands in the buffer to the window server.
2343 EXPORT_C TInt RWsSession::SetCloseProximityThresholds(TInt aEnterCloseProximityThreshold, TInt aExitCloseProximityThreshold)
2344 /** Sets Z coordinate threshold values for TPointerEvent::EEnterCloseProximity
2345 and TPointerEvent::EExitCloseProximity events.
2346 As proximity occupies the negative range of Z coordinates, on most platforms
2347 threshold values for these events should be specified as negative.
2349 However, all possible Z coordinate values are accepted by this method
2350 regardless of the fact that positive Z coordinate values are interpreted as
2351 pressure and only negative Z coordinate values are interpreted as proximity.
2352 This means that if a particular platform supports an Up pointer state while a pointer is
2353 touching the screen, it is possible to base the firing of
2354 EnterCloseProximity/ExitCloseProximity events on pressure readings by specifying
2355 positive threshold values.
2357 EnterCloseProximity/ExitCloseProximity event generation can be switched off completely by
2358 specifying the following thresholds: aEnterCloseProximityThreshold = KMaxTInt,
2359 aExitCloseProximityThreshold = KMinTInt.
2361 This method is supposed to be used only by the UI platform or device's configuration tool.
2363 Modified thresholds will be persisted across system reboots in the following HAL
2364 attributes: HALData::EPointer3DEnterCloseProximityThreshold, HALData::EPointer3DExitCloseProximityThreshold.
2366 If this method is never called on a particular device, the default threshold values defined by this device's
2367 manufacturer are used.
2369 @param aEnterCloseProximityThreshold a new threshold for TPointerEvent::EEnterCloseProximity
2370 to be set, specified as Z coordinate value
2371 @param aExitCloseProximityThreshold a new threshold for TPointerEvent::EExitCloseProximity
2372 to be set, specified as Z coordinate value
2373 @return KErrNone if successful,
2374 KErrNotSupported if the platform doesn't support threshold values for
2375 Close Proximity events,
2376 KErrArgument if aEnterCloseProximityThreshold is less than aExitCloseProximityThreshold;
2377 when this error occurs, threshold values are not changed.
2378 @capability WriteDeviceData
2379 @see TPointerEvent::EEnterCloseProximity
2380 @see TPointerEvent::EExitCloseProximity
2381 @see HALData::EPointer3DEnterCloseProximityThreshold
2382 @see HALData::EPointer3DExitCloseProximityThreshold
2384 @prototype To become released with WSERV NGA APIs */
2386 TWsClCmdZThresholdPair params(aEnterCloseProximityThreshold, aExitCloseProximityThreshold);
2387 return WriteReply(¶ms,sizeof(params),EWsClOpSetCloseProximityThresholds);
2390 EXPORT_C TInt RWsSession::GetEnterCloseProximityThreshold() const
2392 @return Z coordinate threshold value for TPointerEvent::EEnterCloseProximity events.
2393 @see TPointerEvent::EEnterCloseProximity
2394 @publishedPartner To become publishedAll with WSERV NGA APIs
2395 @prototype To become released with WSERV NGA APIs */
2397 return WriteReply(EWsClOpGetEnterCloseProximityThreshold);
2400 EXPORT_C TInt RWsSession::GetExitCloseProximityThreshold() const
2402 @return Z coordinate threshold value for TPointerEvent::EExitCloseProximity events
2403 @see TPointerEvent::EExitCloseProximity
2404 @publishedPartner To become publishedAll with WSERV NGA APIs
2405 @prototype To become released with WSERV NGA APIs */
2407 return WriteReply(EWsClOpGetExitCloseProximityThreshold);
2410 EXPORT_C TInt RWsSession::SetHighPressureThresholds(TInt aEnterHighPressureThreshold, TInt aExitHighPressureThreshold)
2411 /** Sets Z coordinate threshold values for TPointerEvent::EEnterHighPressure
2412 and TPointerEvent::EExitHighPressure events.
2413 As pressure occupies the positive range of Z coordinates, on most platforms
2414 threshold values for these events should be specified as positive values.
2416 However, all possible Z coordinate values are accepted by this method
2417 regardless of the fact that only the positive Z coordinate values are interpreted as
2418 pressure and the negative Z coordinate values are interpreted as proximity.
2419 This means that if a particular platform supports the Down pointer state while a pointer is
2420 in proximity to the screen, it is possible to base the firing of
2421 EnterHighPressure/ExitHighPressure events on proximity readings by specifying
2422 negative threshold values.
2424 EnterHighPressure/ExitHighPressure event generation can be switched off completely by
2425 specifying the following thresholds: aEnterHighPressureThreshold = KMaxTInt,
2426 aExitHighPressureThreshold = KMinTInt.
2428 This method is supposed to be used only by the UI platform or device's configuration tool.
2430 Modified thresholds will be persisted across system reboots in the following HAL
2431 attributes: HALData::EPointer3DEnterHighPressureThreshold, HALData::EPointer3DExitHighPressureThreshold.
2433 If this method is never called on a particular device, the default threshold values defined by this device's
2434 manufacturer are used.
2436 @param aEnterHighPressureThreshold a new threshold for TPointerEvent::EEnterHighPressure
2437 to be set, specified as Z coordinate value
2438 @param aExitHighPressureThreshold a new threshold for TPointerEvent::EExitHighPressure
2439 to be set, specified as Z coordinate value
2440 @return KErrNone if successful,
2441 KErrNotSupported if the platform doesn't support threshold values for
2442 High Pressure events,
2443 KErrArgument if aEnterHighPressureThreshold is less than aExitHighPressureThreshold;
2444 when this error occurs, threshold values are not changed.
2445 @capability WriteDeviceData
2446 @see TPointerEvent::EEnterHighPressure
2447 @see TPointerEvent::EExitHighPressure
2448 @see HALData::EPointer3DEnterHighPressureThreshold
2449 @see HALData::EPointer3DExitHighPressureThreshold
2451 @prototype To become released with WSERV NGA APIs */
2453 TWsClCmdZThresholdPair params(aEnterHighPressureThreshold, aExitHighPressureThreshold);
2454 return WriteReply(¶ms,sizeof(params),EWsClOpSetHighPressureThresholds);
2457 EXPORT_C TInt RWsSession::GetEnterHighPressureThreshold() const
2459 @return Z coordinate threshold value for TPointerEvent::EEnterHighPressure events
2460 @see TPointerEvent::EEnterHighPressure
2461 @publishedPartner To become publishedAll with WSERV NGA APIs
2462 @prototype To become released with WSERV NGA APIs */
2464 return WriteReply(EWsClOpGetEnterHighPressureThreshold);
2467 EXPORT_C TInt RWsSession::GetExitHighPressureThreshold() const
2469 @return Z coordinate threshold value for TPointerEvent::EExitHighPressure events
2470 @see TPointerEvent::EExitHighPressure
2471 @publishedPartner To become publishedAll with WSERV NGA APIs
2472 @prototype To become released with WSERV NGA APIs */
2474 return WriteReply(EWsClOpGetExitHighPressureThreshold);
2477 EXPORT_C void RWsSession::EnableWindowSizeCacheL()
2479 Enables client side cache of window size to reduce client-server
2480 activity triggered by calls to RWindowBase::Size()
2481 @leave KErrNoMemory Could not allocate the required memory.
2484 iBuffer->EnableWindowSizeCacheL();
2487 EXPORT_C void RWsSession::SendEffectCommand(TInt aTfxCmd,const TDesC8& aTfxCmdData)
2489 Set the WServ session specific effect data or execute commands
2490 to TFX Render Stage. The data or command passed by the client
2491 API will be directed to MWsTfxApplication::SendEffectCommand.
2492 TFX Render Stage will accept only TFX application specific commands and data.
2493 @param aTfxCmd TFX Render Stage command.
2494 @param aTfxCmdData Structure related to the specified value of aTfxCmd, the default value is KNullDesC8.
2496 @capability WriteDeviceData Only if aTfxCmd has value ETfxCmdEnableAllTransitions or ETfxCmdDisableAllTransitions
2501 __ASSERT_ALWAYS(aTfxCmdData.Length()<=KMaxWservStringSize, Panic(EW32PanicStringTooLong));
2502 TWsClCmdSendEffectCommand params(aTfxCmd,aTfxCmdData.Size(), NULL);
2503 Write(¶ms,sizeof(params),aTfxCmdData.Ptr(),aTfxCmdData.Size(),EWsClOpSendEffectCommand);
2506 EXPORT_C void RWsSession::RegisterEffect(TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TUint aAppUid, TBitFlags aFlags)
2508 Sets a specific animation for a particular transition effect.
2510 Transition effect is represented by one of the values of enum TTfxTransitionActions.
2512 An animation is specified by a filename and directory; the file will contain a description of the animation
2513 for that transition. In fact each transition can have two animations associated with it, for example
2514 an App shut down could have one animation with the old application disappearing and then another animation
2515 for the App Launcher (or home screen) appearing.
2517 Animation can be applied to all App's Transition effect or to a specfic App by providing its AppUid.
2519 @param aAction Particular transition to register the animation for.
2520 @param aPurpose The purpose of the window.
2521 @param aResourceDir The name of the directory that contains the animation description files.
2522 @param aFilenameOutgoing The file containing the description of the animation for the outgoing phase of the transition.
2523 Specify KNullDesC for no outgoing phase effect.
2524 @param aFilenameIncoming The file containing the description of the animation for the incoming phase of the transition.
2525 Specify KNullDesC for no incoming phase effect.
2526 @param aAppUid The Application UID this effect applies to. Set to zero to specify that all apps will use default effect.
2527 @param aFlags Flag for the effect. Please see TTfxFlags for values this flag parameter can use.
2529 @capability WriteDeviceData This API does nothing if the client does not possess required Capability
2534 RTFXEffect tfxEffect(iWsHandle, iBuffer);
2535 tfxEffect.RegisterTFXEffect(aAction, aPurpose, aResourceDir, aFilenameOutgoing, aFilenameIncoming, aAppUid, aFlags);
2538 EXPORT_C void RWsSession::UnregisterEffect(TInt aAction, TInt aPurpose, TUint aAppUid)
2540 Unregister already set animation for a particular transition effect
2542 @param aAction Particular transition to unregister the animation for.
2543 @param aPurpose The purpose of the window.
2544 @param aAppUid The Application UID this effect applies to. Set to 0 to specify the default effect will be unregistered.
2546 @capability WriteDeviceData This API does nothing if the client does not possess required Capability
2551 TWsClCmdUnRegisterEffect unregisterEffect(aAction, aPurpose, aAppUid);
2552 Write(&unregisterEffect, sizeof(unregisterEffect), EWsClOpUnregisterTFXEffect);
2555 EXPORT_C void RWsSession::UnregisterAllEffects()
2557 Unregister animation for all transition effects.
2559 @capability WriteDeviceData This API does nothing if the client does not possess required Capability
2564 Write(EWsClOpUnregisterAllTFXEffect);
2567 EXPORT_C void RWsSession::OverrideEffects(TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TBitFlags aFlags)
2569 Overides the default animation for given app's transition effect by sent animation description.
2570 Please refer RWsSession::RegisterEffect() comments for more information on animation description.
2572 @param aAction The particular transition to set the animation for.
2573 @param aPurpose This override only effects the window/layers owned by the application that have the specified purpose.
2574 @param aResourceDir The name of the directory that contains the animation description files.
2575 @param aFilenameOutgoing The file containing the description of the animation for the outgoing phase of the transition.
2576 Specify KNullDesC for no outgoing phase effect.
2577 @param aFilenameIncoming The file containing the description of the animation for the incoming phase of the transition.
2578 Specify KNullDesC for no incoming phase effect.
2579 @param aFlags Flag for the effect. Please see TTfxFlags for values this flag parameter can use.
2581 @capability WriteDeviceData This API does nothing if the client does not possess required Capability
2586 RTFXEffect tfxEffect(iWsHandle, iBuffer);
2587 tfxEffect.OverrideTFXEffect(RTFXEffect::ETFXSession, aAction, aPurpose, aResourceDir, aFilenameOutgoing, aFilenameIncoming, aFlags);
2590 EXPORT_C void RWsSession::IndicateAppOrientation(TRenderOrientation aOrientation)
2592 Application informs window server the orientation of rendering it intends to use
2594 @param aOrientation The orientation the application intends to use
2599 return(WriteInt(aOrientation,EWsClOpIndicateAppOrientation));