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