os/graphics/windowing/windowserver/inc/Graphics/openwfc/surfaceconfiguration.inl
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 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
// Sets all members to default values. Initializes the size field to match the object size.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
/**
sl@0
    18
@file
sl@0
    19
@publishedpartner 
sl@0
    20
@released
sl@0
    21
*/
sl@0
    22
sl@0
    23
inline TSurfaceConfiguration::TSurfaceConfiguration()
sl@0
    24
	{}
sl@0
    25
sl@0
    26
/**
sl@0
    27
Copy constructor. This constructor will read the size field of the source and target 
sl@0
    28
objects and only copy the minimum set of fields indicated. Any remaining fields in the target 
sl@0
    29
object will be set to default values. 
sl@0
    30
sl@0
    31
@param aSurfaceConfiguration Config to copy
sl@0
    32
*/
sl@0
    33
inline TSurfaceConfiguration::TSurfaceConfiguration(const TSurfaceConfiguration& aSurfaceConfiguration):
sl@0
    34
	TSurfaceConfiguration2(0)
sl@0
    35
	{
sl@0
    36
	TInt tempSize = aSurfaceConfiguration.Size();
sl@0
    37
	if (tempSize > sizeof(*this))
sl@0
    38
		{
sl@0
    39
		tempSize = sizeof(*this);
sl@0
    40
		}
sl@0
    41
	Mem::Copy(this, &aSurfaceConfiguration, tempSize);
sl@0
    42
	iSize = tempSize;
sl@0
    43
	}
sl@0
    44
sl@0
    45
/**
sl@0
    46
This constructor will take any value, but it is designed to be used with
sl@0
    47
a value returned by RWsSession::PreferredSurfaceConfigurationSize, 
sl@0
    48
and initializes the members to represent an object compatible with that.
sl@0
    49
sl@0
    50
If the aPreferredMaxSize is larger than the actual size of TSurfaceConfiguration, indicating 
sl@0
    51
that the server supports a newer version of the interface than the caller is aware of, then 
sl@0
    52
the actual size is used.
sl@0
    53
sl@0
    54
If the aPreferredMaxSize is smaller than the actual size of TSurfaceConfiguration, indicating 
sl@0
    55
that the server supports an earlier version of the interface, then this value is used. It must 
sl@0
    56
match the Size() member of one of the defined hierarchy of TSurfaceConfiguration classes.
sl@0
    57
sl@0
    58
@param aPreferredMaxSize User defined max size
sl@0
    59
@see RWsSession::PreferredSurfaceConfigurationSize
sl@0
    60
*/
sl@0
    61
inline TSurfaceConfiguration::TSurfaceConfiguration(TInt aPreferredMaxSize):
sl@0
    62
	TSurfaceConfiguration2(sizeof(*this))
sl@0
    63
	{
sl@0
    64
	if (sizeof(*this) > aPreferredMaxSize)
sl@0
    65
		{
sl@0
    66
		iSize = aPreferredMaxSize;
sl@0
    67
		}
sl@0
    68
	}
sl@0
    69
sl@0
    70
/** Default constructor for configuration 1
sl@0
    71
*/
sl@0
    72
inline TSurfaceConfiguration1::TSurfaceConfiguration1():TSurfaceConfigurationSize(sizeof(*this))
sl@0
    73
		,iExtent(TRect::EUninitialized), iViewport(TRect::EUninitialized)
sl@0
    74
	{}
sl@0
    75
sl@0
    76
/**
sl@0
    77
Constructor for configuration 1 passing through a size already calculated
sl@0
    78
sl@0
    79
@param aSize Size of the class already calculated and being passed up through the classes
sl@0
    80
*/
sl@0
    81
inline TSurfaceConfiguration1::TSurfaceConfiguration1(TInt aSize):TSurfaceConfigurationSize(aSize)
sl@0
    82
		,iExtent(TRect::EUninitialized), iViewport(TRect::EUninitialized)
sl@0
    83
	{}
sl@0
    84
sl@0
    85
/**
sl@0
    86
The method sets the surface ID to be set as the background surface. 
sl@0
    87
sl@0
    88
The default initial value held in this class for surface ID is the null surface ID.
sl@0
    89
sl@0
    90
Note that SetBackgroundSurface() will not accept a null surface ID, so this parameter must always be set.
sl@0
    91
sl@0
    92
@param aSurfaceId Surface ID to set
sl@0
    93
@return KErrNone on success or a system-wide error code
sl@0
    94
	- KErrNotSupported if not supported.
sl@0
    95
@post The Surface Id values are updated in the object of this class if supported. The 
sl@0
    96
SetBackgroundSurface API must be called passing object of this class as parameter to 
sl@0
    97
get the desired effect.
sl@0
    98
*/
sl@0
    99
