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"
24 #include "graphics/windowserverconstants.h"
25 #include <wspublishandsubscribedata.h>
27 const TInt KMaxWSERVMessagesSlot=-1;
30 GLREF_C void Assert(TW32Assert aPanic);
31 /** Panics the client. This will result in the client thread being destroyed. */
32 GLREF_C void Panic(TW32Panic aPanic);
35 class RWsCustomTextCursor : public RWsSpriteBase
38 RWsCustomTextCursor(RWsSession aWs, TInt aHandle) : RWsSpriteBase(aWs)
39 { iWsHandle = aHandle; }
43 EXPORT_C RWsSession::RWsSession()
44 /** Default C++ constructor.
46 Constructs an uninitialised window server session. Note that it does not establish
47 a connection to the window server - this must be done explicitly by calling
48 the session's Connect() function. Before Connect() is called, no corresponding
49 session object exists in the server, and the RWsSession contains no meaningful
53 void RWsSession::connectL()
55 iBuffer=new(ELeave) RWsBuffer(this);
56 iBuffer->SetBufferSizeL(RWsBuffer::EDefBufferSize);
57 User::LeaveIfError(CreateSession(KWSERVServerName,Version(),KMaxWSERVMessagesSlot));
58 iWsHandle=User::LeaveIfError(SendReceive(EWservMessInit,TIpcArgs()));
61 EXPORT_C TInt RWsSession::Connect()
62 /** Connects the client session to the window server.
64 Connect() should be the first function called on an RWsSession object after
65 it is created. The function establishes a connection to the window server,
66 creating a corresponding session object in the server. Each session has one
67 and only one connection to the server. Attempting to call Connect() when
68 a connection has already been made will cause a panic.
70 After a connection has been successfully established, all events are delivered
71 to the client application through the RWsSession object.
73 @return KErrNone if successful, otherwise another of the system-wide error
79 Panic(EW32PanicReConnect);
80 if ((ret=RFbsSession::Connect())==KErrNone)
86 RFbsSession::Disconnect();
90 iBuffer->SetCallBack();
95 EXPORT_C TInt RWsSession::Connect(RFs& aFileServer)
96 /** Connects the client session to the window server using pre constructed file server
99 Connect() should be the first function called on an RWsSession object after
100 it is created. The function establishes a connection to the window server,
101 creating a corresponding session object in the server. Each session has one
102 and only one connection to the server. Attempting to call Connect() when
103 a connection has already been made will cause a panic.
105 After a connection has been successfully established, all events are delivered
106 to the client application through the RWsSession object.
108 @param aFileServer A fully constructed file server session
109 @return KErrNone if successful, otherwise another of the system-wide error
115 Panic(EW32PanicReConnect);
116 if ((ret=RFbsSession::Connect(aFileServer))==KErrNone)
118 TRAP(ret,connectL());
122 RFbsSession::Disconnect();
126 iBuffer->SetCallBack();
131 EXPORT_C void RWsSession::Close()
132 /** Closes the window server session.
134 This function cleans up all resources in the RWsSession and disconnects it
135 from the server. Prior to disconnecting from the window server, the client-side
136 window server buffer is destroyed without being flushed. This function should
137 be called when the RWsSession is no longer needed - normally just before
142 __ASSERT_ALWAYS(iBuffer->iDirectAcessCount==0,Panic(EW32PanicDirectMisuse));
143 iBuffer->CancelCallBack();
146 RFbsSession::Disconnect();
148 RSessionBase::Close();
151 // Private function(s)
153 TInt RWsSession::DoSyncMsgBuf(const TIpcArgs& aIpcArgs)
155 return (SendReceive(EWservMessSyncMsgBuf,aIpcArgs));
158 TInt RWsSession::DoFlush(const TIpcArgs& aIpcArgs)
160 return (SendReceive(EWservMessCommandBuffer,aIpcArgs));
163 EXPORT_C TVersion RWsSession::Version() const
164 /** Gets the window server version.
166 @return Window server version containing major and minor version numbers,
170 TVersion v(KWservMajorVersionNumber,KWservMinorVersionNumber,KWservBuildVersionNumber);
174 TInt RWsSession::doSetHotKey(TInt aOpcode, TInt aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers)
176 TWsClCmdSetHotKey setHotKey;
178 setHotKey.type=aType;
179 setHotKey.keycode=(TUint16)aKeycode;
180 setHotKey.modifiers=aModifiers;
181 setHotKey.modifierMask=aModifierMask;
182 return(WriteReply(&setHotKey,sizeof(setHotKey),aOpcode));
185 EXPORT_C TInt RWsSession::SetHotKey(THotKey aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers)
186 /** Sets the hot keys.
188 Hot keys allow standard functions to be performed by application-defined key
191 This function maps any key press (with optional modifiers) to one of the hot
192 keys defined in THotKey. More than one key combination may be mapped to each
193 hot key: a new mapping is added each time the function is called.
195 Modifier key states are defined in TEventModifier. The modifiers that you
196 want to be in a particular state should be specified in aModifierMask and
197 the ones of these you want to be set should be specified in aModifiers. For
198 example, if you want to capture FN-A and you want the SHIFT modifier unset,
199 but you don't care about the state of the other modifiers then set both the
200 flags for SHIFT and FN in aModiferMask and only set FN in aModifiers.
202 Note: default hotkey settings exist, but this function can be used for customisation.
203 Typically it might be be used by a shell application or other application
204 that controls system-wide settings.
206 This function always causes a flush of the window server buffer.
208 @param aType The hot key to be mapped
209 @param aKeyCode The keycode to be mapped to the hot key
210 @param aModifierMask Modifier keys to test for a match
211 @param aModifiers Modifier keys to be tested for "on" state
212 @return KErrNone value if successful, otherwise another of the system-wide
214 @capability SwEvent */
216 return(doSetHotKey(EWsClOpSetHotKey, aType, aKeycode, aModifierMask, aModifiers));
219 EXPORT_C TInt RWsSession::ClearHotKeys(THotKey aType)
220 /** Clears all mappings for the specified hotkey, including the default mapping.
222 Hotkeys allow standard functions to be performed by application-defined key
225 This function always causes a flush of the window server buffer.
227 @param aType The hot key to be cleared
228 @return KErrNone if successful, otherwise one of the system-wide error codes.
230 @see RestoreDefaultHotKey()
231 @capability SwEvent */
233 return(WriteReplyInt(aType,EWsClOpClearHotKeys));
236 EXPORT_C TInt RWsSession::RestoreDefaultHotKey(THotKey aType)
237 /** Restores the default mapping for a hot key.
239 The function clears current mappings for a hot key and restores the default
240 mapping. See THotKey for the default.
242 This function always causes a flush of the window server buffer.
244 @param aType The hot key to restore to its default value
245 @return KErrNone if successful, otherwise another of the system-wide error
247 @see ClearHotKeys() */
249 return(WriteReplyInt(aType,EWsClOpRestoreDefaultHotKey));
252 EXPORT_C void RWsSession::ComputeMode(TComputeMode aMode)
253 /** Sets the mode used to control process priorities.
255 The default window server behaviour is that the application that owns the
256 window with keyboard focus gets foreground process priority (EPriorityForeground)
257 while all other clients get background priority (EPriorityBackground). This
258 function can be used to over-ride this default behaviour, as discussed in
263 Unlike real Symbian phones, the Emulator runs on a single process. As a result,
264 on the Emulator this function sets the priority of individual threads rather
265 than of processes. The values used for thread priorities are EPriorityLess
266 instead of EPriorityBackground, and EPriorityNormal instead of EPriorityForeground.
268 @param aMode The compute mode. */
270 WriteInt(aMode,EWsClOpComputeMode);
273 EXPORT_C void RWsSession::SetShadowVector(const TPoint &aVector)
274 /** Sets the shadow vector.
276 @param aVector New shadow vector */
278 WritePoint(aVector,EWsClOpSetShadowVector);
281 EXPORT_C TPoint RWsSession::ShadowVector() const
282 /** Gets the current value of the shadow vector.
284 This function always causes a flush of the window server buffer.
286 @return Current shadow vector */
288 TPckgBuf<TPoint> pointPkg;
289 WriteReplyP(&pointPkg,EWsClOpShadowVector);
293 void RWsSession::doReadEvent(TRequestStatus *aStat, TInt aOpcode)
295 *aStat=KRequestPending;
298 iBuffer->Flush(); //ignore error since this flushing should not return any error
300 __ASSERT_DEBUG(EWservMessAsynchronousService>=aOpcode, Assert(EW32AssertIllegalOpcode));
301 const TInt function=EWservMessAsynchronousService|aOpcode;
302 SendReceive(function,TIpcArgs(),*aStat);
305 EXPORT_C void RWsSession::EventReady(TRequestStatus* aStat)
306 /** Requests standard events from the window server.
308 Standard events include all events except redraws and priority key events.
310 The client application will typically handle the completed request using the
311 RunL() function of an active object, and in this case the request status aStat
312 should be the iStatus member of that CActive object.
316 - The active object runs when an event is waiting. You should call GetEvent()
317 in the RunL() function to get the event.
319 - You should not call this function again until you have either called GetEvent()
320 or EventReadyCancel().
322 - Because this function is asynchronous, there is no guarantee that the Window
323 Server will process the request before the function returns. However, on single
324 core systems it is unusual for this function to return before the Window Server
325 has processed the request, because the client generally runs in a lower priority
326 thread than the Window Server. You should therefore expect the use of this
327 function to give rise to different behaviour between single and multicore systems.
329 @param aStat Request status. On successful completion contains KErrNone, otherwise
330 another of the system-wide error codes.
334 WS_TRACE_CLIENT_EVENTREADY();
335 doReadEvent(aStat,EWsClOpEventReady);
338 EXPORT_C void RWsSession::RedrawReady(TRequestStatus* aStat)
339 /** Requests redraw events from the window server.
341 Typically, a client will create an active object for redraw events with a
342 lower priority than the active objects for standard events. The client will
343 then typically handle completed redraw requests in the active object's RunL()
346 As in EventReady(), the request status aStat should be used as the iStatus
347 member of an active object. When a redraw event occurs the active object's
348 RunL() function is called. The redraw event can be obtained by calling
349 GetRedraw() in the RunL().
353 - You should not call this function again until you have either called
354 GetRedraw() or RedrawReadyCancel().
356 - Because this function is asynchronous, there is no guarantee that the Window
357 Server will process the request before the function returns. However, on single
358 core systems it is unusual for this function to return before the Window Server
359 has processed the request, because the client generally runs in a lower priority
360 thread than the Window Server. You should therefore expect the use of this
361 function to give rise to different behaviour between single and multicore systems.
363 @param aStat The request status. On successful completion contains KErrNone,
364 otherwise another of the system-wide error codes.
365 @see RedrawReadyCancel()
369 WS_TRACE_CLIENT_REDRAWREADY();
370 doReadEvent(aStat,EWsClOpRedrawReady);
373 void RWsSession::GraphicMessageReady(TRequestStatus *aStat)
375 doReadEvent(aStat,EWsClOpGraphicMessageReady);
378 void RWsSession::GetGraphicMessage(TDes8& aData) const
380 WriteReplyP(TWriteDescriptorType(&aData),EWsClOpGetGraphicMessage);
383 void RWsSession::GraphicMessageCancel()
385 WriteReply(EWsClOpGraphicMessageCancel);
388 void RWsSession::GraphicAbortMessage(TInt aError)
390 WriteReplyInt(aError, EWsClOpGraphicAbortMessage);
393 TInt RWsSession::GraphicFetchHeaderMessage()
395 return WriteReply(EWsClOpGraphicFetchHeaderMessage);
398 EXPORT_C void RWsSession::PriorityKeyReady(TRequestStatus *aStat)
399 /** Requests priority key events from the window server.
401 Typically, an client will create an active object for priority key events
402 with a higher priority than the active objects for standard events. The client
403 will then normally handle completed priority key requests in the active object's
406 As in EventReady(), the request status argument should be the set to the iStatus
407 member of CActive. When priority key events occur, they are obtained using
412 - You should not call this function again until you have either called
413 GetPriorityKey() or PriorityKeyReadyCancel().
415 - Because this function is asynchronous, there is no guarantee that the Window
416 Server will process the request before the function returns. However, on single
417 core systems it is unusual for this function to return before the Window Server
418 has processed the request, because the client generally runs in a lower priority
419 thread than the Window Server. You should therefore expect the use of this
420 function to give rise to different behaviour between single and multicore systems.
422 @param aStat Request status. On successful completion contains KErrNone, otherwise
423 another of the system-wide error codes.
424 @see PriorityKeyReadyCancel()
425 @see GetPriorityKey()
428 doReadEvent(aStat,EWsClOpPriorityKeyReady);
431 EXPORT_C void RWsSession::GetEvent(TWsEvent &aEvent) const
432 /** Gets a standard event from the session for processing.
434 The type of event returned by GetEvent() may be any of those listed in TEventCode.
435 To access the data within an event, the event should be converted to the appropriate
436 type, using functions provided by the TWsEvent class. TWsEvent also provides
437 a function to find out the type of the event.
441 It is possible that the returned event is of type EEventNull. Clients should
442 normally ignore these events.
444 This function should only be called in response to notification that an event
445 has occurred, otherwise the client will be panicked.
447 This function would normally be called in the RunL() function of an active
448 object which completes with the EventReady() function's request status.
450 This function always causes a flush of the window server buffer.
452 @param aEvent On return, contains the event that occurred
456 WS_TRACE_CLIENT_GETEVENT();
457 TPckgBuf<TWsEvent> event;
458 WriteReplyP(&event,EWsClOpGetEvent);
462 EXPORT_C void RWsSession::PurgePointerEvents()
463 /** Removes all pointer events waiting to be delivered to this session.
465 The events are removed from the event queue without being processed. This
466 might occur, for example, at application startup. */
468 Write(EWsClOpPurgePointerEvents);
471 EXPORT_C void RWsSession::GetRedraw(TWsRedrawEvent &aEvent)
472 /** Gets the redraw event from the session.
474 This function is similar to GetEvent(), except that the event is returned
475 as a TWsRedrawEvent, and hence there is no need to convert it from a TWsEvent.
477 The function should only be called after notification that a redraw is waiting.
479 It always causes a flush of the window server buffer.
481 @param aEvent On return, contains the redraw event that occurred
486 WS_TRACE_CLIENT_GETREDRAW();
487 TPckgBuf<TWsRedrawEvent> redraw;
488 WriteReplyP(&redraw,EWsClOpGetRedraw);
492 EXPORT_C void RWsSession::GetPriorityKey(TWsPriorityKeyEvent &aEvent) const
493 /** Gets the completed priority key event from the window server session.
495 Priority key events are typically used for providing "Abort" or "Escape" keys
498 This function is similar to GetEvent(), except that it returns a TWsPriorityKeyEvent
499 instead of a TWsEvent.
501 Note: this should only be called after notification that a priority key event has
504 This function always causes a flush of the window server buffer.
506 @param aEvent On return, contains the priority key event that occurred.
507 @see PriorityKeyReady()
508 @see PriorityKeyReadyCancel() */
510 TPckgBuf<TWsPriorityKeyEvent> abortEvent;
511 WriteReplyP(&abortEvent,EWsClOpGetPriorityKey);
515 EXPORT_C void RWsSession::EventReadyCancel()
516 /** Cancels a request for standard events from the window server.
518 This request was made using EventReady().
520 The client application will typically use an active object to handle standard
521 events, and this function should be called from the active object's DoCancel()
524 This function always causes a flush of the window server buffer.
529 WriteReply(EWsClOpEventReadyCancel);
532 EXPORT_C void RWsSession::RedrawReadyCancel()
533 /** Cancels a redraw event request.
535 If active objects are used, this function should be called from the active
536 object's DoCancel() function.
538 This function always causes a flush of the window server buffer.
540 @see RedrawReady() */
543 WriteReply(EWsClOpRedrawReadyCancel);
546 EXPORT_C void RWsSession::PriorityKeyReadyCancel()
547 /** Cancels a priority key event request.
549 If active objects are used, this function should be called from the active
550 object's DoCancel() function.
552 This function always causes a flush of the window server buffer.
554 @see PriorityKeyReady()
558 WriteReply(EWsClOpPriorityKeyReadyCancel);
561 EXPORT_C void RWsSession::Flush()
562 /** Sends all pending commands in the buffer to the window server.
564 Delivering a command to the window server requires a context switch, and so
565 it is more efficient to deliver several commands in one go. Hence all client
566 commands are normally first placed into a buffer for delivery to the window
569 The buffer is delivered when it gets full, or when a command that returns a value
570 is called (there are a few exceptions to this), or when this function is called.
572 Note: this function is called when a prompt response is required from the window
573 server, e.g. after doing some drawing.
575 @see RWsSession::SetAutoFlush()
576 @see RWsSession::SetBufferSizeL()
577 @see RWsSession::SetMaxBufferSizeL()
581 iBuffer->Flush(NULL,ETrue);
584 EXPORT_C TBool RWsSession::SetAutoFlush(TBool aState)
585 /** Sets a session's auto-flush state.
587 If auto-flush is set to ETrue, the window server buffer is flushed immediately
588 anything is put into it, instead of waiting until it becomes full. This setting
589 is normally used only in a debugging environment.
591 If the auto-flush state is EFalse, the window server buffer is flushed normally.
593 @param aState ETrue to set auto-flushing on, EFalse to disable auto-flushing.
594 @return Previous auto-flush state
596 @see RWsSession::Flush()
597 @see RWsSession::SetBufferSizeL()
598 @see RWsSession::SetMaxBufferSizeL()
601 return(iBuffer->SetAutoFlush(aState));
604 EXPORT_C TInt RWsSession::NumWindowGroups() const
605 /** Gets the total number of window groups currently running in the window server.
607 This includes all the groups running in all sessions.
609 This function always causes a flush of the window server buffer.
611 @return Total number of window groups running in the server */
613 return(WriteReply(EWsClOpNumWindowGroupsAllPriorities));
616 EXPORT_C TInt RWsSession::NumWindowGroups(TInt aPriority) const
617 /** Gets the number of window groups of a given window group priority running in
618 all sessions in the window server.
620 This function always causes a flush of the window server buffer.
622 @param aPriority Window group priority
623 @return Number of window groups of priority aPriority */
625 return(WriteReplyInt(aPriority,EWsClOpNumWindowGroups));
628 EXPORT_C TInt RWsSession::NumWindowGroups(TInt aScreenNumber,TInt aPriority) const
629 /** Gets the number of window groups of a given window group priority running on a specified screen
631 This function always causes a flush of the window server buffer.
633 @param aScreenNumber specifies the screen.
634 @param aPriority Window group priority. EAllPriorities is the enum for all priorities
635 @return Number of window groups of priority aPriority on the specified screen */
637 TWsClCmdNumWindowGroups params;
638 params.screenNumber = aScreenNumber;
639 params.priority = aPriority;
640 return(WriteReply(¶ms,sizeof(params),EWsClOpNumWindowGroupsOnScreen));
643 TInt RWsSession::doWindowGroupList(TInt aScreenNumber, TInt aPriority,CArrayFixFlat<TInt>* aWindowList,TInt aNumOpcode,TInt aListOpcode) const
644 /** Gets the id of window groups of specified priority running on a specified screen.
646 This function always causes a flush of the window server buffer.
648 @param aScreenNumber specifies the screen.
649 @param aPriority Window group priority
650 @param aWindowList List of identifiers
651 @return KErrNone if successful, otherwise another of the system-wide error
654 TWsClCmdWindowGroupList params;
655 params.priority = aPriority;
656 params.screenNumber = aScreenNumber;
657 if(aScreenNumber!=KDummyScreenNumber)
659 TWsClCmdNumWindowGroups numWinGrp;
660 numWinGrp.screenNumber = aScreenNumber;
661 numWinGrp.priority = aPriority;
662 params.count=WriteReply(&numWinGrp,sizeof(numWinGrp),aNumOpcode);
666 params.count=WriteReplyInt(aPriority,aNumOpcode);
669 TRAPD(err,aWindowList->ResizeL(params.count));
670 if (err!=KErrNone || params.count==0)
672 TPtr8 listPtr(reinterpret_cast<TUint8*>(&(*aWindowList)[0]),params.count*sizeof((*aWindowList)[0]));
673 TInt actualCount=WriteReplyP(¶ms, sizeof(params), &listPtr, aListOpcode);
680 if (actualCount<params.count)
681 aWindowList->ResizeL(actualCount); // Can't fail, only shrinking it
685 TInt RWsSession::doWindowGroupList(TInt aPriority, RArray<TWindowGroupChainInfo>* aWindowListCh, TInt aNumOpcode, TInt aListOpcode) const
686 /** Gets the id of window groups and id of its parent window group of specified priority running in
687 all sessions in the window server.
689 This function always causes a flush of the window server buffer.
691 @param aPriority Window group priority
692 @param aWindowList List of identifiers
693 @return KErrNone if successful else KErrNoMemory if there is insufficient memory to create the array.
694 This function will panic if aWindowListCh is Null.*/
696 __ASSERT_ALWAYS(aWindowListCh,Panic(EW32PanicNullArray));
697 TWsClCmdWindowGroupList params;
698 params.priority=aPriority;
699 params.count=WriteReplyInt(aPriority,aNumOpcode);
700 aWindowListCh->Reset();
701 TUint8* WindowList=static_cast<TUint8*>(User::Alloc(params.count*sizeof(TWindowGroupChainInfo)));
706 TPtr8 listPtr(WindowList,params.count*sizeof(TWindowGroupChainInfo));
707 WriteReplyP(¶ms, sizeof(params), &listPtr, aListOpcode);
708 new(aWindowListCh) RArray<TWindowGroupChainInfo>(sizeof(TWindowGroupChainInfo),(TWindowGroupChainInfo*)WindowList,params.count);
712 EXPORT_C TInt RWsSession::WindowGroupList(CArrayFixFlat<TInt>* aWindowList) const
713 /** Gets a list of identifiers of all window groups in all window server sessions.
715 An array buffer must be created to store the resultant list.
717 This function always causes a flush of the window server buffer.
719 @param aWindowList List of identifiers of all window groups in the server.
720 @return KErrNone if successful, otherwise another of the system-wide error
723 return(doWindowGroupList(KDummyScreenNumber,0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAllPriorities));
726 EXPORT_C TInt RWsSession::WindowGroupList(CArrayFixFlat<TInt>* aWindowList,TInt aScreenNumber,TInt aPriority) const
727 /** Lists the number of window groups of a given window group priority running on a specified screen.
729 This function is the same as WindowGroupList() described above, but allows
730 the application to restrict the list of window groups to those of a particular
731 window group priority.
733 This function always causes a flush of the window server buffer.
735 @param aScreenNumber specifies the screen
736 @param aPriority Window group priority . Enum for all priorities is EAllPriorities
737 @param aWindowList List of identifiers of all window groups on the specified screen with the given priority
739 @return KErrNone if successful, otherwise another of the system-wide error
742 return(doWindowGroupList(aScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroupsOnScreen,EWsClOpWindowGroupList));
745 EXPORT_C TInt RWsSession::WindowGroupList(RArray<TWindowGroupChainInfo>* aWindowList) const
746 /** Gets a list of identifier of window group and parent identifier of window group of
747 all window groups in all window server sessions.
749 An array buffer must be created to store the resultant list.
751 This function always causes a flush of the window server buffer.
753 @param aWindowList List of identifiers of all window groups in the server.
754 @return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array,
755 Panics if aWindowList is NULL. */
757 return(doWindowGroupList(0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAndChainAllPriorities));
760 EXPORT_C TInt RWsSession::WindowGroupList(TInt aPriority,CArrayFixFlat<TInt>* aWindowList) const
761 /** Lists the number of window groups of a given window group priority running
762 in all window server sessions.
764 This function is the same as WindowGroupList() described above, but allows
765 the application to restrict the list of window groups to those of a particular
766 window group priority.
768 This function always causes a flush of the window server buffer.
770 @param aPriority Window group priority
771 @param aWindowList List of identifiers of all window groups in the server of priority
773 @return KErrNone if successful, otherwise another of the system-wide error
776 return(doWindowGroupList(KDummyScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupList));
779 EXPORT_C TInt RWsSession::WindowGroupList(TInt aPriority, RArray<TWindowGroupChainInfo>* aWindowList) const
780 /** Lists the number of window groups of a given window group priority running
781 in all window server sessions.
783 This function is the same as WindowGroupList() described above, but allows
784 the application to restrict the list of window groups to those of a particular
785 window group priority.
787 This function always causes a flush of the window server buffer.
789 @param aPriority Window group priority
790 @param aWindowList List of identifiers of all window groups in the server of priority
792 @return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array,
793 Panics if aWindowList is NULL. */
795 return(doWindowGroupList(aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupListAndChain));
798 EXPORT_C TInt RWsSession::GetDefaultOwningWindow() const
799 /** Gets the identifier of the current default owning window group.
801 This function always causes a flush of the window server buffer.
803 @return Identifier of current default owning window group. Returns 0 if there
806 return GetDefaultOwningWindow(KDummyScreenNumber);
809 EXPORT_C TInt RWsSession::GetDefaultOwningWindow(TInt aScreenNumber) const
810 /** Gets the identifier of the current default owning window group on a specified screen.
812 This function always causes a flush of the window server buffer.
814 @param aScreenNumber specifies the screen.
815 @return Identifier of current default owning window group on the specified screen. Returns 0 if there
818 return(WriteReplyInt(aScreenNumber,EWsClOpGetDefaultOwningWindow));
821 EXPORT_C TInt RWsSession::GetFocusWindowGroup() const
822 /** Gets the identifier of the window group that currently has the keyboard focus.
824 Note: this might not necessarily be the front-most window group, as window groups
825 can disable keyboard focus.
827 This function always causes a flush of the window server buffer.
829 @return Identifier of window group with keyboard focus. */
831 return GetFocusWindowGroup(KDummyScreenNumber);
834 EXPORT_C TInt RWsSession::GetFocusWindowGroup(TInt aScreenNumber) const
835 /** Gets the identifier of the window group on a specified screen that currently has the keyboard focus.
837 Note: this might not necessarily be the front-most window group, as window groups
838 can disable keyboard focus.
840 This function always causes a flush of the window server buffer.
842 @param aScreenNumber specifies the screen.
843 @return Identifier of window group with keyboard focus. */
845 return WriteReplyInt(aScreenNumber,EWsClOpGetFocusWindowGroup);
848 EXPORT_C TInt RWsSession::SetWindowGroupOrdinalPosition(TInt aIdentifier, TInt aPosition)
849 /** Sets the ordinal position of a window group.
851 This function allows the caller to change the ordinal position of an existing
852 window group. It would typically be used by a shell application.
854 This function always causes a flush of the window server buffer.
856 @param aIdentifier The window group.
857 @param aPosition Ordinal position for the window group.
858 @return KErrNone if successful, otherwise another of the system-wide error
861 TWsClCmdSetWindowGroupOrdinalPosition params(aIdentifier,aPosition);
862 return(WriteReply(¶ms, sizeof(params),EWsClOpSetWindowGroupOrdinalPosition));
865 EXPORT_C TInt RWsSession::GetWindowGroupClientThreadId(TInt aIdentifier, TThreadId &aThreadId) const
866 /** Gets the thread ID of the client that owns the window group specified by the
867 window group identifier.
869 This function always causes a flush of the window server buffer.
871 @param aIdentifier The window group identifier.
872 @param aThreadId On return, contains the thread ID.
873 @return KErrNone if successful, otherwise another of the system-wide error
876 TPtr8 ptr(reinterpret_cast<TUint8*>(&aThreadId),sizeof(aThreadId));
877 return(WriteReplyIntP(aIdentifier,&ptr,EWsClOpGetWindowGroupClientThreadId));
880 EXPORT_C TInt RWsSession::GetWindowGroupHandle(TInt aIdentifier) const
881 /** Gets the handle of the window specified by the window group identifier.
883 This is the handle that was passed as an argument to RWindowGroup::Construct().
885 This function always causes a flush of the window server buffer.
887 @param aIdentifier The window group identifier.
888 @return Handle of the window group */
890 return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupHandle));
893 EXPORT_C TInt RWsSession::GetWindowGroupOrdinalPriority(TInt aIdentifier) const
894 /** Gets a window group's priority.
896 This function always causes a flush of the window server buffer.
898 @param aIdentifier The window group identifier.
899 @return The window group priority. */
901 return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupOrdinalPriority));
904 EXPORT_C TInt RWsSession::SendEventToWindowGroup(TInt aIdentifier, const TWsEvent &aEvent)
905 /** Sends an event to a window group.
907 This function always causes a flush of the window server buffer.
909 @param aIdentifier Window group identifier.
910 @param aEvent Event to send to the window group.
911 @return KErrNone if successful, KErrPermissionDenied if the client does not have
912 the required capability, KErrNoMemory if there is not enough room to add the
913 event to the event queue and otherwise another of the system-wide error codes.
914 @capability SwEvent Required when aEvent.Type() < EEventUser unless the event
915 is for a window group owned by this session
919 TWsClCmdSendEventToWindowGroup params(aIdentifier,aEvent);
920 return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToWindowGroup));
923 EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(const TWsEvent &aEvent)
924 /** Sends the specified event to all existing window groups.
926 This function always causes a flush of the window server buffer.
928 @param aEvent The event to be sent to all window groups.
929 @return KErrNone if successful, KErrPermissionDenied if the client does not have
930 the required capability, KErrNoMemory if there is not enough room to add the
931 event to all the required event queues (although it may have been added to some
932 of them) and otherwise another of the system-wide error codes.
933 @capability SwEvent Required when aEvent.Type() < EEventUser
937 TWsClCmdSendEventToWindowGroup params(0,aEvent);
938 return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToAllWindowGroup));
941 EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(TInt aPriority, const TWsEvent &aEvent)
942 /** Sends the specified event to all window groups with the specified priority.
944 This function always causes a flush of the window server buffer.
946 @param aPriority The priority which window groups must have to be sent the
948 @param aEvent The event to be sent to the specified window groups.
949 @return KErrNone if successful, KErrPermissionDenied if the client does not have
950 the required capability, KErrNoMemory if there is not enough room to add the
951 event to all the required event queues (although it may have been added to some
952 of them) and otherwise another of the system-wide error codes.
953 @capability SwEvent Required when aEvent.Type() < EEventUser
957 TWsClCmdSendEventToWindowGroup params(aPriority,aEvent);
958 return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToAllWindowGroupPriority));
961 EXPORT_C TInt RWsSession::SendEventToOneWindowGroupsPerClient(const TWsEvent &aEvent)
962 /** This function always causes a flush of the window server buffer.
963 @capability SwEvent Required when aEvent.Type() < EEventUser
967 TWsClCmdSendEventToWindowGroup params(0,aEvent);
968 return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToOneWindowGroupPerClient));
971 EXPORT_C TInt RWsSession::GetWindowGroupNameFromIdentifier(TInt aIdentifier, TDes &aWindowName) const
972 /** Gets the name of a window group from its identifier.
974 Using the list of identifiers returned by WindowGroupList(), it is possible
975 to get the names of all window groups in the system. Note that window names
976 are a zero length string by default.
978 Note that the window group name must have been previously set using RWindowGroup::SetName()
979 to contain a meaningful value.
981 This function always causes a flush of the window server buffer.
983 @param aIdentifier The identifier of the window group whose name is to be
985 @param aWindowName On return, contains the window group name.
986 @return KErrNone if successful, otherwise another of the system-wide error
989 TWsClCmdGetWindowGroupNameFromIdentifier params(aIdentifier,aWindowName.MaxLength());
990 return(WriteReplyP(¶ms,sizeof(params),&aWindowName,EWsClOpGetWindowGroupNameFromIdentifier));
993 EXPORT_C TInt RWsSession::FindWindowGroupIdentifier(TInt aPreviousIdentifier,const TDesC& aMatch,TInt aOffset) const
994 /** Gets all window groups whose names match a given string, which can contain
997 An example use of this function might be to find all the currently
998 running instances of a particular application, assuming that the window group
999 name contains the application name. An optional argument, aOffset, specifies
1000 the number of characters to be ignored at the beginning of the window group
1001 name. As several window group names may match the given string, and the function
1002 can return only one at a time, there is an argument, aPreviousIdentifier,
1003 which gives the identifier for the previous match that was returned. In other
1004 words, it means, "get me the next match after this one." The first time the
1005 function is called, give 0 as the previous identifier.
1007 Matching is done using TDesC::MatchF(), which does a folded match. Wildcards
1008 '*' and '?' can be used to denote one or more characters and exactly one character,
1009 respectively. Windows are searched in front to back order.
1011 This function always causes a flush of the window server buffer.
1013 @param aPreviousIdentifier Identifier of the last window group returned. If
1014 the value passed is not a valid identifier, the function returns KErrNotFound.
1015 @param aMatch String to match window group name against: may contain wildcards
1016 @param aOffset The first aOffset characters of the window group name are ignored
1017 when doing the match.
1018 @return The next window group, after the one identified by aPreviousIdentifier,
1019 whose name matches aMatch. KErrNotFound if no window group matched or aPreviousIdentifier
1020 was not a valid identifier. */
1022 TWsClCmdFindWindowGroupIdentifier params(aPreviousIdentifier,aOffset, aMatch.Length());
1023 return(WriteReply(¶ms,sizeof(params),aMatch.Ptr(),aMatch.Size(),EWsClOpFindWindowGroupIdentifier));
1026 EXPORT_C TInt RWsSession::FindWindowGroupIdentifier(TInt aPreviousIdentifier,TThreadId aThreadId) const
1027 /** Gets the identifiers of window groups belonging to a client which is owned
1028 by a thread with the specified thread ID.
1030 The thread may own more than one window group, so the identifier returned
1031 is the one after aPreviousIdentifier. The first time the function is called,
1032 use 0 for the previous identifier.
1034 This function always causes a flush of the window server buffer.
1036 @param aPreviousIdentifier Identifier returned by previous call
1037 @param aThreadId Thread owning the window group or groups.
1038 @return Next window group identifier after the one identified by aPreviousIdentifier */
1040 TWsClCmdFindWindowGroupIdentifierThread params(aPreviousIdentifier, aThreadId);
1041 return(WriteReply(¶ms,sizeof(params),EWsClOpFindWindowGroupIdentifierThread));
1044 EXPORT_C TInt RWsSession::SendMessageToWindowGroup(TInt aIdentifier, TUid aUid, const TDesC8 &aParams)
1045 /** Sends a message to a window group.
1047 The window group will then receive an event of type EEventMessageReady notifying
1048 it that a message has been received. The window group can belong to this or
1051 In order to receive messages sent using this function you will need to implement
1052 the MCoeMessageObserver interface which is defined in the UI Control Framework API.
1054 This function always causes a flush of the window server buffer.
1056 @param aIdentifier The identifier of the window group to receive the message.
1057 @param aUid A UID which uniquely identifies the session sending the message.
1058 @param aParams The message data. An unlimited amount of data can be passed
1060 @return KErrNone if successful, otherwise another of the system-wide error
1062 @see MCoeMessageObserver
1066 TWsClCmdSendMessageToWindowGroup params(aIdentifier, aUid, aParams.Length(),&aParams);
1067 return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToWindowGroup));
1070 EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TUid aUid, const TDesC8& aParams)
1071 /** Sends a message to all window groups.
1073 In order to receive messages sent using this function you will need to implement
1074 the MCoeMessageObserver interface which is defined in the UI Control Framework
1077 This function always causes a flush of the window server buffer.
1079 @param aUid A UID which uniquely identifies the session sending the message.
1080 @param aParams The message data. An unlimited amount of data can be passed
1082 @return KErrNone if successful, otherwise another of the system-wide error
1087 TWsClCmdSendMessageToWindowGroup params(0, aUid, aParams.Length(),&aParams);
1088 return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroups));
1091 EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TInt aPriority, TUid aUid, const TDesC8& aParams)
1092 /** Sends a message to all window groups with the specified priority.
1094 In order to receive messages sent using this function you will need to implement
1095 the MCoeMessageObserver interface which is defined in the UI Control Framework
1098 This function always causes a flush of the window server buffer.
1100 @param aPriority The priority which window groups must have to be sent the
1102 @param aUid A UID which uniquely identifies the session sending the message.
1103 @param aParams The message data. An unlimited amount of data can be passed
1105 @return KErrNone if successful, otherwise another of the system-wide error
1110 TWsClCmdSendMessageToWindowGroup params(aPriority, aUid, aParams.Length(),&aParams);
1111 return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroupsPriority));
1114 EXPORT_C TInt RWsSession::FetchMessage(TUid& aUid, TPtr8& aParams, const TWsEvent& aMessageEvent) const
1115 /** This function always causes a flush of the window server buffer. */
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 (void) aScreenNumber; //avoid unreferenced warning
1278 (void) aSurface; //avoid unreferenced warning
1279 return KErrNotSupported;
1282 EXPORT_C void RWsSession::UnregisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface)
1284 This function removes the surface from the session's register of surfaces that are used in
1285 composition on the screen associated with this device.
1287 Calling this function with a surface that is not currently explicitly registered on this screen
1288 in this session by RegisterSurface() will have no effect.
1290 Calling this function while the surface is still assigned to a window will have no immediate
1291 effect. However, when the surface is unassigned from the window, and is not held by another
1292 session it will then be automatically unregistered.
1294 An unregistered surface can be re-registered again, if necessary.
1296 This function does not explicitly force a flush of the WServ session buffer. Internal reference
1297 counting will keep the Surface ID "live" until the client code has released any handles and
1298 provisioners, and WServ processes the buffered remove command, and the final frame containing
1299 this surface has finished being displayed.
1301 @param aScreenNumber The screen to which to unregister.
1302 @param aSurface The surface to be unregistered.
1303 @pre aSurface has been initialized; otherwise the client thread is panicked with
1304 code EWservPanicIncompatibleSurface.
1305 @pre aScreenNumber is an acceptable screen number. Otherwise the client thread is
1306 panicked with code EWservPanicScreenNumber.
1307 @post If no window is using the surface, then it is unregistered on this screen in this session.
1308 @see RegisterSurface
1314 (void) aScreenNumber; //avoid unreferenced warning
1315 (void) aSurface; //avoid unreferenced warning
1318 EXPORT_C TInt RWsSession::PreferredSurfaceConfigurationSize() const
1320 Returns the window server's preferred size for the TSurfaceConfiguration object, used
1321 for RWindow::SetBackgroundSurface.
1323 Client code is permitted to present any defined version of the TSurfaceConfiguration
1324 class, distinguished by its size. If smaller, earlier versions are presented, the server
1325 will substitute the stated default values. If later, larger, structures are presented to
1326 the server then the additional data will be ignored.
1328 However, by using this method, the client can fine-tune its use of the interface, avoiding
1329 generating attribute data that may not be supported, or reduce the options presented to users.
1331 @return The preferred size in bytes
1332 - Should match one of the TSurfaceConfiguration classes defined in the client's header
1333 file, or be larger than them all, indicating a version newer that the client is compiled for.
1334 - If the server does not support surface configuration
1335 - Return KErrNotSupported.
1341 return KErrNotSupported;
1344 EXPORT_C TInt RWsSession::SetSystemPointerCursor(const RWsPointerCursor &aPointerCursor,TInt aCursorNumber)
1345 /** Sets a cursor in the system pointer cursor list.
1347 To gain access to the list, the client must first call ClaimSystemPointerCursorList().
1349 This function always causes a flush of the window server buffer.
1351 @param aPointerCursor Pointer cursor to set in the list
1352 @param aCursorNumber Cursor number in the list
1353 @return KErrNone if successful, otherwise another of the system-wide error
1356 TWsClCmdSetSystemPointerCursor setpc;
1357 setpc.handle=aPointerCursor.WsHandle();
1358 setpc.number=aCursorNumber;
1359 return(WriteReply(&setpc,sizeof(setpc),EWsClOpSetSystemPointerCursor));
1362 EXPORT_C void RWsSession::ClearSystemPointerCursor(TInt aCursorNumber)
1363 /** Clears a system pointer cursor from the list.
1365 Before calling this function, the client must first gain access to the list
1366 by calling ClaimSystemPointerCursorList().
1368 @param aCursorNumber Cursor number to clear */
1370 WriteInt(aCursorNumber,EWsClOpClearSystemPointerCursor);
1373 EXPORT_C TInt RWsSession::ClaimSystemPointerCursorList()
1374 /** Claims the system pointer cursor list.
1376 You must call this function before you can call SetSystemPointerCursor() or
1377 ClearSystemPointerCursor().
1379 This function always causes a flush of the window server buffer.
1381 @return KErrNone if successful, KErrInUse if another client is already using
1382 the system pointer cursor list, otherwise another of the system-wide error
1384 @see FreeSystemPointerCursorList()
1385 @capability WriteDeviceData */
1387 return(WriteReply(EWsClOpClaimSystemPointerCursorList));
1390 EXPORT_C void RWsSession::FreeSystemPointerCursorList()
1391 /** Releases the system pointer cursor list and deletes all the entries in it.
1393 A client should call this function when it no longer needs the system pointer
1397 Write(EWsClOpFreeSystemPointerCursorList);
1400 EXPORT_C TInt RWsSession::SetCustomTextCursor(TInt aIdentifier, const TArray<TSpriteMember>& aSpriteMemberArray, TUint aSpriteFlags, TCustomTextCursorAlignment aAlignment)
1401 /** Adds a custom text cursor to the server's list of cursors.
1403 After adding a custom text cursor, it can be selected for use by calling
1404 RWindowGroup::SetTextCursor().
1406 Note that once added, custom text cursors cannot be removed.
1408 This function always causes a flush of the window server buffer.
1410 @param aIdentifier The unique identifier for the cursor.
1411 @param aSpriteMemberArray An array defining the bitmap(s) that make up the
1412 cursor. Typically, this array will contain a single element for a static,
1413 non-animated cursor.
1414 @param aSpriteFlags Flags affecting the sprite behaviour. For possible values
1416 @param aAlignment The vertical alignment of the cursor sprite.
1417 @return KErrNone if successful, KErrAlreadyExists if a custom cursor with the
1418 specified identifier already exists, or another of the standard system wide
1421 // Create the cursor
1422 TWsClCmdCustomTextCursorData params;
1423 params.identifier = aIdentifier;
1424 params.flags = aSpriteFlags;
1425 params.alignment = aAlignment;
1426 const TInt handle = iBuffer->WriteReplyWs(¶ms, sizeof(params), EWsClOpStartSetCustomTextCursor);
1429 return handle; // Failed to create
1432 RWsCustomTextCursor cursor(*this, handle);
1433 TInt err = KErrNone;
1434 for (TInt ii = 0; ii < aSpriteMemberArray.Count(); ii++)
1436 err = cursor.AppendMember(aSpriteMemberArray[ii]);
1437 if (err != KErrNone)
1443 err = iBuffer->WriteReplyWs(&err, sizeof(err), EWsClOpCompleteSetCustomTextCursor);
1447 EXPORT_C TInt RWsSession::SetModifierState(TEventModifier aModifier,TModifierState aState)
1448 /** Sets the state of the modifier keys.
1450 This function is typically used for permanent modifier states such as Caps
1451 Lock or Num Lock, but other possible uses include on-screen function key simulation,
1452 or the implementation of a Shift Lock key.
1454 This function always causes a flush of the window server buffer.
1456 @param aModifier Modifier to set.
1457 @param aState Modifier state.
1458 @return KErrNone if successful, otherwise another of the system-wide error
1460 @see GetModifierState()
1461 @capability WriteDeviceData */
1463 TWsClCmdSetModifierState params;
1464 params.modifier=aModifier;
1465 params.state=aState;
1466 return(WriteReply(¶ms,sizeof(params),EWsClOpSetModifierState));
1469 EXPORT_C TInt RWsSession::GetModifierState() const
1470 /** Gets the state of the modifier keys.
1472 The state of each modifier key (defined in TEventModifier) is returned in
1475 This function always causes a flush of the window server buffer.
1477 @return Modifier state
1478 @see TEventModifier */
1480 return(WriteReply(EWsClOpGetModifierState));
1483 EXPORT_C TInt RWsSession::HeapCount() const
1484 /** Gets the heap count.
1486 This function calls RHeap::Count() on the window server's heap, after throwing
1487 away all the temporary objects allocated for each window.
1489 This function always causes a flush of the window server buffer.
1491 @return The window server's heap count. */
1493 return(WriteReply(EWsClOpHeapCount));
1496 EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TInt aParam) const
1498 TWsClCmdDebugInfo params(aFunction,aParam);
1499 return(WriteReply(¶ms,sizeof(params),EWsClOpDebugInfo));
1502 EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TDes8& aReturnBuf, TInt aParam) const
1504 TWsClCmdDebugInfo params(aFunction,aParam);
1505 return(WriteReplyP(¶ms,sizeof(params),TWriteDescriptorType(&aReturnBuf),EWsClOpDebugInfoReplyBuf));
1508 EXPORT_C TInt RWsSession::ResourceCount() const
1509 /** Gets the number of objects that the server has allocated for that client.
1511 This function can be used to check that the client has correctly cleaned up
1514 It always causes a flush of the window server buffer.
1516 @return The number of resources allocated to the client. */
1518 return(iWsHandle ? WriteReply(EWsClOpResourceCount) : 0);
1521 EXPORT_C void RWsSession::PasswordEntered()
1522 /** Disables the window server password mode.
1524 This function must be called by the session which owns the password window
1525 when the correct machine password has been entered.
1529 Write(EWsClOpPasswordEntered);
1532 EXPORT_C void RWsSession::HeapSetFail(TInt aTAllocFail,TInt aValue)
1533 /** Sets the heap failure mode in the window server.
1535 The release version of the base does not support simulated heap failure functionality,
1536 and the result of this function is additional error messages. In the debug
1537 version the clients are notified of the simulated failure and handle it. See
1538 RHeap::__DbgSetAllocFail() for more information.
1542 It is unlikely, but possible to create a ROM with a mixture of Release and
1543 Debug versions of the Base and Window Server DLLs, which results in different
1544 behaviour to that described above. If you run a debug Window Server with a
1545 release version of the Base, then calling this function will result in neither
1546 extra error messages (e.g. EDrawingRegion) nor simulated heap failures. However
1547 if you have a release Window Server with a debug Base then you will get both
1548 simulated heap failures and the extra error messages.
1550 This function always causes a flush of the window server buffer.
1552 @param aTAllocFail A value from the RHeap::TAllocFail enumeration which
1553 indicates how to simulate heap allocation failure.
1554 @param aValue The rate of failure; when aType is RHeap::EDeterministic, heap
1555 allocation fails every aRate attempt
1556 @see RHeap::__DbgSetAllocFail()
1557 @capability WriteDeviceData */
1559 TWsClCmdHeapSetFail params;
1560 params.type=(RHeap::TAllocFail)aTAllocFail;
1561 params.value=aValue;
1563 WriteReply(¶ms,sizeof(params),EWsClOpHeapSetFail);
1566 EXPORT_C void RWsSession::HeapSetBurstFail(TInt aTAllocFail,TInt aRate,TInt aBurst)
1567 /** Sets the heap failure burst mode in the window server.
1569 The release version of the base does not support simulated heap failure functionality,
1570 and the result of this function is additional error messages. In the debug
1571 version the clients are notified of the simulated failure and handle it. See
1572 RHeap::__DbgSetBurstAllocFail() for more information.
1576 It is unlikely, but possible to create a ROM with a mixture of Release and
1577 Debug versions of the Base and Window Server DLLs, which results in different
1578 behaviour to that described above. If you run a debug Window Server with a
1579 release version of the Base, then calling this function will result in neither
1580 extra error messages (e.g. EDrawingRegion) nor simulated heap failures. However
1581 if you have a release Window Server with a debug Base then you will get both
1582 simulated heap failures and the extra error messages.
1584 This function always causes a flush of the window server buffer.
1586 @param aTAllocFail A value from the RHeap::TAllocFail enumeration which
1587 indicates how to simulate heap allocation failure.
1588 @param aRate The rate of failure; when aType is RHeap::EDeterministic, heap
1589 allocation fails every aRate attempt.
1590 @param aBurst The number of consecutive allocations that should fail.
1591 @see RHeap::__DbgSetBurstAllocFail()
1592 @capability WriteDeviceData */
1594 TWsClCmdHeapSetFail params;
1595 params.type=(RHeap::TAllocFail)aTAllocFail;
1597 params.burst=aBurst;
1598 WriteReply(¶ms,sizeof(params),EWsClOpHeapSetFail);
1601 EXPORT_C TInt RWsSession::RequestOffEvents(TBool aOn,RWindowTreeNode *aWin/*=NULL*/)
1602 /** Requests the window server to send OFF events to a window.
1604 After calling this function, the window server sends OFF events to the window
1605 when an event occurs which requires power down, rather than handling powering
1610 Any client can ask for OFF events, but only one window in the system can be
1611 set to receive them. If this function is called when another window is set
1612 to receive OFF events then the client will be panicked. The exception is the
1613 shell, which is allowed to take receipt of OFF events from other clients.
1615 The window server identifies the shell client by comparing the process name
1616 of the client with the process name of the shell. Only the first client created
1617 by the shell is guaranteed to have the extra shell client privileges.
1619 If the shell dies or terminates just before the action requiring power down
1620 happens then the window server will handle it rather than passing it on to
1623 The window server has a queue of messages that it is waiting to send to clients.
1624 If the shell's client's queue is full and the window server cannot make room
1625 for the OFF message then it will power down the machine itself.
1627 This function always causes a flush of the window server buffer.
1629 @param aOn ETrue to get the window server to send EEventShellSwitchOff messages
1630 to the shell (rather than powering down). EFalse makes the window server switch
1631 back to powering down the machine itself.
1632 @param aWin The handle to the window or window group of the shell to which
1633 the message is to be sent. This may be NULL only if aOn=EFalse, in other words,
1634 the window server is handling power down itself. If aOn=ETrue then this must not
1635 be NULL, or the Window Server will panic the shell. Note that as far as the window
1636 server is concerned the handle must exist when this function is called.
1637 @return KErrNone if successful, otherwise one of the system-wide error codes.
1638 @panic WSERV 51 aOn is true, but no window was specified (aWin is NULL).
1639 @capability PowerMgmt */
1641 TWsClCmdOffEventsToShell OffEventsToShell(aOn,(aWin ? aWin->WsHandle():0));
1642 return WriteReply(&OffEventsToShell,sizeof(OffEventsToShell),EWsClOpSendOffEventsToShell);
1645 EXPORT_C TDisplayMode RWsSession::GetDefModeMaxNumColors(TInt& aColor,TInt& aGray) const
1646 /** Gets the number of colours available in the richest supported colour mode, the
1647 number of greys available in the richest grey mode, and returns the default
1650 This function always causes a flush of the window server buffer.
1652 @param aColor The number of colours in the richest supported colour mode.
1653 @param aGray The number of greys in the richest supported grey mode.
1654 @return The default display mode. */
1656 return GetDefModeMaxNumColors(KDummyScreenNumber,aColor,aGray);
1659 EXPORT_C TDisplayMode RWsSession::GetDefModeMaxNumColors(TInt aScreenNumber,TInt& aColor,TInt& aGray) const
1660 /** Gets the number of colours available in the richest supported colour mode, the
1661 number of greys available in the richest grey mode, and returns the default
1662 display mode, on the specified screen.
1664 This function always causes a flush of the window server buffer.
1666 @param aScreenNumber specifies the screen.
1667 @param aColor The number of colours in the richest supported colour mode.
1668 @param aGray The number of greys in the richest supported grey mode.
1669 @return The default display mode. */
1671 TPckgBuf<SDefModeMaxNumColors> colors;
1672 WriteReplyIntP(aScreenNumber,&colors,EWsClOpGetDefModeMaxNumColors);
1673 aColor=colors().iColors;
1674 aGray=colors().iGrays;
1675 return colors().iDisplayMode;
1678 #define MODE_TO_FLAG(x) 1<<(x-1)
1680 LOCAL_C void HandleColorMode(CArrayFix<TInt>* aModeList,TUint aModeBits, TInt& aNumberOfModes, TInt aMode)
1682 if (aModeBits&(MODE_TO_FLAG(aMode)))
1684 if (aModeList!=NULL)
1686 (*aModeList)[aNumberOfModes]=aMode;
1692 LOCAL_C TInt DoGetColorModeList(CArrayFix<TInt>* aModeList,TUint aModeBits)
1694 TInt numberOfModes=0;
1695 for (TInt mode=EGray2; mode<=EColor256; ++mode)
1697 HandleColorMode(aModeList,aModeBits,numberOfModes,mode);
1699 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor4K);
1700 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor64K);
1701 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16M);
1702 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MU);
1703 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MA);
1704 HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MAP);
1705 return numberOfModes;
1708 EXPORT_C TInt RWsSession::GetColorModeList(CArrayFixFlat<TInt> *aModeList) const
1709 /** Gets the list of available colour modes.
1711 Note that this function should usually be called within User::LeaveIfError().
1712 The only time that an error can be generated is when the array gets resized
1713 to the number of display modes. Thus if you make the size of your array equal
1714 to the maximum number of display modes over all hardware (this is the number
1715 of different values in TDisplayMode) then this function will never leave.
1717 This function always causes a flush of the window server buffer.
1719 @param aModeList On return, contains a TDisplayMode entry for each of the
1720 available display modes. Note that the array's contents are deleted prior
1721 to filling with display mode information.
1722 @return The number of color modes if the parameter is passed NULL. Otherwise KErrNone or KErrNoMemory. */
1724 return GetColorModeList(KDummyScreenNumber,aModeList);
1727 EXPORT_C TInt RWsSession::GetColorModeList(TInt aScreenNumber,CArrayFixFlat<TInt>* aModeList) const
1728 /** Gets the list of available colour modes on a particular screen.
1730 Note that this function should usually be called within User::LeaveIfError().
1731 The only time that an error can be generated is when the array gets resized
1732 to the number of display modes. Thus if you make the size of your array equal
1733 to the maximum number of display modes over all hardware (this is the number
1734 of different values in TDisplayMode) then this function will never leave.
1736 This function always causes a flush of the window server buffer.
1738 @param aModeList On return, contains a TDisplayMode entry for each of the
1739 available display modes. Note that the array's contents are deleted prior
1740 to filling with display mode information.
1741 @param aScreenNumber specifies the screen.
1742 @return The number of color modes if the parameter is passed NULL. Otherwise KErrNone or KErrNoMemory. */
1744 const TUint modeList=STATIC_CAST(TUint,WriteReplyInt(aScreenNumber,EWsClOpGetColorModeList));
1745 const TInt numberOfModes=DoGetColorModeList(NULL, modeList);
1746 if (aModeList==NULL)
1748 return numberOfModes;
1750 TRAPD(error,aModeList->ResizeL(numberOfModes));
1751 if (error!=KErrNone)
1755 DoGetColorModeList(aModeList, modeList);
1759 EXPORT_C void RWsSession::SetPointerCursorArea(const TRect& aArea)
1764 Sets the area of the screen in which the virtual cursor can be used while in
1765 relative mouse mode, for the first screen display mode.
1767 This function sets the area for the first screen mode - the one with index
1768 0, which in most devices will be the only screen mode. The other function
1769 overload can be used to set the screen area for other modes. The area is set
1770 and stored independently on each screen mode, so that it is not necessary
1771 to call this function again when switching back to the first screen mode.
1773 The default area is the full digitiser area. When you set the area it will
1774 come into immediate affect, i.e. if necessary the current pointer position
1775 will be updated to be within the new area.
1779 Relative mouse mode is where the events received from the base by window server
1780 are deltas from the last position of the pointer, as opposed to absolute co-ordinates.
1782 This function is honoured even if there is a mouse or pen (e.g. on the emulator),
1783 by mapping the co-ordinates of where you click into the area set using this
1784 function. However the function does not restrict clicks outside of the 'drawing
1785 area' on the Emulator, to allow you to select items on the fascia.
1787 @param aArea The area of the screen in which the virtual cursor can be used.
1788 @capability WriteDeviceData */
1790 SetPointerCursorArea(0,aArea);
1793 EXPORT_C void RWsSession::SetPointerCursorArea(TInt aScreenSizeMode,const TRect& aArea)
1794 /** Sets the area of the screen in which the virtual cursor can be used while in
1795 relative mouse mode, for a specified screen display mode.
1797 The default area is the full digitiser area for the given mode. When you set
1798 the area it will come into immediate affect, i.e. if necessary the current
1799 pointer position will be updated to be within the new area.
1801 The area is set and stored independently on each screen mode, so that it is
1802 not necessary to call this function again when switching back to a mode.
1806 Relative mouse mode is where the events received from the base by window server
1807 are deltas from the last position of the pointer, as opposed to absolute co-ordinates.
1809 The previous function overload may be used to set the screen area for only
1812 This function is honoured even if there is a mouse or pen (e.g. on the emulator),
1813 by mapping the co-ordinates of where you click into the area set using this
1814 function. However the function does not restrict clicks outside of the 'drawing
1815 area' on the Emulator, to allow you to select items on the fascia.
1817 @param aScreenSizeMode The screen mode to which the new area applies.
1818 @param aArea The area of the screen, in the aScreenSizeMode screen mode, within
1819 which the virtual cursor can be used.
1820 @capability WriteDeviceData */
1822 TWsClCmdSetPointerCursorArea SetPointerCursorArea(aScreenSizeMode,aArea);
1823 Write(&SetPointerCursorArea,sizeof(SetPointerCursorArea),EWsClOpSetPointerCursorArea);
1826 EXPORT_C TRect RWsSession::PointerCursorArea() const
1827 /** Gets the pointer cursor area for the first screen display mode.
1829 This is the area of the screen in which the virtual cursor can be used while
1830 in relative mouse mode. While in pen or mouse mode the event co-ordinates
1831 are forced to be within this area unless you click outside the drawable area.
1833 This function always causes a flush of the window server buffer.
1835 @return The pointer cursor area for the first screen display mode.
1836 @see SetPointerCursorArea() */
1838 return PointerCursorArea(0);
1841 EXPORT_C TRect RWsSession::PointerCursorArea(TInt aScreenSizeMode) const
1842 /** Gets the pointer cursor area for the specified screen display mode.
1844 This is the area of the screen in which the virtual cursor can be used while
1845 in relative mouse mode. While in pen or mouse mode the event co-ordinates
1846 are forced to be within this area unless you click outside the drawable area.
1848 This function always causes a flush of the window server buffer.
1850 @param aScreenSizeMode The screen mode for which the pointer cursor area is
1852 @return The pointer cursor area for the specified screen display mode.
1853 @see SetPointerCursorArea() */
1855 TPckgBuf<TRect> rectPkg;
1856 WriteReplyP(&aScreenSizeMode,sizeof(aScreenSizeMode),&rectPkg,EWsClOpPointerCursorArea);
1860 EXPORT_C void RWsSession::SetPointerCursorMode(TPointerCursorMode aMode)
1861 /** Sets the current mode for the pointer cursor.
1863 The mode determines which sprite is used for the pointer cursor at any point.
1864 The request is ignored unless the calling application is the application
1865 that currently has keyboard focus.
1866 See TPointerCursorMode for more information.
1868 @param aMode The new mode for the pointer cursor.
1869 @see TPointerCursorMode */
1871 WriteInt(aMode,EWsClOpSetPointerCursorMode);
1874 EXPORT_C TInt RWsSession::SetClientCursorMode(TPointerCursorMode aMode)
1875 /** Sets the current mode for the pointer cursor.
1877 The mode determines which sprite is used for the pointer cursor at any point.
1878 See TPointerCursorMode for more information.
1880 This function always causes a flush of the window server buffer.
1882 @param aMode The new mode for the pointer cursor.
1883 @see TPointerCursorMode
1884 @return KErrNone if successful, otherwise returns system wide errors. Returns
1885 KErrPermissionDenied if calling thread lacks WriteDeviceData capability
1886 @capability WriteDeviceData */
1888 return(WriteReplyInt(aMode,EWsClOpSetClientCursorMode));
1891 EXPORT_C TPointerCursorMode RWsSession::PointerCursorMode() const
1892 /** Gets the current mode for the pointer cursor.
1894 The mode determines which sprite is used for the pointer cursor at any point.
1896 This function always causes a flush of the window server buffer.
1898 @return The current mode for the pointer cursor. */
1900 return(STATIC_CAST(TPointerCursorMode,WriteReply(EWsClOpPointerCursorMode)));
1903 EXPORT_C void RWsSession::SetDefaultSystemPointerCursor(TInt aCursorNumber)
1904 /** Sets the default system pointer cursor.
1906 This function can only be called by the owner of the system pointer cursor
1907 list. By default the 0th entry in the pointer cursor list is assigned as the
1908 system pointer. The function allows any cursor from the list or even no cursor
1909 to be set as the system pointer cursor.
1911 Note: ownership of the system pointer cursor list can be obtained by calling
1912 ClaimSystemPointerCursorList() when no-one else has ownership.
1914 @param aCursorNumber The index of the new default system pointer cursor within
1915 the system cursor list. */
1917 WriteInt(aCursorNumber,EWsClOpSetDefaultSystemPointerCursor);
1920 EXPORT_C void RWsSession::ClearDefaultSystemPointerCursor()
1921 /** Clears the default system pointer cursor.
1923 This sets the pointer to the current default system pointer cursor to NULL.
1925 @panic WSERV 42 If this function is called by a client other than the owner of the
1926 system pointer cursor list. */
1928 Write(EWsClOpClearDefaultSystemPointerCursor);
1931 EXPORT_C TInt RWsSession::SetPointerCursorPosition(const TPoint& aPosition)
1932 /** Sets the pointer cursor position.
1934 This function allows an application to move the virtual cursor. It works in
1935 all modes, not just relative mouse mode.
1937 Note: the function works in screen co-ordinates and honours the pointer cursor area
1938 exactly as pen presses do, i.e. only when they are in the drawing area
1941 This function always causes a flush of the window server buffer.
1943 @param aPosition The new pointer cursor position.
1944 @return KErrNone if successful, otherwise another of the system-wide error
1946 @capability WriteDeviceData required, if the client calling the function doesn't have keyboard focus.
1947 However, if the client have keyboard focus then he doesn't need any capability to call this function. */
1949 return(WriteReply(&aPosition,sizeof(aPosition),EWsClOpSetPointerCursorPosition));
1952 EXPORT_C TPoint RWsSession::PointerCursorPosition() const
1953 /** Gets the pointer cursor position.
1955 This function allows an application to determine the position of the virtual
1958 It always causes a flush of the window server buffer.
1960 @return The position of the virtual cursor. */
1962 TPckgBuf<TPoint> pointPkg;
1963 WriteReplyP(&pointPkg,EWsClOpPointerCursorPosition);
1967 EXPORT_C void RWsSession::SetDefaultFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap)
1972 Sets the default fading parameters.
1974 Fading is used to change the colour of windows to be either closer
1975 to white or closer to black, so that another window stands out. For example,
1976 when displaying a dialogue you could fade all visible windows, then unfade
1977 the dialog window. This function sets whether, and the amount by which, faded
1978 windows appear closer to white or closer to black.
1980 The white and black mapping values define the range over which colours are
1981 re-mapped when a window is faded. If aBlackMap=0 and aWhiteMap=255 then the
1982 colours are mapped unchanged. As the two values get closer together, all colours
1983 in the faded window becomes more similar - creating the fading effect. When
1984 the numbers cross over (so that the black value is greater than the white
1985 value) the colours in the faded window start to invert - i.e. colours that
1986 were closer to white in the unfaded window are mapped to a darker colour in
1989 Changing the default will automatically apply to current graphics contexts
1990 but will not have any affect on windows that are already faded.
1992 Note: RWindowTreeNode::SetFaded(), CWindowGc::SetFaded() and RWsSession::SetSystemFaded()
1993 use these fading parameters, and in addition allow the default fading value
1996 @param aBlackMap Black map fading parameter.
1997 @param aWhiteMap White map fading parameter.
1998 @see RWindowTreeNode::SetFaded()
1999 @see CWindowGc::SetFadingParameters()
2000 @capability WriteDeviceData */
2002 WriteInt(WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap),EWsClOpSetDefaultFadingParams);
2009 Prepares for switch off.
2011 This stops the window server heart beat timer if running.
2013 @capability PowerMgmt
2015 EXPORT_C void RWsSession::PrepareForSwitchOff()
2017 Write(EWsClOpPrepareForSwitchOff);
2020 #if defined(__WINS__)
2021 EXPORT_C void RWsSession::SetRemoveKeyCode(TBool aRemove)
2022 /** Sets whether to remove the top 16 bits of a key code (Emulator builds only).
2024 This function allows the Emulator to use Windows to translate keypresses into
2025 the correct key code for each locale, rather than having to do the translation
2026 for each international keyboard itself.
2028 The top 16 bits of a keypress code contains the keycode that Windows would
2029 produce if the key had been pressed in a typical Windows program. If aRemove
2030 is EFalse the client can get these top 16 bits. If the value is non-zero
2031 the CKeyTranslator uses it rather than calculating it's own value. If aRemove
2032 is ETrue the window server strips the top 16 bits of the scan code before
2033 passing the value on to the client.
2035 Note: this function is intended for Java but it will be useful to any client who
2036 creates their own CKeyTranslator and processes keyups and downs.
2038 @param aRemove ETrue to remove the code (default), EFalse to pass it to the
2041 WriteInt(aRemove,EWsClOpRemoveKeyCode);
2044 EXPORT_C void RWsSession::SimulateXyInputType(TInt aInputType)
2046 WriteInt(aInputType,EWsClOpSimulateXyInput);
2050 EXPORT_C void RWsSession::LogCommand(TLoggingCommand aCommand)
2051 /** Allows the window server client to enable or disable logging of window server
2054 The type of logging that takes place (e.g. whether to file or to serial port)
2055 depends on the settings specified in the wsini.ini file.
2057 Clients can also force a dump of the window tree or information about the
2058 window server's heap size and usage.
2060 For logging to work, the wsini.ini file has to specify the type of logging
2061 required and the DLLs for that type of logging must have been correctly installed.
2062 Otherwise, calling this function will have no effect.
2064 @param aCommand The logging command. */
2066 WriteInt(aCommand,EWsClOpLogCommand);
2069 EXPORT_C void RWsSession::LogMessage(const TLogMessageText &aMessage)
2070 /** Adds a message to the window server debug log if one is currently in operation.
2072 This function always causes a flush of the window server buffer.
2074 @param aMessage The text added to the message log. */
2076 TInt len=aMessage.Length();
2077 WriteReply(&len,sizeof(len),aMessage.Ptr(),aMessage.Size(),EWsClOpLogMessage);
2080 EXPORT_C void RWsSession::SimulateRawEvent(TRawEvent aEvent)
2084 Simulates raw events.
2086 For most purposes, RWsSession::SimulateKeyEvent() should be used instead to
2087 simulate key events because low-level scan-code up/down events are not meaningful
2088 to anything other than the keyboard to which they apply.
2090 For example, the driver for an external keyboard should do its own conversion from
2091 raw scan-codes to higher-level character code key events and pass these to the
2092 window server using SimulateKeyEvent().
2094 @param aEvent The raw event.
2095 @capability SwEvent */
2097 Write(&aEvent,sizeof(aEvent),EWsClOpRawEvent);
2100 EXPORT_C void RWsSession::SimulateKeyEvent(TKeyEvent aEvent)
2104 Sends a simulated key event to the window server.
2106 All the fields in TKeyEvent are honoured except iRepeats, which is overridden
2109 @param aEvent The key event to be simulated.
2110 @capability SwEvent */
2112 Write(&aEvent,sizeof(aEvent),EWsClOpKeyEvent);
2116 EXPORT_C void RWsSession::SystemInfo(TInt &aSystemInfoNumber, SSystemInfo &aSystemInfo)
2117 /** @internalComponent */
2119 TPckgBuf<SSystemInfo> systemInfoPckg;
2120 WriteReplyP(&aSystemInfoNumber,sizeof(aSystemInfoNumber),&systemInfoPckg,EWsClOpSystemInfo);
2121 aSystemInfo=systemInfoPckg();
2124 void RWsSession::DirectAcessActivation(TBool aIsNowActive)
2127 ++iBuffer->iDirectAcessCount;
2130 --iBuffer->iDirectAcessCount;
2131 __ASSERT_DEBUG(iBuffer->iDirectAcessCount>=0,Assert(EW32AssertDirectMisuse));
2135 EXPORT_C void RWsSession::TestWrite(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength)
2136 /** @internalComponent */
2138 iBuffer->Write(aHandle,aOpcode,pData,aLength);
2141 EXPORT_C void RWsSession::TestWriteReply(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength)
2142 /** @internalComponent */
2144 iBuffer->WriteReply(aHandle,aOpcode,pData,aLength);
2147 EXPORT_C void RWsSession::TestWriteReplyP(TInt aHandle,TInt aOpcode,const TAny *pData,TInt aLength,TDes8 *aReplyPackage)
2148 /** @internalComponent */
2150 iBuffer->WriteReplyP(aHandle,aOpcode,pData,aLength,aReplyPackage);
2153 EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC8& aRemoteReadBuffer)
2154 /** @internalComponent */
2156 return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer);
2159 EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC16& aRemoteReadBuffer)
2160 /** @internalComponent */
2162 return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer);
2165 /** Sets both the buffer size and maximum buffer size for queuing commands to send to the Windows Server.
2166 The value should be at least the size of the largest message that will be sent,
2167 otherwise a panic of the client may occur.
2169 The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes.
2170 The default size of 640 bytes is sufficient for most uses.
2172 Larger buffers can reduce drawing flicker by allowing more drawing commands to be
2173 collected in the buffer before being sent to the server.
2175 Smaller buffers conserve system memory.
2177 Can be used to set a minimum buffer size, sufficient for largest drawing command used,
2178 before calling RWsSession::SetMaxBufferSizeL() to set a maximum buffer size for queuing commands.
2180 @param aBufSize The desired buffer size in bytes, at least the size of largest message to be sent.
2181 @leave KErrNoMemory Could not allocate the required memory.
2183 @panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer.
2185 @see RWsSession::Flush()
2186 @see RWsSession::SetAutoFlush()
2187 @see RWsSession::SetMaxBufferSizeL()
2189 EXPORT_C void RWsSession::SetBufferSizeL(TInt aBufSize)
2191 iBuffer->SetBufferSizeL(aBufSize);
2194 /** Sets the maximum size that the buffer for queuing commands to send to the Windows Server can expand to.
2196 The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes.
2198 If the buffer size is larger than the new maximum it is reduced.
2200 A minimum size is calculated to be one quarter the maximum size, but in any case at least 640 bytes.
2201 If the buffer size is smaller than the calculated minimum it is expanded.
2203 RWsSession::SetBufferSizeL() can be used to set a specific minimum size >640 bytes before setting a maximum size.
2204 This is useful if you will send very large drawing commands.
2206 After calling this function the buffer size will be between the specified maximum and calculated minimum sizes.
2208 The algorithm for growing the buffer up to the maximum is chosen to balance the cost of expanding the buffer
2209 with the waste of an excessively large buffer that is never filled.
2211 If the buffer becomes too full to add a new drawing command, and the buffer size is less than the maximum,
2212 the buffer size will be expanded.
2213 If the buffer is already at the maximum size, or the expansion fails due to low memory,
2214 the buffer will be emptied with RWsSession::Flush().
2215 If there is not enough space now for the new command a panic occurs.
2217 @param aMaxBufSize The desired maximum buffer size in bytes.
2218 @leave KErrNoMemory Could not allocate the required minimum memory.
2220 @panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer.
2222 @see RWsSession::Flush()
2223 @see RWsSession::SetAutoFlush()
2224 @see RWsSession::SetBufferSizeL()
2226 EXPORT_C void RWsSession::SetMaxBufferSizeL(TInt aMaxBufSize)
2228 iBuffer->SetMaxBufferSizeL(aMaxBufSize);
2231 EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded)
2232 /** Sets all windows in the system as faded or unfaded, using the default fading
2235 This function allows all windows that currently exist, not just those in a
2236 single window group, to be faded or unfaded.
2238 Notes: The window server generates a redraw to un-fade a window, because information
2239 is lost during fading. Blank (RBlankWindow) and backup (RBackupWindow) windows
2240 deal with this themselves. Areas in shadow when the window is faded will also
2241 have redraw events generated for them by the window server. While a window
2242 is faded, all drawing to that window will be adjusted appropriately by the
2245 This function always causes a flush of the window server buffer.
2247 @param aFaded ETrue to fade all windows, EFalse to un-fade all windows.
2248 @return KErrNone if successful, otherwise another of the system-wide error
2250 @capability WriteDeviceData */
2252 TWsClCmdSetSystemFaded params(aFaded);
2253 return WriteReply(¶ms,sizeof(params),EWsClOpSetFaded);
2256 EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded,TUint8 aBlackMap,TUint8 aWhiteMap)
2257 /** Sets all windows in the system as faded or unfaded, overriding the default
2258 fading parameters (as set by SetDefaultFadingParameters()).
2260 This function allows all windows that currently exist, not just those in the
2261 same window group, to be faded or unfaded.
2263 Notes: Fading a window for a second time (that is fading it when it is already
2264 faded) will not change the fading map used. The window server generates a
2265 redraw to un-fade a window, because information is lost during fading. Blank
2266 (RBlankWindow) and backup (RBackupWindow) windows deal with this themselves.
2267 Areas in shadow when the window is faded will also have redraw events generated
2268 for them by the window server. While a window is faded, all drawing to that
2269 window will be adjusted appropriately by the window server.
2271 This function always causes a flush of the window server buffer.
2273 @param aFaded ETrue to fade all windows, EFalse to un-fade all windows.
2274 @param aBlackMap Black map fading parameter.
2275 @param aWhiteMap White map fading parameter.
2276 @return KErrNone if successful, otherwise another of the system-wide error
2278 @capability WriteDeviceData */
2280 TWsClCmdSetSystemFaded params(aFaded,EFalse,aBlackMap,aWhiteMap);
2281 return WriteReply(¶ms,sizeof(params),EWsClOpSetFaded);
2284 EXPORT_C TInt RWsSession::SetFocusScreen(TInt aScreenNumber)
2285 /** Set focus screen
2286 @param aScreenNumber The new focus screen.
2287 @return KErrNone if successful, otherwise another of the system-wide error
2290 return WriteReplyInt(aScreenNumber,EWsClOpSetFocusScreen);
2293 EXPORT_C TInt RWsSession::GetFocusScreen() const
2294 /** Get focus screen
2295 @return The screen number of current focus screen */
2297 return WriteReply(EWsClOpGetFocusScreen);
2300 EXPORT_C TInt RWsSession::NumberOfScreens() const
2301 /** Number Of Screens
2302 @return The number of screens on the phone */
2304 return WriteReply(EWsClOpGetNumberOfScreens);
2307 EXPORT_C void RWsSession::ClearAllRedrawStores()
2308 /** Clear the redraw store for all windows in the system
2309 By default Windows will recorded the drawing commands used during a redraw and use them latter if the window needs to be redrawn.
2310 Calling this function will cause all these stores to be thrown away redraw will then be sent to all window, visible windows will recieve them first.
2312 This function always causes a flush of the window server buffer.*/
2314 Write(EWsClOpClearAllRedrawStores);
2317 EXPORT_C TInt RWsSession::Finish()
2319 Blocks until all outstanding window server rendering has been completed.
2320 @return KErrNone if successful
2324 return SendReceive(EWservMessFinish);
2327 EXPORT_C void RWsSession::SyncMsgBuf()
2329 Sends all pending commands in the buffer to the window server.
2337 EXPORT_C TInt RWsSession::SetCloseProximityThresholds(TInt /*aEnterCloseProximityThreshold*/, TInt /*aExitCloseProximityThreshold*/)
2338 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2339 @internalComponent */
2342 return KErrNotSupported;
2345 EXPORT_C TInt RWsSession::GetEnterCloseProximityThreshold() const
2346 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2347 @internalComponent */
2350 return KErrNone; // return any value to prevent compilation warning
2353 EXPORT_C TInt RWsSession::GetExitCloseProximityThreshold() const
2354 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2355 @internalComponent */
2358 return KErrNone; // return any value to prevent compilation warning
2361 EXPORT_C TInt RWsSession::SetHighPressureThresholds(TInt /*aEnterHighPressureThreshold*/, TInt /*aExitHighPressureThreshold*/)
2362 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2363 @internalComponent */
2366 return KErrNotSupported;
2369 EXPORT_C TInt RWsSession::GetEnterHighPressureThreshold() const
2370 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2371 @internalComponent */
2374 return KErrNone; // return any value to prevent compilation warning
2377 EXPORT_C TInt RWsSession::GetExitHighPressureThreshold() const
2378 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2379 @internalComponent */
2382 return KErrNone; // return any value to prevent compilation warning
2385 EXPORT_C void RWsSession::EnableWindowSizeCacheL()
2386 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2387 @internalComponent */
2392 EXPORT_C void RWsSession::SendEffectCommand(TInt /*aTfxCmd*/,const TDesC8& /*aTfxCmdData*/)
2393 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2394 @internalComponent */
2399 EXPORT_C void RWsSession::RegisterEffect(TInt /*aAction*/, TInt /*aPurpose*/, const TFileName& /*aResourceDir*/, const TFileName& /*aFilenameOutgoing*/, const TFileName& /*aFilenameIncoming*/, TUint /*aAppUid*/, TBitFlags /*aFlags*/)
2400 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2401 @internalComponent */
2406 EXPORT_C void RWsSession::UnregisterEffect(TInt /*aAction*/, TInt /*aPurpose*/, TUint /*aAppUid*/)
2407 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2408 @internalComponent */
2413 EXPORT_C void RWsSession::UnregisterAllEffects()
2414 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2415 @internalComponent */
2420 EXPORT_C void RWsSession::OverrideEffects(TInt /*aAction*/, TInt /*aPurpose*/, const TFileName& /*aResourceDir*/, const TFileName& /*aFilenameOutgoing*/, const TFileName& /*aFilenameIncoming*/, TBitFlags /*aFlags*/)
2421 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2422 @internalComponent */
2427 EXPORT_C void RWsSession::IndicateAppOrientation(TRenderOrientation /*aOrientation*/)
2428 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
2429 @internalComponent */