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