inline TInt TSurfaceConfiguration1::SetSurfaceId (const TSurfaceId& aSurfaceId)
sl@0
   100
	{
sl@0
   101
	if (MemberAccessible(iSurfaceId))
sl@0
   102
		{
sl@0
   103
		iSurfaceId = aSurfaceId;
sl@0
   104
		return KErrNone;
sl@0
   105
		}	
sl@0
   106
	return KErrNotSupported;
sl@0
   107
	}
sl@0
   108
sl@0
   109
/**
sl@0
   110
The method gets the surface ID stored in the object of this class.
sl@0
   111
sl@0
   112
@param aSurfaceId User surface id to be set
sl@0
   113
@post The aSurface parameter is filled in.
sl@0
   114
@post If the instance of TSurfaceConfiguration is too small, the null surface ID will be set.
sl@0
   115
*/
sl@0
   116
inline void TSurfaceConfiguration1::GetSurfaceId (TSurfaceId& aSurfaceId) const
sl@0
   117
	{
sl@0
   118
	if (MemberAccessible(iSurfaceId))
sl@0
   119
		{
sl@0
   120
		aSurfaceId = iSurfaceId;
sl@0
   121
		}
sl@0
   122
	else
sl@0
   123
		{
sl@0
   124
		aSurfaceId.CreateNullId();
sl@0
   125
		}
sl@0
   126
	}
sl@0
   127
sl@0
   128
/**
sl@0
   129
The method sets the area of the surface that should be mapped to the specified window area. 
sl@0
   130
The viewport is in surface coordinates.
sl@0
   131
sl@0
   132
In SetBackgroundSurface(), if not set or if the set viewport is empty, the size of the whole surface 
sl@0
   133
is used as the viewport. If the surface is changed then the viewport will track the size of 
sl@0
   134
the surface. 
sl@0
   135
sl@0
   136
Setting any ordinate of the viewport outside the surface size is not required specified behavior for 
sl@0
   137
this interface. The call will not fail if any ordinates are out of range, and the internal NGA Composition 
sl@0
   138
handling of this case will produce a representative image. This current behavior is that the NGA Composition 
sl@0
   139
will clamp any out-of-range ordinate to the size of the surface.
sl@0
   140
sl@0
   141
@param aViewport A rectangle of the area, in relative coordinates to the surface
sl@0
   142
@return KErrNone on success or a system-wide error code
sl@0
   143
	- KErrNotSupported if not supported.
sl@0
   144
@post The viewport values are updated in the object of this class. This does not imply that the 
sl@0
   145
viewport is set for the surface. The SetBackgroundSurface API must be called passing an object of 
sl@0
   146
this class as parameter to get the desired effect.
sl@0
   147
*/
sl@0
   148
inline TInt TSurfaceConfiguration1::SetViewport (const TRect& aViewport)
sl@0
   149
	{
sl@0
   150
	if (MemberAccessible(iViewport))
sl@0
   151
		{
sl@0
   152
		iViewport = aViewport;
sl@0
   153
		return KErrNone;
sl@0
   154
		}
sl@0
   155
	return KErrNotSupported;
sl@0
   156
	}
sl@0
   157
sl@0
   158
/**
sl@0
   159
This method gets the viewport stored in the object of this class. The viewport is in surface 
sl@0
   160
coordinates.
sl@0
   161
sl@0
   162
If viewport was not set or an empty viewport was set, the value returned is an empty viewport. This 
sl@0
   163
is an indication that the viewport used by the server is equal to the size of the surface. The 
sl@0
   164
actual size of the surface is not returned.
sl@0
   165
sl@0
   166
@param aViewport User viewport to be set.
sl@0
   167
@post The aViewport rectangle is filled in.
sl@0
   168
@post If the instance of TSurfaceConfiguration is too small, the empty viewport rectangle will be returned.
sl@0
   169
*/
sl@0
   170
inline void TSurfaceConfiguration1::GetViewport (TRect& aViewport) const
sl@0
   171
	{
sl@0
   172
	if (MemberAccessible(iViewport))
sl@0
   173
		{
sl@0
   174
		aViewport = iViewport;
sl@0
   175
		}
sl@0
   176
	else
sl@0
   177
		{
sl@0
   178
		aViewport = TRect();
sl@0
   179
		}
sl@0
   180
	}
