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