os/graphics/windowing/windowserver/nonnga/CLIENT/RWINDOW.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 1994-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 // Shells for window server window functions.
    15 // 
    16 //
    17 
    18 #include <e32std.h>
    19 #include "../SERVER/w32cmd.h"
    20 #include "CLIENT.H"
    21 #include "w32comm.h"
    22 
    23 RWindowTreeNode::RWindowTreeNode()
    24 /** Protected default constructor.
    25 
    26 This creates a sessionless, uninitialised window tree node handle. This class 
    27 is not for user derivation; however derived classes form part of the Window 
    28 Server API.
    29 
    30 Because RWindowTreeNode and its derived classes are lightweight handles, if 
    31 your class contains an object of such a class, the object should be an inline 
    32 member rather than a pointer member.
    33 
    34 This default constructor allows you to instantiate such an inline member before 
    35 the class that contains it has created a window server session. If you do this, 
    36 you will need to call the RWindowTreeNode constructor that takes an RWsSession 
    37 parameter before you can use the member, because RWindowTreeNode-derived objects 
    38 must have a reference to a window server session in order to be valid. */
    39 	{}
    40 
    41 RWindowTreeNode::RWindowTreeNode(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
    42 /** Protected constructor which creates an uninitialised window tree node handle 
    43 within a server session. 
    44 
    45 This class is not for user derivation; however derived classes form part of 
    46 the standard Window Server API, and are constructed with a public 
    47 constructor with the same signature as this one.
    48 
    49 @param aWs Window server session. */
    50 	{}
    51 
    52 RWindowBase::RWindowBase() : RWindowTreeNode()
    53 /** Protected default constructor; creates an uninitialised, sessionless window 
    54 handle.
    55 
    56 Handles to server-side objects must be created in a session in order to be 
    57 operational; this constructor is merely a convenience to allow the handle 
    58 to be stored as a data member. See RWindowTreeNode::RWindowTreeNode() for 
    59 details of how the complete setup of a handle field may be deferred until 
    60 the window server session is known. */
    61 	{}
    62 
    63 RWindowBase::RWindowBase(RWsSession &aWs) : RWindowTreeNode(aWs)
    64 /** Protected constructor; creates an uninitialised window handle within a session.
    65 
    66 @param aWs Window server session. */
    67 	{}
    68 
    69 RDrawableWindow::RDrawableWindow() : RWindowBase()
    70 /** Protected default constructor which creates a sessionless, uninitialised drawable-window 
    71 handle.
    72 
    73 Handles to server-side objects must be created in a session in order to be 
    74 operational; this constructor is merely a convenience to allow the handle 
    75 to be stored as a data member. See RWindowTreeNode::RWindowTreeNode() for 
    76 details of how the complete setup of a handle field may be deferred until 
    77 the window server session is known */
    78 	{}
    79 
    80 RDrawableWindow::RDrawableWindow(RWsSession &aWs) : RWindowBase(aWs)
    81 /** Protected default constructor which creates an initialised drawable-window 
    82 handle within a server session.
    83 
    84 @param aWs Window server session. */
    85 	{}
    86 
    87 EXPORT_C RWindow::RWindow() : RDrawableWindow()
    88 /** Default constructor which creates a sessionless, uninitialised window handle. 
    89 
    90 Handles to server-side objects must be created in a session in order to be 
    91 operational; this constructor is merely a convenience to allow the handle 
    92 to be stored as a data member. See RWindowTreeNode::RWindowTreeNode() for 
    93 details of how the complete setup of a handle field may be deferred until 
    94 the window server session is known. */
    95 	{}
    96 
    97 EXPORT_C RWindow::RWindow(RWsSession &aWs) : RDrawableWindow(aWs)
    98 /** Constructor which creates an initialised window handle within a server session.
    99 
   100 @param aWs Window server session to use. */
   101 	{}
   102 
   103 EXPORT_C RBackedUpWindow::RBackedUpWindow() : RDrawableWindow()
   104 /** Default C++ constructor which creates a sessionless backed-up window handle.
   105 
   106 Handles to server-side objects must be created in a session in order to be 
   107 operational; this constructor is merely a convenience to allow the handle 
   108 to be stored as a data member. See RWindowTreeNode::RWindowTreeNode() for 
   109 details of how the complete setup of a handle field may be deferred until 
   110 the window server session is known. */
   111 	{}
   112 
   113 EXPORT_C RBackedUpWindow::RBackedUpWindow(RWsSession &aWs) : RDrawableWindow(aWs)
   114 /** Constructor which creates an uninitialised backed-up window handle within a 
   115 session.
   116 
   117 @param aWs The window server session that owns the window. */
   118 	{}
   119 
   120 EXPORT_C RBlankWindow::RBlankWindow() : RWindowBase()
   121 /** Default C++ constructor which creates an invalid blank-window handle. 
   122 
   123 See RWindowTreeNode::RWindowTreeNode() for details of how the complete setup 
   124 of a handle field may be deferred until the window server session is known. */
   125 	{}
   126 
   127 EXPORT_C RBlankWindow::RBlankWindow(RWsSession &aWs) : RWindowBase(aWs)
   128 /** Default C++ constructor which creates a valid but uninitialised blank-window 
   129 handle. 
   130 
   131 This constructor does not create a window in the window server: client programs 
   132 must do this by calling RBlankWindow::Construct() before any operations can 
   133 be carried out on the window.
   134 
   135 @param aWs The window server session that owns the window. */
   136 	{}
   137 
   138 EXPORT_C RWindowGroup::RWindowGroup() : RWindowTreeNode()
   139 /** Creates a sessionless, uninitialised window group handle.
   140 
   141 Handles to server-side objects must be created in a session in order to be 
   142 operational; this constructor is merely a convenience to allow the handle 
   143 to be stored as a data member. See RWindowTreeNode::RWindowTreeNode() for 
   144 details of how the complete setup of a handle field may be deferred until 
   145 the window server session is known. */
   146 	{}
   147 
   148 EXPORT_C RWindowGroup::RWindowGroup(RWsSession &aWs) : RWindowTreeNode(aWs)
   149 /** Creates an initialised window group handle within a server session.
   150 
   151 @param aWs The window server session owning the window group. */
   152 	{}
   153 
   154 EXPORT_C void RWindowTreeNode::Close()
   155 /** Closes the node. 
   156 
   157 This function should be called on all windows once they are no longer needed. 
   158 It causes the window server to destroy the server-side window, and frees client-side 
   159 resources owned by the window.
   160 
   161 Note: When Close() is called on a parent window, its children are disconnected 
   162 from the window tree and are hence removed from the screen. However, any client-side 
   163 resources owned by its children are not freed. To free these resources, Close() 
   164 (or Destroy()) must be called on all its children individually. */
   165 	{
   166 	if (iBuffer && iWsHandle)
   167 		Write(EWsWinOpFree);
   168 	iWsHandle=NULL;
   169 	}
   170 
   171 EXPORT_C void RWindowTreeNode::Destroy()
   172 /** Closes and deletes the node. 
   173 
   174 This function calls Close() followed by delete on the window. Use this function 
   175 only when the window is allocated in its own heap cell. */
   176 	{
   177 	Close();
   178 	delete this;
   179 	}
   180 
   181 EXPORT_C TUint32 RWindowTreeNode::ClientHandle() const
   182 /** Gets the window's client handle
   183 
   184 The return value is the client's integer handle that was passed as an argument
   185 to the window's Construct() function: see RWindow::Construct()
   186 for a description of the client handle.
   187 
   188 This function always causes a flush of the window server buffer.
   189 
   190 @return Handle ID for the window.
   191 @see RWindow::Construct() */
   192 	{
   193 	return(WriteReply(EWsWinOpClientHandle));
   194 	}
   195 
   196 EXPORT_C TUint32 RWindowTreeNode::Parent() const
   197 /** Gets the node's parent. 
   198 
   199 The return value is the client's integer handle that was passed as an argument 
   200 to the parent window tree node's Construct() function: see RWindow::Construct() 
   201 for a description of the client handle.
   202 If called on a window group, this function returns 0, as window groups have 
   203 no parent.
   204  
   205 This function always causes a flush of the window server buffer.
   206 
   207 @return Handle ID for the parent, or zero for window groups. 
   208 @see Child() 
   209 @see RWindow::Construct() */
   210 	{
   211 	return(WriteReply(EWsWinOpParent));
   212 	}
   213 
   214 EXPORT_C TUint32 RWindowTreeNode::PrevSibling() const
   215 /** Gets the node before this one in the sibling list. 
   216 
   217 The return value is the client handle that was passed in the previous sibling window's 
   218 Construct() function: see RWindow::Construct() for a description of the client handle.
   219  
   220 This function always causes a flush of the window server buffer.
   221 
   222 @return Handle ID for the previous sibling, or zero if no previous sibling exists. 
   223 @see NextSibling() 
   224 @see RWindow::Construct() */
   225 	{
   226 	return(WriteReply(EWsWinOpPrevSibling));
   227 	}
   228 
   229 EXPORT_C TUint32 RWindowTreeNode::NextSibling() const
   230 /** Gets the next window after this one in its sibling list. 
   231 
   232 The return value is the client handle that was passed in the next sibling 
   233 window's Construct() function: see RWindow::Construct() for a description of the 
   234 client handle.
   235  
   236 This function always causes a flush of the window server buffer.
   237 
   238 @return Window handle of next sibling, or 0 if no next sibling exists. 
   239 @see PrevSibling()
   240 @see Child()
   241 @see Parent() */
   242 	{
   243 	return(WriteReply(EWsWinOpNextSibling));
   244 	}
   245 
   246 EXPORT_C TUint32 RWindowTreeNode::Child() const
   247 /** Gets the first child of the node.
   248  
   249 This function always causes a flush of the window server buffer.
   250 
   251 @return The client handle of the child node that currently has ordinal position 
   252 0. This is 0 if there isn't a child. */
   253 	{
   254 	return(WriteReply(EWsWinOpChild));
   255 	}
   256 
   257 EXPORT_C void RWindowTreeNode::__DbgTestInvariant() const
   258 /** In debug builds, this function always causes a flush of the window 
   259 server buffer. */
   260 	{
   261 #if defined(_DEBUG)
   262 	if (WriteReply(EWsWinOpTestInvariant))
   263 		User::Invariant();
   264 #endif
   265 	}
   266 
   267 EXPORT_C void RWindowTreeNode::SetOrdinalPosition(TInt aPos)
   268 /** Sets the ordinal position of a window. 
   269 
   270 A window's ordinal position is relative to its siblings with the same 
   271 ordinal priority. The ordinal priority of displayable windows (in other words, 
   272 not window groups) is almost always zero (the default). To set the ordinal priority 
   273 as well as the ordinal position, use the other overload of this function. 
   274 
   275 The lower the ordinal position, the nearer the window will be to the front of the z-order. 
   276 The frontmost window has ordinal position zero. Specifying a negative value has the effect 
   277 of sending the window to the back of the z-order.
   278 
   279 Note: If this window is a window group in a chain, then all other window groups in the chain will be moved also.
   280 When this function is called on Group Window with aPos set to KOrdinalPositionSwitchToOwningWindow then the 
   281 function doesn't change the ordinal position of the group window, if instead it has focus then the window group 
   282 that would come to the forground if it died will be moved to the foreground.
   283 
   284 @param aPos The window's new ordinal position. The lower the ordinal, the closer to the 
   285 front of the z-order the window will be. Specifying any negative value however, sends 
   286 the window to the back of the z-order. */
   287 	{
   288 	WriteInt(aPos,EWsWinOpSetOrdinalPosition);
   289 	}
   290 
   291 EXPORT_C void RWindowTreeNode::SetOrdinalPosition(TInt aPos,TInt aOrdinalPriority)
   292 /** Sets the ordinal position and ordinal priority of a window. 
   293 
   294 Ordinal priority is a number assigned to a window that determines its position in the z-order. 
   295 For sibling windows or group windows, the higher the priority, the closer it will be to the 
   296 front. Ordinal priority overrides ordinal position, so that the ordinal position 
   297 is only taken into account for sibling windows or window groups with the same ordinal priority. 
   298 For a description of ordinal position, see the other overload of this function.
   299 
   300 Most windows have an ordinal priority of zero. Only window groups are normally 
   301 given non-default ordinal priorities.
   302 
   303 To set priority of KPasswordWindowGroupPriority or greater on a window group, client will require 
   304 SwEvent capability. If client does not have SwEvent capability then priority will be reduced 
   305 to KPasswordWindowGroupPriority-1. This function doesn't return an error thus the client cannot 
   306 tell if the priority is reduced, however, there is another function that can be used if the client 
   307 does require an error, this is RWindowGroup::SetOrdinalPositionErr.
   308 
   309 Note: If this window is a window group in a chain, then all other window groups in the chain will be moved also. 
   310 And further they will all have their ordinal priority set to the specified value.
   311 When this function is called on Group Window with aPos set to KOrdinalPositionSwitchToOwningWindow then the 
   312 function doesn't change the ordinal position of the group window, if instead it has focus then the window group 
   313 that would come to the forground if it died will be moved to the foreground.
   314 
   315 @param aPos The window's new ordinal position. The lower the ordinal, the closer to the 
   316 front of the z-order the window will be. Specifying any negative value however, sends 
   317 the window to the back of the z-order.
   318 @param aOrdinalPriority The window's new ordinal priority. */
   319 	{
   320 	TWsWinCmdOrdinalPos ordinalPos;
   321 	ordinalPos.pos=aPos;
   322 	ordinalPos.ordinalPriority=aOrdinalPriority;
   323 	Write(&ordinalPos,sizeof(ordinalPos),EWsWinOpSetOrdinalPositionPri);
   324 	}
   325 
   326 EXPORT_C TInt RWindowTreeNode::OrdinalPriority() const
   327 /** Gets the ordinal priority of the specified window.
   328 
   329 This function was added for FEPs that need to know the priority in their dialogues. 
   330 
   331 This function and RWsSession::GetWindowGroupOrdinalPriority() may return different 
   332 values because this function isn't subject to any ordinal priority adjustment, 
   333 while the window group ordinal priority may be.
   334  
   335 This function always causes a flush of the window server buffer.
   336 
   337 @return The ordinal priority of the specified window */
   338 	{
   339 	return(WriteReply(EWsWinOpOrdinalPriority));
   340 	}
   341 
   342 EXPORT_C TInt RWindowTreeNode::OrdinalPosition() const
   343 /** Gets the current ordinal position of the window tree node. 
   344 
   345 The ordinal position returned is the window's position amongst windows with 
   346 the same parent (an with the same priority). Displayable windows almost always 
   347 have the same priority, but window groups might typically have different priorities. 
   348 If a window group's ordinal position among window groups of all priorities 
   349 is required, use FullOrdinalPosition().
   350 
   351 Note: all group windows (across all clients) have the same parent.
   352  
   353 This function always causes a flush of the window server buffer.
   354 
   355 @return The window's ordinal position. */
   356 	{
   357 	return(WriteReply(EWsWinOpOrdinalPosition));
   358 	}
   359 
   360 EXPORT_C TInt RWindowTreeNode::FullOrdinalPosition() const
   361 /** Get the current full ordinal position of a window. 
   362 
   363 This function normally returns a useful value only when called on a window 
   364 group, because only window groups are normally given different priorities. 
   365 For other types of window the value returned is usually the same as that returned 
   366 by OrdinalPosition().
   367  
   368 This function always causes a flush of the window server buffer.
   369 
   370 @return The window's full ordinal position. */
   371 	{
   372 	return(WriteReply(EWsWinOpFullOrdinalPosition));
   373 	}
   374 
   375 /**Get the screen number that a window is located on
   376 
   377 @return The screen number that the window is located on
   378  */
   379 EXPORT_C TInt RWindowTreeNode::ScreenNumber() const
   380 	{
   381 	return(WriteReply(EWsWinOpScreenNumber));
   382 	}
   383 
   384 EXPORT_C TInt RWindowTreeNode::WindowGroupId() const
   385 /** Returns the window group Id of the parent window group
   386 
   387 If the window is a window group it will return it's Id. If it is not it scans 
   388 up the window tree to find the group window from which this window is descended 
   389 and returns it's Id.
   390 
   391 This function always causes a flush of the window server buffer.
   392 
   393 @return The window group Id of the window group from which this window is descended. */
   394 	{
   395 	return(WriteReply(EWsWinOpWindowGroupId));
   396 	}
   397 
   398 EXPORT_C TInt RWindowTreeNode::EnableOnEvents(TEventControl aCircumstances)
   399 /** Requests notification of 'on' events. 'On' events are of type EEventSwitchOn.
   400  
   401 This function always causes a flush of the window server buffer.
   402 
   403 @param aCircumstances The circumstances in which 'on' events are to be reported. 
   404 @return KErrNone if successful, otherwise one of the system-wide error codes. 
   405 @see DisableOnEvents() */
   406 	{
   407 	return(WriteReplyInt(aCircumstances,EWsWinOpEnableOnEvents));
   408 	}
   409 
   410 EXPORT_C void RWindowTreeNode::DisableOnEvents()
   411 /** Cancels notification of 'on' events. 
   412 
   413 This function instructs the server to stop reporting 'on' events to this window. 
   414 If the window server has not previously been instructed to report 'on' events, 
   415 this method has no effect (i.e. the default is that windows do not get the 
   416 events).
   417 
   418 @see EnableOnEvents() */
   419 	{
   420 	if (iWsHandle)
   421 		Write(EWsWinOpDisableOnEvents);
   422 	}
   423 
   424 EXPORT_C TInt RWindowTreeNode::EnableGroupChangeEvents()
   425 /** Requests notification of group-change events.
   426 
   427 Use this function to instruct the window server to report group-change events 
   428 to this window. These events will typically be of interest to a shell or similar 
   429 application, for example to notify it that it should update its list of running 
   430 applications. Window group changed events are of type EEventWindowGroupsChanged.
   431  
   432 This function always causes a flush of the window server buffer.
   433 
   434 @return KErrNone if successful, otherwise one of the system-wide error codes. 
   435 @see DisableGroupChangeEvents() */
   436 	{
   437 	return(WriteReply(EWsWinOpEnableGroupChangeEvents));
   438 	}
   439 
   440 EXPORT_C void RWindowTreeNode::DisableGroupChangeEvents()
   441 /** Cancels notification of group changed events. 
   442 
   443 Use this function to instruct the server to stop reporting window group changed 
   444 events to this window. If the window server has not previously been instructed 
   445 to report window group changed events, this function has no effect (i.e. the 
   446 default is that windows do not get the events).
   447 
   448 @see EnableGroupChangeEvents() */
   449 	{
   450 	if (iWsHandle)
   451 		Write(EWsWinOpDisableGroupChangeEvents);
   452 	}
   453 
   454 EXPORT_C TInt RWindowTreeNode::EnableFocusChangeEvents()
   455 /** Enables focus changed events.
   456 
   457 After this function is called, the EEventFocusGroupChanged event is delivered 
   458 to the window server message queue every time the focus window group changes. 
   459 The handle of the event is set to the client handle of the window that this 
   460 function is called on.
   461  
   462 This function always causes a flush of the window server buffer.
   463 
   464 @return KErrNone if successful, otherwise another of the system-wide error 
   465 codes. 
   466 @see DisableFocusChangeEvents() */
   467 	{
   468 	return(WriteReply(EWsWinOpEnableFocusChangeEvents));
   469 	}
   470 
   471 EXPORT_C void RWindowTreeNode::DisableFocusChangeEvents()
   472 /** Disables delivery of focus changed events.
   473 
   474 Use this function to instruct the server to stop reporting window group focus 
   475 changed events to this window. If the window server has not previously been 
   476 instructed to report window group changed events, this function has no effect 
   477 (i.e. the default is that windows do not get the events).
   478 
   479 @see EnableFocusChangeEvents() */
   480 	{
   481 	if (iWsHandle)
   482 		Write(EWsWinOpDisableFocusChangeEvents);
   483 	}
   484 
   485 EXPORT_C TInt RWindowTreeNode::EnableGroupListChangeEvents()
   486 /** Enables reporting of window group list change events.
   487 
   488 The window group list is a list of all window groups and their z-order. Calling 
   489 this function will cause notification events (of type EEventWindowGroupListChanged) 
   490 for any change in the window group list: additions, removals and reorderings.
   491 
   492 This function is useful when you need to know about changes to window groups 
   493 beneath the focused one, for instance when the screen is showing windows from 
   494 more than one window group at the same time.
   495 
   496 The handle of the event is set to the client handle of the window that this 
   497 function is called on.
   498  
   499 This function always causes a flush of the window server buffer.
   500 
   501 @return KErrNone if successful, otherwise another of the system-wide error 
   502 codes. */
   503 	{
   504 	return(WriteReply(EWsWinOpEnableGroupListChangeEvents));
   505 	}
   506 
   507 EXPORT_C void RWindowTreeNode::DisableGroupListChangeEvents()
   508 /** Disables reporting of window group list change events.
   509 
   510 This function instructs the window server to stop sending window group list 
   511 change events to this window. If the window server has not previously been 
   512 instructed to report window group list change events, this function has no 
   513 effect (i.e. the default is that windows do not receive group list change 
   514 events). */
   515 	{
   516 	if (iWsHandle)
   517 		Write(EWsWinOpDisableGroupListChangeEvents);
   518 	}
   519 
   520 EXPORT_C TInt RWindowTreeNode::EnableVisibilityChangeEvents()
   521 /** Enables reporting of window visibility change events.
   522 
   523 The window visibility is based on whether or not any area of the window can be seen
   524 on the screen.  This can be affected by SetVisible(), but also by other windows in
   525 front of this one, and by the presence of transparent windows which it can be seen
   526 through.  Calling this function will cause notification events (of type
   527 EEventWindowVisibilityChanged) for any change in the window's visibility.
   528 
   529 This function is useful when you are performing graphical processing such as animations
   530 and would like to stop them while they cannot be seen, for efficiency reasons.
   531 
   532 The handle of the event is set to the client handle of the window that this 
   533 function is called on.
   534  
   535 This function always causes a flush of the window server buffer.
   536 
   537 @return KErrNone if successful, otherwise another of the system-wide error 
   538 codes. */
   539 	{
   540 	return(WriteReply(EWsWinOpEnableVisibilityChangeEvents));
   541 	}
   542 
   543 EXPORT_C void RWindowTreeNode::DisableVisibilityChangeEvents()
   544 /** Disables reporting of window visibility change events.
   545 
   546 This function instructs the window server to stop sending window visibility 
   547 change events to this window. If the window server has not previously been 
   548 instructed to report window visibility change events, this function has no 
   549 effect (i.e. the default is that windows do not receive visibility change 
   550 events). */
   551 	{
   552 	if (iWsHandle)
   553 		Write(EWsWinOpDisableVisibilityChangeEvents);
   554 	}
   555 
   556 EXPORT_C TInt RWindowTreeNode::EnableErrorMessages(TEventControl aCircumstances)
   557 /** Requests notification of error message events. 
   558 
   559 Use this function to instruct the window server to report error message events 
   560 (of type EEventErrorMessage).
   561  
   562 This function always causes a flush of the window server buffer.
   563 
   564 @param aCircumstances The circumstances in which error message events are 
   565 to be reported. 
   566 @return KErrNone if successful, otherwise one of the system-wide error codes. 
   567 @see DisableErrorMessages() */
   568 	{
   569 	return(WriteReplyInt(aCircumstances,EWsWinOpEnableErrorMessages));
   570 	}
   571 
   572 EXPORT_C void RWindowTreeNode::DisableErrorMessages()
   573 /** Cancels notification of error message events. 
   574 
   575 Use this function to instruct the server to stop reporting error message events 
   576 to this window. If the window server has not previously been instructed to 
   577 report error message events, this function has no effect (i.e. the default 
   578 is that windows do not get error messages).
   579 
   580 @see EnableErrorMessages() */
   581 	{
   582 	if (iWsHandle)
   583 		Write(EWsWinOpDisableErrorMessages);
   584 	}
   585 
   586 EXPORT_C TInt RWindowTreeNode::EnableModifierChangedEvents(TUint aModifierMask, TEventControl aCircumstances)
   587 /** Requests notification of modifier changed events. 
   588 
   589 Use this function to instruct the window server to report modifier changed 
   590 events to this window. Values for the modifier keys are defined in TEventModifier. 
   591 If more than one modifier key is to be monitored, their values should be combined 
   592 using a bit-wise OR operation. Modifier changed events are of type EEventModifiersChanged.
   593  
   594 This function always causes a flush of the window server buffer.
   595 
   596 @param aModifierMask The modifiers to be reported. May be a combination of 
   597 values defined in TEventModifier 
   598 @param aCircumstances The circumstances in which modifier changed events are 
   599 to be reported. 
   600 @return KErrNone if successful, otherwise one of the system-wide error codes. 
   601 @see DisableModifierChangedEvents() */
   602 	{
   603 	TWsWinCmdEnableModifierChangedEvents params(aModifierMask, aCircumstances);
   604 	return(WriteReply(&params,sizeof(params),EWsWinOpEnableModifierChangedEvents));
   605 	}
   606 
   607 EXPORT_C void RWindowTreeNode::DisableModifierChangedEvents()
   608 /** Cancels notification of modifier changed events. 
   609 
   610 Use this function to instruct the server to stop reporting modifier changed 
   611 events to this window. If the window server has not previously been instructed 
   612 to report modifier changed events, this function has no effect (i.e. the default 
   613 is that windows do not get the events).
   614 
   615 @see EnableModifierChangedEvents() */
   616 	{
   617 	if (iWsHandle)
   618 		Write(EWsWinOpDisableModifierChangedEvents);
   619 	}
   620 
   621 EXPORT_C TInt RWindowTreeNode::SetPointerCursor(TInt aCursorNumber)
   622 /** Sets the pointer cursor from the system pointer cursor list. 
   623 
   624 Use this function to set the current cursor to one contained in the system 
   625 pointer cursor list. If the list does not contain a cursor with an index of 
   626 aCursorNumber, the function will attempt to set the cursor to the default 
   627 system pointer cursor, which has an index of 0 in the list.
   628 
   629 The RWsSession class provides functions for setting and controlling the system 
   630 pointer cursor list.
   631  
   632 This function always causes a flush of the window server buffer.
   633 
   634 @param aCursorNumber The cursor index in the system pointer cursor list. 
   635 @return KErrNone if successful, otherwise one of the system-wide error codes. 
   636 @see ClearPointerCursor() */
   637 	{
   638 	return(WriteReplyInt(aCursorNumber,EWsWinOpSetPointerCursor));
   639 	}
   640 
   641 EXPORT_C void RWindowTreeNode::SetCustomPointerCursor(const RWsPointerCursor &aPointerCursor)
   642 /** Sets the pointer cursor to an application-defined cursor.
   643 
   644 @param aPointerCursor The cursor to use. */
   645 	{
   646 	WriteInt(aPointerCursor.WsHandle(),EWsWinOpSetCustomPointerCursor);
   647 	}
   648 
   649 EXPORT_C void RWindowTreeNode::SetNonFading(TBool aNonFading)
   650 /** Sets whether a window is non-fading.
   651 
   652 When the non-fading flag is set the window will unfade if needed and remain 
   653 unfaded until this flag is removed. This is useful for toolbars etc. which 
   654 must never be faded.
   655 
   656 @param aNonFading ETrue to set the non-fading flag, EFalse (the default) to 
   657 re-set it. */
   658 	{
   659 	WriteInt(aNonFading,EWsWinOpSetNonFading);
   660 	}
   661 
   662 EXPORT_C void RWindowTreeNode::SetFaded(TBool aFaded,TFadeControl aIncludeChildren)
   663 /** Sets the window as faded or unfaded.
   664 
   665 This function allows a single window to be faded or unfaded. The function 
   666 also allows the same action to be applied to all of the window's children.
   667 
   668 Notes:
   669 
   670 A redraw is required to un-fade a window because information is lost during 
   671 fading (blank and backup windows deal with this themselves). Areas in shadow 
   672 when the window is faded also require a redraw. 
   673 
   674 While a window is faded, all drawing to that window will be adjusted appropriately 
   675 by the window server.
   676 
   677 @param aFaded ETrue to fade the window, EFalse to un-fade it. 
   678 @param aIncludeChildren Fade control flags. These set whether fading/un-fading 
   679 also apply to child windows. */
   680 	{
   681 	TWsWinCmdSetFaded params(aFaded,aIncludeChildren);
   682 	Write(&params,sizeof(params),EWsWinOpSetFade);
   683 	}
   684 
   685 EXPORT_C void RWindowTreeNode::SetFaded(TBool aFaded,TFadeControl aIncludeChildren,TUint8 aBlackMap,TUint8 aWhiteMap)
   686 /** Sets one or more windows as faded or unfaded, specifying a fading map. 
   687 
   688 Fading is used to change the colour of a window to make other windows stand 
   689 out. For example, you would fade all other windows when displaying a dialogue. 
   690 
   691 Fading makes a window closer to white or closer to black.
   692 Setting the fading map allows you to over-ride the default fading parameters 
   693 set in RWsSession::SetDefaultFadingParameters(). 
   694 
   695 The white and black fading values define the range over which colours are 
   696 re-mapped when a window is faded. As the values get closer together, all colours 
   697 in the faded window becomes more similar, creating the fading effect. 
   698 When the numbers cross over (so that the black value is greater than the white 
   699 value) the colours in the faded window start to invert, i.e. colours that 
   700 were closer to white in the unfaded window are mapped to a darker colour when 
   701 the window is faded.
   702 
   703 The function also allows the fading action applied to this window to be applied 
   704 to all of its children.
   705 
   706 Notes:
   707 
   708 Fading a window for a 2nd time will not change the fading map used. 
   709 
   710 A redraw is required to un-fade a window because information is lost during 
   711 fading. Note that blank (RBlankWindow) and backup (RBackedUpWindow) windows 
   712 deal with this themselves. Areas in shadow when the window is faded also require 
   713 a redraw. 
   714 
   715 While a window is faded all drawing to that window will be adjusted appropriately 
   716 by the window server.
   717 
   718 @param aFaded ETrue to fade the window, EFalse to un-fade it. 
   719 @param aIncludeChildren Fade control flags. This sets whether fading/un-fading 
   720 is also to apply to all child windows. 
   721 @param aBlackMap Black map fading parameter.
   722 @param aWhiteMap White map fading parameter. 
   723 @see RWsSession::SetDefaultFadingParameters()
   724 @see CWindowGc::SetFadingParameters() */
   725 	{
   726 	TWsWinCmdSetFaded params(aFaded,aIncludeChildren,EFalse,aBlackMap,aWhiteMap);
   727 	Write(&params,sizeof(params),EWsWinOpSetFade);
   728 	}
   729 
   730 EXPORT_C void RWindowTreeNode::ClearPointerCursor()
   731 /** Clears pointer cursor settings.
   732 
   733 These are the settings made by calling SetPointerCursor(). */
   734 	{
   735 	Write(EWsWinOpClearPointerCursor);
   736 	}
   737 
   738 /** Returns the window server session that is used to create this window handle. 
   739 
   740 This functions returns null if the window handle is not initialised.
   741 
   742 @see RWindowTreeNode(RWsSession &aWs)
   743 */
   744 EXPORT_C RWsSession* RWindowTreeNode::Session() const
   745 	{
   746 	return iBuffer? iBuffer->Session() : NULL;
   747 	}
   748 
   749 /** @panic TW32Panic 17 in debug builds if called on an already constructed object.*/
   750 TInt RWindowBase::construct(const RWindowTreeNode &parent,TUint32 aClientHandle, TInt aType, TDisplayMode aDisplayMode)
   751 	{
   752 	__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
   753 	TWsClCmdCreateWindow createWindow;
   754 	createWindow.parent=parent.WsHandle();
   755 	createWindow.clientHandle=aClientHandle;
   756 	createWindow.type=(TWinTypes)aType;
   757 	createWindow.displayMode=aDisplayMode;
   758 	TInt ret=iBuffer->WriteReplyWs(&createWindow,sizeof(createWindow),EWsClOpCreateWindow);
   759 	if (ret<0)
   760 		return(ret);
   761 	iWsHandle=ret;
   762 	return(KErrNone);
   763 	}
   764 
   765 EXPORT_C void RWindowBase::Activate()
   766 /** Displays the window and enables it to receive events. 
   767 
   768 Calling this method on a window causes it to receive a redraw event 
   769 if it is a non-backed-up window, and should be called after a window has 
   770 been constructed and initialised.
   771 
   772 Windows are not displayed automatically when they are constructed. This allows 
   773 them to be customised using SetPosition(), SetOrdinalPosition(), SetExtent(), 
   774 etc., before they are displayed. */
   775 	{
   776 	Write(EWsWinOpActivate);
   777 	}
   778 
   779 EXPORT_C TPoint RWindowBase::Position() const
   780 /** Gets a window's position relative to its parent.
   781  
   782 This function always causes a flush of the window server buffer.
   783 
   784 @return Position of this window's origin relative to the origin of its parent. */
   785 	{
   786 	TPckgBuf<TPoint> pntPkg;
   787   	WriteReplyP(&pntPkg,EWsWinOpPosition);
   788 	return(pntPkg());
   789 	}
   790 
   791 EXPORT_C TPoint RWindowBase::AbsPosition() const
   792 /** Gets a window's absolute position - ie the windows position relative 
   793 to the current screen size mode.
   794  
   795 This function always causes a flush of the window server buffer.
   796 
   797 @return Position of this window's origin relative to the screen. */
   798 	{
   799 	TPckgBuf<TPoint> pntPkg;
   800   	WriteReplyP(&pntPkg,EWsWinOpAbsPosition);
   801 	return(pntPkg());
   802 	}
   803 
   804 EXPORT_C TSize RWindowBase::Size() const
   805 /** Gets the window's current size.
   806  
   807 This function always causes a flush of the window server buffer.
   808 
   809 @return Current size of window. */
   810 	{
   811 	TPckgBuf<TSize> sizePkg;
   812   	WriteReplyP(&sizePkg,EWsWinOpSize);
   813 	return(sizePkg());
   814 	}
   815 
   816 /**
   817 @internalAll
   818 Disclaimer - this API is internal and is subject to change
   819 @deprecated */
   820 EXPORT_C TSize RWindowBase::SizeForEgl() const
   821     {
   822     return Size();
   823     }
   824 
   825 EXPORT_C void RWindowBase::SetPosition(const TPoint &aPos)
   826 /** Sets the position of a window relative to its parent. 
   827 
   828 The co-ordinates given in aPos specify the position of the top left-hand 
   829 corner of the window, relative to the top left-hand corner of its parent. 
   830 A positive value indicates a direction to the right and down. Negative values 
   831 are valid but will cause part of the window to be outside its parent's extent, 
   832 and therefore clipped.
   833 
   834 This function may be called at any time after the window's Construct() function: 
   835 the window's position will change dynamically.
   836 
   837 A window's position can also be set using the RWindow::SetExtent() and RWindowBase::SetExtentErr() 
   838 functions.
   839 
   840 Note: upon creation, a window's extent is the same as its parent’s. In other words 
   841 it has the same origin and size. If the window’s parent is a group window, it is 
   842 initialised to be full screen.
   843 
   844 @param aPos The position of the window's origin, relative to its parent */
   845 	{
   846 	WritePoint(aPos,EWsWinOpSetPos);
   847 	}
   848 
   849 EXPORT_C TInt RWindowBase::SetSizeErr(const TSize &aSize)
   850 /** Sets the size of a backed-up window. 
   851 
   852 A window's size is not constrained by the size of its parent. However, its 
   853 visible region is, and the child window's visible region will always be clipped 
   854 to the parent's visible region.
   855 
   856 Avoid using this function for a window known to be of type RBlankWindow or 
   857 RWindow (i.e. not a backed-up window). Instead, use SetSize(), which is more 
   858 efficient as it does not return a value. However, if the window is a backed-up 
   859 window, or of unknown type, SetSizeErr() should be used, because 
   860 setting the size of a backed-up window may cause an out-of-memory error.
   861 
   862 This function may be called at any time after the window's Construct() function: 
   863 the window's size will change dynamically.
   864  
   865 This function always causes a flush of the window server buffer.
   866 
   867 @param aSize Window size.
   868 @return KErrNone if successful, otherwise one of the system-wide error codes. 
   869 @see RWindow::SetSize()
   870 @see RWindow::SetExtent()
   871 @see RWindowBase::SetExtentErr() */
   872 	{
   873 	return(WriteReply(&aSize,sizeof(aSize),EWsWinOpSetSizeErr));
   874 	}
   875 
   876 EXPORT_C TInt RWindowBase::SetExtentErr(const TPoint &pos,const TSize &size)
   877 /** Sets a backed-up window's extent, relative to its parent, and returns an error 
   878 code from the server. 
   879 
   880 See SetPosition() and SetSizeErr() for a description of the rules applying 
   881 to aPoint and aSize respectively.
   882 
   883 Avoid using this function for a window of type RBlankWindow or RWindow (in other words, 
   884 not a backed-up window). Instead, use SetExtent(), which is more efficient 
   885 as it does not return a value. However, if the window is a backed-up window, 
   886 or of unknown type, SetExtentErr() should be used, because setting 
   887 the extent of a backed-up window may cause an out-of-memory error.
   888 
   889 This function may be called at any time after the window's Construct() function: 
   890 the window's extent will change dynamically.
   891  
   892 This function always causes a flush of the window server buffer.
   893 
   894 @param pos The position of the window's origin, relative to its parent. 
   895 @param size Window size. 
   896 @return KErrNone if successful, otherwise one of the system-wide error codes. */
   897 	{
   898 	TWsWinCmdSetExtent setExtent(pos,size);
   899 	return(WriteReply(&setExtent,sizeof(setExtent),EWsWinOpSetExtentErr));
   900 	}
   901 
   902 EXPORT_C TPoint RWindowBase::InquireOffset(const RWindowTreeNode &aWindow) const
   903 /** Enquires the offset between this and another window. 
   904 
   905 A positive value indicates a position to the right and down from aWindow, 
   906 a negative value indicates a position to the left and up.
   907  
   908 This function always causes a flush of the window server buffer.
   909 
   910 @param aWindow Another window tree node. 
   911 @return The offset of this window relative to aWindow. */
   912 	{
   913 	TPckgBuf<TPoint> pkgPoint;
   914 	TUint32 handle=aWindow.WsHandle();
   915 	WriteReplyP(&handle,sizeof(handle),&pkgPoint,EWsWinOpInquireOffset);
   916 	return(pkgPoint());
   917 	}
   918 
   919 EXPORT_C void RWindowBase::PointerFilter(TUint32 aFilterMask, TUint32 aFilter)
   920 /** Sets the filter which controls which pointer events are sent to the client 
   921 session. 
   922 
   923 A pointer filter can be defined for each window separately, and changed dynamically. 
   924 The default behaviour when a window is created is that move, drag, enter and 
   925 exit events are filtered out and not delivered to the client.
   926 
   927 @param aFilterMask Bitwise OR of values from TPointerFilter masking event 
   928 types which will be updated. 
   929 @param aFilter Bits containing new values for the masked event types. A 1 bit 
   930 causes the corresponding event to be filtered out, a 0 bit lets through the 
   931 corresponding event. 
   932 @see TPointerFilter */
   933 	{
   934 	TWsWinCmdPointerFilter params;
   935 	params.mask=aFilterMask;
   936 	params.flags=aFilter;
   937 	Write(&params,sizeof(params),EWsWinOpPointerFilter);
   938 	}
   939 
   940 EXPORT_C void RWindowBase::SetPointerCapture(TInt aFlags)
   941 /** Sets the pointer capture state.
   942 
   943 A window which has called this function can capture events that would otherwise 
   944 go to other windows. Normally, pointer events are sent to the window at 
   945 the co-ordinates where the event occurs. Capturing only works on windows which 
   946 are behind the capturing window in the z order. 
   947 
   948 Capture can be enabled or disabled. If capturing is enabled a window will, 
   949 by default, capture events only from windows in the same window group. A flag 
   950 can be specified to allow it to capture events across all window groups.
   951 
   952 Another flag can be used to specify drag-drop capture. This causes a drag-drop 
   953 message to be sent to the window within which the pen was lifted. Drag-drop 
   954 with a pen is a tap-drag-lift sequence.
   955 
   956 Capture functionality is useful in situations where only the foreground window 
   957 should receive events, e.g. in a modal dialogue.
   958 
   959 @param aFlags Bitwise OR of flag values from TCaptureFlags. 
   960 @see TCaptureFlags */
   961 	{
   962 	WriteInt(aFlags,EWsWinOpSetPointerCapture);		//The data is actually interpreted as a TUint
   963 	}
   964 
   965 EXPORT_C void RWindowBase::SetPointerGrab(TBool aState)
   966 /** Allows or disallows pointer grabs in a window. 
   967 
   968 If the pointer grab is set, any down event in this window will cause 
   969 a pointer grab, terminated by the next corresponding up event. All pointer 
   970 events up to and including the next up event will be sent to that window.
   971 
   972 Pointer grab can be used for drag-and-drop or other situations when you want 
   973 the events delivered to the same window even though the pen will be dragged 
   974 outside that window. This function is typically called during window construction 
   975 so that pointer grab is enabled for the lifetime of the window.
   976 
   977 Pointer grab is disabled by default.
   978 
   979 @param aState New state for the pointer grab setting. 
   980 @see ClaimPointerGrab() */
   981 	{
   982 	WriteInt(aState,EWsWinOpSetPointerGrab);
   983 	}
   984 
   985 EXPORT_C TInt RWindowBase::ClaimPointerGrab(const TUint8, const TBool)
   986 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
   987     @internalComponent */ 
   988 	{
   989 	ASSERT(EFalse);
   990 	return KErrNotSupported;
   991 	}
   992 
   993 EXPORT_C void RWindowBase::ClaimPointerGrab(TBool aSendUpEvent)
   994 /** Claims the pointer grab from another window. 
   995 
   996 If a pointer grab is already in effect in another window, a window can claim 
   997 the pointer grab from that window by calling this function. All subsequent 
   998 events will be delivered to this window, up to and including the next "up" 
   999 event. This next up event terminates the pointer grab.
  1000 
  1001 This function would typically be used where clicking in a window pops up another 
  1002 window, and where the popped-up window wishes to grab the pointer as though 
  1003 the original click had been in that window.
  1004 
  1005 Note:
  1006 
  1007 If aSendUpEvent is set to ETrue, the window losing the grab is immediately 
  1008 sent an up event, signalling the end of its pointer grab.
  1009 
  1010 @param aSendUpEvent Whether to deliver an up event to the window that previously 
  1011 had the grab. 
  1012 @see SetPointerGrab() */
  1013 	{
  1014 	WriteInt(aSendUpEvent,EWsWinOpClaimPointerGrab);
  1015 	}
  1016 
  1017 EXPORT_C void RWindowBase::SetPointerCapturePriority(TInt aPriority)
  1018 /** Sets the window's pointer capture priority.
  1019 
  1020 To allow window gain a property that allows them to be clicked on even when they are behind a modal
  1021 window. The priority will be 0 by default. Windows that need to stop modal window in front of them, 
  1022 should set this value to positive. Window can only capture pointer events from another window 
  1023 of same group, if it has at least the same pointer capture priority.
  1024 
  1025 @param aPriority Pointer capture priority */
  1026 	{
  1027 	WriteInt(aPriority,EWsWinOpSetPointerCapturePriority);
  1028 	}
  1029 
  1030 EXPORT_C TInt RWindowBase::GetPointerCapturePriority() const
  1031 /** Gets the windows's pointer capture priority
  1032 
  1033 @return Window's pointer capture priority 
  1034 @see SetPointerCapturePriority() */
  1035 	{
  1036 	return WriteReply(EWsWinOpGetPointerCapturePriority);
  1037 	}
  1038 
  1039 EXPORT_C void RWindowBase::SetVisible(TBool aState)
  1040 /** Sets the window's visibility. 
  1041 
  1042 This function can be called after the window has been created to dynamically 
  1043 change its visibility.
  1044 
  1045 Notes:
  1046 
  1047 When a window is invisible, it receives no events from the window server.
  1048 
  1049 A window is invisible before it is activated, irrespective of the state of 
  1050 its visibility flag.
  1051 
  1052 @param aState New value for the visibility. */
  1053 	{
  1054 	WriteInt(aState,EWsWinOpSetVisible);
  1055 	}
  1056 
  1057 EXPORT_C void RWindowBase::SetShadowHeight(TInt aHeight)
  1058 /** Sets a window's shadow height.
  1059 
  1060 This is the height that this window is above the window immediately behind 
  1061 it. The offset of the shadow's bottom right corner from the window's bottom 
  1062 right corner is the product of the window's shadow height and the system shadow 
  1063 vector. 
  1064 
  1065 A shadow is only displayed on top-level windows.
  1066 
  1067 @param aHeight Shadow height. The default is 0. */
  1068 	{
  1069 	WriteInt(aHeight,EWsWinOpSetShadowHeight);
  1070 	}
  1071 
  1072 EXPORT_C void RWindowBase::SetShadowDisabled(TBool aState)
  1073 /** Enables or disables whether a window casts a shadow. 
  1074 
  1075 By default, when a window is created, its shadow is not disabled. (But note 
  1076 that a shadow is only cast by top-level windows.)
  1077 
  1078 @param aState ETrue if the shadow is to be disabled (not displayed). EFalse 
  1079 if the shadow is to be displayed */
  1080 	{
  1081 	WriteInt(aState,EWsWinOpShadowDisabled);
  1082 	}
  1083 
  1084 EXPORT_C TInt RWindowBase::SetCornerType(TCornerType aCornerType, TInt aCornerFlags)
  1085 /** Sets the shape of a window's corners.
  1086  
  1087 This function always causes a flush of the window server buffer.
  1088 
  1089 @param aCornerType Corner type to apply. 
  1090 @param aCornerFlags Bitwise OR of flags indicating corners to exclude. 
  1091 @return KErrNone if successful, otherwise one of the system-wide error codes. 
  1092 @see TCornerFlags 
  1093 @deprecated */
  1094 	{
  1095 	TWsWinCmdSetCornerType params;
  1096 	params.type=aCornerType;
  1097 	params.flags=aCornerFlags;
  1098 	return(WriteReply(&params,sizeof(params),EWsWinOpSetCornerType));
  1099 	}
  1100 
  1101 EXPORT_C TInt RWindowBase::SetShape(const TRegion &aRegion)
  1102 /** Sets a window's shape arbitrarily, if rectangular windows are not required.
  1103  
  1104 This function always causes a flush of the window server buffer.
  1105 
  1106 @param aRegion Region defining window shape. 
  1107 @return KErrNone if successful, otherwise one of the system-wide error codes. 
  1108 @deprecated */
  1109 	{
  1110 	__ASSERT_DEBUG(!aRegion.CheckError(),Panic(EW32PanicInvalidRegion));
  1111 	const TInt regionCount=aRegion.Count();
  1112 	TPtrC8 ptrRect(reinterpret_cast<const TUint8*>(aRegion.RectangleList()),regionCount*sizeof(TRect));
  1113 	return(WriteReplyByProvidingRemoteReadAccess(&regionCount,sizeof(regionCount),&ptrRect,EWsWinOpSetShape));
  1114 	}
  1115 
  1116 EXPORT_C TInt RWindowBase::SetRequiredDisplayMode(TDisplayMode aMode)
  1117 /** Sets the window's display mode. 
  1118 
  1119 Each window can be given an individual display mode because some windows may 
  1120 require a greater number of different colours than others.
  1121 
  1122 The default display mode of a window is dependent on the individual target 
  1123 device. The default mode may not reflect the full capabilities of the display. 
  1124 On some devices a simpler colour mode may be used as the default in order 
  1125 to save battery power. In these cases, this method may be used to request 
  1126 a different display mode on a per-window basis.
  1127 
  1128 At any given time, the window server uses the highest display mode of the 
  1129 windows currently visible, and switches the hardware into that mode. Therefore, 
  1130 if an application contains a window with display mode EGray16, but only EGray4 
  1131 windows are visible, the screen hardware will use EGray4 until the EGray16 
  1132 window becomes visible.
  1133  
  1134 This function always causes a flush of the window server buffer.
  1135 
  1136 @param aMode The display mode: can have any TDisplayMode value except TDisplayMode::ERgb 
  1137 (since this isn't a mode that screen hardware can ever take). 
  1138 @return The display mode to which the window has been set. This is the closest 
  1139 display mode to aMode supported by the hardware. */
  1140 	{
  1141 	return(WriteReplyInt(aMode,EWsWinOpRequiredDisplayMode));
  1142 	}
  1143 
  1144 EXPORT_C TDisplayMode RWindowBase::DisplayMode() const
  1145 /** Gets the window's current display mode.
  1146  
  1147 This function always causes a flush of the window server buffer.
  1148 
  1149 @return The window's current display mode. */
  1150 	{
  1151 	return((TDisplayMode)WriteReply(EWsWinOpGetDisplayMode));
  1152 	}
  1153 
  1154 EXPORT_C void RWindowBase::EnableBackup(TUint aBackupType/*=EWindowBackupAreaBehind*/)
  1155 /** Requests that this window backs up all or part of the screen's contents. There 
  1156 are two backup possibilities:- just the area behind this window (the default), 
  1157 or the whole screen. Backing up the whole screen is useful for windows that 
  1158 require the rest of the screen to fade when they are displayed. In this case, 
  1159 the full screen backup is of the unfaded content of the screen.
  1160 
  1161 It is possible to specify both types of backup at the same time. This may 
  1162 be used by fade behind windows that can be dragged across the screen, e.g. 
  1163 a dialog. This is done by calling this function with the parameter EWindowBackupAreaBehind|EWindowBackupFullScreen.
  1164 
  1165 When backing up the whole screen, this function should be called before the 
  1166 window is activated, and before you call fade behind on it (RWindowBase::FadeBehind()).
  1167 
  1168 Backing up a window is an optimisation feature that is honoured only if there 
  1169 is enough memory to do so, (it requires bitmaps and a region to be created 
  1170 and maintained). If there is not enough memory, all or part of the backup 
  1171 will be lost. In this case, a redraw will be issued at the relevant point 
  1172 just as if the window had not been backed up.
  1173 
  1174 The backup bitmap is made and is claimed by the window not when EnableBackup() 
  1175 is called, but when the window becomes visible (this is normally when the 
  1176 window is activated).
  1177 
  1178 Only one backed up window of the same type can exist at any one time (although 
  1179 the same window can have both types of backup at the same time). If a window 
  1180 requests a backup of type EWindowBackupAreaBehind, any window that has already 
  1181 claimed a backup of this type will lose it. If a window requests a backup 
  1182 of type EWindowBackupFullScreen, this request will fail if another window 
  1183 has already claimed a backup of this type.
  1184 
  1185 @param aBackupType The type of backed up window. See the TWindowBackupType 
  1186 enum for possible values.
  1187 @see TWindowBackupType */
  1188 	{
  1189 	WriteInt(aBackupType,EWsWinOpEnableBackup);
  1190 	}
  1191 
  1192 EXPORT_C void RWindowBase::RequestPointerRepeatEvent(TTimeIntervalMicroSeconds32 aTime,const TRect &aRect)
  1193 /** Requests a pointer repeat event. 
  1194 
  1195 This function instructs the window server to send a single pointer repeat event if 
  1196 the pointer state that caused the last event (e.g. EButton1Down) has not changed 
  1197 within aTime and the pointer has not moved outside aRect. Pointer repeat events 
  1198 are pointer events of type TPointerEvent::EButtonRepeat.
  1199 
  1200 While the repeat is in operation all move and drag events within the rectangle 
  1201 are filtered out. The repeat is cancelled if the pointer moves outside the 
  1202 rectangle or generates any other pointer event.
  1203 
  1204 A typical use of this function would be for a scrollbar, so that holding down 
  1205 the pointer results in a continuous scroll.
  1206 
  1207 @param aTime Time interval before pointer repeat event should be sent. 
  1208 @param aRect Repeat event occurs only if pointer is within this rectangle. 
  1209 @see CancelPointerRepeatEventRequest() */
  1210 	{
  1211 	TWsWinCmdRequestPointerRepeatEvent params(aTime,aRect);
  1212 	Write(&params,sizeof(params),EWsWinOpRequestPointerRepeatEvent);
  1213 	}
  1214 
  1215 EXPORT_C void RWindowBase::CancelPointerRepeatEventRequest()
  1216 /** Cancels a request for a pointer repeat event.
  1217 
  1218 @see RequestPointerRepeatEvent() */
  1219 	{
  1220 	if (iWsHandle)
  1221 		Write(EWsWinOpCancelPointerRepeatEventRequest);
  1222 	}
  1223 
  1224 EXPORT_C TInt RWindowBase::RequestPointerRepeatEvent(TTimeIntervalMicroSeconds32 /*aTime*/,const TRect &/*aRect*/, const TUint8 /*aPointerNumber*/)
  1225 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  1226     @internalComponent */ 
  1227 	{
  1228 	// No multipointer in WSERV NONNGA, so ignore pointer number by redirecting to appropriate API
  1229 	ASSERT(0);
  1230 	return KErrNotSupported;
  1231 	}
  1232 
  1233 EXPORT_C TInt RWindowBase::CancelPointerRepeatEventRequest(const TUint8 /*aPointerNumber*/)
  1234 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  1235     @internalComponent */ 
  1236 	{
  1237 	// No multipointer in WSERV NONNGA, so ignore pointer number by redirecting to appropriate API
  1238 	ASSERT(0);	
  1239 	return KErrNotSupported;
  1240 	}
  1241 
  1242 EXPORT_C void RWindowBase::EnableAdvancedPointers()
  1243 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  1244     @internalComponent */ 
  1245 	{
  1246 	ASSERT(0);	
  1247 	}
  1248 
  1249 /**
  1250 @internalAll
  1251 Disclaimer - this API is internal and is subject to change
  1252 @deprecated */
  1253 EXPORT_C TInt RWindowBase::FixNativeOrientation()
  1254     {
  1255     return KErrNotSupported;
  1256     }
  1257 
  1258 EXPORT_C TInt RWindowBase::AllocPointerMoveBuffer(TInt aMaxNumPoints, TUint aFlags)
  1259 /** Allocates a buffer for storing pointer movements. 
  1260 
  1261 The pointer move buffer is used by applications that need to process every 
  1262 single pointer move or drag event: for example, a freehand drawing application.
  1263 
  1264 Normally, multiple drag events which the window server receives from the pointer 
  1265 device driver are translated into a single drag event. The single drag event 
  1266 incorporates all pointer events that occurred while the client was processing 
  1267 the previous pointer event. If the pointer move buffer is used, the window 
  1268 server stores all pointer events in a pointer buffer, and then delivers the 
  1269 entire buffer when it is full.
  1270 
  1271 AllocPointerMoveBuffer() must be called before the pointer move buffer can 
  1272 be used. It would typically be called during window construction.
  1273 
  1274 After the pointer move buffer has been allocated, the window server does not 
  1275 start putting pointer events into it until EnablePointerMoveBuffer() is called.
  1276 
  1277 Note: move events are not available on all hardware.
  1278  
  1279 This function always causes a flush of the window server buffer.
  1280 
  1281 @param aMaxPoints Maximum number of pointer events the buffer can hold. This 
  1282 affects the frequency at which the buffer is flushed. 
  1283 @param aFlags Obsolete argument: set to zero always. 
  1284 @return KErrNone if successful, otherwise one of the system-wide error codes. */
  1285 	{
  1286 	TWsWinCmdAllocPointerMoveBuffer params;
  1287 	params.maxNumPoints=aMaxNumPoints;
  1288 	params.flags=aFlags;
  1289 	return(WriteReply(&params,sizeof(params),EWsWinOpAllocPointerMoveBuffer));
  1290 	}
  1291 
  1292 EXPORT_C void RWindowBase::FreePointerMoveBuffer()
  1293 /** Frees the pointer move buffer. 
  1294 
  1295 This function should be called on a window which calls AllocPointerMoveBuffer(). */
  1296 	{
  1297 	if (iWsHandle)
  1298 		Write(EWsWinOpFreePointerMoveBuffer);
  1299 	}
  1300 
  1301 EXPORT_C void RWindowBase::EnablePointerMoveBuffer()
  1302 /** Enables the pointer move buffer for receiving pointer move events. 
  1303 
  1304 This function instructs the window server to begin putting pointer events 
  1305 into the pointer move buffer. AllocPointerMoveBuffer() must have previously 
  1306 been called, or a panic will occur.
  1307 
  1308 As soon as the pointer buffer has at least one point in it, the window server 
  1309 sends an event of type EEventPointerBufferReady to the client, and the events 
  1310 can be retrieved from the pointer move buffer using RetrievePointerMoveBuffer().
  1311 
  1312 Note: pointer move, drag and enter/exit events are not delivered to a window 
  1313 by default. An application using the pointer move buffer should use PointerFilter() 
  1314 to request that these events be delivered.
  1315 
  1316 @see DisablePointerMoveBuffer() */
  1317 	{
  1318 	Write(EWsWinOpEnablePointerMoveBuffer);
  1319 	}
  1320 
  1321 EXPORT_C void RWindowBase::DisablePointerMoveBuffer()
  1322 /** Instructs the window server to stop adding pointer events to the pointer move 
  1323 buffer. */
  1324 	{
  1325 	Write(EWsWinOpDisablePointerMoveBuffer);
  1326 	}
  1327 
  1328 EXPORT_C TInt RWindowBase::RetrievePointerMoveBuffer(TDes8 &aBuf) const
  1329 /** Retrieves events from the pointer move buffer. 
  1330 
  1331 Use this function to get pointer events from the pointer move buffer. This 
  1332 function should be called when an event has occurred of type EEventPointerBufferReady 
  1333 (defined in TEventCode).
  1334  
  1335 This function always causes a flush of the window server buffer.
  1336 
  1337 @param aBuf Buffer to store events retrieved from pointer move buffer 
  1338 @return KErrNone if successful, otherwise one of the system-wide error codes. */
  1339 	{
  1340 	TInt maxPoints=aBuf.MaxSize()/sizeof(TPoint);
  1341 	return(WriteReplyP(&maxPoints,sizeof(maxPoints),&aBuf,EWsWinOpRetrievePointerMoveBuffer));
  1342 	}
  1343 
  1344 EXPORT_C void RWindowBase::DiscardPointerMoveBuffer()
  1345 /** Discards all events in the pointer move buffer. 
  1346 
  1347 The window server subsequently continues to put new pointer events into the 
  1348 pointer move buffer as usual (if the buffer is enabled). */
  1349 	{
  1350 	Write(EWsWinOpDiscardPointerMoveBuffer);
  1351 	}
  1352 
  1353 EXPORT_C TInt RWindowBase::AddKeyRect(const TRect &aRect, TInt aScanCode, TBool aActivatedByPointerSwitchOn)
  1354 /** Adds an on-screen key rectangle. 
  1355 
  1356 This function configures an area of the screen, given by aRect, to act as 
  1357 an on-screen key. Any subsequent pointer events within this area will be translated 
  1358 by the window server into key events with a scan code of aScanCode.
  1359 
  1360 aActivatedByPointerSwitchOn indicates whether or not to generate a key event 
  1361 as a result of a pointer event that acts to switch the machine on.
  1362 
  1363 Before v7.0, calling this function stopped the window from receiving pointer 
  1364 events (they were received as key events) and pointer events outside the specified 
  1365 key rectangle were discarded. From v7.0, pointer events outside the key rectangles 
  1366 are not discarded and may be handled.
  1367  
  1368 This function always causes a flush of the window server buffer.
  1369 
  1370 @param aRect Rectangle to act as an on-screen key, relative to the window 
  1371 origin 
  1372 @param aScanCode Scan code of key events generated by this on-screen key 
  1373 @param aActivatedByPointerSwitchOn If ETrue, a switch-on pointer event will 
  1374 produce a key event. If EFalse, a switch-on pointer event will not produce 
  1375 a key event. 
  1376 @return KErrNone if successful, otherwise one of the system-wide error codes. 
  1377 @see RemoveAllKeyRects() */
  1378 	{
  1379 	TWsWinCmdAddKeyRect params(aRect, aScanCode, aActivatedByPointerSwitchOn);
  1380 	return(WriteReply(&params,sizeof(params),EWsWinOpAddKeyRect));
  1381 	}
  1382 
  1383 EXPORT_C void RWindowBase::RemoveAllKeyRects()
  1384 /** Removes all the on-screen keys that have been added to this window.
  1385 
  1386 After this function has been called, all pointer events are delivered to the window, 
  1387 reversing the effect of AddKeyRect().
  1388 
  1389 @see AddKeyRect() */
  1390 	{
  1391 	Write(EWsWinOpRemoveAllKeyRects);
  1392 	}
  1393 
  1394 EXPORT_C TInt RWindowBase::PasswordWindow(TPasswordMode aPasswordMode)
  1395 /** Makes this window the password window.
  1396 
  1397 Only one password window can exist concurrently. Another window may take over 
  1398 as the password window if either (a) the current password window calls this 
  1399 function with aPasswordMode=EPasswordCancel, or (b) the current password window 
  1400 is destroyed.
  1401  
  1402 This function always causes a flush of the window server buffer.
  1403 
  1404 @param aPasswordMode The type of password handling required. 
  1405 @return KErrNone if successful, KErrInUse if this function is called when another 
  1406 password window already exists, otherwise another of the system-wide error 
  1407 codes. 
  1408 
  1409 @deprecated */
  1410 	{
  1411 	return(WriteReplyInt(aPasswordMode,EWsWinOpPasswordWindow));
  1412 	}
  1413 
  1414 EXPORT_C void RWindowBase::FadeBehind(TBool aFade)
  1415 /** Sets whether or not all windows behind the current window, in the same window 
  1416 group, should be faded or unfaded. 
  1417 
  1418 This function can be used to fade all windows used by an application when 
  1419 a dialogue is displayed.
  1420 
  1421 Fading works on a count basis. Fading increases the fade count, while unfading 
  1422 decreases it. If the fade count is greater than zero the window will be drawn 
  1423 faded. Only when it drops back to zero will it stop being faded.
  1424 
  1425 This functionality is used to support nested dialogues. When bringing up a 
  1426 dialogue the rest of the application windows are faded. If an option is selected 
  1427 to launch another dialogue, the original dialogue is faded (fade count 1) 
  1428 and the remaining windows have their fade count increased to 2. When the dialogue 
  1429 is closed the fade count is reduced by one, which displays the original dialogue, 
  1430 but the remaining windows remain faded. They are only displayed when the other 
  1431 dialogue is closed and their fade count is reduced to zero.
  1432 
  1433 Note:
  1434 
  1435 Information is lost when a window is faded, so a redraw is required to restore 
  1436 the window content when it is unfaded (blank and backup windows deal with 
  1437 this themselves). A redraw is also required for the areas that were in shadow 
  1438 when the window was faded, since the shadowing also causes information loss. 
  1439 While a window is faded all drawing to that window will be adjusted appropriately 
  1440 by the window server.
  1441 
  1442 @param aFade ETrue to increase the fade count of all windows behind the current 
  1443 window (within the current window group), EFalse to reduce the fade count. 
  1444 @see RWindowTreeNode::SetFaded()
  1445 @see RWindowTreeNode::SetNonFading() */
  1446 	{
  1447 	WriteInt(aFade,EWsWinOpFadeBehind);
  1448 	}
  1449 
  1450 EXPORT_C TBool RWindowBase::IsFaded() const
  1451 /** Tests whether the current window is faded.
  1452  
  1453 This function always causes a flush of the window server buffer.
  1454 
  1455 @return ETrue if the current window is faded, otherwise EFalse. */
  1456 	{
  1457 	return WriteReply(EWsWinOpGetIsFaded);
  1458 	}
  1459 
  1460 EXPORT_C TBool RWindowBase::IsNonFading() const
  1461 /** Tests whether the current window is non-fading.
  1462  
  1463 This function always causes a flush of the window server buffer.
  1464 
  1465 @return ETrue if the current window is non-fading, otherwise EFalse. 
  1466 @see RWindowTreeNode::SetNonFading() */
  1467 	{
  1468 	return WriteReply(EWsWinOpGetIsNonFading);
  1469 	}
  1470 
  1471 EXPORT_C TInt RWindowBase::MoveToGroup(TInt aIdentifier)
  1472 /** Moves this window to another window group. 
  1473 
  1474 This function allows a window with a window group as its immediate parent 
  1475 to be moved from one window group to another one. The two window groups must 
  1476 be owned by the same client. The new parent window group is specified by its 
  1477 identifier.
  1478  
  1479 This function always causes a flush of the window server buffer.
  1480 
  1481 @param aIdentifier The identifier of the target window group. This is the 
  1482 value returned by RWindowGroup::Identifier(). 
  1483 @return KErrNone if successful, otherwise another of the system-wide error 
  1484 codes. An error is returned if an attempt is made to move the window between 
  1485 window groups in different clients. */
  1486 	{
  1487 	return WriteReplyInt(aIdentifier,EWsWinOpMoveToGroup);
  1488 	}
  1489 
  1490 /** This sets the background of the window to be the given surface.
  1491 
  1492 The surface will be stretched or compressed to fill the extent of the window.
  1493 The background is updated on screen when the window is next redrawn.
  1494 
  1495 When the window is moved, the surface will move with it. If the window is
  1496 resized, the surface will be similarly scaled. If a 1-1 pixel mapping is
  1497 required and the window size changes, the function will need to be called
  1498 again with a different TSurfaceId for a surface with the new size of the
  1499 window.
  1500 
  1501 The key color to use in chroma key composition mode is defined by the system,
  1502 for all TSurfaceId background windows to use. In alpha composition mode,
  1503 transparent black is used. The composition mode is determined by the screen
  1504 display mode: if the mode supports an alpha channel, alpha composition is used;
  1505 otherwise chroma key composition is used.
  1506 
  1507 @param aSurface  The surface to act as the background of the window
  1508 @return KErrNone on success or a system-wide error code.
  1509 @pre aSurface has been initialized.
  1510 @pre The window is either an RWindow or an RBlankWindow, or the client is
  1511 panicked with the code EWservPanicDrawable.
  1512 @pre The surface must be compatible with being composited on the screen this
  1513 window appears on; otherwise the client thread is panicked with code
  1514 EWservPanicIncompatibleSurface.
  1515 @post The window has its background set to be the surface.
  1516 @post The window is opaque.
  1517 @post The base area of the window is the full extent of the window.
  1518 @post A GCE surface layer has been created to associate the surface with a
  1519 location on screen.
  1520 @post The surface's content is in an undefined state, but the surface remains
  1521 initialized.
  1522 @post This function always causes a flush of the window server buffer.
  1523 
  1524 @publishedPartner
  1525 @prototype
  1526 */
  1527 EXPORT_C TInt RWindowBase::SetBackgroundSurface(const TSurfaceId& aSurface)
  1528 	{
  1529 	(void) aSurface;	//avoid unreferenced warning
  1530 	return KErrNotSupported;
  1531 	}
  1532 
  1533 
  1534 /**
  1535 This sets a surface to appear in front of the window's background within a 
  1536 given area of that window. 
  1537 
  1538 Any rendering performed by CWindowGc operations will appear in front of surface 
  1539 for the window. The TSurfaceConfiguration object contains the Surface ID and 
  1540 allows various surface presentation attributes to be specified. This describes 
  1541 the mapping from surface co-ordinates to screen co-ordinates, allowing for scaling, 
  1542 cropping, and rotation. 
  1543 
  1544 For details on the attributes see TSurfaceConfiguration.
  1545 
  1546 The composition mode is determined by the screen display mode: if the mode supports an 
  1547 alpha channel, alpha composition is used; otherwise chroma key composition is used. 
  1548 In chroma key composition mode, the key color used is defined by the system, for all 
  1549 TSurfaceId background windows to use. In alpha composition mode, transparent 
  1550 black is used.
  1551 
  1552 If the same surface ID is already set as the window background surface, then only 
  1553 the configuration parameters will be updated. 
  1554 
  1555 If the window already has a background surface (that is not same as the new surface) 
  1556 or then that surface will be removed and the new 
  1557 background surface will be set. The Surface ID will be registered while attached 
  1558 to this window. This is in addition to any call to RWsSession::RegisterSurface.
  1559 
  1560 @param aConfiguration The set of configuration that applies to the surface.
  1561 @param aTriggerRedraw If set causes WServ to repaint any affected portions of the display.
  1562 @return KErrNone on success or any system-wide error code
  1563 	- KErrNotSupported if surface support is not available
  1564 	- KErrNoMemory If a memory allocation fault occurs
  1565 	- KErrArgument If the surface ID is not accepted by the GCE 
  1566 @pre The window is either a RWindow or an RBlankWindow, or the client is panicked 
  1567 with the code EWservPanicDrawable.
  1568 @pre The surface is opaque; otherwise results are not defined.
  1569 @pre All members of the TSurfaceConfiguration recognised by the server must have valid 
  1570 values. If not, the client is panicked with code EWservPanicInvalidSurfaceConfiguration.
  1571 @pre The surface must not be the UI surface; otherwise the client thread is panicked 
  1572 with code EWservPanicInvalidSurface.
  1573 @pre The surface must not be the null surface ID; otherwise the client thread is 
  1574 panicked with code EWservPanicInvalidSurface.
  1575 @post The window has a new background surface set to be within the given area. Outside 
  1576 the area, the window’s background color will be visible.
  1577 @post The window must be redrawn before the surface becomes visible, and the surface's 
  1578 content will be visible after the composition and refresh. Composition of the surface 
  1579 will be automatically triggered if required. The aTriggerRedraw flush parameter will 
  1580 cause this redraw, or the client should cause a redraw after this call.
  1581 @post This function always causes a flush of the WServ session buffer.
  1582 @see RemoveBackgroundSurface
  1583 @see GetBackgroundSurface
  1584 
  1585 @publishedPartner
  1586 @prototype
  1587 */
  1588 EXPORT_C TInt RWindowBase::SetBackgroundSurface(const TSurfaceConfiguration& aConfiguration, TBool aTriggerRedraw)
  1589 	{
  1590 	(void) aConfiguration;	//avoid unreferenced warning
  1591 	(void) aTriggerRedraw;	//avoid unreferenced warning
  1592 	return KErrNotSupported;
  1593 	}
  1594 
  1595 
  1596 /**
  1597 This removes any background surface that has been set to the window.
  1598 
  1599 The surface ID registration associated with the window will be released. 
  1600 This is independent of any outstanding calls to RWsSession::RegisterSurface, 
  1601 which should be completed with a corresponding call to UnregisterSurface.
  1602 
  1603 The aTriggerRedraw parameter triggers a redraw of at least the affected 
  1604 areas of the window at the end of this method. 
  1605 
  1606 @param aTriggerRedraw If set causes WServ to repaint any affected portions of the display.
  1607 @post Any background surface associated with this window has been removed. The 
  1608 appearance on screen may not change until the window is redrawn and the next 
  1609 refresh occurs. The aTriggerRedraw parameter can be set to trigger this redrawing.
  1610 @post This function does not explicitly force a flush of the WServ session buffer. 
  1611 Internal reference counting will keep the Surface ID "live" until the client code 
  1612 has released any handles and provisioners, and WServ processes the buffered remove 
  1613 command, and the final frame containing this surface has finished being displayed.
  1614 @see SetBackgroundSurface
  1615 @see GetBackgroundSurface
  1616 
  1617 @publishedPartner
  1618 @prototype
  1619 */
  1620 EXPORT_C void RWindowBase::RemoveBackgroundSurface(TBool aTriggerRedraw)
  1621 	{
  1622 	(void) aTriggerRedraw;	//avoid unreferenced warning
  1623 	}
  1624 
  1625 
  1626 /**
  1627 Retrieves a copy of the current configuration for background surface attached to the window.
  1628 
  1629 The client must present a properly initialized TSurfaceConfiguration on entry – in 
  1630 particular the size field must be valid before the call. The server will then fill 
  1631 the object with the available data.
  1632 
  1633 If the server supports more fields it will truncate the returned data to the size the 
  1634 client has requested. If the server has fewer fields it will set the returned size 
  1635 field to the lower value. 
  1636 
  1637 Note that the returned attribute values will only be guaranteed equivalent to the 
  1638 input values, not exact copies, as the values may be calculated from internal flags 
  1639 rather than reported from a cached exact copy.
  1640 
  1641 @param aConfiguration
  1642 	- On entry the Size field specifies the maximum size of the object.
  1643 	- On return fields up to this size are filled in.
  1644 @return KErrNone on success or any system-wide error code
  1645 	- KErrNotFound The window does not have a background surface attached.
  1646 	- KErrNoMemory If a memory allocation fault occurs.
  1647 @pre The window is either a RWindow or an RBlankWindow, or the client is panicked 
  1648 with the code EWservPanicDrawable.
  1649 @pre The window has not been set as transparent, or the client is panicked with 
  1650 the code EWservPanicTransparencyMisuse.
  1651 @pre The Size member of the configuration must be an acceptable value. The size 
  1652 must match the Size() member of a defined TSurfaceConfiguration variant, or be 
  1653 larger than all variants known to the server. If not, the client is panicked with 
  1654 code EWservPanicInvalidSurfaceConfiguration.
  1655 @post aConfiguration object filled to specified size.
  1656 @post This function always causes a flush of the WServ session buffer.
  1657 @see SetBackgroundSurface
  1658 @see RemoveBackgroundSurface
  1659 
  1660 @publishedPartner
  1661 @prototype
  1662 */
  1663 EXPORT_C TInt RWindowBase::GetBackgroundSurface(TSurfaceConfiguration& aConfiguration) const
  1664 	{
  1665 	(void) aConfiguration;	//avoid unreferenced warning
  1666 	return KErrNotSupported;
  1667 	}
  1668 
  1669 /**
  1670 Not supported in non-NGA
  1671  */
  1672 EXPORT_C void RWindowBase::SetSurfaceTransparency(TBool aSurfaceTransparency)
  1673     {
  1674     (void) aSurfaceTransparency;
  1675     }
  1676 
  1677 /** This function returns the key color for the window, if used.
  1678 
  1679 In chroma key composition mode, this will be an opaque color; in alpha
  1680 composition mode, it will be transparent black, i.e. TRgb(0, 0, 0, 0). If the
  1681 window does not have a surface or overlay background, the return value is
  1682 transparent black.
  1683 
  1684 The value of a chroma key color depends on the background type. Windows with
  1685 surface backgrounds return the system defined key color, whereas windows with
  1686 overlay backgrounds return the color passed in.
  1687 
  1688 If the return value is opaque, the client should take care to avoid using the
  1689 color when rendering further content in the window, since it may cause that
  1690 content to become invisible.
  1691 
  1692 @return The key color used in this window, or transparent black.
  1693 @post This function always causes a flush of the window server buffer.
  1694 
  1695 @publishedPartner
  1696 @prototype
  1697 */
  1698 EXPORT_C TRgb RWindowBase::KeyColor() const
  1699 	{
  1700 	return KRgbBlack;
  1701 	}
  1702 
  1703 /**	Dummy implementation in order to preserve compatibility with WSERV NGA.
  1704 	@internalComponent*/
  1705 EXPORT_C void RWindowBase::SetPurpose(TInt /*aPurpose*/)
  1706 	{
  1707 	ASSERT(0);
  1708 	}
  1709 
  1710 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  1711     @internalComponent */
  1712 EXPORT_C void RWindowBase::SendEffectCommand(TInt /*aTfxCmd*/,const TDesC8& /*aTfxCmdData*/)
  1713     {
  1714 	ASSERT(0);
  1715     }
  1716 
  1717 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  1718     @internalComponent */
  1719 EXPORT_C void RWindowBase::OverrideEffects(TInt /*aAction*/, const TFileName& /*aResourceDir*/, const TFileName& /*aFilenameOutgoing*/, const TFileName& /*aFilenameIncoming*/, TBitFlags /*aFlags*/)
  1720     {
  1721 	ASSERT(0);
  1722     }
  1723 
  1724 //////////////////////////// RDrawableWindow ////////////////////////////////
  1725 
  1726 void RDrawableWindow::doScroll(const TRect &aClipRect, const TPoint &aOffset, const TRect &aRect, TInt aOpcode)
  1727 	{
  1728 	TWsWinCmdScroll scroll(aClipRect,aOffset,aRect);
  1729 	Write(&scroll,sizeof(scroll),aOpcode);
  1730 	}
  1731 
  1732 EXPORT_C void RDrawableWindow::Scroll(const TPoint &aOffset)
  1733 /** Scrolls the window contents by an offset. 
  1734 
  1735 All parts of an RWindow are either drawn with content copied from another 
  1736 part of the window or are invalidated. Areas are invalidated when the source 
  1737 content of the scroll would be outside the window or obscured behind another 
  1738 window. The areas that are invalidated are not blanked off.
  1739 
  1740 For example, if the window is scrolled towards the right, then there is no 
  1741 content (from outside the window) to move into area on the left hand side. 
  1742 This area is invalidated. Similarly, no content can be scrolled out from under 
  1743 an obscuring window, so the area from beneath the obscuring window is also 
  1744 invalidated.
  1745 
  1746 Note that for an RBackedUpWindow, the contents of areas obscured by other windows 
  1747 are stored. In this case the window contents are scrolled out from "underneath" 
  1748 the obscuring window. In the example above the area on the left was invalidated 
  1749 but for this type of window the area simply contains its old pre-scroll contents.
  1750 
  1751 @param aOffset Scroll offset, in pixels. Positive values cause the window 
  1752 contents to move downwards/right. Negative values cause contents to move upwards/left. */
  1753 	{
  1754 	doScroll(TRect(), aOffset, TRect(), EWsWinOpScroll);
  1755 	}
  1756 
  1757 EXPORT_C void RDrawableWindow::Scroll(const TRect &aClipRect,const TPoint &aOffset)
  1758 /** Scrolls the contents of a clip rectangle, independently of the other contents 
  1759 of the window.
  1760 
  1761 This function behaves in exactly the same way as the single parameter overload, 
  1762 except that the scroll region is a clipping rectangle rather than the whole window. 
  1763 All parts of the clipping rectangle are either drawn with content copied from 
  1764 another part of the rectangle or are invalidated.
  1765 
  1766 The RBackedUpWindow behaviour is also similar to the behaviour in the function 
  1767 above.
  1768 
  1769 @param aClipRect Rectangle to which scrolling is to be clipped 
  1770 @param aOffset Scroll offset, in pixels. Positive values cause the window contents 
  1771 to move downwards and right. Negative values cause contents to move upwards 
  1772 and left. */
  1773 	{
  1774 	doScroll(aClipRect, aOffset, TRect(), EWsWinOpScrollClip);
  1775 	}
  1776 
  1777 EXPORT_C void RDrawableWindow::Scroll(const TPoint &aOffset, const TRect &aRect)
  1778 /** Scrolls a rectangle within a window.
  1779 
  1780 This function effectively moves the specified rectangle by the given offset 
  1781 with respect to the window. The destination rectangle may overlap and cover 
  1782 the old rectangle.
  1783 
  1784 Note that if the source of this rectangle is an invalid area, ie it is obscured 
  1785 or lies outside the window, then this area in the destination rectangle will 
  1786 be invalidated.
  1787 
  1788 @param aOffset Scroll offset, in pixels. Positive values cause the window 
  1789 contents to move downwards and right. Negative values cause contents to move 
  1790 upwards and left. 
  1791 @param aRect The source rectangle for the scroll. */
  1792 	{
  1793 	doScroll(TRect(), aOffset, aRect, EWsWinOpScrollRect);
  1794 	}
  1795 
  1796 EXPORT_C void RDrawableWindow::Scroll(const TRect &aClipRect, const TPoint &aOffset, const TRect &aRect)
  1797 /** Scrolls the contents of a source rectangle within a clipping rectangle.
  1798 
  1799 The source rectangle is effectively copied from one position to another, with 
  1800 both the source and destination clipped to the clipping rectangle. Hence if 
  1801 the source and destination rectangles are inside the clipping region then 
  1802 this function behaves exactly like the Scroll(const TPoint &aOffset, const TRect &aRect) 
  1803 overload. However if the source or destination for the scrolled rectangle intersect 
  1804 the clipping rectangle then the function behaves similarly to the 
  1805 Scroll(const TRect &aClipRect,const TPoint &aOffset) overload, with regards to 
  1806 invalidated regions etc.
  1807 
  1808 @param aClipRect Rectangle to which scrolling is to be clipped.
  1809 @param aOffset Scroll offset, in pixels. Positive values cause the window contents 
  1810 to move downwards and right. Negative values cause contents to move upwards 
  1811 and left. 
  1812 @param aRect Source rectangle for the scroll. */
  1813 	{
  1814 	doScroll(aClipRect, aOffset, aRect, EWsWinOpScrollClipRect);
  1815 	}
  1816 
  1817 /**Protected system function.
  1818 
  1819 Sets the current redraw reference rectangle that is being drawn. 
  1820 This is called between a BeingRedraw() / EndRedraw() pair by the system.
  1821 
  1822 @param aRect Rectangle reference area that is currently being drawn.
  1823 @see GetDrawRect() */
  1824 void RDrawableWindow::SetDrawRect(const TRect &aRect)
  1825 	{
  1826 	iDrawRect = aRect;
  1827 	}
  1828 
  1829 /**Obtains the current rectangle being drawn to this window, during a window redraw cycle.
  1830 
  1831 This function can be called between a BeginRedraw() / EndRedraw() pair to obtain 
  1832 the current window redraw reference rectangle.
  1833 
  1834 @return The current reference rectangle that is being redrawn*/
  1835 EXPORT_C TRect RDrawableWindow::GetDrawRect() const
  1836 	{
  1837 	return iDrawRect;
  1838 	}
  1839 
  1840 EXPORT_C void RWindow::BeginRedraw(const TRect &aRect)
  1841 /** Begins the redraw of a rectangle within the window's invalid region.
  1842 
  1843 This method tells the window server that the window is about to respond to the 
  1844 last redraw event by redrawing the specified rectangle. This causes the window 
  1845 server to clear the rectangle, and remove it from the invalid region. 
  1846 
  1847 After the redraw is complete the window should call EndRedraw().
  1848 
  1849 Note:
  1850 
  1851 When handling a redraw event, this rectangle would typically be the rectangle 
  1852 returned by TWsRedrawEvent::Rect().
  1853 
  1854 The redraw is clipped to the area that is validated, i.e. the intersection 
  1855 of the rectangle with the previously invalid region.
  1856 
  1857 If you only validate part of the rectangle given in the redraw event then, 
  1858 after EndRedraw() is called, drawing will be clipped to the visible area which 
  1859 is not invalid. This is because drawing (that is non-redrawing) is always 
  1860 clipped to the visible region less the invalid region. You will get another 
  1861 message telling you to redraw the area that is still invalid. 
  1862 
  1863 @param aRect The rectangle to be redrawn. 
  1864 @see EndRedraw() */
  1865 	{
  1866 	WriteRect(aRect,EWsWinOpBeginRedraw);
  1867 	SetDrawRect(aRect);
  1868 	}
  1869 
  1870 EXPORT_C void RWindow::BeginRedraw()
  1871 /** Begins redrawing the window's invalid region. 
  1872 
  1873 This method tells the window server that the window is about to respond to 
  1874 the last redraw event by redrawing the entire invalid region. This causes 
  1875 the window server to validate the entire invalid region. 
  1876 
  1877 After the redraw is complete the entire region that was previously invalid 
  1878 is validated. The window should then call EndRedraw().
  1879 
  1880 Note: the redraw is clipped to the region that was previously invalid.
  1881 
  1882 This function always causes a flush of the window server buffer.
  1883 
  1884 @see EndRedraw() */
  1885 	{
  1886 	Write(EWsWinOpBeginRedrawFull);
  1887 	SetDrawRect(TRect(Size()));
  1888 	}
  1889 
  1890 EXPORT_C void RWindow::EndRedraw()
  1891 /** Ends the current redraw. 
  1892 
  1893 This function should be called when redrawing is complete. */
  1894 	{
  1895 	Write(EWsWinOpEndRedraw);
  1896 	SetDrawRect(TRect::EUninitialized);
  1897 	}
  1898 
  1899 EXPORT_C void RWindow::Invalidate(const TRect &aRect)
  1900 /** Invalidates an area within the window. 
  1901 
  1902 This function invalidates the specified rectangle, which causes the window 
  1903 to get a redraw message. This allows an application-initiated redraw of a 
  1904 specified rectangle.
  1905 
  1906 @param aRect Area to invalidate. */
  1907 	{
  1908 	WriteRect(aRect,EWsWinOpInvalidate);
  1909 	}
  1910 
  1911 EXPORT_C void RWindow::Invalidate()
  1912 /** Invalidates the entire window. 
  1913 
  1914 This function causes the window to get a redraw message specifying its entire 
  1915 visible area, allowing an application-initiated redraw. */
  1916 	{
  1917 	Write(EWsWinOpInvalidateFull);
  1918 	}
  1919 
  1920 EXPORT_C void RWindow::GetInvalidRegion(RRegion &aRegion) const
  1921 /** Gets the invalid region.
  1922 
  1923 Note: if there is not enough memory to create the region, the region's error flag 
  1924 will be set.
  1925  
  1926 This function always causes a flush of the window server buffer.
  1927 
  1928 @param aRegion On return, contains the invalid region. */
  1929 	{
  1930 	aRegion.Clear();
  1931 retry:
  1932 	TInt count=WriteReply(EWsWinOpGetInvalidRegionCount);
  1933 	if (count>0)
  1934 		{
  1935 		HBufC8 *rectBuf=NULL;
  1936 		TRAPD(err,rectBuf=HBufC8::NewMaxL(count*sizeof(TRect)));
  1937 		if (err==KErrNone)
  1938 			{
  1939 			TPtr8 des=rectBuf->Des();
  1940 			if (WriteReplyP(&count,sizeof(count),&des,EWsWinOpGetInvalidRegion))
  1941 				{
  1942 				User::Free(rectBuf);
  1943 				goto retry;
  1944 				}
  1945 			for(TInt index=0;index<count;index++)
  1946 				aRegion.AddRect(((TRect *)rectBuf->Ptr())[index]);
  1947 			User::Free(rectBuf);
  1948 			}
  1949 		else
  1950 			aRegion.ForceError();
  1951 		}
  1952 	}
  1953 
  1954 EXPORT_C void RWindow::SetBackgroundColor(TRgb aColor)
  1955 /** Sets the background colour used for clearing in server-initiated redraws. 
  1956 
  1957 The window will be cleared to its background colour when a window server-initiated 
  1958 redraw occurs. Background colour can be changed dynamically after a window 
  1959 has been created and activated, however, the new background colour will not 
  1960 be visible until the window has been redrawn.
  1961 
  1962 @param aColor Background colour to be used during redraws. */
  1963 	{
  1964 	WriteInt(aColor.Internal(),EWsWinOpSetBackgroundColor);
  1965 	}
  1966 
  1967 EXPORT_C void RWindow::SetBackgroundColor()
  1968 /** Sets the background colour used for clearing in server-initiated redraws to 
  1969 none. 
  1970 
  1971 The window will not be cleared to its background colour when a window server-initiated 
  1972 redraw occurs. 
  1973 
  1974 For a window on which SetTransparencyAlphaChannel() has been called, this function means
  1975 that the transparent window has no background.
  1976 
  1977 If a client calls this function for an opaque window, it is their responsibility to provide
  1978 opaque drawing to every pixel in the window (for example, a background bitmap). Otherwise,
  1979 undefined behaviour will result. */
  1980 	{
  1981 	Write(EWsWinOpSetNoBackgroundColor);
  1982 	}
  1983 
  1984 EXPORT_C TInt RWindow::Construct(const RWindowTreeNode &parent,TUint32 aClientHandle)
  1985 /** Completes the construction of the window handle. 
  1986 
  1987 This method should be called after the RWindow() constructor, before any other 
  1988 functions are performed on the window. It creates a window in the window server 
  1989 corresponding to the RWindow object. The window is initialised to inherit 
  1990 the size and extent of its parent window, given by the first parameter. If its 
  1991 parent is a group window then it will be full screen.
  1992  
  1993 This function always causes a flush of the window server buffer.
  1994 
  1995 @param parent The window's parent. 
  1996 @param aClientHandle Client handle for the window. This is an integer value 
  1997 chosen by the client that must be unique within the current server session. The 
  1998 usual way of doing this is to cast the address of the object that owns the window 
  1999 to a TUint32; this allows event handlers which are given a window handle to obtain 
  2000 a reference to the window an event is intended for. For example, CCoeControl uses 
  2001 this technique when it constructs a window. Note that in GUI applications, every 
  2002 window is created and owned by a control. Therefore it is rare for 3rd party code 
  2003 to ever need to call a window's Construct() function directly.
  2004 
  2005 @return KErrNone if successful, otherwise one of the system-wide error codes. */
  2006 	{
  2007 	return(construct(parent,aClientHandle,EWinRedraw,ENone));
  2008 	}
  2009 
  2010 EXPORT_C void RWindow::SetSize(const TSize &size)
  2011 /** Sets the size of a window. 
  2012 
  2013 This function may be called at any time after the window's Construct() function: 
  2014 the window's size will change dynamically.
  2015 
  2016 If the window size is increased, any new area will be cleared to the background 
  2017 colour and a redraw event will be generated for it.
  2018 
  2019 @param size The window size. */
  2020 	{
  2021 	WriteSize(size,EWsWinOpSetSize);
  2022 	}
  2023 
  2024 EXPORT_C void RWindow::SetExtent(const TPoint &pos,const TSize &size)
  2025 /** Sets the size and position of a window. 
  2026 
  2027 This function may be called at any time after the window's Construct() function: 
  2028 the window's extent will change dynamically.
  2029 
  2030 If the window size is increased, any new area will be cleared to the background 
  2031 colour and a redraw event will be generated for it.
  2032 
  2033 @param pos The position of the window's origin, relative to its parent. 
  2034 @param size The window size. 
  2035 @see RBackedUpWindow */
  2036 	{
  2037 	TWsWinCmdSetExtent setExtent(pos,size);
  2038 	Write(&setExtent,sizeof(setExtent),EWsWinOpSetExtent);
  2039 	}
  2040 
  2041 /** Enables or Disables the storing of redraw operations that do not 
  2042 intersect the viewport for a window.
  2043 
  2044 The window server stores operations required to redraw a window in a redraw 
  2045 store. Calling this function with ETrue causes all such drawing operations 
  2046 to be stored. The EnableRedrawStore(EFalse) call serves as a hint to store 
  2047 only the subset of draw commands which intersect the viewport.
  2048 
  2049 @param aEnabled Indicates whether the redraw store should be enabled or disabled. */
  2050 EXPORT_C void RWindow::EnableRedrawStore(TBool aEnabled)
  2051 	{
  2052 	WriteInt(aEnabled, EWsWinOpStoreDrawCommands);
  2053 	}
  2054 
  2055 /** Enables/Disables the WSERV to use its OSB
  2056 @param bool value that dertermines whether to trun OSB on or off
  2057 */
  2058 EXPORT_C void RWindow::EnableOSB(TBool aStatus)
  2059 	{
  2060 	if(aStatus)
  2061 		{
  2062 		Write(EWsWinOpEnableOSB);
  2063 		}
  2064 	else
  2065 		{
  2066 		Write(EWsWinOpDisableOSB);
  2067 		}
  2068 	}
  2069 
  2070 /** Clears the draw commands that are stored for this window from the redraw store.
  2071 	Windows that have had their redraw store cleared are not ready to draw again until 
  2072 	a new set of draw commands enclosed by BeginRedraw/EndRedraw have been issued.
  2073 */	
  2074 EXPORT_C void RWindow::ClearRedrawStore()
  2075 	{
  2076 	Write(EWsWinOpClearRedrawStore);
  2077 	}
  2078 	
  2079 EXPORT_C void RWindowGroup::SetOrdinalPriorityAdjust(TInt aAdjust)
  2080 /** Sets the window group's priority adjust value. 
  2081 
  2082 This function is primarily designed for sessions that own multiple window 
  2083 groups. After this function has been called by a window group, that window 
  2084 group's priority will be adjusted by the amount given by aAdjust whenever 
  2085 another window group owned by the same session gains keyboard focus.
  2086 
  2087 When the session loses focus, the priority returns to its original value.
  2088 
  2089 Note: This is ignored for window groups in chains.
  2090 
  2091 @param aAdjust Value to be added to window group's existing priority. */
  2092 	{
  2093 	WriteInt(aAdjust,EWsWinOpSetOrdinalPriorityAdjust);
  2094 	}
  2095 
  2096 EXPORT_C TInt RWindowGroup::SetOrdinalPositionErr(TInt aPos,TInt aOrdinalPriority)
  2097 /** Sets the ordinal position and ordinal priority of a window.
  2098  
  2099 Ordinal priority is a number assigned to a window that determines its position in the z-order. 
  2100 For a description of ordinal priority, see the RWindowTreeNode::SetOrdinalPosition function.
  2101 To set a priority of KPasswordWindowGroupPriority or greater, client will require 
  2102 SwEvent capability. If client does not have SwEvent capability then it will return error 
  2103 code.
  2104 
  2105 Note: If this window is a window group in a chain, then all other window groups in the chain will be moved also. 
  2106 And further they will all have their ordinal priority set to the specified value.
  2107 When this function is called on Window with aPos set to KOrdinalPositionSwitchToOwningWindow then the function 
  2108 doesn't change the ordinal position of the window, if instead it has focus then the window that would come to 
  2109 the forground if it died will be moved to the foreground.
  2110 
  2111 This function always causes a flush of the window server buffer.
  2112 
  2113 @param aPos The window's new ordinal position. The lower the ordinal, the closer to the 
  2114 front of the z-order the window will be. Specifying any negative value however, sends 
  2115 the window to the back of the z-order.
  2116 @param aOrdinalPriority The window's new ordinal priority.
  2117 @return	if not successful, one of the system-wide error codes. */
  2118 	{
  2119 	TWsWinCmdOrdinalPos ordinalPos;
  2120 	ordinalPos.pos=aPos;
  2121 	ordinalPos.ordinalPriority=aOrdinalPriority;
  2122 	return(WriteReply(&ordinalPos,sizeof(ordinalPos),EWsWinOpSetOrdinalPositionErr));
  2123 	}
  2124 
  2125 /**
  2126 Window transparency based on the use of a separate window mask bitmap has been 
  2127 deprecated. Calling this method method has no effect. For window transparency 
  2128 see the the support for window alpha channel.
  2129 
  2130 @see RWindow::SetTransparencyAlphaChannel() 
  2131 @deprecated
  2132 */
  2133 EXPORT_C void RWindow::HandleTransparencyUpdate()
  2134 	{
  2135 	// deprecated. this call does nothing. always return KErrNone.
  2136 	Write(EWsWinOpHandleTransparencyUpdate);
  2137 	}
  2138 
  2139 /**
  2140 The support for window transparency factor has been deprecated. Calling this 
  2141 method has no effect. For window transparency see the the support for window 
  2142 alpha channel.
  2143 
  2144 @param aTransparencyFactor Ignored.
  2145 @return	Always KErrNone.
  2146 @see RWindow::SetTransparencyAlphaChannel() 
  2147 @deprecated
  2148 */
  2149 EXPORT_C TInt RWindow::SetTransparencyFactor(const TRgb& aTransparencyFactor)
  2150 	{
  2151 	// deprecated. this call does nothing. always return KErrNone.
  2152 	return WriteReplyInt(aTransparencyFactor.Internal(), EWsWinOpSetTransparencyFactor);
  2153 	}
  2154 	
  2155 /**
  2156 Window transparency based on the use of a separate window mask bitmap has been 
  2157 deprecated. Calling this method method has no effect. For window transparency 
  2158 see the the support for window alpha channel.
  2159 
  2160 @param aTransparencyBitmap Ignored.
  2161 @return	Always KErrNone.
  2162 @see RWindow::SetTransparencyAlphaChannel() 
  2163 @deprecated
  2164 */
  2165 EXPORT_C TInt RWindow::SetTransparencyBitmap(const CFbsBitmap& aTransparencyBitmap)
  2166 	{
  2167 	// deprecated. this call does nothing. always return KErrNone.
  2168 	return WriteReplyInt(aTransparencyBitmap.Handle(), EWsWinOpSetTransparencyBitmap);	
  2169 	}
  2170 	
  2171 /**
  2172 Window transparency based on the use of a separate window mask bitmap has been 
  2173 deprecated. Calling this method method has no effect. For window transparency 
  2174 see the the support for window alpha channel.
  2175 
  2176 @param aTransparencyBitmap Ignored.
  2177 @return	Always KErrNone.
  2178 @see RWindow::SetTransparencyAlphaChannel() 
  2179 @deprecated
  2180 */
  2181 EXPORT_C TInt RWindow::SetTransparencyWsBitmap(const CWsBitmap& aTransparencyBitmap)
  2182 	{
  2183 	// deprecated. this call does nothing. always return KErrNone.
  2184 	return WriteReplyInt(aTransparencyBitmap.WsHandle(), EWsWinOpSetTransparencyBitmapCWs);
  2185 	}	
  2186 
  2187 /**
  2188 Window transparency based on the use of a separate window mask bitmap has been 
  2189 deprecated. Calling this method method has no effect. To guarantee a window being
  2190 opaque; see SetTransparentRegion().
  2191 
  2192 @see RWindow::SetTransparentRegion()
  2193 @deprecated
  2194 */
  2195 EXPORT_C void RWindow::SetNonTransparent()
  2196 	{}
  2197 
  2198 /**
  2199 Enables the use of an alpha channel to control the window's transparency.
  2200 
  2201 Note that the window's invalid area will be cleared using the window's 
  2202 background color before any drawing commence. Thus setting the background 
  2203 color to fully transparent is essential in most use cases.
  2204    
  2205 @see RWindow::SetBackgroundColor()
  2206 @return	KErrNone if successful, otherwise one of the system-wide error codes. */
  2207 EXPORT_C TInt RWindow::SetTransparencyAlphaChannel()
  2208 	{
  2209 	return WriteReply(EWsWinOpSetTransparencyAlphaChannel);
  2210 	}
  2211 
  2212 EXPORT_C TInt RWindow::SetTransparentRegion(const TRegion& aRegion)
  2213 /** Sets the user-defined transparent region of a window.
  2214 
  2215 This will replace the default transparent region in a transparent window which is normally the full window 
  2216 base area.
  2217 The area outside of the transparent region will be treated by window server as being opaque. The client
  2218 is responsible for ensuring that opaque drawing is present in all pixels of this area. If the client 
  2219 fails to do this, undefined behaviour will result.
  2220 It is possible to make the transparent window completely opaque by passing an empty region. Passing a region
  2221 equal to the window base area or larger will revert the window to its default behaviour (i.e. full window
  2222 transparency).
  2223 No screen content changes will occur immediately as a result of calling this function.
  2224  
  2225 This function applies to transparent window only and always causes a flush of the window server buffer.
  2226 
  2227 @param aRegion User defined windows's transparent region. 
  2228 @return KErrNone if successful, otherwise one of the system-wide error codes. 
  2229 @see RWindow::SetTransparencyAlphaChannel() */
  2230 	{
  2231 	__ASSERT_ALWAYS(!aRegion.CheckError(),Panic(EW32PanicInvalidRegion));
  2232 	const TInt regionCount=aRegion.Count();
  2233 	TPtrC8 ptrRect(reinterpret_cast<const TUint8*>(aRegion.RectangleList()),regionCount*sizeof(TRect));
  2234 	return WriteReplyByProvidingRemoteReadAccess(&regionCount,sizeof(regionCount),&ptrRect,EWsWinOpSetTransparentRegion);
  2235 	}
  2236 
  2237 EXPORT_C TInt RWindow::SetTransparencyPolicy(TWsTransparencyPolicy aPolicy)
  2238 /** Sets the transparency policy of a window.
  2239 
  2240 No screen content changes will occur immediately as a result of calling this function.
  2241  
  2242 This function applies to transparent window only.
  2243 
  2244 @param aPolicy Transparent window policy. 
  2245 @return KErrNone if successful, otherwise one of the system-wide error codes. 
  2246 @see TWsTransparencyPolicy */
  2247 	{
  2248 	return WriteReplyInt(aPolicy,EWsWinOpSetTransparencyPolicy);
  2249 	}
  2250 
  2251 
  2252 /** Returns whether the window uses a redraw store to store drawing commands.
  2253 
  2254 The current WServ implementation always uses a redraw store. Therefore this function always returns ETrue.
  2255 
  2256 This function always causes a flush of the window server buffer.
  2257 
  2258 @return ETrue 
  2259 @see RWindow::EnableRedrawStore()
  2260 @deprecated */
  2261 EXPORT_C TBool RWindow::IsRedrawStoreEnabled() const
  2262 	{
  2263 	return WriteReply(EWsWinOpIsRedrawStoreEnabled);
  2264 	}
  2265 
  2266 EXPORT_C TInt RWindowGroup::Construct(TUint32 aClientHandle)
  2267 /** Completes construction of a window group. 
  2268 
  2269 Construction must be complete before any other window group methods can be 
  2270 called.
  2271 
  2272 This function always causes a flush of the window server buffer.
  2273 
  2274 @param aClientHandle The client's handle for the window. See RWindow::Construct() 
  2275 for a description of the client handle.
  2276 @return KErrNone if successful, otherwise one of the system-wide error codes, the most likely 
  2277 of which is KErrNoMemory. 
  2278 @see RWindow::Construct() */
  2279 	{
  2280 	return(ConstructChildApp(0,aClientHandle,ETrue));
  2281 	}
  2282 
  2283 EXPORT_C TInt RWindowGroup::Construct(TUint32 aClientHandle,CWsScreenDevice* aScreenDevice) 
  2284 /** Completes construction of a window group on a screen. 
  2285 
  2286 Construction must be complete before any other window group methods can be 
  2287 called.
  2288 
  2289 This function always causes a flush of the window server buffer.
  2290 
  2291 @param aScreenDevice A screen device is used to specify on which screen the window should be. The screen device must exist for as long as the window 
  2292 is in use. Different screen devices for two different window groups in an application allow the windows to have different screen size modes and WSERV 
  2293 will automatically switch from one to the other when there is a screen size mode change.
  2294 @param aClientHandle The client's handle for the window. See RWindow::Construct() 
  2295 for a description of the client handle.
  2296 @return KErrNone if successful, otherwise one of the system-wide error codes, the most likely 
  2297 of which is KErrNoMemory. 
  2298 @see RWindow::Construct() */
  2299 	{
  2300 	return (Construct(0,aClientHandle,ETrue,aScreenDevice));
  2301 	}
  2302 
  2303 EXPORT_C TInt RWindowGroup::Construct(TUint32 aClientHandle,TBool aIsFocusable,CWsScreenDevice* aScreenDevice)
  2304 /** Completes construction of a window group on a screen. 
  2305 
  2306 Construction must be complete before any other window group methods can be called.
  2307 
  2308 The purpose of this Construct function for RWindowGroup is that it allows chains of window groups to be created on a specific screen. When one of 
  2309 the window groups in a chain is moved with SetOrdinalPosition then all window groups in that chain will be moved to be consecutative, 
  2310 with the parent being at the back in the Z-order. The purpose of this feature is to allow embedding of applications.
  2311 
  2312 Note: The term parent should not be confused with the paremeter used in the function RWindow::Construct.  There it means that this window 
  2313 is a child of that window in the tree.  Here is just means that the two window groups involved will have an extra association.
  2314 Note: This window group will be given the same ordinal priority as it's parent window group.
  2315 
  2316 This function always causes a flush of the window server buffer.
  2317 
  2318 @param aScreenDevice A screen device is used to specify on which screen the window should be. The screen device must exist for as long as the window 
  2319 is in use. Different screen devices for two different window groups in an application allow the windows to have different screen size modes and WSERV 
  2320 will automatically switch from one to the other when there is a screen size mode change.
  2321 @param aClientHandle The client's handle for the window. See RWindow::Construct() 
  2322 for a description of the client handle.
  2323 @param aIdOfParentWindowGroup The Identifier of the parent window group.
  2324 @return KErrNone if successful, otherwise one of the system-wide error codes, the most likely of which is KErrNoMemory. 
  2325 It will return KErrPermissionDenied if the requested parent has not allowed this window group to be its child, 
  2326 and it will return KErrInUse if the parent already has a child.
  2327 @see RWindow::Construct() */
  2328 	{
  2329 	return(Construct(0,aClientHandle,aIsFocusable,aScreenDevice));	
  2330 	}
  2331 	
  2332 EXPORT_C TInt RWindowGroup::Construct(TUint32 aClientHandle,TBool aIsFocusable)
  2333 /** Completes the construction of a window group, setting its initial focus state. 
  2334 
  2335 Construction must be complete before any other window group methods can be 
  2336 called.
  2337 
  2338 aInitialFocusState can be specified in order to prevent a window group from 
  2339 automatically taking the keyboard focus when it is created. If specified, 
  2340 it sets the initial focus state of the window group. If a window group has 
  2341 a focus state of ETrue (the default), it can receive keyboard focus; if EFalse, 
  2342 it is prevented from receiving keyboard focus until this setting is changed. 
  2343 If a window group is constructed without specifying an initial focus state, 
  2344 keyboard focus will be enabled by default and the window group will receive 
  2345 keyboard focus automatically when it is created. To prevent this, set aInitialFocusState 
  2346 to EFalse.
  2347 
  2348 This function always causes a flush of the window server buffer.
  2349 
  2350 @param aClientHandle The client's integer handle for the window. See RWindow::Construct() 
  2351 for a description of the client handle.
  2352 @param aIsFocusable Whether the window is focusable. Set ETrue for it to 
  2353 be able to receive focus, EFalse otherwise. 
  2354 @return KErrNone if successful, otherwise one of the system-wide error codes, 
  2355 the most likely of which is KErrNoMemory.
  2356 @see EnableReceiptOfFocus() 
  2357 @see RWindow::Construct() */
  2358 	{
  2359 	return(ConstructChildApp(0,aClientHandle,aIsFocusable));
  2360 	}
  2361 
  2362 EXPORT_C TInt RWindowGroup::ConstructChildApp(TInt aIdOfParentWindowGroup,TUint32 aClientHandle)
  2363 /** Completes construction of a window group. 
  2364 
  2365 Construction must be complete before any other window group methods can be called.
  2366 
  2367 The purpose of this Construct function for RWindowGroup is that it allows chains of window groups to be created. When one of 
  2368 the window groups in a chain is moved with SetOrdinalPosition then all window groups in that chain will be moved to be consecutative, 
  2369 with the parent being at the back in the Z-order. The purpose of this feature is to allow embedding of applications.
  2370 
  2371 Note: The term parent should not be confused with the paremeter used in the function RWindow::Construct.  There it means that this window 
  2372 is a child of that window in the tree.  Here is just means that the two window groups involved will have an extra association.
  2373 Note: This window group will be given the same ordinal priority as it's parent window group.
  2374 
  2375 This function always causes a flush of the window server buffer.
  2376 
  2377 @param aClientHandle The client's handle for the window. See RWindow::Construct() 
  2378 for a description of the client handle.
  2379 @param aIdOfParentWindowGroup The Identifier of the parent window group.
  2380 @return KErrNone if successful, otherwise one of the system-wide error codes, the most likely of which is KErrNoMemory. 
  2381 It will return KErrPermissionDenied if the requested parent has not allowed this window group to be its child, 
  2382 and it will return KErrInUse if the parent already has a child.
  2383 @see RWindow::Construct() */
  2384 	{
  2385 	return(ConstructChildApp(aIdOfParentWindowGroup,aClientHandle,ETrue));
  2386 	}
  2387 
  2388 TInt RWindowGroup::Construct(TInt aIdOfParentWindowGroup,TUint32 aClientHandle,TBool aIsFocusable, CWsScreenDevice* aScreenDevice)
  2389 /** Completes construction of a window group on a screen. 
  2390 
  2391 Construction must be complete before any other window group methods can be called.
  2392 
  2393 This function always causes a flush of the window server buffer.
  2394 
  2395 @param aScreenDevice A screen device is used to specify on which screen the window should be. The screen device must exist for as long as the window 
  2396 is in use. Different screen devices for two different window groups in an application allow the windows to have different screen size modes and WSERV 
  2397 will automatically switch from one to the other when there is a screen size mode change.
  2398 @param aClientHandle The client's handle for the window. See RWindow::Construct() for a description of the client handle.
  2399 @param aIdOfParentWindowGroup The Identifier of the parent window group.
  2400 @return KErrNone if successful, otherwise one of the system-wide error codes, the most likely of which is KErrNoMemory. 
  2401 It will return KErrPermissionDenied if the requested parent has not allowed this window group to be its child, 
  2402 and it will return KErrInUse if the parent already has a child.
  2403 @param aIsFocusable Whether the window is focusable. Set ETrue for it to be able to receive focus, EFalse otherwise. 
  2404 @panic TW32Panic 17 in debug builds if called on an already constructed object.
  2405 @see RWindow::Construct() */
  2406 	{
  2407 	__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
  2408 	TWsClCmdCreateWindowGroup create;
  2409 	create.clientHandle=aClientHandle;
  2410 	create.focus=aIsFocusable;
  2411 	create.parentId=aIdOfParentWindowGroup;
  2412 	create.screenDeviceHandle = (aScreenDevice) ? aScreenDevice->WsHandle() : 0;
  2413 	
  2414 	TInt ret;
  2415 	if ((ret=iBuffer->WriteReplyWs(&create,sizeof(create),EWsClOpCreateWindowGroup))<0)
  2416 		{
  2417 		return ret;
  2418 		}
  2419 	iWsHandle=ret;
  2420 	return KErrNone;
  2421 	}
  2422 
  2423 EXPORT_C TInt RWindowGroup::ConstructChildApp(TInt aIdOfParentWindowGroup,TUint32 aClientHandle,TBool aIsFocusable)
  2424 /** Completes construction of a window group. 
  2425 
  2426 Construction must be complete before any other window group methods can be called.
  2427 
  2428 This Construct function of RWindowGroup allows both the creation of the group window in a chain and for and for it not to recieve focus.  
  2429 
  2430 This function always causes a flush of the window server buffer.
  2431 
  2432 @param aClientHandle The client's handle for the window. See RWindow::Construct() 
  2433 for a description of the client handle.
  2434 @param aIdOfParentWindowGroup The Identifier of the parent window group.
  2435 @return KErrNone if successful, otherwise one of the system-wide error codes, the most likely of which is KErrNoMemory. 
  2436 It will return KErrPermissionDenied if the requested parent has not allowed this window group to be its child, 
  2437 and it will return KErrInUse if the parent already has a child.
  2438 @param aIsFocusable Whether the window is focusable. Set ETrue for it to be able to receive focus, EFalse otherwise. 
  2439 @see RWindow::Construct() */
  2440 	{
  2441 	return (Construct(aIdOfParentWindowGroup,aClientHandle,aIsFocusable,NULL));
  2442 	}
  2443     
  2444 EXPORT_C void RWindowGroup::AllowProcessToCreateChildWindowGroups(TUid aProcessSID)
  2445 /** Allows a Window Group in the specified process to be be a child of this one
  2446 
  2447 This function will need to be called to allow another window group to become a child window group of this one.
  2448 
  2449 This function always causes a flush of the window server buffer.
  2450 
  2451 @param aProcessSID This is the process security Id of the process that will be allowed to make child window groups*/
  2452 	{
  2453 	WriteReplyInt(aProcessSID.iUid,EWsWinOpAllowChildWindowGroup);		//Use WriteReply to cause it to flush
  2454 	}
  2455 
  2456 EXPORT_C void RWindowGroup::EnableReceiptOfFocus(TBool aState)
  2457 /** Enables or disables receipt of keyboard focus.
  2458 
  2459 The front most focusable window has keyboard focus. This function sets whether 
  2460 or not the window can receive keyboard focus.
  2461 
  2462 @param aState Whether this window group can accept keyboard focus. */
  2463 	{
  2464 	WriteInt(aState,EWsWinOpReceiveFocus);
  2465 	}
  2466 
  2467 EXPORT_C void RWindowGroup::AutoForeground(TBool aState)
  2468 /** Sets or disables auto-foreground behaviour. 
  2469 
  2470 If this behaviour is set for a window, it will automatically be given ordinal 
  2471 position zero whenever a pointer event of type EButton1Down occurs in any 
  2472 of its child windows. This will cause it to be brought to the foreground, 
  2473 unless another window group exists with a higher priority.
  2474 
  2475 A window group that is moved to the foreground will automatically get keyboard 
  2476 focus unless it has explicitly had receipt-of-focus disabled or there is a 
  2477 focusable window group of higher priority. See EnableReceiptOfFocus().
  2478 
  2479 @param aState Whether this group should be automatically brought to the foreground 
  2480 on an EButton1Down. */
  2481 	{
  2482 	WriteInt(aState,EWsWinOpAutoForeground);
  2483 	}
  2484 
  2485 TInt32 RWindowGroup::doCaptureKey(TUint aKey, TUint aModifierMask, TUint aModifiers, TInt aPriority, TInt aOpcode)
  2486 	{
  2487 	TWsWinCmdCaptureKey captureKey;
  2488 
  2489 	captureKey.key=aKey;
  2490 	captureKey.modifiers=aModifiers;
  2491 	captureKey.modifierMask=aModifierMask;
  2492 	captureKey.priority=aPriority;
  2493 
  2494 	return(WriteReply(&captureKey,sizeof(captureKey),aOpcode));
  2495 	}
  2496 
  2497 void RWindowGroup::doCancelCaptureKey(TInt32 aCaptureKeyHandle, TInt aOpcode)
  2498 	{
  2499 	if (iWsHandle && aCaptureKeyHandle)
  2500 		WriteReplyInt(aCaptureKeyHandle,aOpcode);
  2501 	}
  2502 
  2503 EXPORT_C TInt32 RWindowGroup::CaptureKey(TUint aKeyCode, TUint aModifierMask, TUint aModifiers)
  2504 /** Requests key capture.
  2505 
  2506 This function instructs the window server to send key events (of type EEventKey) 
  2507 with the specified key code and modifier state to this window group, regardless 
  2508 of which window group currently has the keyboard focus. 
  2509 
  2510 Key events for the key given by aKeyCode are captured only when the modifier keys 
  2511 specified by aModifierMask are in the states specified by aModifier. For example, 
  2512 calling  
  2513 @code
  2514 wsGroup->CaptureKey(EKeyDevice2, EModifierAlt|EModifierCtrl, EModifierCtrl); 
  2515 @endcode
  2516 will capture the EKeyDevice2 key only if Ctrl is pressed and Alt is not.
  2517 
  2518 Normally, keyboard key presses result in three events being delivered to the client: 
  2519 EEventKeyDown, EEventKey and EEventKeyUp. However, CaptureKey() results in only 
  2520 the EEventKey being delivered to the window group that called it: the EEventKeyUp 
  2521 and EEventKeyDown events are sent to the window group that has focus. If a window 
  2522 group wishes to capture the EEventKeyUp and EEventKeyDown events as well as the 
  2523 EEventKey, it should call CaptureKeyUpAndDowns().
  2524 
  2525 Note that a window group can call this function more than once (to request capture 
  2526 for more than one key), and more than one window group may have requested key 
  2527 capture. If multiple window groups have requested to capture the same key using 
  2528 this function, the key is sent to the window group that most recently requested 
  2529 the key capture.
  2530 
  2531 This function always causes a flush of the window server buffer.
  2532 
  2533 @param aKeyCode The key code for the key to be captured. Key codes for special 
  2534 keys are defined in TKeyCode. 
  2535 @param aModifierMask Bitmask that identifies the modifier keys of interest. 
  2536 Possible values are defined in TEventModifier.
  2537 @param aModifiers Bitmask that identifies which of the modifier keys in 
  2538 aModifierMask need to be set and which need to be unset. For example, see the 
  2539 description above. 
  2540 @return A handle identifying the capture key, or one of the system-wide error 
  2541 codes (if <0). KErrPermissionDenied indicates that the requested key cannot be 
  2542 captured by this window group, because it has been protected by another window group. 
  2543 For more information, see the PROTECTEDKEY parameter in wsini.ini. 
  2544 Handles should be kept in order to be passed to CancelCaptureKey() 
  2545 later. KErrPermissionDenied, if 
  2546 @capability SwEvent */
  2547 	{
  2548 	return(doCaptureKey(aKeyCode, aModifierMask, aModifiers, 0, EWsWinOpCaptureKey));
  2549 	}
  2550 
  2551 EXPORT_C TInt32 RWindowGroup::CaptureKey(TUint aKeyCode, TUint aModifierMask, TUint aModifiers, TInt aPriority)
  2552 /** Requests key capture, with a priority.
  2553 
  2554 This function instructs the window server to send key events (of type EEventKey) 
  2555 with the specified key code and modifier state to this window group, regardless 
  2556 of which window group currently has the keyboard focus. 
  2557 
  2558 Key events for the key given by aKeyCode are captured only when the modifier keys 
  2559 specified by aModifierMask are in the states specified by aModifier. For example, 
  2560 calling  
  2561 @code
  2562 wsGroup->CaptureKey(EKeyDevice2, EModifierAlt|EModifierCtrl, EModifierCtrl, priority); 
  2563 @endcode
  2564 will capture the EKeyDevice2 key only if Ctrl is pressed and Alt is not.
  2565 
  2566 Normally, keyboard key presses result in three events being delivered to the client: 
  2567 EEventKeyDown, EEventKey and EEventKeyUp. However, CaptureKey() results in only 
  2568 the EEventKey being delivered to the window group that called it: the EEventKeyUp 
  2569 and EEventKeyDown events are sent to the window group that has focus. If a window 
  2570 group wishes to capture the EEventKeyUp and EEventKeyDown events as well as the 
  2571 EEventKey, it should call CaptureKeyUpAndDowns().
  2572 
  2573 Note that a window group can call this function more than once (to request capture 
  2574 for more than one key), and more than one window group may have requested key 
  2575 capture. If multiple window groups have requested to capture the same key at the 
  2576 same priority, the key is sent to the window group that most recently requested 
  2577 the key capture.
  2578 
  2579 This function always causes a flush of the window server buffer.
  2580 
  2581 @param aKeyCode The key code for the key to be captured. Key codes for special 
  2582 keys are defined in TKeyCode. 
  2583 @param aModifierMask Bitmask that identifies the modifier keys of interest. 
  2584 Possible values are defined in TEventModifier.
  2585 @param aModifiers Bitmask that identifies which of the modifier keys in 
  2586 aModifierMask need to be set and which need to be unset. For example, see the 
  2587 description above. 
  2588 @param aPriority A priority value - if more than one window group has requested 
  2589 capture for the same key event, the one with the highest priority will capture it.
  2590 @return A handle identifying the capture key, or one of the system-wide error 
  2591 codes (if <0). KErrPermissionDenied indicates that the requested key cannot be 
  2592 captured by this window group, because it has been protected by another window group. 
  2593 For more information, see the PROTECTEDKEY parameter in wsini.ini. Handles should be 
  2594 kept in order to be passed to CancelCaptureKey() later. 
  2595 @capability SwEvent */	{
  2596 	return(doCaptureKey(aKeyCode, aModifierMask, aModifiers, aPriority, EWsWinOpCaptureKey));
  2597 	}
  2598 
  2599 EXPORT_C void RWindowGroup::CancelCaptureKey(TInt32 aHotKey)
  2600 /** Cancels a request for key capture. 
  2601 
  2602 Use this function to cancel a request to capture a key previously made with 
  2603 CaptureKey(). If the value passed in aHotKey is not a valid capture key 
  2604 handle, this function will cause a panic.
  2605 
  2606 This function always causes a flush of the window server buffer.
  2607 
  2608 @param aHotKey The key for which the capture request is cancelled. */
  2609 	{
  2610 	doCancelCaptureKey(aHotKey, EWsWinOpCancelCaptureKey);
  2611 	}
  2612 
  2613 EXPORT_C TInt32 RWindowGroup::CaptureKeyUpAndDowns(TUint aScanCode, TUint aModifierMask, TUint aModifiers)
  2614 /** Requests the capture of key-up and key-down events on behalf of a window group.
  2615 
  2616 This function requests the window server to send EEventKeyUp and EEventKeyDown 
  2617 key events from the specified key to this window group, regardless of which 
  2618 window group currently has the keyboard focus. This contrasts with CaptureKey(), 
  2619 which causes the window server to send the EEventKey event.
  2620 
  2621 Key events for the key given by aScanCode are captured only when the modifier 
  2622 keys specified by aModifierMask are in the states specified by aModifiers. 
  2623 See RWsSession::SetHotKey() for examples of how to set aModifierMask and aModifiers.
  2624 
  2625 Note: in general, keyboard key presses result in three events being delivered to 
  2626 the client: EEventKeyDown, EEventKey and EEventKeyUp.
  2627 
  2628 This function always causes a flush of the window server buffer.
  2629 
  2630 @param aScanCode Scan code for the key to be captured. Scan codes are defined 
  2631 in TStdScanCode. 
  2632 @param aModifierMask Bitmask that identifies the modifier keys of interest. 
  2633 Possible values are defined in TEventModifier. 
  2634 @param aModifiers Bitmask that identifies which of the modifier keys in 
  2635 aModifierMask need to be set and which need to be unset. 
  2636 @return A handle identifying the capture key, or one of the system-wide error 
  2637 codes (if < 0). KErrPermissionDenied indicates that the requested key cannot be 
  2638 captured by this window group, because it has been protected by another window group. 
  2639 For more information, see the PROTECTEDKEY parameter in wsini.ini. Handles should be 
  2640 kept in order to be passed to CancelCaptureKeyUpAndDowns() later.
  2641 @capability SwEvent */
  2642 	{
  2643 	return(doCaptureKey(aScanCode, aModifierMask, aModifiers, 0, EWsWinOpCaptureKeyUpsAndDowns));
  2644 	}
  2645 
  2646 EXPORT_C TInt32 RWindowGroup::CaptureKeyUpAndDowns(TUint aScanCode, TUint aModifierMask, TUint aModifiers, TInt aPriority)
  2647 /** Requests the capture of key-up and key-down events on behalf of a window group.
  2648 This function is identical to the other overload, except that it allows a priority to be specified.
  2649 This function always causes a flush of the window server buffer.
  2650 @param aScanCode Scan code for the key to be captured. Scan codes are defined 
  2651 in TStdScanCode. 
  2652 @param aModifierMask Bitmask that identifies the modifier keys of interest. 
  2653 Possible values are defined in TEventModifier. 
  2654 @param aModifiers Bitmask that identifies which of the modifier keys in 
  2655 aModifierMask need to be set and which need to be unset. 
  2656 @param aPriority A priority value - if more than one window group has requested 
  2657 capture for the same key event, the one with the highest priority will capture it.
  2658 @return A handle identifying the capture key, or one of the system-wide error 
  2659 codes (if < 0). KErrPermissionDenied indicates that the requested key cannot be captured by this 
  2660 window group, because it has been protected by another window group. For more information, see 
  2661 the PROTECTEDKEY parameter in wsini.ini. Handles should be kept in order to be passed to 
  2662 CancelCaptureKeyUpAndDowns() later.
  2663 @capability SwEvent */
  2664 	{
  2665 	return(doCaptureKey(aScanCode, aModifierMask, aModifiers, aPriority, EWsWinOpCaptureKeyUpsAndDowns));
  2666 	}
  2667 
  2668 EXPORT_C void RWindowGroup::CancelCaptureKeyUpAndDowns(TInt32 aHotKey)
  2669 /** Cancels a capture request for a key up or key down event. 
  2670 
  2671 Use this function to cancel a request to capture a key, previously made with 
  2672 CaptureKeyUpAndDowns(). If the value passed in aHotKey is not a valid 
  2673 capture key handle, this function will cause a panic.
  2674 
  2675 This function always causes a flush of the window server buffer.
  2676 
  2677 @param aHotKey Cancels the request to capture this key. */
  2678 	{
  2679 	doCancelCaptureKey(aHotKey, EWsWinOpCancelCaptureKeyUpsAndDowns);
  2680 	}
  2681 
  2682 EXPORT_C TInt32 RWindowGroup::CaptureLongKey(TUint aInputKeyCode,TUint aOutputKeyCode,TUint aModifierMask,TUint aModifiers
  2683 																											,TInt aPriority,TUint aFlags)
  2684 /** Requests capture of long key presses.
  2685 
  2686 This function causes the window server to send a long key event (which 
  2687 is generated when the key has been held down for the initial keyboard 
  2688 repeat time), to this window group, regardless of whether it currently has 
  2689 keyboard focus. The key that is output can have a different key code to the 
  2690 key that was captured.
  2691 
  2692 Key events for the key given by aInputKeyCode are captured only when the modifier 
  2693 keys specified by aModifierMask are in the states specified by aModifiers.
  2694 
  2695 A priority can be specified to resolve any conflicts that arise when multiple 
  2696 window groups attempt to capture the same long key event.
  2697 
  2698 Normal key press behaviour (where no long key press capture requests have been 
  2699 made) is as follows. When a key is pressed, a key down event occurs, followed by 
  2700 one or more standard (short) key events, followed by a key up event. All of 
  2701 these key events are sent to the application in the foreground.
  2702 
  2703 Key press behaviour when an application has made a long key press capture request 
  2704 is as follows. When the key is pressed and held down, a long key event is generated 
  2705 in addition to the events described above (although if a long key event occurs, 
  2706 then there will never be more than one standard key event) and this is sent to the 
  2707 application that made the request, even if it is not in the foreground. 
  2708 
  2709 If that application also wants to capture the up and down key events then it needs to call 
  2710 CaptureKeyUpAndDowns(). If it wants to capture the standard key event, then it needs to 
  2711 call CaptureKey(). Depending on flags (enumerated in TLongCaptureFlags) specified when making 
  2712 the long key capture request, the standard key event can either be generated when the key is 
  2713 pressed, as it would be if no long key capture request had been made, or it can be generated 
  2714 when the key is released. In the latter case, the standard key event is only generated if the 
  2715 key was not held down long enough to generate a long key event.
  2716 
  2717 This function always causes a flush of the window server buffer.
  2718 
  2719 @param aInputKeyCode The key code for the key to be captured. Key codes for 
  2720 special keys are defined in TKeyCode.
  2721 @param aOutputKeyCode The key code that will be output.
  2722 @param aModifierMask Only the modifier keys in this mask are tested against 
  2723 the states specified in aModifier.
  2724 @param aModifiers The key is captured only when the modifier keys specified 
  2725 in aModifierMask match these states, where 1 = modifier set, and 0 = modifier 
  2726 not set. Modifier key states are defined in TEventModifier. 
  2727 @param aPriority If more than one window group has requested capture for the 
  2728 same long key event, the one with the highest priority will capture the event.
  2729 @param aFlags Configures the long key capture behaviour. See the TLongCaptureFlags 
  2730 enum.
  2731 @return Identifying value for the long key capture. For use with the CancelCaptureLongKey() 
  2732 function.
  2733 @see TLongCaptureFlags 
  2734 @capability SwEvent */
  2735 	{
  2736 	return(CaptureLongKey(TTimeIntervalMicroSeconds32(-1),aInputKeyCode,aOutputKeyCode,aModifierMask,aModifiers,aPriority,aFlags));
  2737 	}
  2738 
  2739 EXPORT_C TInt32 RWindowGroup::CaptureLongKey(TTimeIntervalMicroSeconds32 aRepeatTime,TUint aInputKeyCode,TUint aOutputKeyCode
  2740 																	,TUint aModifierMask,TUint aModifiers,TInt aPriority,TUint aFlags)
  2741 /** Requests capture of long key presses.
  2742 
  2743 This function causes the window server to send a long key event (which 
  2744 is generated when the key has been held down for the specified time), 
  2745 to this window group, regardless of whether it currently has 
  2746 keyboard focus.
  2747 
  2748 For more information on this function, see the other CaptureLongKey() overload.
  2749 
  2750 This function always causes a flush of the window server buffer.
  2751 
  2752 @param aRepeatTime The time interval in microseconds between the initial 
  2753 key event and the first auto repeat.
  2754 @param aInputKeyCode The key code for the key to be captured. Key codes for 
  2755 special keys are defined in TKeyCode.
  2756 @param aOutputKeyCode The key code that will be output.
  2757 @param aModifierMask Only the modifier keys in this mask are tested against 
  2758 the states specified in aModifier.
  2759 @param aModifiers The key is captured only when the modifier keys specified 
  2760 in aModifierMask match these states, where 1 = modifier set, and 0 = modifier 
  2761 not set. Modifier key states are defined in TEventModifier. 
  2762 @param aPriority If more than one window group has requested capture for the 
  2763 same long key event, the one with the highest priority will capture the event.
  2764 @param aFlags Configures the long key capture behaviour. See the TLongCaptureFlags 
  2765 enum.
  2766 @return Identifying value for the long key capture. For use with the CancelCaptureLongKey() 
  2767 function.
  2768 @see TLongCaptureFlags
  2769 @capability SwEvent */
  2770 	{
  2771 	TWsWinCmdCaptureLongKey captureKey(aModifiers,aModifierMask,aInputKeyCode,aOutputKeyCode,aRepeatTime,aPriority,aFlags);
  2772 	return(WriteReply(&captureKey,sizeof(captureKey),EWsWinOpCaptureLongKey));
  2773 	}
  2774 
  2775 EXPORT_C void RWindowGroup::CancelCaptureLongKey(TInt32 aCaptureKey)
  2776 /** Cancels a previous long key capture request.
  2777 
  2778 This function always causes a flush of the window server buffer.
  2779 
  2780 @param aCaptureKey The value returned by the previous call to CaptureLongKey(). 
  2781 Identifies which long key capture request to cancel. */
  2782 	{
  2783 	doCancelCaptureKey(aCaptureKey, EWsWinOpCancelCaptureLongKey);
  2784 	}
  2785 
  2786 EXPORT_C TInt RWindowGroup::AddPriorityKey(TUint aKeycode, TUint aModifierMask, TUint aModifiers)
  2787 /** Adds a priority key. 
  2788 
  2789 Priority key events are typically used for providing "Abort" or "Escape" keys 
  2790 for an application. For priority key events to occur they must first be configured 
  2791 using this function. Functions provided by RWsSession can then be used to 
  2792 get priority key events. Note that unlike other events, the Control Framework 
  2793 does not get priority key events for you.
  2794 
  2795 Priority key events for the key given by aKeyCode are only delivered when 
  2796 the modifier keys specified by aModifierMask are in the states specified by 
  2797 aModifiers. See RWsSession::SetHotKey() for examples of how to use aModifierMask 
  2798 and aModifiers.
  2799 
  2800 More than one priority key can be added for each keycode, each having a different 
  2801 set of modifier requirements.
  2802 
  2803 Note: if you press a priority key while another is waiting to be sent to the client 
  2804 then the first key is lost.
  2805 
  2806 This function always causes a flush of the window server buffer.
  2807 
  2808 @param aKeycode The priority key to be added. 
  2809 @param aModifierMask Only the modifier keys in this mask are tested against 
  2810 the states specified in aModifiers. 
  2811 @param aModifiers Key is captured only when modifier keys specified in aModifierMask 
  2812 match these states, where 1 = modifier key on, and 0 = modifier key off. Modifier 
  2813 key states are defined in TEventModifier. 
  2814 @return KErrNone if successful, otherwise one of the system-wide error codes. */
  2815 	{
  2816 	TWsWinCmdPriorityKey priorityKey;
  2817 
  2818 	priorityKey.keycode=aKeycode;
  2819 	priorityKey.modifiers=aModifiers;
  2820 	priorityKey.modifierMask=aModifierMask;
  2821 	return(WriteReply(&priorityKey,sizeof(priorityKey),EWsWinOpAddPriorityKey));
  2822 	}
  2823 
  2824 EXPORT_C void RWindowGroup::RemovePriorityKey(TUint aKeycode, TUint aModifierMask, TUint aModifier)
  2825 /** Removes a priority key. 
  2826 
  2827 Use this function to remove a priority key that was added using AddPriorityKey(). 
  2828 If the specified priority key does not exist, this function does nothing.
  2829 
  2830 Note: all 3 parameters must match exactly for a successful removal.
  2831 
  2832 @param aKeycode Key code for the priority key to be removed 
  2833 @param aModifierMask Modifier mask for the priority key to be removed 
  2834 @param aModifier Modifier states for the priority key to be removed */
  2835 	{
  2836 	if (iWsHandle)
  2837 		{
  2838 		TWsWinCmdPriorityKey priorityKey;
  2839 
  2840 		priorityKey.keycode=aKeycode;
  2841 		priorityKey.modifiers=aModifier;
  2842 		priorityKey.modifierMask=aModifierMask;
  2843 		Write(&priorityKey,sizeof(priorityKey),EWsWinOpRemovePriorityKey);
  2844 		}
  2845 	}
  2846 
  2847 EXPORT_C void RWindowGroup::SetTextCursor(RWindowBase &aWin, const TPoint &aPos, const TTextCursor &aCursor, const TRect &aClipRect)
  2848 /** Sets the text cursor and its clipping rectangle. 
  2849 
  2850 Use this function to set a text cursor for this window group, or to change 
  2851 the existing text cursor's position or appearance.
  2852 
  2853 The cursor is clipped to aClipRect. This allows, for example, the window 
  2854 to have a border region in which the cursor is not displayed.
  2855 
  2856 @param aWin The text cursor is in this window, and is hence clipped to it 
  2857 and positioned relative to it. 
  2858 @param aPos Position of the text cursor's origin, relative to the origin of 
  2859 aWin. 
  2860 @param aCursor The cursor to set. This may be a standard rectangular cursor, 
  2861 of type TTextCursor::ETypeRectangle or TTextCursor::ETypeHollowRectangle, 
  2862 or it may be a custom cursor, in which case it should have previously been 
  2863 added to the window server using RWsSession::SetCustomTextCursor().
  2864 @param aClipRect The cursor is clipped to this rectangle. Rectangle co-ordinates 
  2865 are relative to the origin of aWin. */
  2866 	{
  2867 	TWsWinCmdSetTextCursor SetTextCursor(aWin.WsHandle(),aPos,aCursor,aClipRect);
  2868 	Write(&SetTextCursor,sizeof(SetTextCursor),EWsWinOpSetTextCursorClipped);
  2869 	}
  2870 
  2871 EXPORT_C void RWindowGroup::SetTextCursor(RWindowBase &aWin, const TPoint &aPos, const TTextCursor &aCursor)
  2872 /** Sets the text cursor.
  2873 
  2874 Use this function to set a text cursor for this window group, or to change 
  2875 the existing text cursor's position or appearance.
  2876 
  2877 @param aWin The text cursor is in this window, and is hence clipped to it 
  2878 and positioned relative to it.
  2879 @param aPos Position of the text cursor's origin, relative to the origin of 
  2880 aWin.
  2881 @param aCursor The cursor to set. This may be a standard rectangular cursor, 
  2882 of type TTextCursor::ETypeRectangle or TTextCursor::ETypeHollowRectangle, 
  2883 or it may be a custom cursor, in which case it should have previously been 
  2884 added to the window server using RWsSession::SetCustomTextCursor(). */
  2885 	{
  2886 	TWsWinCmdSetTextCursor SetTextCursor(aWin.WsHandle(),aPos,aCursor);
  2887 	Write(&SetTextCursor,sizeof(SetTextCursor),EWsWinOpSetTextCursor);
  2888 	}
  2889 
  2890 EXPORT_C void RWindowGroup::CancelTextCursor()
  2891 /** Removes the text cursor. 
  2892 
  2893 Use this function to remove the current text cursor from this window group. 
  2894 This function does nothing if the cursor is currently in another window group. */
  2895 	{
  2896 	if (iWsHandle)
  2897 		Write(EWsWinOpCancelTextCursor);
  2898 	}
  2899 
  2900 EXPORT_C TInt RWindowGroup::SetName(const TDesC &aName)
  2901 /** Sets the window group's name. 
  2902 
  2903 Use this function to set the name of a window group. Window group names are 
  2904 arbitrary and can contain any data that can be stored in a descriptor 
  2905 of type TDesC.
  2906 
  2907 Note: if this function is successful, a window group change event is sent to everything 
  2908 that is set up to receive these events.
  2909 
  2910 This function always causes a flush of the window server buffer.
  2911 
  2912 @param aName The name for the window group. 
  2913 @return KErrNone if successful, otherwise one of the system-wide error codes. */
  2914 	{
  2915 	const TInt nameLength=aName.Length();
  2916 	return WriteReplyByProvidingRemoteReadAccess(&nameLength,sizeof(TInt),&aName,EWsWinOpSetName);
  2917 	}
  2918 
  2919 EXPORT_C TInt RWindowGroup::Name(TDes &aWindowName) const
  2920 /** Gets the window group's name, as set by SetName().
  2921 
  2922 This function always causes a flush of the window server buffer.
  2923 
  2924 @param aWindowName On return, contains the name of this window group. 
  2925 @return KErrNone if successful, otherwise one of the system-wide error codes. */
  2926 	{
  2927 	return(WriteReplyIntP(aWindowName.MaxLength(),&aWindowName,EWsWinOpName));
  2928 	}
  2929 
  2930 EXPORT_C void RWindowGroup::SetOwningWindowGroup(TInt aIdentifier)
  2931 /** Sets the owning window group for this window group.
  2932 
  2933 The owning window group is the group that is brought to the foreground when 
  2934 the window group which has keyboard focus (the foreground application) dies.
  2935 
  2936 If the owning window group is not set, then the window group brought to the 
  2937 foreground when the application dies will be the default owning window group.
  2938 
  2939 @param aIdentifier The window group's identifier. */
  2940 	{
  2941 	WriteInt(aIdentifier,EWsWinOpSetOwningWindowGroup);
  2942 	}
  2943 
  2944 EXPORT_C void RWindowGroup::DefaultOwningWindow()
  2945 /** 
  2946 @publishedPartner
  2947 @released
  2948 
  2949 Makes this window group the default owning window group.
  2950 
  2951 The default owning window group is the group that is brought to the foreground 
  2952 when the window group which has keyboard focus (the foreground application) 
  2953 dies, if no other window has been set up as the owning group.
  2954 
  2955 This window group will take over as the default owning window group even if 
  2956 another window group has previously called this function. However, if this 
  2957 window group is subsequently destroyed, the default owning window group will 
  2958 revert to being the previous window group.
  2959 
  2960 @see SetOwningWindowGroup() 
  2961 @capability WriteDeviceData */
  2962 	{
  2963 	Write(EWsWinOpDefaultOwningWindow);
  2964 	}
  2965 
  2966 EXPORT_C TInt RWindowGroup::Identifier() const
  2967 /** Gets the identifier of the window group.
  2968 
  2969 This function always causes a flush of the window server buffer.
  2970 
  2971 @return The window group identifier. */
  2972 	{
  2973 	return(WriteReply(EWsWinOpIdentifier));
  2974 	}
  2975 
  2976 EXPORT_C void RWindowGroup::DisableKeyClick(TBool aState)
  2977 /** Disables key clicks.
  2978 
  2979 If a window group calls this function with aState=ETrue, key clicks (i.e. 
  2980 the sound generated when keys are pressed) will be disabled whenever this 
  2981 window group has the keyboard focus. Key clicks for this window group can be 
  2982 re-enabled by calling this function with aState=EFalse. 
  2983 
  2984 Note that this function doesn't do anything in v6.0 and v6.1.
  2985 
  2986 @param aState If ETrue, no key clicks occur when this window group has keyboard focus. 
  2987 If EFalse, key clicks are enabled when this window group has keyboard focus. */
  2988 	{
  2989 	WriteInt(aState,EWsWinOpDisableKeyClick);
  2990 	}
  2991 
  2992 EXPORT_C TInt RWindowGroup::EnableScreenChangeEvents()
  2993 /** Enables screen change event sending.
  2994 
  2995 This function ensures that window groups are sent screen change events, which 
  2996 are sent, for example, when the cover on a phone that supports screen flipping 
  2997 is opened or closed.
  2998 
  2999 Note that not getting screen change events is the default behaviour.
  3000 
  3001 This function always causes a flush of the window server buffer.
  3002 
  3003 @return KErrNone if successful, otherwise another of the system-wide error 
  3004 codes. 
  3005 @see DisableScreenChangeEvents() */
  3006 	{
  3007 	return(WriteReply(EWsWinOpEnableScreenChangeEvents));
  3008 	}
  3009 
  3010 EXPORT_C void RWindowGroup::DisableScreenChangeEvents()
  3011 /** Disables screen change event sending.
  3012 
  3013 This function prevents window groups from getting screen change events, which 
  3014 are sent, for example, when the cover on a phone that supports screen flipping is 
  3015 opened or closed.
  3016 
  3017 Note that not getting screen change events is the default behaviour.
  3018 
  3019 See EnableScreenChangeEvents(). */
  3020 	{
  3021 	if (iWsHandle)
  3022 		Write(EWsWinOpDisableScreenChangeEvents);
  3023 	}
  3024 
  3025 EXPORT_C void RWindowGroup::SimulatePointerEvent(TRawEvent aEvent)
  3026 /** Simulates a pointer event.
  3027 
  3028 This function sends a pointer event to the window as if it had come 
  3029 from the kernel, except that it will be sent to a window which is a child 
  3030 of the window group it is called on. 
  3031 
  3032 Notes:
  3033 
  3034 The function can be used to send a pointer event to an application when 
  3035 it is in the background.
  3036 
  3037 The function is supported for testing purposes only.
  3038 
  3039 @param aEvent The simulated raw event. */
  3040 	{
  3041 	Write(&aEvent,sizeof(aEvent),EWsWinOpSendPointerEvent);
  3042 	}
  3043 
  3044 EXPORT_C void RWindowGroup::SimulateAdvancedPointerEvent(TRawEvent /*aEvent*/)
  3045 /** Dummy implementation in order to preserve compatibility with WSERV NGA.
  3046     @internalComponent */ 
  3047 	{
  3048 	ASSERT(0);
  3049 	}
  3050 
  3051 EXPORT_C TInt RWindowGroup::ClearChildGroup()
  3052 /** Clears all children of the current window group.
  3053 
  3054 The window group chain is broken directly after the current window group. In the 
  3055 general case (consider clearing the child group of a window group in the middle of a 
  3056 long chain), this results in two distinct chains. In the special cases where either
  3057 the parent window group or the child window group ends up as the only member of a 
  3058 resultant chain, it is removed from that chain.
  3059 
  3060 @return KErrArgument if trying to clear the child window group of a window group that
  3061 has no children; KErrNoMemory if, when splitting into 2 chains, there is insufficient
  3062 memory to create the second chain (in this case the child window groups are all cleared
  3063 from the current chain, then the error is returned). Otherwise KErrNone or one of the 
  3064 system-wide error codes.
  3065 
  3066 @see SetChildGroup() */
  3067 	{
  3068 	return WriteReply(EWsWinOpClearChildGroup);
  3069 	}
  3070 	
  3071 EXPORT_C TInt RWindowGroup::SetChildGroup(TInt aId)
  3072 /** Sets a window group chain onto the current window group.
  3073 
  3074 Appends all the window groups chained to the child window group onto the chain
  3075 containing the current window group. 
  3076 
  3077 @param aId. ID of the child window group that is head of the chain
  3078 
  3079 @return KErrArgument if any of these are true:
  3080 - child group referred to by aId does not exist
  3081 - the current window group already has a child 
  3082 - the window group requested to be the child is already a child of another window group
  3083 - the window group requested to the child is already the parent or grand parent etc. of the current window group
  3084 KErrNoMemory: If the group and it's child are not currently in a chain then a new chain needs to be created
  3085 which can fail due to lack of memory;
  3086 otherwise one of the system-wide error codes is returned.
  3087 
  3088 @see ClearChildGroup() */
  3089 	{
  3090 	return WriteReplyInt(aId,EWsWinOpSetChildGroup);
  3091 	}
  3092 
  3093 //
  3094 // Backed up window
  3095 //
  3096 
  3097 EXPORT_C TInt RBackedUpWindow::Construct(const RWindowTreeNode &parent, TDisplayMode aDisplayMode, TUint32 aClientHandle)
  3098 /** Completes the construction of a backed up window. 
  3099 
  3100 This method should be called after the RBackedUpWindow(RWsSession&) constructor, 
  3101 and before any other functions are performed on the window. It creates a window 
  3102 in the window server corresponding to the RBackedUpWindow object, and allocates 
  3103 a bitmap with which to perform the window backup.
  3104 
  3105 Unlike non backed up windows, the size of a backed up window is not inherited 
  3106 from its parent. The window will be created with an initial size of zero, 
  3107 but this can be altered. The display mode must be specified because it determines 
  3108 the amount of memory required to store the backup bitmap.
  3109 
  3110 This function always causes a flush of the window server buffer.
  3111 
  3112 @param parent The window's parent. 
  3113 @param aDisplayMode The display mode for the window. 
  3114 @param aClientHandle The client's handle for the window. See RWindow::Construct() 
  3115 for a description of the client handle.
  3116 @return KErrNone if successful, otherwise one of the system-wide error codes, the 
  3117 most likely of which is KErrNoMemory. 
  3118 @see RWindowBase::SetSizeErr()
  3119 @see RWindowBase::SetExtentErr() 
  3120 @see RWindow::Construct() */
  3121 	{
  3122 	return(construct(parent,aClientHandle,EWinBackedUp,aDisplayMode));
  3123 	}
  3124 
  3125 EXPORT_C TInt RBackedUpWindow::BitmapHandle() const
  3126 /** Gets a handle to the backup bitmap. 
  3127 
  3128 This handle can then be passed to CFbsBitmap::Duplicate() to gain access 
  3129 to the bitmap. Once the bitmap has been obtained, it can be drawn to or read 
  3130 from by the application.
  3131 
  3132 Notes: in most circumstances this function should be used only after MaintainBackup() 
  3133 has been called. Otherwise, the content of the backup bitmap will be unpredictable.
  3134 
  3135 This function always causes a flush of the window server buffer.
  3136 
  3137 @return The handle of the backup bitmap. */
  3138 	{
  3139 	return(WriteReply(EWsWinOpBitmapHandle));
  3140 	}
  3141 
  3142 EXPORT_C void RBackedUpWindow::UpdateScreen(const TRegion &aRegion)
  3143 /** Copies a part of the backup bitmap to the on-screen bitmap. 
  3144 
  3145 This function behaves in the same way as UpdateScreen(), but copies only the 
  3146 specified region of the backup bitmap to the window on screen.
  3147 
  3148 This function always causes a flush of the window server buffer.
  3149 
  3150 @param aRegion Area of the backup bitmap to copy. */
  3151 	{
  3152 	const TInt regionCount=aRegion.Count();
  3153 	TPtrC8 ptrRect(reinterpret_cast<const TUint8*>(aRegion.RectangleList()),regionCount*sizeof(TRect));
  3154 	WriteReplyByProvidingRemoteReadAccess(&regionCount,sizeof(regionCount),&ptrRect,EWsWinOpUpdateScreenRegion);
  3155 	}
  3156 
  3157 EXPORT_C void RBackedUpWindow::UpdateScreen()
  3158 /** Copies the backup bitmap's image to the on-screen bitmap. 
  3159 
  3160 This function should be used if the application draws directly to the backup 
  3161 bitmap. Any changes made to the backup bitmap will not be reflected on the 
  3162 screen until this function is called. */
  3163 	{
  3164 	Write(EWsWinOpUpdateScreen);
  3165 	}
  3166 
  3167 EXPORT_C void RBackedUpWindow::UpdateBackupBitmap()
  3168 /** Copies to the backup bitmap any areas of the window which are not currently 
  3169 stored in the bitmap.
  3170 
  3171 This method does not need to be called if the server has not been instructed 
  3172 to maintain the backup buffer constantly
  3173 
  3174 @see MaintainBackup() */
  3175 	{
  3176 	Write(EWsWinOpUpdateBackupBitmap);
  3177 	}
  3178 
  3179 EXPORT_C void RBackedUpWindow::MaintainBackup()
  3180 /** Tells the window server to start maintaining a backup bitmap with the entire 
  3181 window contents. 
  3182 
  3183 By default, the window only backs up the non-visible and shadowed part of the 
  3184 window. Calling this function makes drawing to the window much faster.
  3185 
  3186 Once this function has been called, it cannot be reversed. */
  3187 	{
  3188 	Write(EWsWinOpMaintainBackup);
  3189 	}
  3190 
  3191 //
  3192 // Blank window
  3193 //
  3194 
  3195 EXPORT_C TInt RBlankWindow::Construct(const RWindowTreeNode &parent, TUint32 aClientHandle)
  3196 /** Completes the construction of a valid blank-window handle. 
  3197 
  3198 This function should be called after the RBlankWindow(RWsSession&) constructor, 
  3199 and before any other functions are performed on the window. It creates a window 
  3200 in the window server corresponding to the RBlankWindow object. The window 
  3201 is initialised to inherit the size and extent of its parent window, or to be full 
  3202 screen if its parent is a group window.
  3203 
  3204 This function always causes a flush of the window server buffer.
  3205 
  3206 @param parent The window's parent. 
  3207 @param aClientHandle Client handle for the window. See RWindow::Construct() for a 
  3208 description of the client handle. 
  3209 @return KErrNone if successful, otherwise one of the system-wide error codes, 
  3210 the most likely of which is KErrNoMemory.
  3211 @see TWsEvent::Handle()
  3212 @see TWsPriorityKeyEvent::Handle() 
  3213 @see RWindow::Construct() */
  3214 	{
  3215 	return(construct(parent,aClientHandle,EWinBlank,ENone));
  3216 	}
  3217 
  3218 EXPORT_C void RBlankWindow::SetColor(TRgb aColor)
  3219 /** Sets the colour of the blank window.
  3220 
  3221 @param aColor Colour for the window. */
  3222 	{
  3223 	WriteInt(aColor.Internal(),EWsWinOpSetColor);
  3224 	}
  3225 
  3226 EXPORT_C void RBlankWindow::SetColor()
  3227 /** Sets the background colour used for clearing when the window becomes uncovered 
  3228 or visible to none. 
  3229 
  3230 The window content will be left with whatever happened to be on the screen at the time. */
  3231 	{
  3232 	Write(EWsWinOpSetNoBackgroundColor);
  3233 	}
  3234 
  3235 EXPORT_C void RBlankWindow::SetSize(const TSize &aSize)
  3236 /** Sets the size of the blank window.
  3237 
  3238 @param aSize Size. */
  3239 	{
  3240 	WriteSize(aSize,EWsWinOpSetSize);
  3241 	}
  3242 
  3243 EXPORT_C void RBlankWindow::SetExtent(const TPoint &pos,const TSize &size)
  3244 /** Sets the extent of the blank window.
  3245 
  3246 @param pos The position of the window's origin, relative to its parent. 
  3247 @param size Size for the window. */
  3248 	{
  3249 	Write(&pos,sizeof(pos),&size,sizeof(size),EWsWinOpSetExtent);
  3250 	}