sl@0
   181
sl@0
   182
/**
sl@0
   183
This method sets the relative orientation of viewport to window extent. The default value is 
sl@0
   184
EGraphicsOrientationNormal.
sl@0
   185
sl@0
   186
The rotation effect is applied to the input viewport area, around the centre-point of the viewport.
sl@0
   187
sl@0
   188
@param aOrientation User orientation to be set
sl@0
   189
@return KErrNone on success or a system-wide error code
sl@0
   190
	- KErrNotSupported if not supported.
sl@0
   191
	- KErrArgument if aOrientation is out of range
sl@0
   192
@post The orientation is updated in the object of this class. This does not imply that the orientation 
sl@0
   193
is set for the surface content. The SetBackgroundSurface API must be called passing an object of 
sl@0
   194
this class as parameter to get the desired effect.
sl@0
   195
*/
sl@0
   196
inline TInt TSurfaceConfiguration1::SetOrientation (CFbsBitGc::TGraphicsOrientation aOrientation)
sl@0
   197
	{
sl@0
   198
	if (MemberAccessible(iOrientation))
sl@0
   199
		{
sl@0
   200
		__ASSERT_COMPILE(CFbsBitGc::EGraphicsOrientationNormal==0 && 
sl@0
   201
						CFbsBitGc::EGraphicsOrientationRotated270 == 3);
sl@0
   202
		if(aOrientation < CFbsBitGc::EGraphicsOrientationNormal || 
sl@0
   203
				aOrientation > CFbsBitGc::EGraphicsOrientationRotated270)
sl@0
   204
			{
sl@0
   205
			return KErrArgument;
sl@0
   206
			}
sl@0
   207
		iOrientation = aOrientation;
sl@0
   208
		return KErrNone;
sl@0
   209
		}
sl@0
   210
	return KErrNotSupported;
sl@0
   211
	}
sl@0
   212
sl@0
   213
/**
sl@0
   214
The method gets the surface orientation angle stored in the object of this class. It is the 
sl@0
   215
relative orientation of viewport to window extent. If orientation was not set, the value returned 
sl@0
   216
will be EGraphicsOrientationNormal.
sl@0
   217
sl@0
   218
@return orientation in this object
sl@0
   219
@post If the instance of TSurfaceConfiguration is too small, the default EGraphicsOrientationNormal 
sl@0
   220
setting will be returned.
sl@0
   221
*/
sl@0
   222
inline CFbsBitGc::TGraphicsOrientation TSurfaceConfiguration1::Orientation() const
sl@0
   223
	{
sl@0
   224
	if (MemberAccessible(iOrientation))
sl@0
   225
		{
sl@0
   226
		return iOrientation;
sl@0
   227
		}
sl@0
   228
	else
sl@0
   229
		{
sl@0
   230
		return CFbsBitGc::EGraphicsOrientationNormal;
sl@0
   231
		}
sl@0
   232
	}
sl@0
   233
sl@0
   234
/**
sl@0
   235
This method sets the area of the window where the surface content is to be placed. The extent is 
sl@0
   236
in window coordinates.
sl@0
   237
sl@0
   238
If not set or if the set extent is empty, the size of the entire window is used as the default extent. 
sl@0
   239
The default extent changes according to the change in the window size. The empty extent is an indication 
sl@0
   240
to the server that the extent should fill the entire window without the client tracking the change in 
sl@0
   241
the window size.
sl@0
   242
sl@0
   243
In SetBackgroundSurface() it is legal to set the extent larger than the window, or the window may 
sl@0
   244
become smaller than the extent. In these cases the output will be transformed on the basis of this 
sl@0
   245
larger extent, but then clipped to the window outline.
sl@0
   246
sl@0
   247
@param aExtent Area on the window where the surface contents specified by viewport
sl@0
   248
should be mapped
sl@0
   249
@return KErrNone on success or a system-wide error code
sl@0
   250
	- KErrNotSupported if not supported.
sl@0
   251
@post The extent values are updated in the object of this class. This does not imply that the 
sl@0
   252
extent is set for the surface. The SetBackgroundSurface API must be called passing an object of 
sl@0
   253
this class as parameter to get the desired effect.
sl@0
   254
*/
sl@0
   255
