os/graphics/windowing/windowserver/nonnga/CLIENT/RWS.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // IPC implementation of client side code
    15 // 
    16 //
    17 
    18 #include "../SERVER/w32cmd.h"
    19 #include "w32comm.h"
    20 #include <e32std.h>
    21 #include <w32std.h>
    22 #include "CLIENT.H"
    23 #include "wstraces.h"
    24 #include "graphics/windowserverconstants.h"
    25 #include <wspublishandsubscribedata.h>
    26 
    27 const TInt KMaxWSERVMessagesSlot=-1;
    28 
    29 
    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);
    33 
    34 
    35 class RWsCustomTextCursor : public RWsSpriteBase
    36 	{
    37 	public:
    38 		RWsCustomTextCursor(RWsSession aWs, TInt aHandle) : RWsSpriteBase(aWs)
    39 			{ iWsHandle = aHandle; }
    40 	};
    41 
    42 
    43 EXPORT_C RWsSession::RWsSession()
    44 /** Default C++ constructor.
    45 
    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 
    50 handle. */
    51 	{}
    52 
    53 void RWsSession::connectL()
    54 	{
    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()));
    59 	}
    60 
    61 EXPORT_C TInt RWsSession::Connect()
    62 /** Connects the client session to the window server.
    63 
    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.
    69 
    70 After a connection has been successfully established, all events are delivered 
    71 to the client application through the RWsSession object.
    72 
    73 @return KErrNone if successful, otherwise another of the system-wide error 
    74 codes. */
    75 	{
    76 	TInt ret;
    77 
    78 	if (iBuffer!=NULL)
    79 		Panic(EW32PanicReConnect);
    80  	if ((ret=RFbsSession::Connect())==KErrNone)
    81 		{
    82 		TRAP(ret,connectL());
    83 		if (ret!=KErrNone)
    84 			{
    85 			if (!iBuffer)
    86 				RFbsSession::Disconnect();
    87 			Close();
    88 			}
    89 		else
    90 			iBuffer->SetCallBack();
    91 		}
    92 	return(ret);
    93 	}
    94 
    95 EXPORT_C TInt RWsSession::Connect(RFs& aFileServer)
    96 /** Connects the client session to the window server using pre constructed file server
    97 session.
    98 
    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.
   104 
   105 After a connection has been successfully established, all events are delivered 
   106 to the client application through the RWsSession object.
   107 
   108 @param aFileServer A fully constructed file server session
   109 @return KErrNone if successful, otherwise another of the system-wide error 
   110 codes. */
   111 	{
   112 	TInt ret;
   113 
   114 	if (iBuffer!=NULL)
   115 		Panic(EW32PanicReConnect);
   116  	if ((ret=RFbsSession::Connect(aFileServer))==KErrNone)
   117 		{
   118 		TRAP(ret,connectL());
   119 		if (ret!=KErrNone)
   120 			{
   121 			if (!iBuffer)
   122 				RFbsSession::Disconnect();
   123 			Close();
   124 			}
   125 		else
   126 			iBuffer->SetCallBack();
   127 		}
   128 	return(ret);
   129 	}
   130 
   131 EXPORT_C void RWsSession::Close()
   132 /** Closes the window server session. 
   133 
   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 
   138 it is destroyed. */
   139 	{
   140 	if (iBuffer)
   141 		{
   142 		__ASSERT_ALWAYS(iBuffer->iDirectAcessCount==0,Panic(EW32PanicDirectMisuse));
   143 		iBuffer->CancelCallBack();
   144 		iBuffer->Destroy();
   145 		iBuffer=NULL;
   146 		RFbsSession::Disconnect();
   147 		}
   148 	RSessionBase::Close();
   149 	}
   150 
   151 // Private function(s)
   152 
   153 TInt RWsSession::DoSyncMsgBuf(const TIpcArgs& aIpcArgs)
   154 	{
   155 	return (SendReceive(EWservMessSyncMsgBuf,aIpcArgs));
   156 	}
   157 	
   158 TInt RWsSession::DoFlush(const TIpcArgs& aIpcArgs)
   159 	{
   160 	return (SendReceive(EWservMessCommandBuffer,aIpcArgs));
   161 	}
   162 
   163 EXPORT_C TVersion RWsSession::Version() const
   164 /** Gets the window server version.
   165 
   166 @return Window server version containing major and minor version numbers, 
   167 and build number. */
   168 	{
   169 
   170 	TVersion v(KWservMajorVersionNumber,KWservMinorVersionNumber,KWservBuildVersionNumber);
   171 	return(v);
   172 	}
   173 
   174 TInt RWsSession::doSetHotKey(TInt aOpcode, TInt aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers)
   175 	{
   176 	TWsClCmdSetHotKey setHotKey;
   177 
   178 	setHotKey.type=aType;
   179 	setHotKey.keycode=(TUint16)aKeycode;
   180 	setHotKey.modifiers=aModifiers;
   181 	setHotKey.modifierMask=aModifierMask;
   182 	return(WriteReply(&setHotKey,sizeof(setHotKey),aOpcode));
   183 	}
   184 
   185 EXPORT_C TInt RWsSession::SetHotKey(THotKey aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers)
   186 /** Sets the hot keys.
   187 
   188 Hot keys allow standard functions to be performed by application-defined key 
   189 combinations. 
   190 
   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.
   194 
   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.
   201 
   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.
   205 
   206 This function always causes a flush of the window server buffer.
   207 
   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 
   213 error codes.
   214 @capability SwEvent */
   215 	{
   216 	return(doSetHotKey(EWsClOpSetHotKey, aType, aKeycode, aModifierMask, aModifiers));
   217 	}
   218 
   219 EXPORT_C TInt RWsSession::ClearHotKeys(THotKey aType)
   220 /** Clears all mappings for the specified hotkey, including the default mapping.
   221 
   222 Hotkeys allow standard functions to be performed by application-defined key 
   223 combinations. 
   224 
   225 This function always causes a flush of the window server buffer.
   226 
   227 @param aType The hot key to be cleared 
   228 @return KErrNone if successful, otherwise one of the system-wide error codes. 
   229 @see SetHotKey()
   230 @see RestoreDefaultHotKey()
   231 @capability SwEvent */
   232 	{
   233 	return(WriteReplyInt(aType,EWsClOpClearHotKeys));
   234 	}
   235 
   236 EXPORT_C TInt RWsSession::RestoreDefaultHotKey(THotKey aType)
   237 /** Restores the default mapping for a hot key.
   238 
   239 The function clears current mappings for a hot key and restores the default 
   240 mapping. See THotKey for the default.
   241 
   242 This function always causes a flush of the window server buffer.
   243 
   244 @param aType The hot key to restore to its default value 
   245 @return KErrNone if successful, otherwise another of the system-wide error 
   246 codes. 
   247 @see ClearHotKeys() */
   248 	{
   249 	return(WriteReplyInt(aType,EWsClOpRestoreDefaultHotKey));
   250 	}
   251 
   252 EXPORT_C void RWsSession::ComputeMode(TComputeMode aMode)
   253 /** Sets the mode used to control process priorities.
   254 
   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 
   259 TComputeMode.
   260 
   261 Note:
   262 
   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.
   267 
   268 @param aMode The compute mode. */
   269 	{
   270 	WriteInt(aMode,EWsClOpComputeMode);
   271 	}
   272 
   273 EXPORT_C void RWsSession::SetShadowVector(const TPoint &aVector)
   274 /** Sets the shadow vector.
   275 
   276 @param aVector New shadow vector */
   277 	{
   278 	WritePoint(aVector,EWsClOpSetShadowVector);
   279 	}
   280 
   281 EXPORT_C TPoint RWsSession::ShadowVector() const
   282 /** Gets the current value of the shadow vector.
   283 
   284 This function always causes a flush of the window server buffer.
   285 
   286 @return Current shadow vector */
   287 	{
   288 	TPckgBuf<TPoint> pointPkg;
   289   	WriteReplyP(&pointPkg,EWsClOpShadowVector);
   290 	return(pointPkg());
   291 	}
   292 
   293 void RWsSession::doReadEvent(TRequestStatus *aStat, TInt aOpcode)
   294 	{
   295 	*aStat=KRequestPending;
   296 	if (iBuffer)
   297 		{
   298 		iBuffer->Flush(); //ignore error since this flushing should not return any error
   299 		}
   300 	__ASSERT_DEBUG(EWservMessAsynchronousService>=aOpcode, Assert(EW32AssertIllegalOpcode));
   301 	const TInt function=EWservMessAsynchronousService|aOpcode;
   302 	SendReceive(function,TIpcArgs(),*aStat);
   303 	}
   304 
   305 EXPORT_C void RWsSession::EventReady(TRequestStatus* aStat)
   306 /** Requests standard events from the window server.
   307 
   308 Standard events include all events except redraws and priority key events.
   309 
   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.
   313 
   314 Notes:
   315 
   316 - The active object runs when an event is waiting. You should call GetEvent() 
   317 in the RunL() function to get the event.
   318 
   319 - You should not call this function again until you have either called GetEvent() 
   320 or EventReadyCancel().
   321 
   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.
   328 
   329 @param aStat Request status. On successful completion contains KErrNone, otherwise 
   330 another of the system-wide error codes.
   331 @see CActive
   332 @see GetEvent() */
   333 	{
   334 	WS_TRACE_CLIENT_EVENTREADY();
   335 	doReadEvent(aStat,EWsClOpEventReady);
   336 	}
   337 
   338 EXPORT_C void RWsSession::RedrawReady(TRequestStatus* aStat)
   339 /** Requests redraw events from the window server.
   340 
   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() 
   344 function.
   345 
   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().
   350 
   351 Notes:
   352 
   353 - You should not call this function again until you have either called 
   354 GetRedraw() or RedrawReadyCancel().
   355 
   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.
   362 
   363 @param aStat The request status. On successful completion contains KErrNone, 
   364 otherwise another of the system-wide error codes. 
   365 @see RedrawReadyCancel()
   366 @see GetRedraw()
   367 @see CActive */
   368 	{
   369 	WS_TRACE_CLIENT_REDRAWREADY();
   370 	doReadEvent(aStat,EWsClOpRedrawReady);
   371 	}
   372 	
   373 void RWsSession::GraphicMessageReady(TRequestStatus *aStat)
   374 	{
   375 	doReadEvent(aStat,EWsClOpGraphicMessageReady);
   376 	}
   377 	
   378 void RWsSession::GetGraphicMessage(TDes8& aData) const
   379 	{
   380 	WriteReplyP(TWriteDescriptorType(&aData),EWsClOpGetGraphicMessage);
   381 	}
   382 	
   383 void RWsSession::GraphicMessageCancel()
   384 	{
   385 	WriteReply(EWsClOpGraphicMessageCancel);
   386 	}
   387 
   388 void RWsSession::GraphicAbortMessage(TInt aError)
   389 	{
   390 	WriteReplyInt(aError, EWsClOpGraphicAbortMessage);
   391 	}
   392 
   393 TInt RWsSession::GraphicFetchHeaderMessage()
   394 	{
   395 	return WriteReply(EWsClOpGraphicFetchHeaderMessage);
   396 	}
   397 	
   398 EXPORT_C void RWsSession::PriorityKeyReady(TRequestStatus *aStat)
   399 /** Requests priority key events from the window server. 
   400 
   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 
   404 RunL() function.
   405 
   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 
   408 GetPriorityKey().
   409 
   410 Notes:
   411 
   412 - You should not call this function again until you have either called 
   413 GetPriorityKey() or PriorityKeyReadyCancel().
   414 
   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.
   421 
   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()
   426 @see CActive */
   427 	{
   428 	doReadEvent(aStat,EWsClOpPriorityKeyReady);
   429 	}
   430 
   431 EXPORT_C void RWsSession::GetEvent(TWsEvent &aEvent) const
   432 /** Gets a standard event from the session for processing.
   433 
   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.
   438 
   439 Notes:
   440 
   441 It is possible that the returned event is of type EEventNull. Clients should 
   442 normally ignore these events.
   443 
   444 This function should only be called in response to notification that an event 
   445 has occurred, otherwise the client will be panicked.
   446 
   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.
   449 
   450 This function always causes a flush of the window server buffer.
   451 
   452 @param aEvent On return, contains the event that occurred 
   453 @see TEventCode
   454 @see EventReady() */
   455 	{
   456 	WS_TRACE_CLIENT_GETEVENT();	
   457 	TPckgBuf<TWsEvent> event;
   458 	WriteReplyP(&event,EWsClOpGetEvent);
   459 	aEvent=event();
   460 	}
   461 
   462 EXPORT_C void RWsSession::PurgePointerEvents()
   463 /** Removes all pointer events waiting to be delivered to this session. 
   464 
   465 The events are removed from the event queue without being processed. This 
   466 might occur, for example, at application startup. */
   467 	{
   468 	Write(EWsClOpPurgePointerEvents);
   469 	}
   470 
   471 EXPORT_C void RWsSession::GetRedraw(TWsRedrawEvent &aEvent)
   472 /** Gets the redraw event from the session.
   473 
   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.
   476 
   477 The function should only be called after notification that a redraw is waiting.
   478 
   479 It always causes a flush of the window server buffer.
   480 
   481 @param aEvent On return, contains the redraw event that occurred 
   482 @see RedrawReady()
   483 @see GetEvent()
   484 @see CActive */
   485 	{
   486 	WS_TRACE_CLIENT_GETREDRAW();
   487 	TPckgBuf<TWsRedrawEvent> redraw;
   488 	WriteReplyP(&redraw,EWsClOpGetRedraw);
   489 	aEvent=redraw();
   490 	}
   491 
   492 EXPORT_C void RWsSession::GetPriorityKey(TWsPriorityKeyEvent &aEvent) const
   493 /** Gets the completed priority key event from the window server session.
   494 
   495 Priority key events are typically used for providing "Abort" or "Escape" keys 
   496 for an application.
   497 
   498 This function is similar to GetEvent(), except that it returns a TWsPriorityKeyEvent 
   499 instead of a TWsEvent.
   500 
   501 Note: this should only be called after notification that a priority key event has 
   502 occurred.
   503 
   504 This function always causes a flush of the window server buffer.
   505 
   506 @param aEvent On return, contains the priority key event that occurred. 
   507 @see PriorityKeyReady()
   508 @see PriorityKeyReadyCancel() */
   509 	{
   510 	TPckgBuf<TWsPriorityKeyEvent> abortEvent;
   511 	WriteReplyP(&abortEvent,EWsClOpGetPriorityKey);
   512 	aEvent=abortEvent();
   513 	}
   514 
   515 EXPORT_C void RWsSession::EventReadyCancel()
   516 /** Cancels a request for standard events from the window server.
   517 
   518 This request was made using EventReady().
   519 
   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() 
   522 function.
   523 
   524 This function always causes a flush of the window server buffer.
   525 
   526 @see EventReady() */
   527 	{
   528 	if (iWsHandle)
   529 		WriteReply(EWsClOpEventReadyCancel);
   530 	}
   531 
   532 EXPORT_C void RWsSession::RedrawReadyCancel()
   533 /** Cancels a redraw event request. 
   534 
   535 If active objects are used, this function should be called from the active 
   536 object's DoCancel() function.
   537 
   538 This function always causes a flush of the window server buffer.
   539 
   540 @see RedrawReady() */
   541 	{
   542 	if (iWsHandle)
   543 		WriteReply(EWsClOpRedrawReadyCancel);
   544 	}
   545 
   546 EXPORT_C void RWsSession::PriorityKeyReadyCancel()
   547 /** Cancels a priority key event request.
   548 
   549 If active objects are used, this function should be called from the active 
   550 object's DoCancel() function.
   551 
   552 This function always causes a flush of the window server buffer.
   553 
   554 @see PriorityKeyReady()
   555 @see CActive */
   556 	{
   557 	if (iWsHandle)
   558 		WriteReply(EWsClOpPriorityKeyReadyCancel);
   559 	}
   560 
   561 EXPORT_C void RWsSession::Flush()
   562 /** Sends all pending commands in the buffer to the window server. 
   563 
   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 
   567 server. 
   568 
   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.
   571 
   572 Note: this function is called when a prompt response is required from the window 
   573 server, e.g. after doing some drawing.
   574 
   575 @see RWsSession::SetAutoFlush()
   576 @see RWsSession::SetBufferSizeL()
   577 @see RWsSession::SetMaxBufferSizeL()
   578 */
   579 	{
   580 	if (iBuffer)
   581 		iBuffer->Flush(NULL,ETrue);
   582 	}
   583 
   584 EXPORT_C TBool RWsSession::SetAutoFlush(TBool aState)
   585 /** Sets a session's auto-flush state. 
   586 
   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. 
   590 
   591 If the auto-flush state is EFalse, the window server buffer is flushed normally.
   592 
   593 @param aState ETrue to set auto-flushing on, EFalse to disable auto-flushing. 
   594 @return Previous auto-flush state
   595 
   596 @see RWsSession::Flush()
   597 @see RWsSession::SetBufferSizeL()
   598 @see RWsSession::SetMaxBufferSizeL()
   599 */
   600 	{
   601 	return(iBuffer->SetAutoFlush(aState));
   602 	}
   603 
   604 EXPORT_C TInt RWsSession::NumWindowGroups() const
   605 /** Gets the total number of window groups currently running in the window server. 
   606 
   607 This includes all the groups running in all sessions.
   608 
   609 This function always causes a flush of the window server buffer.
   610 
   611 @return Total number of window groups running in the server */
   612 	{
   613 	return(WriteReply(EWsClOpNumWindowGroupsAllPriorities));
   614 	}
   615 
   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.
   619 
   620 This function always causes a flush of the window server buffer.
   621 
   622 @param aPriority Window group priority 
   623 @return Number of window groups of priority aPriority */
   624 	{
   625 	return(WriteReplyInt(aPriority,EWsClOpNumWindowGroups));
   626 	}
   627 
   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
   630 
   631 This function always causes a flush of the window server buffer.
   632 
   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 */
   636 	{
   637 	TWsClCmdNumWindowGroups params;
   638 	params.screenNumber = aScreenNumber;
   639 	params.priority = aPriority;
   640 	return(WriteReply(&params,sizeof(params),EWsClOpNumWindowGroupsOnScreen));	
   641 	}
   642 
   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.
   645 
   646 This function always causes a flush of the window server buffer.
   647 
   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 
   652 codes.*/
   653 	{
   654 	TWsClCmdWindowGroupList params;
   655 	params.priority = aPriority;		
   656 	params.screenNumber = aScreenNumber;
   657 	if(aScreenNumber!=KDummyScreenNumber)
   658 		{
   659 		TWsClCmdNumWindowGroups numWinGrp;
   660 		numWinGrp.screenNumber = aScreenNumber;
   661 		numWinGrp.priority = aPriority;	
   662 		params.count=WriteReply(&numWinGrp,sizeof(numWinGrp),aNumOpcode);
   663 		}
   664 	else
   665 		{
   666 		params.count=WriteReplyInt(aPriority,aNumOpcode);
   667 		}
   668 
   669 	TRAPD(err,aWindowList->ResizeL(params.count));
   670 	if (err!=KErrNone || params.count==0)
   671 		return(err);
   672 	TPtr8 listPtr(reinterpret_cast<TUint8*>(&(*aWindowList)[0]),params.count*sizeof((*aWindowList)[0]));
   673 	TInt actualCount=WriteReplyP(&params, sizeof(params), &listPtr, aListOpcode);
   674 	err=KErrNone;
   675 	if (actualCount<0)
   676 		{
   677 		err=actualCount;
   678 		actualCount=0;
   679 		}
   680 	if (actualCount<params.count)
   681 		aWindowList->ResizeL(actualCount);	// Can't fail, only shrinking it
   682 	return(err);
   683 	}
   684 
   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.
   688 
   689 This function always causes a flush of the window server buffer.
   690 
   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.*/
   695 	{
   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)));
   702 	if(WindowList==NULL)
   703 		{
   704 		return KErrNoMemory;
   705 		}	
   706 	TPtr8 listPtr(WindowList,params.count*sizeof(TWindowGroupChainInfo));
   707 	WriteReplyP(&params, sizeof(params), &listPtr, aListOpcode);
   708 	new(aWindowListCh) RArray<TWindowGroupChainInfo>(sizeof(TWindowGroupChainInfo),(TWindowGroupChainInfo*)WindowList,params.count);
   709 	return KErrNone;
   710 	}
   711 
   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.
   714 
   715 An array buffer must be created to store the resultant list.
   716 
   717 This function always causes a flush of the window server buffer.
   718 
   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 
   721 codes. */
   722 	{
   723 	return(doWindowGroupList(KDummyScreenNumber,0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAllPriorities));
   724 	}
   725 
   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.
   728 
   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.
   732 
   733 This function always causes a flush of the window server buffer.
   734 
   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 
   738 aPriority.
   739 @return KErrNone if successful, otherwise another of the system-wide error 
   740 codes. */
   741 	{
   742 	return(doWindowGroupList(aScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroupsOnScreen,EWsClOpWindowGroupList));	
   743 	}
   744 
   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.
   748 
   749 An array buffer must be created to store the resultant list.
   750 
   751 This function always causes a flush of the window server buffer.
   752 
   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. */
   756 	{
   757 	return(doWindowGroupList(0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAndChainAllPriorities));
   758 	}
   759 
   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.
   763 
   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.
   767 
   768 This function always causes a flush of the window server buffer.
   769 
   770 @param aPriority Window group priority 
   771 @param aWindowList List of identifiers of all window groups in the server of priority 
   772 aPriority.
   773 @return KErrNone if successful, otherwise another of the system-wide error 
   774 codes. */
   775 	{
   776 	return(doWindowGroupList(KDummyScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupList));
   777 	}
   778 
   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.
   782 
   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.
   786 
   787 This function always causes a flush of the window server buffer.
   788 
   789 @param aPriority Window group priority 
   790 @param aWindowList List of identifiers of all window groups in the server of priority 
   791 aPriority.
   792 @return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array, 
   793 Panics if aWindowList is NULL. */	
   794 	{
   795 	return(doWindowGroupList(aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupListAndChain));
   796 	}
   797 
   798 EXPORT_C TInt RWsSession::GetDefaultOwningWindow() const
   799 /** Gets the identifier of the current default owning window group.
   800 
   801 This function always causes a flush of the window server buffer.
   802 
   803 @return Identifier of current default owning window group. Returns 0 if there 
   804 isn't one. */
   805 	{
   806 	return GetDefaultOwningWindow(KDummyScreenNumber);
   807 	}
   808 
   809 EXPORT_C TInt RWsSession::GetDefaultOwningWindow(TInt aScreenNumber) const
   810 /** Gets the identifier of the current default owning window group on a specified screen.
   811 
   812 This function always causes a flush of the window server buffer.
   813 
   814 @param aScreenNumber specifies the screen.
   815 @return Identifier of current default owning window group on the specified screen. Returns 0 if there 
   816 isn't one. */
   817 	{
   818 	return(WriteReplyInt(aScreenNumber,EWsClOpGetDefaultOwningWindow));	
   819 	}
   820 
   821 EXPORT_C TInt RWsSession::GetFocusWindowGroup() const
   822 /** Gets the identifier of the window group that currently has the keyboard focus.
   823 
   824 Note: this might not necessarily be the front-most window group, as window groups 
   825 can disable keyboard focus.
   826 
   827 This function always causes a flush of the window server buffer.
   828 
   829 @return Identifier of window group with keyboard focus. */
   830 	{
   831 	return GetFocusWindowGroup(KDummyScreenNumber);
   832 	}
   833 
   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.
   836 
   837 Note: this might not necessarily be the front-most window group, as window groups 
   838 can disable keyboard focus.
   839 
   840 This function always causes a flush of the window server buffer.
   841 
   842 @param aScreenNumber specifies the screen.
   843 @return Identifier of window group with keyboard focus. */
   844 	{
   845 	return WriteReplyInt(aScreenNumber,EWsClOpGetFocusWindowGroup);	
   846 	}
   847 
   848 EXPORT_C TInt RWsSession::SetWindowGroupOrdinalPosition(TInt aIdentifier, TInt aPosition)
   849 /** Sets the ordinal position of a window group.
   850 
   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.
   853 
   854 This function always causes a flush of the window server buffer.
   855 
   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 
   859 codes. */
   860 	{
   861 	TWsClCmdSetWindowGroupOrdinalPosition params(aIdentifier,aPosition);
   862 	return(WriteReply(&params, sizeof(params),EWsClOpSetWindowGroupOrdinalPosition));
   863 	}
   864 
   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.
   868 
   869 This function always causes a flush of the window server buffer.
   870 
   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 
   874 codes. */
   875 	{
   876 	TPtr8 ptr(reinterpret_cast<TUint8*>(&aThreadId),sizeof(aThreadId));
   877 	return(WriteReplyIntP(aIdentifier,&ptr,EWsClOpGetWindowGroupClientThreadId));
   878 	}
   879 
   880 EXPORT_C TInt RWsSession::GetWindowGroupHandle(TInt aIdentifier) const
   881 /** Gets the handle of the window specified by the window group identifier. 
   882 
   883 This is the handle that was passed as an argument to RWindowGroup::Construct().
   884 
   885 This function always causes a flush of the window server buffer.
   886 
   887 @param aIdentifier The window group identifier.
   888 @return Handle of the window group */
   889 	{
   890 	return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupHandle));
   891 	}
   892 
   893 EXPORT_C TInt RWsSession::GetWindowGroupOrdinalPriority(TInt aIdentifier) const
   894 /** Gets a window group's priority.
   895 
   896 This function always causes a flush of the window server buffer.
   897 
   898 @param aIdentifier The window group identifier. 
   899 @return The window group priority. */
   900 	{
   901 	return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupOrdinalPriority));
   902 	}
   903 
   904 EXPORT_C TInt RWsSession::SendEventToWindowGroup(TInt aIdentifier, const TWsEvent &aEvent)
   905 /** Sends an event to a window group.
   906 
   907 This function always causes a flush of the window server buffer.
   908 
   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
   916 
   917 @deprecated */
   918 	{
   919 	TWsClCmdSendEventToWindowGroup params(aIdentifier,aEvent);
   920 	return(WriteReply(&params, sizeof(params),EWsClOpSendEventToWindowGroup));
   921 	}
   922 
   923 EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(const TWsEvent &aEvent)
   924 /** Sends the specified event to all existing window groups.
   925 
   926 This function always causes a flush of the window server buffer.
   927 
   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
   934 
   935 @deprecated */
   936 	{
   937 	TWsClCmdSendEventToWindowGroup params(0,aEvent);
   938 	return(WriteReply(&params, sizeof(params),EWsClOpSendEventToAllWindowGroup));
   939 	}
   940 
   941 EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(TInt aPriority, const TWsEvent &aEvent)
   942 /** Sends the specified event to all window groups with the specified priority.
   943 
   944 This function always causes a flush of the window server buffer.
   945 
   946 @param aPriority The priority which window groups must have to be sent the 
   947 message.
   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
   954 
   955 @deprecated  */
   956 	{
   957 	TWsClCmdSendEventToWindowGroup params(aPriority,aEvent);
   958 	return(WriteReply(&params, sizeof(params),EWsClOpSendEventToAllWindowGroupPriority));
   959 	}
   960 
   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 
   964 
   965 @deprecated  */
   966 	{
   967 	TWsClCmdSendEventToWindowGroup params(0,aEvent);
   968 	return(WriteReply(&params, sizeof(params),EWsClOpSendEventToOneWindowGroupPerClient));
   969 	}
   970 
   971 EXPORT_C TInt RWsSession::GetWindowGroupNameFromIdentifier(TInt aIdentifier, TDes &aWindowName) const
   972 /** Gets the name of a window group from its identifier. 
   973 
   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.
   977 
   978 Note that the window group name must have been previously set using RWindowGroup::SetName() 
   979 to contain a meaningful value.
   980 
   981 This function always causes a flush of the window server buffer.
   982 
   983 @param aIdentifier The identifier of the window group whose name is to be 
   984 inquired.
   985 @param aWindowName On return, contains the window group name.
   986 @return KErrNone if successful, otherwise another of the system-wide error 
   987 codes. */
   988 	{
   989 	TWsClCmdGetWindowGroupNameFromIdentifier params(aIdentifier,aWindowName.MaxLength());
   990 	return(WriteReplyP(&params,sizeof(params),&aWindowName,EWsClOpGetWindowGroupNameFromIdentifier));
   991 	}
   992 
   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 
   995 wildcards.
   996 
   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.
  1006 
  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.
  1010 
  1011 This function always causes a flush of the window server buffer.
  1012 
  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. */
  1021 	{
  1022 	TWsClCmdFindWindowGroupIdentifier params(aPreviousIdentifier,aOffset, aMatch.Length());
  1023 	return(WriteReply(&params,sizeof(params),aMatch.Ptr(),aMatch.Size(),EWsClOpFindWindowGroupIdentifier));
  1024 	}
  1025 
  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.
  1029 
  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.
  1033 
  1034 This function always causes a flush of the window server buffer.
  1035 
  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 */
  1039 	{
  1040 	TWsClCmdFindWindowGroupIdentifierThread params(aPreviousIdentifier, aThreadId);
  1041 	return(WriteReply(&params,sizeof(params),EWsClOpFindWindowGroupIdentifierThread));
  1042 	}
  1043 
  1044 EXPORT_C TInt RWsSession::SendMessageToWindowGroup(TInt aIdentifier, TUid aUid, const TDesC8 &aParams)
  1045 /** Sends a message to a window group. 
  1046 
  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 
  1049 another session.
  1050 
  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.
  1053 
  1054 This function always causes a flush of the window server buffer.
  1055 
  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 
  1059 in this argument. 
  1060 @return KErrNone if successful, otherwise another of the system-wide error 
  1061 codes. 
  1062 @see MCoeMessageObserver 
  1063 
  1064 @deprecated  */
  1065 	{
  1066 	TWsClCmdSendMessageToWindowGroup params(aIdentifier, aUid, aParams.Length(),&aParams);
  1067 	return(WriteReplyByProvidingRemoteReadAccess(&params,sizeof(params),&aParams,EWsClOpSendMessageToWindowGroup));
  1068 	}
  1069 
  1070 EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TUid aUid, const TDesC8& aParams)
  1071 /** Sends a message to all window groups.
  1072 
  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 
  1075 API.
  1076 
  1077 This function always causes a flush of the window server buffer.
  1078 
  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 
  1081 in this argument. 
  1082 @return KErrNone if successful, otherwise another of the system-wide error 
  1083 codes. 
  1084 
  1085 @deprecated  */
  1086 	{
  1087 	TWsClCmdSendMessageToWindowGroup params(0, aUid, aParams.Length(),&aParams);
  1088 	return(WriteReplyByProvidingRemoteReadAccess(&params,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroups));
  1089 	}
  1090 
  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.
  1093 
  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 
  1096 API.
  1097 
  1098 This function always causes a flush of the window server buffer.
  1099 
  1100 @param aPriority The priority which window groups must have to be sent the 
  1101 message. 
  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 
  1104 in this argument. 
  1105 @return KErrNone if successful, otherwise another of the system-wide error 
  1106 codes. 
  1107 
  1108 @deprecated  */
  1109 	{
  1110 	TWsClCmdSendMessageToWindowGroup params(aPriority, aUid, aParams.Length(),&aParams);
  1111 	return(WriteReplyByProvidingRemoteReadAccess(&params,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroupsPriority));
  1112 	}
  1113 
  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. */
  1116 	{
  1117 	const SEventMessageReady& eventMessageReady=*(SEventMessageReady*)aMessageEvent.EventData();
  1118 	TUint8* ptr=(TUint8*)User::Alloc(eventMessageReady.iMessageParametersSize);
  1119 	if (ptr==NULL)
  1120 		{
  1121 		aParams.Set(NULL, 0, 0);
  1122 		return KErrNoMemory;
  1123 		}
  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)
  1129 		{
  1130 		delete ptr;
  1131 		aParams.Set(NULL, 0, 0);
  1132 		}
  1133 	return error;
  1134 	}
  1135 
  1136 EXPORT_C TInt RWsSession::SetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime)
  1137 /** Sets the system-wide keyboard repeat rate. 
  1138 
  1139 This is the rate at which keyboard events are generated when a key is held 
  1140 down.
  1141 
  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.
  1147 
  1148 This function always causes a flush of the window server buffer.
  1149 
  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 
  1153 codes. 
  1154 @see GetKeyboardRepeatRate()
  1155 @capability WriteDeviceData */
  1156 	{
  1157 	TWsClCmdSetKeyboardRepeatRate repeat(aInitialTime,aTime);
  1158 	return(WriteReply(&repeat,sizeof(repeat),EWsClOpSetKeyboardRepeatRate));
  1159 	}
  1160 
  1161 EXPORT_C void RWsSession::GetKeyboardRepeatRate(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime) const
  1162 /** Gets the current system-wide settings for the keyboard repeat rate.
  1163 
  1164 This function always causes a flush of the window server buffer.
  1165 
  1166 @param aInitialTime Time before first repeat key event 
  1167 @param aTime Time between subsequent repeat key events 
  1168 @see SetKeyboardRepeatRate() */
  1169 	{
  1170 	TPckgBuf<SKeyRepeatSettings> settings;
  1171 	WriteReplyP(&settings,EWsClOpGetKeyboardRepeatRate);
  1172 	aInitialTime=settings().iInitialTime;
  1173 	aTime=settings().iTime;
  1174 	}
  1175 
  1176 EXPORT_C TInt RWsSession::SetDoubleClick(const TTimeIntervalMicroSeconds32 &aInterval, TInt aDistance)
  1177 /** Sets the system-wide double click settings.
  1178 
  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.
  1182 
  1183 This function always causes a flush of the window server buffer.
  1184 
  1185 @param aInterval Maximum interval between clicks that constitutes a double 
  1186 click 
  1187 @param aDistance Maximum distance between clicks that constitutes a double 
  1188 click
  1189 @return KErrNone if successful, otherwise another of the system-wide error 
  1190 codes.
  1191 @see GetDoubleClickSettings()
  1192 @capability WriteDeviceData */
  1193 	{
  1194 	TWsClCmdSetDoubleClick dblClick(aInterval,aDistance);
  1195 	return(WriteReply(&dblClick,sizeof(dblClick),EWsClOpSetDoubleClick));
  1196 	}
  1197 
  1198 EXPORT_C void RWsSession::GetDoubleClickSettings(TTimeIntervalMicroSeconds32 &aInterval, TInt &aDistance) const
  1199 /** Gets the current system-wide settings for pointer double clicks.
  1200 
  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.
  1204 
  1205 This function always causes a flush of the window server buffer.
  1206 
  1207 @param aInterval Maximum interval between clicks that constitutes a double 
  1208 click 
  1209 @param aDistance Maximum distance between clicks that constitutes a double 
  1210 click 
  1211 @see SetDoubleClick() */
  1212 	{
  1213 	TPckgBuf<SDoubleClickSettings> settings;
  1214 	WriteReplyP(&settings,EWsClOpGetDoubleClickSettings);
  1215 	aInterval=settings().iInterval;
  1216 	aDistance=settings().iDistance;
  1217 	}
  1218 
  1219 EXPORT_C void RWsSession::SetBackgroundColor(TRgb aColor)
  1220 /** Sets the background colour for the window server. 
  1221 
  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 
  1224 other windows.
  1225 
  1226 @param aColor Background colour */
  1227 	{
  1228 	WriteInt(aColor.Internal(),EWsClOpSetBackgroundColor);
  1229 	}
  1230 
  1231 EXPORT_C TRgb RWsSession::GetBackgroundColor() const
  1232 /** Gets the window server's background colour.
  1233 
  1234 This function always causes a flush of the window server buffer.
  1235 
  1236 @return Background colour */
  1237 	{
  1238 	TRgb col;
  1239 	col.SetInternal((TUint32)WriteReply(EWsClOpGetBackgroundColor));
  1240 	return col;
  1241 	}
  1242 
  1243 EXPORT_C TInt RWsSession::RegisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface)
  1244 /**
  1245 This function registers a surface for use in composition on the screen associated 
  1246 with this device within this session.
  1247 
  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.
  1252 
  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.
  1255 
  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.
  1258 
  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
  1272 
  1273 @publishedPartner
  1274 @prototype
  1275 */
  1276 	{
  1277 	(void) aScreenNumber;	//avoid unreferenced warning
  1278 	(void) aSurface;	//avoid unreferenced warning
  1279 	return KErrNotSupported;
  1280 	}
  1281 
  1282 EXPORT_C void RWsSession::UnregisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface)
  1283 /**
  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.
  1286 
  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.
  1289 
  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.
  1293 
  1294 An unregistered surface can be re-registered again, if necessary.
  1295 
  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.
  1300 
  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
  1309 
  1310 @publishedPartner
  1311 @prototype
  1312 */
  1313 	{
  1314 	(void) aScreenNumber;	//avoid unreferenced warning
  1315 	(void) aSurface;	//avoid unreferenced warning
  1316 	}
  1317 
  1318 EXPORT_C TInt RWsSession::PreferredSurfaceConfigurationSize() const
  1319 /**
  1320 Returns the window server's preferred size for the TSurfaceConfiguration object, used 
  1321 for RWindow::SetBackgroundSurface.
  1322 
  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.
  1327 
  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.
  1330 
  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.
  1336 
  1337 @publishedPartner
  1338 @prototype
  1339 */
  1340 	{
  1341 	return KErrNotSupported;
  1342 	}
  1343 
  1344 EXPORT_C TInt RWsSession::SetSystemPointerCursor(const RWsPointerCursor &aPointerCursor,TInt aCursorNumber)
  1345 /** Sets a cursor in the system pointer cursor list. 
  1346 
  1347 To gain access to the list, the client must first call ClaimSystemPointerCursorList().
  1348 
  1349 This function always causes a flush of the window server buffer.
  1350 
  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 
  1354 codes. */
  1355 	{
  1356 	TWsClCmdSetSystemPointerCursor setpc;
  1357 	setpc.handle=aPointerCursor.WsHandle();
  1358 	setpc.number=aCursorNumber;
  1359 	return(WriteReply(&setpc,sizeof(setpc),EWsClOpSetSystemPointerCursor));
  1360 	}
  1361 
  1362 EXPORT_C void RWsSession::ClearSystemPointerCursor(TInt aCursorNumber)
  1363 /** Clears a system pointer cursor from the list. 
  1364 
  1365 Before calling this function, the client must first gain access to the list 
  1366 by calling ClaimSystemPointerCursorList().
  1367 
  1368 @param aCursorNumber Cursor number to clear */
  1369 	{
  1370 	WriteInt(aCursorNumber,EWsClOpClearSystemPointerCursor);
  1371 	}
  1372 
  1373 EXPORT_C TInt RWsSession::ClaimSystemPointerCursorList()
  1374 /** Claims the system pointer cursor list.
  1375 
  1376 You must call this function before you can call SetSystemPointerCursor() or 
  1377 ClearSystemPointerCursor().
  1378 
  1379 This function always causes a flush of the window server buffer.
  1380 
  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 
  1383 codes. 
  1384 @see FreeSystemPointerCursorList()
  1385 @capability WriteDeviceData */
  1386 	{
  1387 	return(WriteReply(EWsClOpClaimSystemPointerCursorList));
  1388 	}
  1389 
  1390 EXPORT_C void RWsSession::FreeSystemPointerCursorList()
  1391 /** Releases the system pointer cursor list and deletes all the entries in it. 
  1392 
  1393 A client should call this function when it no longer needs the system pointer 
  1394 cursor list. */
  1395 	{
  1396 	if (iWsHandle)
  1397 		Write(EWsClOpFreeSystemPointerCursorList);
  1398 	}
  1399 
  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.
  1402 
  1403 After adding a custom text cursor, it can be selected for use by calling 
  1404 RWindowGroup::SetTextCursor().
  1405 
  1406 Note that once added, custom text cursors cannot be removed.
  1407 
  1408 This function always causes a flush of the window server buffer.
  1409 
  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 
  1415 see TSpriteFlags.
  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 
  1419 error codes. */
  1420 	{
  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(&params, sizeof(params), EWsClOpStartSetCustomTextCursor);
  1427 	if (handle < 0)
  1428 		{
  1429 		return handle; // Failed to create
  1430 		}
  1431 
  1432 	RWsCustomTextCursor cursor(*this, handle);
  1433 	TInt err = KErrNone;
  1434 	for (TInt ii = 0; ii < aSpriteMemberArray.Count(); ii++)
  1435 		{
  1436 		err = cursor.AppendMember(aSpriteMemberArray[ii]);
  1437 		if (err != KErrNone)
  1438 			{
  1439 			break;
  1440 			}
  1441 		}
  1442 	cursor.Close();
  1443 	err = iBuffer->WriteReplyWs(&err, sizeof(err), EWsClOpCompleteSetCustomTextCursor);
  1444 	return err;
  1445 	}
  1446 
  1447 EXPORT_C TInt RWsSession::SetModifierState(TEventModifier aModifier,TModifierState aState)
  1448 /** Sets the state of the modifier keys. 
  1449 
  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.
  1453 
  1454 This function always causes a flush of the window server buffer.
  1455 
  1456 @param aModifier Modifier to set. 
  1457 @param aState Modifier state.
  1458 @return KErrNone if successful, otherwise another of the system-wide error 
  1459 codes. 
  1460 @see GetModifierState()
  1461 @capability WriteDeviceData */
  1462 	{
  1463 	TWsClCmdSetModifierState params;
  1464 	params.modifier=aModifier;
  1465 	params.state=aState;
  1466 	return(WriteReply(&params,sizeof(params),EWsClOpSetModifierState));
  1467 	}
  1468 
  1469 EXPORT_C TInt RWsSession::GetModifierState() const
  1470 /** Gets the state of the modifier keys.
  1471 
  1472 The state of each modifier key (defined in TEventModifier) is returned in 
  1473 a bitmask.
  1474 
  1475 This function always causes a flush of the window server buffer.
  1476 
  1477 @return Modifier state 
  1478 @see TEventModifier */
  1479 	{
  1480 	return(WriteReply(EWsClOpGetModifierState));
  1481 	}
  1482 
  1483 EXPORT_C TInt RWsSession::HeapCount() const
  1484 /** Gets the heap count.
  1485 
  1486 This function calls RHeap::Count() on the window server's heap, after throwing 
  1487 away all the temporary objects allocated for each window.
  1488 
  1489 This function always causes a flush of the window server buffer.
  1490 
  1491 @return The window server's heap count. */
  1492 	{
  1493 	return(WriteReply(EWsClOpHeapCount));
  1494 	}
  1495 
  1496 EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TInt aParam) const
  1497 	{
  1498 	TWsClCmdDebugInfo params(aFunction,aParam);
  1499 	return(WriteReply(&params,sizeof(params),EWsClOpDebugInfo));
  1500 	}
  1501 
  1502 EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TDes8& aReturnBuf, TInt aParam) const
  1503 	{
  1504 	TWsClCmdDebugInfo params(aFunction,aParam);
  1505 	return(WriteReplyP(&params,sizeof(params),TWriteDescriptorType(&aReturnBuf),EWsClOpDebugInfoReplyBuf));
  1506 	}
  1507 
  1508 EXPORT_C TInt RWsSession::ResourceCount() const
  1509 /** Gets the number of objects that the server has allocated for that client.
  1510 
  1511 This function can be used to check that the client has correctly cleaned up 
  1512 all of its objects.
  1513 
  1514 It always causes a flush of the window server buffer.
  1515 
  1516 @return The number of resources allocated to the client. */
  1517 	{
  1518 	return(iWsHandle ? WriteReply(EWsClOpResourceCount) : 0);
  1519 	}
  1520 
  1521 EXPORT_C void RWsSession::PasswordEntered()
  1522 /** Disables the window server password mode.
  1523 
  1524 This function must be called by the session which owns the password window 
  1525 when the correct machine password has been entered. 
  1526 
  1527 @deprecated */
  1528 	{
  1529 	Write(EWsClOpPasswordEntered);
  1530 	}
  1531 
  1532 EXPORT_C void RWsSession::HeapSetFail(TInt aTAllocFail,TInt aValue)
  1533 /** Sets the heap failure mode in the window server.
  1534 
  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.
  1539 
  1540 Note:
  1541 
  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.
  1549 
  1550 This function always causes a flush of the window server buffer.
  1551 
  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 */
  1558 	{
  1559 	TWsClCmdHeapSetFail params;
  1560 	params.type=(RHeap::TAllocFail)aTAllocFail;
  1561 	params.value=aValue;
  1562 	params.burst=-1;
  1563 	WriteReply(&params,sizeof(params),EWsClOpHeapSetFail);
  1564 	}
  1565 
  1566 EXPORT_C void RWsSession::HeapSetBurstFail(TInt aTAllocFail,TInt aRate,TInt aBurst)
  1567 /** Sets the heap failure burst mode in the window server.
  1568 
  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.
  1573 
  1574 Note:
  1575 
  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.
  1583 
  1584 This function always causes a flush of the window server buffer.
  1585 
  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 */
  1593 	{
  1594 	TWsClCmdHeapSetFail params;
  1595 	params.type=(RHeap::TAllocFail)aTAllocFail;
  1596 	params.value=aRate;
  1597 	params.burst=aBurst;
  1598 	WriteReply(&params,sizeof(params),EWsClOpHeapSetFail);
  1599 	}
  1600 
  1601 EXPORT_C TInt RWsSession::RequestOffEvents(TBool aOn,RWindowTreeNode *aWin/*=NULL*/)
  1602 /** Requests the window server to send OFF events to a window. 
  1603 
  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 
  1606 down itself.
  1607 
  1608 Notes:
  1609 
  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.
  1614 
  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.
  1618 
  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 
  1621 the shell.
  1622 
  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.
  1626 
  1627 This function always causes a flush of the window server buffer.
  1628 
  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 */
  1640 	{
  1641 	TWsClCmdOffEventsToShell OffEventsToShell(aOn,(aWin ? aWin->WsHandle():0));
  1642 	return WriteReply(&OffEventsToShell,sizeof(OffEventsToShell),EWsClOpSendOffEventsToShell);
  1643 	}
  1644 
  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 
  1648 display mode.
  1649 
  1650 This function always causes a flush of the window server buffer.
  1651 
  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. */
  1655 	{	
  1656 	return GetDefModeMaxNumColors(KDummyScreenNumber,aColor,aGray);
  1657 	}
  1658 
  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.
  1663 
  1664 This function always causes a flush of the window server buffer.
  1665 
  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. */
  1670 	{
  1671 	TPckgBuf<SDefModeMaxNumColors> colors;	
  1672 	WriteReplyIntP(aScreenNumber,&colors,EWsClOpGetDefModeMaxNumColors);
  1673 	aColor=colors().iColors;
  1674 	aGray=colors().iGrays;
  1675 	return colors().iDisplayMode;
  1676 	}
  1677 
  1678 #define MODE_TO_FLAG(x) 1<<(x-1)
  1679 
  1680 LOCAL_C void HandleColorMode(CArrayFix<TInt>* aModeList,TUint aModeBits, TInt& aNumberOfModes, TInt aMode)
  1681 	{
  1682 	if (aModeBits&(MODE_TO_FLAG(aMode)))
  1683 		{
  1684 		if (aModeList!=NULL)
  1685 			{
  1686 			(*aModeList)[aNumberOfModes]=aMode;
  1687 			}
  1688 		++aNumberOfModes;
  1689 		}
  1690 	}
  1691 
  1692 LOCAL_C TInt DoGetColorModeList(CArrayFix<TInt>* aModeList,TUint aModeBits)
  1693 	{
  1694 	TInt numberOfModes=0;
  1695 	for (TInt mode=EGray2; mode<=EColor256; ++mode)
  1696 		{
  1697 		HandleColorMode(aModeList,aModeBits,numberOfModes,mode);
  1698 		}
  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;
  1706 	}
  1707 
  1708 EXPORT_C TInt RWsSession::GetColorModeList(CArrayFixFlat<TInt> *aModeList) const
  1709 /** Gets the list of available colour modes.
  1710 
  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.
  1716 
  1717 This function always causes a flush of the window server buffer.
  1718 
  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. */
  1723 	{
  1724 	return GetColorModeList(KDummyScreenNumber,aModeList);
  1725 	}
  1726 
  1727 EXPORT_C TInt RWsSession::GetColorModeList(TInt aScreenNumber,CArrayFixFlat<TInt>* aModeList) const
  1728 /** Gets the list of available colour modes on a particular screen.
  1729 
  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.
  1735 
  1736 This function always causes a flush of the window server buffer.
  1737 
  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. */
  1743 	{
  1744 	const TUint modeList=STATIC_CAST(TUint,WriteReplyInt(aScreenNumber,EWsClOpGetColorModeList));	
  1745 	const TInt numberOfModes=DoGetColorModeList(NULL, modeList);
  1746 	if (aModeList==NULL)
  1747 		{
  1748 		return numberOfModes;
  1749 		}
  1750 	TRAPD(error,aModeList->ResizeL(numberOfModes));
  1751 	if (error!=KErrNone)
  1752 		{
  1753 		return error;
  1754 		}
  1755 	DoGetColorModeList(aModeList, modeList);
  1756 	return KErrNone;
  1757 	}
  1758 
  1759 EXPORT_C void RWsSession::SetPointerCursorArea(const TRect& aArea)
  1760 /** 
  1761 @publishedPartner
  1762 @released
  1763 
  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. 
  1766 
  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.
  1772 
  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. 
  1776 
  1777 Notes:
  1778 
  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.
  1781 
  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.
  1786 
  1787 @param aArea The area of the screen in which the virtual cursor can be used. 
  1788 @capability WriteDeviceData */
  1789 	{
  1790 	SetPointerCursorArea(0,aArea);
  1791 	}
  1792 
  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. 
  1796 
  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. 
  1800 
  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. 
  1803 
  1804 Notes:
  1805 
  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.
  1808 
  1809 The previous function overload may be used to set the screen area for only 
  1810 the first mode.
  1811 
  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.
  1816 
  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 */
  1821 	{
  1822 	TWsClCmdSetPointerCursorArea SetPointerCursorArea(aScreenSizeMode,aArea);
  1823 	Write(&SetPointerCursorArea,sizeof(SetPointerCursorArea),EWsClOpSetPointerCursorArea);
  1824 	}
  1825 
  1826 EXPORT_C TRect RWsSession::PointerCursorArea() const
  1827 /** Gets the pointer cursor area for the first screen display mode.
  1828 
  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.
  1832 
  1833 This function always causes a flush of the window server buffer.
  1834 
  1835 @return The pointer cursor area for the first screen display mode.
  1836 @see SetPointerCursorArea() */
  1837 	{
  1838 	return PointerCursorArea(0);
  1839 	}
  1840 
  1841 EXPORT_C TRect RWsSession::PointerCursorArea(TInt aScreenSizeMode) const
  1842 /** Gets the pointer cursor area for the specified screen display mode. 
  1843 
  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.
  1847 
  1848 This function always causes a flush of the window server buffer.
  1849 
  1850 @param aScreenSizeMode The screen mode for which the pointer cursor area is 
  1851 required. 
  1852 @return The pointer cursor area for the specified screen display mode. 
  1853 @see SetPointerCursorArea() */
  1854 	{
  1855 	TPckgBuf<TRect> rectPkg;
  1856   	WriteReplyP(&aScreenSizeMode,sizeof(aScreenSizeMode),&rectPkg,EWsClOpPointerCursorArea);
  1857 	return(rectPkg());
  1858 	}
  1859 
  1860 EXPORT_C void RWsSession::SetPointerCursorMode(TPointerCursorMode aMode)
  1861 /** Sets the current mode for the pointer cursor.
  1862 
  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.
  1867 
  1868 @param aMode The new mode for the pointer cursor. 
  1869 @see TPointerCursorMode */
  1870 	{
  1871 	WriteInt(aMode,EWsClOpSetPointerCursorMode);
  1872 	}
  1873 	
  1874 EXPORT_C TInt RWsSession::SetClientCursorMode(TPointerCursorMode aMode)
  1875 /** Sets the current mode for the pointer cursor.
  1876 
  1877 The mode determines which sprite is used for the pointer cursor at any point. 
  1878 See TPointerCursorMode for more information.
  1879 
  1880 This function always causes a flush of the window server buffer.
  1881 
  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 */
  1887 	{
  1888 	return(WriteReplyInt(aMode,EWsClOpSetClientCursorMode));
  1889 	}
  1890 
  1891 EXPORT_C TPointerCursorMode RWsSession::PointerCursorMode() const
  1892 /** Gets the current mode for the pointer cursor.
  1893 
  1894 The mode determines which sprite is used for the pointer cursor at any point.
  1895 
  1896 This function always causes a flush of the window server buffer.
  1897 
  1898 @return The current mode for the pointer cursor. */
  1899 	{
  1900 	return(STATIC_CAST(TPointerCursorMode,WriteReply(EWsClOpPointerCursorMode)));
  1901 	}
  1902 
  1903 EXPORT_C void RWsSession::SetDefaultSystemPointerCursor(TInt aCursorNumber)
  1904 /** Sets the default system pointer cursor.
  1905 
  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.
  1910 
  1911 Note: ownership of the system pointer cursor list can be obtained by calling 
  1912 ClaimSystemPointerCursorList() when no-one else has ownership.
  1913 
  1914 @param aCursorNumber The index of the new default system pointer cursor within 
  1915 the system cursor list. */
  1916 	{
  1917 	WriteInt(aCursorNumber,EWsClOpSetDefaultSystemPointerCursor);
  1918 	}
  1919 
  1920 EXPORT_C void RWsSession::ClearDefaultSystemPointerCursor()
  1921 /** Clears the default system pointer cursor.
  1922 
  1923 This sets the pointer to the current default system pointer cursor to NULL. 
  1924 
  1925 @panic WSERV 42 If this function is called by a client other than the owner of the 
  1926 system pointer cursor list. */
  1927 	{
  1928 	Write(EWsClOpClearDefaultSystemPointerCursor);
  1929 	}
  1930 
  1931 EXPORT_C TInt RWsSession::SetPointerCursorPosition(const TPoint& aPosition)
  1932 /** Sets the pointer cursor position.
  1933 
  1934 This function allows an application to move the virtual cursor. It works in 
  1935 all modes, not just relative mouse mode.
  1936 
  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 
  1939 on the Emulator.
  1940 
  1941 This function always causes a flush of the window server buffer.
  1942 
  1943 @param aPosition The new pointer cursor position.
  1944 @return KErrNone if successful, otherwise another of the system-wide error 
  1945 codes. 
  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.  */
  1948 	{
  1949 	return(WriteReply(&aPosition,sizeof(aPosition),EWsClOpSetPointerCursorPosition));
  1950 	}
  1951 
  1952 EXPORT_C TPoint RWsSession::PointerCursorPosition() const
  1953 /** Gets the pointer cursor position.
  1954 
  1955 This function allows an application to determine the position of the virtual 
  1956 cursor.
  1957 
  1958 It always causes a flush of the window server buffer.
  1959 
  1960 @return The position of the virtual cursor. */
  1961 	{
  1962 	TPckgBuf<TPoint> pointPkg;
  1963   	WriteReplyP(&pointPkg,EWsClOpPointerCursorPosition);
  1964 	return(pointPkg());
  1965 	}
  1966 
  1967 EXPORT_C void RWsSession::SetDefaultFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap)
  1968 /**
  1969 @publishedPartner
  1970 @released
  1971 
  1972 Sets the default fading parameters.
  1973 
  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.
  1979 
  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 
  1987 the faded window.
  1988 
  1989 Changing the default will automatically apply to current graphics contexts 
  1990 but will not have any affect on windows that are already faded. 
  1991 
  1992 Note: RWindowTreeNode::SetFaded(), CWindowGc::SetFaded() and RWsSession::SetSystemFaded() 
  1993 use these fading parameters, and in addition allow the default fading value 
  1994 to be overridden.
  1995 
  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 */
  2001 	{
  2002 	WriteInt(WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap),EWsClOpSetDefaultFadingParams);
  2003 	}
  2004 
  2005 /**
  2006 @publishedPartner
  2007 @released
  2008 
  2009 Prepares for switch off. 
  2010 
  2011 This stops the window server heart beat timer if running.
  2012 
  2013 @capability PowerMgmt
  2014 */
  2015 EXPORT_C void RWsSession::PrepareForSwitchOff()
  2016 	{
  2017 	Write(EWsClOpPrepareForSwitchOff);
  2018 	}
  2019 
  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).
  2023 
  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. 
  2027 
  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. 
  2034 
  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.
  2037 
  2038 @param aRemove ETrue to remove the code (default), EFalse to pass it to the 
  2039 client. */
  2040 	{
  2041 	WriteInt(aRemove,EWsClOpRemoveKeyCode);
  2042 	}
  2043 
  2044 EXPORT_C void RWsSession::SimulateXyInputType(TInt aInputType)
  2045 	{
  2046 	WriteInt(aInputType,EWsClOpSimulateXyInput);
  2047 	}
  2048 #endif
  2049 
  2050 EXPORT_C void RWsSession::LogCommand(TLoggingCommand aCommand)
  2051 /** Allows the window server client to enable or disable logging of window server 
  2052 events.
  2053 
  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.
  2056 
  2057 Clients can also force a dump of the window tree or information about the 
  2058 window server's heap size and usage. 
  2059 
  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.
  2063 
  2064 @param aCommand The logging command. */
  2065 	{
  2066 	WriteInt(aCommand,EWsClOpLogCommand);
  2067 	}
  2068 
  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.
  2071 
  2072 This function always causes a flush of the window server buffer.
  2073 
  2074 @param aMessage The text added to the message log. */
  2075 	{
  2076 	TInt len=aMessage.Length();
  2077 	WriteReply(&len,sizeof(len),aMessage.Ptr(),aMessage.Size(),EWsClOpLogMessage);
  2078 	}
  2079 
  2080 EXPORT_C void RWsSession::SimulateRawEvent(TRawEvent aEvent)
  2081 /** 
  2082 @internalAll
  2083 
  2084 Simulates raw events.
  2085 
  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.
  2089 
  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().
  2093 
  2094 @param aEvent The raw event.
  2095 @capability SwEvent */
  2096 	{
  2097 	Write(&aEvent,sizeof(aEvent),EWsClOpRawEvent);
  2098 	}
  2099 
  2100 EXPORT_C void RWsSession::SimulateKeyEvent(TKeyEvent aEvent)
  2101 /** 
  2102 @internalAll
  2103 
  2104 Sends a simulated key event to the window server.
  2105 
  2106 All the fields in TKeyEvent are honoured except iRepeats, which is overridden 
  2107 with zero.
  2108 
  2109 @param aEvent The key event to be simulated.
  2110 @capability SwEvent */
  2111 	{
  2112 	Write(&aEvent,sizeof(aEvent),EWsClOpKeyEvent);
  2113 	}
  2114 
  2115 
  2116 EXPORT_C void RWsSession::SystemInfo(TInt &aSystemInfoNumber, SSystemInfo &aSystemInfo)
  2117 /** @internalComponent */
  2118 	{
  2119 	TPckgBuf<SSystemInfo> systemInfoPckg;
  2120 	WriteReplyP(&aSystemInfoNumber,sizeof(aSystemInfoNumber),&systemInfoPckg,EWsClOpSystemInfo);
  2121 	aSystemInfo=systemInfoPckg();
  2122 	}
  2123 
  2124 void RWsSession::DirectAcessActivation(TBool aIsNowActive)
  2125 	{
  2126 	if (aIsNowActive)
  2127 		++iBuffer->iDirectAcessCount;
  2128 	else
  2129 		{
  2130 		--iBuffer->iDirectAcessCount;
  2131 		__ASSERT_DEBUG(iBuffer->iDirectAcessCount>=0,Assert(EW32AssertDirectMisuse));
  2132 		}
  2133 	}
  2134 
  2135 EXPORT_C void RWsSession::TestWrite(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength)
  2136 /** @internalComponent */
  2137 	{
  2138 	iBuffer->Write(aHandle,aOpcode,pData,aLength);
  2139 	}
  2140 
  2141 EXPORT_C void RWsSession::TestWriteReply(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength)
  2142 /** @internalComponent */
  2143 	{
  2144 	iBuffer->WriteReply(aHandle,aOpcode,pData,aLength);
  2145 	}
  2146 
  2147 EXPORT_C void RWsSession::TestWriteReplyP(TInt aHandle,TInt aOpcode,const TAny *pData,TInt aLength,TDes8 *aReplyPackage)
  2148 /** @internalComponent */
  2149 	{
  2150 	iBuffer->WriteReplyP(aHandle,aOpcode,pData,aLength,aReplyPackage);
  2151 	}
  2152 
  2153 EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC8& aRemoteReadBuffer)
  2154 /** @internalComponent */
  2155 	{
  2156 	return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer);
  2157 	}
  2158 
  2159 EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC16& aRemoteReadBuffer)
  2160 /** @internalComponent */
  2161 	{
  2162 	return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer);
  2163 	}
  2164 
  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.
  2168 
  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.
  2171 
  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.
  2174 
  2175 Smaller buffers conserve system memory.
  2176 
  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.
  2179 
  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.
  2182 
  2183 @panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer.
  2184 
  2185 @see RWsSession::Flush()
  2186 @see RWsSession::SetAutoFlush()
  2187 @see RWsSession::SetMaxBufferSizeL()
  2188 */
  2189 EXPORT_C void RWsSession::SetBufferSizeL(TInt aBufSize)
  2190 	{
  2191 	iBuffer->SetBufferSizeL(aBufSize);
  2192 	}
  2193 
  2194 /** Sets the maximum size that the buffer for queuing commands to send to the Windows Server can expand to.
  2195 
  2196 The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes.
  2197 
  2198 If the buffer size is larger than the new maximum it is reduced.
  2199 
  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.
  2202 
  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.
  2205 
  2206 After calling this function the buffer size will be between the specified maximum and calculated minimum sizes.
  2207 
  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.
  2210 
  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.
  2216 
  2217 @param aMaxBufSize The desired maximum buffer size in bytes.
  2218 @leave KErrNoMemory Could not allocate the required minimum memory.
  2219 
  2220 @panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer.
  2221 
  2222 @see RWsSession::Flush()
  2223 @see RWsSession::SetAutoFlush()
  2224 @see RWsSession::SetBufferSizeL()
  2225 */
  2226 EXPORT_C void RWsSession::SetMaxBufferSizeL(TInt aMaxBufSize)
  2227 	{
  2228 	iBuffer->SetMaxBufferSizeL(aMaxBufSize);
  2229 	}
  2230 
  2231 EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded)
  2232 /** Sets all windows in the system as faded or unfaded, using the default fading 
  2233 parameters.
  2234 
  2235 This function allows all windows that currently exist, not just those in a 
  2236 single window group, to be faded or unfaded.
  2237 
  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 
  2243 window server.
  2244 
  2245 This function always causes a flush of the window server buffer.
  2246 
  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 
  2249 codes. 
  2250 @capability WriteDeviceData */
  2251 	{
  2252 	TWsClCmdSetSystemFaded params(aFaded);
  2253 	return WriteReply(&params,sizeof(params),EWsClOpSetFaded);
  2254 	}
  2255 
  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()).
  2259 
  2260 This function allows all windows that currently exist, not just those in the 
  2261 same window group, to be faded or unfaded.
  2262 
  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.
  2270 
  2271 This function always causes a flush of the window server buffer.
  2272 
  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 
  2277 codes. 
  2278 @capability WriteDeviceData */
  2279 	{
  2280 	TWsClCmdSetSystemFaded params(aFaded,EFalse,aBlackMap,aWhiteMap);
  2281 	return WriteReply(&params,sizeof(params),EWsClOpSetFaded);
  2282 	}
  2283 
  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 
  2288 codes. */
  2289 	{
  2290 	return WriteReplyInt(aScreenNumber,EWsClOpSetFocusScreen);
  2291 	}
  2292 
  2293 EXPORT_C TInt RWsSession::GetFocusScreen() const
  2294 /** Get focus screen
  2295 @return The screen number of current focus screen */
  2296 	{
  2297 	return WriteReply(EWsClOpGetFocusScreen);
  2298 	}
  2299 
  2300 EXPORT_C TInt RWsSession::NumberOfScreens() const
  2301 /** Number Of Screens
  2302 @return The number of screens on the phone */
  2303 	{
  2304 	return WriteReply(EWsClOpGetNumberOfScreens);	
  2305 	}
  2306 	
  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.
  2311 
  2312 This function always causes a flush of the window server buffer.*/
  2313 	{
  2314 	Write(EWsClOpClearAllRedrawStores);
  2315 	}
  2316 
  2317 EXPORT_C TInt RWsSession::Finish()
  2318 /** 
  2319 Blocks until all outstanding window server rendering has been completed.
  2320 @return KErrNone if successful 
  2321 */
  2322 	{
  2323 	SyncMsgBuf();
  2324 	return SendReceive(EWservMessFinish);
  2325 	}
  2326 
  2327 EXPORT_C void RWsSession::SyncMsgBuf()
  2328 /** 
  2329 Sends all pending commands in the buffer to the window server. 
  2330 */
  2331 	{
  2332 	if (iBuffer)
  2333 		iBuffer->Flush();
  2334 
  2335 	}
  2336 
  2337 EXPORT_C TInt RWsSession::SetCloseProximityThresholds(TInt /*aEnterCloseProximityThreshold*/, TInt /*aExitCloseProximityThreshold*/)
  2338 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2339     @internalComponent */ 
  2340 	{
  2341 	ASSERT(0);
  2342 	return KErrNotSupported;
  2343 	}
  2344 
  2345 EXPORT_C TInt RWsSession::GetEnterCloseProximityThreshold() const
  2346 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2347     @internalComponent */ 
  2348 	{
  2349 	ASSERT(0);
  2350 	return KErrNone; // return any value to prevent compilation warning
  2351 	}
  2352 
  2353 EXPORT_C TInt RWsSession::GetExitCloseProximityThreshold() const
  2354 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2355     @internalComponent */ 
  2356 	{
  2357 	ASSERT(0);
  2358 	return KErrNone; // return any value to prevent compilation warning
  2359 	}
  2360 
  2361 EXPORT_C TInt RWsSession::SetHighPressureThresholds(TInt /*aEnterHighPressureThreshold*/, TInt /*aExitHighPressureThreshold*/)
  2362 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2363     @internalComponent */ 
  2364 	{
  2365 	ASSERT(0);
  2366 	return KErrNotSupported;
  2367 	}
  2368 
  2369 EXPORT_C TInt RWsSession::GetEnterHighPressureThreshold() const
  2370 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2371     @internalComponent */ 
  2372 	{
  2373 	ASSERT(0);
  2374 	return KErrNone; // return any value to prevent compilation warning
  2375 	}
  2376 
  2377 EXPORT_C TInt RWsSession::GetExitHighPressureThreshold() const
  2378 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2379     @internalComponent */ 
  2380 	{
  2381 	ASSERT(0);
  2382 	return KErrNone; // return any value to prevent compilation warning
  2383 	}
  2384 
  2385 EXPORT_C void RWsSession::EnableWindowSizeCacheL()
  2386 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2387     @internalComponent */ 
  2388 	{
  2389 	ASSERT(0);
  2390 	}
  2391 
  2392 EXPORT_C void RWsSession::SendEffectCommand(TInt /*aTfxCmd*/,const TDesC8& /*aTfxCmdData*/)
  2393 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2394 	@internalComponent */
  2395 	{
  2396 	ASSERT(0);
  2397 	}
  2398 
  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 */
  2402 	{
  2403 	ASSERT(0);
  2404 	}
  2405 
  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 */
  2409 	{
  2410 	ASSERT(0);
  2411 	}
  2412 
  2413 EXPORT_C void RWsSession::UnregisterAllEffects()
  2414 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2415 	@internalComponent */
  2416 	{
  2417 	ASSERT(0);
  2418 	}
  2419 
  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 */
  2423 	{
  2424 	ASSERT(0);
  2425 	}
  2426 
  2427 EXPORT_C void RWsSession::IndicateAppOrientation(TRenderOrientation /*aOrientation*/)
  2428 	/** Dummy implementation in order to preserve compatibility with WSERV NGA.
  2429 	@internalComponent */
  2430 	{
  2431 	ASSERT(0);
  2432 	}