inline TInt TSurfaceConfiguration1::SetExtent(const TRect& aExtent)
sl@0
   256
	{
sl@0
   257
	if (MemberAccessible(iExtent))
sl@0
   258
		{
sl@0
   259
		iExtent = aExtent;
sl@0
   260
		return KErrNone;
sl@0
   261
		}
sl@0
   262
	return KErrNotSupported;
sl@0
   263
	}
sl@0
   264
sl@0
   265
/**
sl@0
   266
The method gets the extent stored in the object of this class. The extent is in window coordinates.
sl@0
   267
sl@0
   268
If extent was not set or an empty extent was set, the value returned will be an empty extent. This 
sl@0
   269
is an indication that the extent used by the server is equal to the size of the window. The actual 
sl@0
   270
size of the window is not returned.
sl@0
   271
sl@0
   272
@param aExtent User extent to be set
sl@0
   273
@post The aExtent parameter is filled in
sl@0
   274
@post If the instance of TSurfaceConfiguration is too small, the empty extent rectangle will be returned.
sl@0
   275
*/
sl@0
   276
inline void TSurfaceConfiguration1::GetExtent(TRect& aExtent) const
sl@0
   277
	{
sl@0
   278
	if (MemberAccessible(iExtent))
sl@0
   279
		{
sl@0
   280
		aExtent = iExtent;
sl@0
   281
		}
sl@0
   282
	else
sl@0
   283
		{
sl@0
   284
		aExtent = TRect();
sl@0
   285
		}
sl@0
   286
	}
sl@0
   287
sl@0
   288
/**
sl@0
   289
This method identifies which attributes are available to use.
sl@0
   290
sl@0
   291
Generally, any version of the server will accept any version of TSurfaceConfiguration, ignoring 
sl@0
   292
newer version attributes it does not recognize and substituting defaults for attributes not present 
sl@0
   293
in older version.
sl@0
   294
sl@0
   295
However, by using this method in conjunction with GetBackgroundSurface() the intelligent client can 
sl@0
   296
identify which blocks of attributes are actually present and supported after a call to 
sl@0
   297
GetBackgroundSurface, avoiding preparing complex attributes, or reducing user-interface control 
sl@0
   298
gadgets.
sl@0
   299
sl@0
   300
@return ETrue if all these attributes are available to use; otherwise EFalse
sl@0
   301
*/
sl@0
   302
inline TBool TSurfaceConfiguration1::SupportsAllMembers()
sl@0
   303
	{
sl@0
   304
	if (Size() >= sizeof(*this))
sl@0
   305
		{
sl@0
   306
		return ETrue;
sl@0
   307
		}
sl@0
   308
	else
sl@0
   309
		{
sl@0
   310
		return EFalse;
sl@0
   311
		}
sl@0
   312
	}
sl@0
   313
sl@0
   314
/**
sl@0
   315
Constructs the TSurfaceConfigurationSize class, enters the size field and blanks everything else
sl@0
   316
sl@0
   317
@param aSize The size to set for the configuration
sl@0
   318
@return ETrue If all these attributes are available to use; otherwise EFalse
sl@0
   319
*/
sl@0
   320
inline TSurfaceConfigurationSize::TSurfaceConfigurationSize(TInt aSize)
sl@0
   321
	{
sl@0
   322
	Mem::FillZ(this,aSize);
sl@0
   323
	iSize = aSize;
sl@0
   324
	}
sl@0
   325
sl@0
   326
/**
sl@0
   327
Reads the size field. The size is set automatically in the constructor, or by the 
sl@0
   328
GetBackgroundSurface method to indicate the sender’s supported structure size, and imply a 
sl@0
   329
compatible version identifier. The size reported after GetBackgroundSurface will match 
sl@0
   330
the expected size of one of the hierarchy of TSurfaceConfiguration classes documented in the 
sl@0
   331
header, and will never exceed the constructed size.
sl@0
   332
sl@0
   333
@return ETrue if all these attributes are available to use; otherwise EFalse
sl@0
   334
*/
sl@0
   335
inline TInt TSurfaceConfigurationSize::Size() const
sl@0
   336
	{
sl@0
   337
	return iSize;
sl@0
   338
	}
sl@0
   339
sl@0
   340
inline TBool TSurfaceConfigurationSize::operator == (const TSurfaceConfigurationSize& aRhs)const
sl@0
   341
	{
sl@0
   342
	return aRhs.Size()==Size();	//If the two objects are not the same version then we can't compare them!
sl@0
   343
	}
sl@0
   344
inline TBool TSurfaceConfiguration1::operator == (const TSurfaceConfiguration1& aRhs)const
sl@0
   345
	{
sl@0
   346
	if (!TSurfaceConfigurationSize::operator ==(aRhs))
sl@0
   347
		return EFalse;	//Check for earlier version compatability
sl@0
   348
	if (Size()<sizeof(*this))
sl@0
   349
		return ETrue;	//If the objects are smaller than this then the check is complete
sl@0
   350
	return 	(iSurfaceId==aRhs.iSurfaceId)
sl@0
   351
		&&	(iOrientation==aRhs.iOrientation)
sl@0
   352
		&&	(iExtent==aRhs.iExtent)
sl@0
   353
		&&	(iViewport==aRhs.iViewport)
sl@0
   354
		;
sl@0
   355
	}
sl@0
   356
sl@0
   357
/** Default constructor for configuration 2
sl@0
   358
*/
sl@0
   359
inline TSurfaceConfiguration2::TSurfaceConfiguration2():TSurfaceConfiguration1(sizeof(*this))
sl@0
   360
        ,iFlip(EFalse)
sl@0
   361
    {}
sl@0
   362
sl@0
   363
/**
sl@0
   364
Constructor for configuration 2 passing through a size already calculated
sl@0
   365
sl@0
   366
@param aSize Size of the class already calculated and being passed up through the classes
sl@0
   367
*/
sl@0
   368
inline TSurfaceConfiguration2::TSurfaceConfiguration2(TInt aSize):TSurfaceConfiguration1(aSize)
sl@0
   369
        ,iFlip(EFalse)
sl@0
   370
    {}
sl@0
   371
sl@0
   372
/**
sl@0
   373
This method sets the flip attribute to the surface. The default value is 
sl@0
   374
EFalse.
sl@0
   375
sl@0
   376
@param aFlip When ETrue enalbes flip in the x-axis
sl@0
   377
@post The flip attribute is updated in the object of this class. This does not imply that the flip 
sl@0
   378
is set for the surface content. The SetBackgroundSurface API must be called passing an object of 
sl@0
   379
this class as parameter to get the desired effect.
sl@0
   380
@return KErrNone on success 
sl@0
   381
    - KErrNotSupported if flip is not supported. 
sl@0
   382
*/
sl@0
   383
inline TInt TSurfaceConfiguration2::SetFlip(TBool aFlip)
sl@0
   384
    {
sl@0
   385
    if (MemberAccessible(iFlip))
sl@0
   386
        {
sl@0
   387
        iFlip = aFlip;
sl@0
   388
        return KErrNone;
sl@0
   389
        }
sl@0
   390
     return KErrNotSupported;
sl@0
   391
    }
sl@0
   392
sl@0
   393
/**
sl@0
   394
The method gets the flip attribute of the surface stored in the object of this class. If the flip was not set, the value returned 
sl@0
   395
will be EFalse.
sl@0
   396
sl@0
   397
@return ETrue if flip is enabled
sl@0
   398
@post If the instance of TSurfaceConfiguration is too small, the default EFalse 
sl@0
   399
setting will be returned.
sl@0
   400
*/
sl@0
   401
inline TBool TSurfaceConfiguration2::Flip() const
sl@0
   402
    {
sl@0
   403
    if (MemberAccessible(iFlip))
sl@0
   404
        {
sl@0
   405
        return iFlip;
sl@0
   406
        }
sl@0
   407
    else
sl@0
   408
        {
sl@0
   409
        return EFalse;
sl@0
   410
        }
sl@0
   411
    }
sl@0
   412
sl@0
   413
inline TBool TSurfaceConfiguration2::SupportsAllMembers()
sl@0
   414
    {
sl@0
   415
    if (Size() >= sizeof(*this))
sl@0
   416
        {
sl@0
   417
        return ETrue;
sl@0
   418
        }
sl@0
   419
    else
sl@0
   420
        {
sl@0
   421
        return EFalse;
sl@0
   422
        }
sl@0
   423
    }
sl@0
   424
sl@0
   425
inline TBool TSurfaceConfiguration2::operator == (const TSurfaceConfiguration2& aRhs)const
sl@0
   426
    {
sl@0
   427
    if (!TSurfaceConfiguration1::operator ==(aRhs))
sl@0
   428
        return EFalse;  //Check for earlier version compatability
sl@0
   429
    if (Size()<sizeof(*this))
sl@0
   430
        return ETrue;   //If the objects are smaller than this then the check is complete
sl@0
   431
    return  iFlip==aRhs.iFlip;
sl@0
   432
    }