os/graphics/windowing/windowserver/nonnga/CLIENT/RSCRDEV.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) 1995-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
// Shells for window server screen device
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include <e32std.h>
sl@0
    19
#include <e32hal.h>
sl@0
    20
#include "../SERVER/w32cmd.h"
sl@0
    21
#include "CLIENT.H"
sl@0
    22
#include "w32comm.h"
sl@0
    23
#include "scrdevextension.h"
sl@0
    24
sl@0
    25
const TInt KDefaultScreenNumber = 0 ;
sl@0
    26
sl@0
    27
EXPORT_C CWsScreenDevice::CWsScreenDevice()
sl@0
    28
/** Default constructor. Developers should use the other constructor overload. */
sl@0
    29
	{
sl@0
    30
	}
sl@0
    31
sl@0
    32
EXPORT_C CWsScreenDevice::CWsScreenDevice(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
sl@0
    33
/** Constructs a new screen device attached to a particular window server session.
sl@0
    34
sl@0
    35
@param aWs The window server session this screen should be attached to. */
sl@0
    36
	{
sl@0
    37
	}
sl@0
    38
sl@0
    39
EXPORT_C TInt CWsScreenDevice::CreateContext(CGraphicsContext *&aGc)
sl@0
    40
/** Creates a graphics context for this device.
sl@0
    41
sl@0
    42
This function always causes a flush of the window server buffer.
sl@0
    43
sl@0
    44
@param aGc On successful return, contains a new graphics context referring 
sl@0
    45
to this screen device. 
sl@0
    46
@return KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
    47
@see CGraphicsDevice::CreateContext() */
sl@0
    48
	{
sl@0
    49
	if ((aGc=new CWindowGc(this))==NULL)
sl@0
    50
		return(KErrNoMemory);
sl@0
    51
	TInt err=((CWindowGc *)aGc)->Construct();
sl@0
    52
	if (err!=KErrNone)
sl@0
    53
		{
sl@0
    54
		delete aGc;
sl@0
    55
		aGc=NULL;
sl@0
    56
		}
sl@0
    57
	return(err);
sl@0
    58
	}
sl@0
    59
sl@0
    60
EXPORT_C CWsScreenDevice::~CWsScreenDevice()
sl@0
    61
/** Destructor. */
sl@0
    62
	{
sl@0
    63
	if (iBuffer)
sl@0
    64
		{
sl@0
    65
		if (iWsHandle)
sl@0
    66
			Write(EWsSdOpFree);
sl@0
    67
		}
sl@0
    68
	if (iExtension)
sl@0
    69
		{
sl@0
    70
		delete TypeFaceStore();
sl@0
    71
		delete iExtension;
sl@0
    72
		}
sl@0
    73
	}
sl@0
    74
sl@0
    75
#pragma warning(disable : 4710)
sl@0
    76
/** 
sl@0
    77
Completes construction of the object.
sl@0
    78
sl@0
    79
This method invokes Construct(TInt aDefaultScreenNumber) with default Screen number.
sl@0
    80
@return KErrNone if successful, otherwise another of the system-wide error codes. 
sl@0
    81
*/
sl@0
    82
EXPORT_C TInt CWsScreenDevice::Construct()
sl@0
    83
	{
sl@0
    84
	return Construct( KDefaultScreenNumber ) ;
sl@0
    85
	}
sl@0
    86
sl@0
    87
sl@0
    88
EXPORT_C TInt CWsScreenDevice::Construct(TInt aDefaultScreenNumber)
sl@0
    89
/** Completes construction of the object.
sl@0
    90
sl@0
    91
This function always causes a flush of the window server buffer.
sl@0
    92
@param aDefaultScreenNumber - This is the screen on which an application will start
sl@0
    93
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
    94
codes. 
sl@0
    95
@panic TW32Panic 17 in debug builds if called on an already constructed object.*/
sl@0
    96
	{
sl@0
    97
	__ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
sl@0
    98
	TInt ret;
sl@0
    99
	TWsClCmdCreateScreenDevice createScreenDevice;
sl@0
   100
	createScreenDevice.screenNumber = aDefaultScreenNumber;
sl@0
   101
	createScreenDevice.clientScreenDevicePointer = (TUint)this;
sl@0
   102
	if ( ( ret=iBuffer->WriteReplyWs(&createScreenDevice,sizeof(createScreenDevice),EWsClOpCreateScreenDevice ) ) < 0 )
sl@0
   103
		{
sl@0
   104
		iBuffer=NULL;
sl@0
   105
		}
sl@0
   106
	else
sl@0
   107
		{
sl@0
   108
		iWsHandle=ret;
sl@0
   109
		//If the extension fails to allocate then clients will be refused access to the extension interface.
sl@0
   110
		TRAP(ret,iExtension=new(ELeave) CScrDevExtension(iBuffer,iWsHandle));
sl@0
   111
		if (ret>=KErrNone)
sl@0
   112
			{
sl@0
   113
			TRAP(ret,iExtension->SetTypefaceStore(CFbsTypefaceStore::NewL(this)));
sl@0
   114
			}
sl@0
   115
		iDisplaySizeInPixels=SizeInPixels();
sl@0
   116
		iPhysicalScreenSizeInTwips=SizeInTwips();
sl@0
   117
		if (iDisplaySizeInPixels.iWidth==0)
sl@0
   118
			{
sl@0
   119
			TMachineInfoV1Buf macInfo;
sl@0
   120
			UserHal::MachineInfo(macInfo);
sl@0
   121
			iPhysicalScreenSizeInTwips=macInfo().iPhysicalScreenSize;
sl@0
   122
			iDisplaySizeInPixels=macInfo().iDisplaySizeInPixels;
sl@0
   123
			}
sl@0
   124
		}
sl@0
   125
	return(ret);
sl@0
   126
	}
sl@0
   127
#pragma warning(default : 4710)
sl@0
   128
sl@0
   129
EXPORT_C TDisplayMode CWsScreenDevice::DisplayMode() const
sl@0
   130
/** Gets the device's display mode.
sl@0
   131
sl@0
   132
This function always causes a flush of the window server buffer.
sl@0
   133
sl@0
   134
@return The device's display mode. 
sl@0
   135
@see CGraphicsDevice::DisplayMode() */
sl@0
   136
	{
sl@0
   137
	return((TDisplayMode)WriteReply(EWsSdOpDisplayMode));
sl@0
   138
	}
sl@0
   139
sl@0
   140
EXPORT_C TRect CWsScreenDevice::PointerRect() const
sl@0
   141
/** Gets the active area for the pointing device. 
sl@0
   142
sl@0
   143
This is a device-dependent parameter, and will typically depend on the screen 
sl@0
   144
size and other factors.
sl@0
   145
sl@0
   146
This function always causes a flush of the window server buffer.
sl@0
   147
sl@0
   148
@return The active area, measured in pixels. */
sl@0
   149
	{
sl@0
   150
	TPckgBuf<TRect> rectPkg;
sl@0
   151
  	WriteReplyP(&rectPkg,EWsSdOpPointerRect);
sl@0
   152
	return(rectPkg());
sl@0
   153
	}
sl@0
   154
sl@0
   155
EXPORT_C TSize CWsScreenDevice::SizeInPixels() const
sl@0
   156
/** Gets the size of the screen device area in pixels.
sl@0
   157
sl@0
   158
This function always causes a flush of the window server buffer.
sl@0
   159
sl@0
   160
@return The x and y dimensions of the screen device area, in pixels. 
sl@0
   161
@see CGraphicsDevice::SizeInPixels() */
sl@0
   162
	{
sl@0
   163
	TPckgBuf<TSize> sizePkg;
sl@0
   164
  	WriteReplyP(&sizePkg,EWsSdOpPixelSize);
sl@0
   165
	return(sizePkg());
sl@0
   166
	}
sl@0
   167
sl@0
   168
EXPORT_C TSize CWsScreenDevice::SizeInTwips() const
sl@0
   169
/** Gets the size of the screen device area in twips.
sl@0
   170
sl@0
   171
This function always causes a flush of the window server buffer.
sl@0
   172
sl@0
   173
@return The x and y dimensions of the screen device area, in twips. 
sl@0
   174
@see CGraphicsDevice::SizeInTwips() */
sl@0
   175
	{
sl@0
   176
	TPckgBuf<TSize> sizePkg;
sl@0
   177
  	WriteReplyP(&sizePkg,EWsSdOpTwipsSize);
sl@0
   178
	return(sizePkg());
sl@0
   179
	}
sl@0
   180
sl@0
   181
EXPORT_C TInt CWsScreenDevice::HorizontalTwipsToPixels(TInt aTwips) const
sl@0
   182
/** Translates a twips to a pixel value.
sl@0
   183
sl@0
   184
@param aTwips The value in twips. 
sl@0
   185
@return The equivalent number of pixels. 
sl@0
   186
@see MGraphicsDeviceMap::HorizontalTwipsToPixels() */
sl@0
   187
	{
sl@0
   188
	TInt64 twips=aTwips;
sl@0
   189
	twips=(twips*iDisplaySizeInPixels.iWidth+(iPhysicalScreenSizeInTwips.iWidth/2))/iPhysicalScreenSizeInTwips.iWidth;
sl@0
   190
	return I64INT(twips);
sl@0
   191
	}
sl@0
   192
sl@0
   193
EXPORT_C TInt CWsScreenDevice::VerticalTwipsToPixels(TInt aTwips) const
sl@0
   194
/** Translates a vertical dimension of a screen device in twips into pixels.
sl@0
   195
sl@0
   196
@param aTwips A vertical dimension of a device in twips. 
sl@0
   197
@return The vertical dimension in pixels. */
sl@0
   198
	{
sl@0
   199
	TInt64 twips=aTwips;
sl@0
   200
	twips=(twips*iDisplaySizeInPixels.iHeight+(iPhysicalScreenSizeInTwips.iHeight/2))/iPhysicalScreenSizeInTwips.iHeight;
sl@0
   201
	return I64INT(twips);
sl@0
   202
	}
sl@0
   203
sl@0
   204
EXPORT_C TInt CWsScreenDevice::HorizontalPixelsToTwips(TInt aPixels) const
sl@0
   205
/** Translates a specified pixel value to a twips value. 
sl@0
   206
sl@0
   207
@param aPixels The value in pixels to be translated. 
sl@0
   208
@return The equivalent number of twips. */
sl@0
   209
	{
sl@0
   210
	TInt64 pixels=aPixels;
sl@0
   211
	pixels=(pixels*iPhysicalScreenSizeInTwips.iWidth+(iDisplaySizeInPixels.iWidth/2))/iDisplaySizeInPixels.iWidth;
sl@0
   212
	return I64INT(pixels);
sl@0
   213
	}
sl@0
   214
sl@0
   215
EXPORT_C TInt CWsScreenDevice::VerticalPixelsToTwips(TInt aPixels) const
sl@0
   216
/** Translates a vertical dimension of a screen device in pixels into twips.
sl@0
   217
sl@0
   218
@param aPixels A vertical dimension of a device in pixels. 
sl@0
   219
@return The vertical dimension in twips. 
sl@0
   220
@see MGraphicsDeviceMap::VerticalPixelsToTwips() */
sl@0
   221
	{
sl@0
   222
	TInt64 pixels=aPixels;
sl@0
   223
	pixels=(pixels*iPhysicalScreenSizeInTwips.iHeight+(iDisplaySizeInPixels.iHeight/2))/iDisplaySizeInPixels.iHeight;
sl@0
   224
	return I64INT(pixels);
sl@0
   225
	}
sl@0
   226
sl@0
   227
EXPORT_C void CWsScreenDevice::GetPixel(TRgb &aColor,const TPoint &aPixel) const
sl@0
   228
/** Gets the RGB colour of an individual pixel on a screen device.
sl@0
   229
sl@0
   230
This function always causes a flush of the window server buffer.
sl@0
   231
sl@0
   232
@param aColor On return, contains the RGB colour of the pixel. 
sl@0
   233
@param aPixel The x,y co-ordinates of the pixel. The top left pixel is (0,0).
sl@0
   234
@see CBitmapDevice::GetPixel() */
sl@0
   235
	{
sl@0
   236
	aColor.SetInternal(((TUint32)WriteReply(&aPixel,sizeof(aPixel),EWsSdOpPixel)));
sl@0
   237
	}
sl@0
   238
sl@0
   239
EXPORT_C void CWsScreenDevice::GetScanLine(TDes8 &aScanLine,const TPoint &aStartPixel,TInt aPixelLength, TDisplayMode aDispMode) const
sl@0
   240
/** Gets a scanline into a buffer. 
sl@0
   241
sl@0
   242
The pixels are converted from the current screen display mode format 
sl@0
   243
to the format of the specified device display mode.
sl@0
   244
sl@0
   245
By specifying the start pixel and number of pixels either the whole or a portion 
sl@0
   246
of a row of screen pixels may be copied.
sl@0
   247
sl@0
   248
This function always causes a flush of the window server buffer.
sl@0
   249
sl@0
   250
@param aScanLine A buffer into which pixels are copied, it must be sufficiently 
sl@0
   251
large to store all the scanline pixels. 
sl@0
   252
@param aStartPixel The (x,y) co-ordinates of the first pixel of the bitmap scanline 
sl@0
   253
to be put into the buffer. 
sl@0
   254
@param aPixelLength The number of pixels to put into the buffer.
sl@0
   255
@param aDispMode The display mode into which to convert the pixels. 
sl@0
   256
@see CBitmapDevice::GetScanLine() */
sl@0
   257
	{
sl@0
   258
	TWsSdCmdGetScanLine getScanLine(aStartPixel,aPixelLength,aDispMode);
sl@0
   259
	WriteReplyP(&getScanLine,sizeof(getScanLine),&aScanLine,EWsSdOpGetScanLine);
sl@0
   260
	}
sl@0
   261
sl@0
   262
EXPORT_C TBool CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2) const
sl@0
   263
/** Compares two areas of the screen to see if they have the same content. 
sl@0
   264
sl@0
   265
If there are any sprites on the screen they are not included in the comparison.
sl@0
   266
sl@0
   267
This function always causes a flush of the window server buffer.
sl@0
   268
sl@0
   269
@param aRect1 A rectangle. 
sl@0
   270
@param aRect2 Another rectangle. 
sl@0
   271
@return ETrue if the two screen areas are identical. */
sl@0
   272
 	{
sl@0
   273
	return RectCompare(aRect1,aRect2,ERemoveSprite);
sl@0
   274
	}
sl@0
   275
sl@0
   276
EXPORT_C TBool CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2,TUint aFlags) const
sl@0
   277
/** Compares two areas of the screen to see if they have the same content.
sl@0
   278
 
sl@0
   279
This function always causes a flush of the window server buffer.
sl@0
   280
sl@0
   281
@param aRect1 A rectangle. 
sl@0
   282
@param aRect2 Another rectangle.
sl@0
   283
@param aFlags EIncludeSprite to include the sprite in the compare or ERemoveSprite to remove the sprite.
sl@0
   284
@return ETrue if the two screen areas are identical. */
sl@0
   285
	{
sl@0
   286
	TWsSdCmdRectCompare rectCompare(aRect1,aRect2,aFlags);
sl@0
   287
 	return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpRectCompare));
sl@0
   288
 	}
sl@0
   289
sl@0
   290
EXPORT_C TInt CWsScreenDevice::CopyScreenToBitmap(const CFbsBitmap *aBitmap) const
sl@0
   291
/** Saves the entire screen to a bitmap.
sl@0
   292
sl@0
   293
This function always causes a flush of the window server buffer.
sl@0
   294
sl@0
   295
@param aBitmap Bitmap to be filled with the screen image. 
sl@0
   296
@return KErrNone if successful, otherwise one of the system-wide error codes. */
sl@0
   297
	{
sl@0
   298
	AddToBitmapArray(aBitmap->Handle());
sl@0
   299
	TWsSdCmdCopyScreenToBitmap rectCompare(aBitmap->Handle());
sl@0
   300
	return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap));
sl@0
   301
	}
sl@0
   302
sl@0
   303
EXPORT_C TInt CWsScreenDevice::CopyScreenToBitmap(const CFbsBitmap *aBitmap, const TRect &aRect) const
sl@0
   304
/** Saves a region of the screen to a bitmap.
sl@0
   305
sl@0
   306
This function always causes a flush of the window server buffer.
sl@0
   307
sl@0
   308
@param aBitmap Bitmap to be filled with the screen region image. 
sl@0
   309
@param aRect Screen region to be saved. 
sl@0
   310
@return KErrNone if successful, otherwise one of the system-wide error codes. */
sl@0
   311
	{
sl@0
   312
	AddToBitmapArray(aBitmap->Handle());
sl@0
   313
	TWsSdCmdCopyScreenToBitmap2 rectCompare(aRect, aBitmap->Handle());
sl@0
   314
	return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap2));
sl@0
   315
	}
sl@0
   316
sl@0
   317
EXPORT_C TInt CWsScreenDevice::GetNearestFontInTwips(CFont*& aFont,const TFontSpec& aFontSpec)
sl@0
   318
/** Gets the nearest font, in twips, to that in the specified font specification. 
sl@0
   319
sl@0
   320
This function is replaced by GetNearestFontToDesignHeightInTwips()
sl@0
   321
sl@0
   322
The font and bitmap server returns a pointer to the nearest matching font 
sl@0
   323
from those available, in aFont.
sl@0
   324
sl@0
   325
@param aFont On return, this is set to point to the device font closest to the font 
sl@0
   326
specification passed in the second argument.
sl@0
   327
@param aFontSpec An absolute font specification. 
sl@0
   328
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
   329
codes. 
sl@0
   330
@see MGraphicsDeviceMap::GetNearestFontInTwips()
sl@0
   331
@deprecated */
sl@0
   332
	{
sl@0
   333
	return GetNearestFontToDesignHeightInTwips(aFont, aFontSpec);
sl@0
   334
	}
sl@0
   335
CFbsTypefaceStore* CWsScreenDevice::TypeFaceStore()const
sl@0
   336
/** Helper member fn to access the movable typeface store.
sl@0
   337
 **/
sl@0
   338
	{
sl@0
   339
	return iExtension->TypefaceStore();
sl@0
   340
	}
sl@0
   341
sl@0
   342
EXPORT_C TInt CWsScreenDevice::GetNearestFontToDesignHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec)
sl@0
   343
/** Gets the nearest font in twips to that specified.
sl@0
   344
sl@0
   345
The font and bitmap server returns a pointer to the nearest matching font 
sl@0
   346
from those available. Matches to design height of font - this gives no
sl@0
   347
guarantees on the actual physical size of the font.
sl@0
   348
sl@0
   349
This function replaces GetNearestFontInTwips
sl@0
   350
sl@0
   351
@param aFont On return, the pointer is set to point to the device font which 
sl@0
   352
most closely approximates to the required font specification.
sl@0
   353
@param aFontSpec An absolute font specification. 
sl@0
   354
@return KErrNone, if successful; otherwise, another of the system-wide error 
sl@0
   355
codes.
sl@0
   356
@see MGraphicsDeviceMap::GetNearestFontToDesignHeightInTwips() */
sl@0
   357
	{
sl@0
   358
	return TypeFaceStore()->GetNearestFontToDesignHeightInTwips(aFont, aFontSpec);
sl@0
   359
	}
sl@0
   360
sl@0
   361
/** Gets the nearest font, in twips, to that specified. 
sl@0
   362
sl@0
   363
The font and bitmap server returns a pointer to the nearest matching font 
sl@0
   364
from those available. Matches to max height of font - this does its best 
sl@0
   365
to return a font that will fit within the maximum height specified (but 
sl@0
   366
note that variations due to hinting algorithms may rarely result in this 
sl@0
   367
height being exceeded by up to one pixel). Problems can also be 
sl@0
   368
encountered with bitmap fonts where the typeface exists but doesn't have 
sl@0
   369
a font small enough.
sl@0
   370
sl@0
   371
@param aFont On return, the pointer is set to point to the device font which 
sl@0
   372
most closely approximates to the required font specification.
sl@0
   373
@param aFontSpec An absolute font specification. 
sl@0
   374
@param aMaxHeight The maximum height within which the font must fit - this
sl@0
   375
overrides the height specified in the TFontSpec. 
sl@0
   376
@return KErrNone, if successful; otherwise, another of the system-wide error 
sl@0
   377
codes.
sl@0
   378
@see MGraphicsDeviceMap::GetNearestFontToMaxHeightInTwips() */
sl@0
   379
EXPORT_C TInt CWsScreenDevice::GetNearestFontToMaxHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight)
sl@0
   380
	{
sl@0
   381
	return TypeFaceStore()->GetNearestFontToMaxHeightInTwips(aFont, aFontSpec, aMaxHeight);
sl@0
   382
	}
sl@0
   383
sl@0
   384
EXPORT_C TInt CWsScreenDevice::GetNearestFontInPixels(CFont*& aFont,const TFontSpec& aFontSpec)
sl@0
   385
/** Gets the nearest font to that specified for use by a bitmapped graphics device. 
sl@0
   386
sl@0
   387
This function is replaced by GetNearestFontToDesignHeightInPixels()
sl@0
   388
sl@0
   389
The font and bitmap server returns a pointer to the nearest matching font 
sl@0
   390
from those available, in aFont.
sl@0
   391
sl@0
   392
@param aFont On return, this is set to point to the device font that is  
sl@0
   393
closest to the font specification passed in the second argument 
sl@0
   394
@param aFontSpec An absolute font specification 
sl@0
   395
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
   396
codes. 
sl@0
   397
@see CBitmapDevice::GetNearestFontInPixels()
sl@0
   398
@deprecated */
sl@0
   399
	{
sl@0
   400
	return GetNearestFontToDesignHeightInPixels(aFont, aFontSpec);
sl@0
   401
	}
sl@0
   402
sl@0
   403
EXPORT_C TInt CWsScreenDevice::GetNearestFontToDesignHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec)
sl@0
   404
/** Gets the nearest font in pixels to that specified. 
sl@0
   405
sl@0
   406
The font and bitmap server returns a pointer to the nearest matching font 
sl@0
   407
from those available. Matches to design height of font - this gives no
sl@0
   408
guarantees on the actual physical size of the font.
sl@0
   409
sl@0
   410
This function replaces GetNearestFontInTwips
sl@0
   411
sl@0
   412
@param aFont On return, the pointer is set to point to the device font which 
sl@0
   413
most closely approximates to the required font specification.
sl@0
   414
@param aFontSpec An absolute font specification. 
sl@0
   415
@return KErrNone, if successful; otherwise, another of the system-wide error 
sl@0
   416
codes.
sl@0
   417
@see CBitmapDevice::GetNearestFontToDesignHeightInPixels() */
sl@0
   418
	{
sl@0
   419
	return TypeFaceStore()->GetNearestFontToDesignHeightInPixels(aFont, aFontSpec);
sl@0
   420
	}
sl@0
   421
sl@0
   422
/** Gets the nearest font in pixels to that specified. 
sl@0
   423
sl@0
   424
The font and bitmap server returns a pointer to the nearest matching font 
sl@0
   425
from those available. Matches to max height of font - this does its best 
sl@0
   426
to return a font that will fit within the maximum height specified (but 
sl@0
   427
note that variations due to hinting algorithms may rarely result in this 
sl@0
   428
height being exceeded by up to one pixel). Problems can also be 
sl@0
   429
encountered with bitmap fonts where the typeface exists but doesn't have 
sl@0
   430
a font small enough.
sl@0
   431
sl@0
   432
@param aFont On return, the pointer is set to point to the device font which 
sl@0
   433
most closely approximates to the required font specification.
sl@0
   434
@param aFontSpec An absolute font specification. 
sl@0
   435
@param aMaxHeight The maximum height within which the font must fit - this
sl@0
   436
overrides the height specified in the TFontSpec. 
sl@0
   437
@return KErrNone, if successful; otherwise, another of the system-wide error 
sl@0
   438
codes.
sl@0
   439
@see CBitmapDevice::GetNearestFontToMaxHeightInPixels() */
sl@0
   440
EXPORT_C TInt CWsScreenDevice::GetNearestFontToMaxHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight)
sl@0
   441
	{
sl@0
   442
	return TypeFaceStore()->GetNearestFontToMaxHeightInPixels(aFont, aFontSpec, aMaxHeight);
sl@0
   443
	}
sl@0
   444
sl@0
   445
EXPORT_C TInt CWsScreenDevice::NumTypefaces() const
sl@0
   446
/** Gets the number of typefaces supported by the screen device.
sl@0
   447
sl@0
   448
@return The number of typefaces supported. 
sl@0
   449
@see CGraphicsDevice::NumTypefaces() */
sl@0
   450
	{
sl@0
   451
	return(TypeFaceStore()->NumTypefaces());
sl@0
   452
	}
sl@0
   453
sl@0
   454
EXPORT_C void CWsScreenDevice::TypefaceSupport(TTypefaceSupport& aTypefaceSupport,TInt aTypefaceIndex) const
sl@0
   455
/** Gets typeface information for a particular typeface index number.
sl@0
   456
sl@0
   457
This information is returned in aTypefaceSupport, and includes: the typeface 
sl@0
   458
name and typeface attributes (in a TTypeface object), the number of font heights, 
sl@0
   459
the maximum and minimum font heights and whether it is a scalable typeface.
sl@0
   460
sl@0
   461
@param aTypefaceSupport On return, if the function executed successfully, 
sl@0
   462
this contains the typeface information.
sl@0
   463
@param aTypefaceIndex A typeface index number, in the range zero to (NumTypefaces() 
sl@0
   464
- 1). 
sl@0
   465
@see CGraphicsDevice::TypefaceSupport() */
sl@0
   466
	{
sl@0
   467
	TypeFaceStore()->TypefaceSupport(aTypefaceSupport,aTypefaceIndex);
sl@0
   468
	}
sl@0
   469
sl@0
   470
EXPORT_C TInt CWsScreenDevice::FontHeightInTwips(TInt aTypefaceIndex,TInt aHeightIndex) const
sl@0
   471
/** Gets the height in twips of the specified font. 
sl@0
   472
sl@0
   473
The value returned is rounded up or down to the nearest font height in twips.
sl@0
   474
sl@0
   475
The specified font is the one with height index number aHeightIndex of the 
sl@0
   476
typeface with index number aTypefaceIndex.
sl@0
   477
sl@0
   478
@param aTypefaceIndex A typeface index number, in the range: 0 to (NumTypefaces() - 1). 
sl@0
   479
@param aHeightIndex A font height index number, in the range: 0 to (iNumHeights - 1). 
sl@0
   480
@return The height of the font in twips. 
sl@0
   481
@see CGraphicsDevice::FontHeightInTwips() */
sl@0
   482
	{
sl@0
   483
	return(TypeFaceStore()->FontHeightInTwips(aTypefaceIndex,aHeightIndex));
sl@0
   484
	}
sl@0
   485
sl@0
   486
EXPORT_C TInt CWsScreenDevice::FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const
sl@0
   487
/** Gets the height of the specified font in pixels.
sl@0
   488
sl@0
   489
The value returned is rounded up or down to the nearest font height in pixels.
sl@0
   490
sl@0
   491
The specified font is the one with height index number aHeightIndex of the 
sl@0
   492
typeface with index number aTypefaceIndex.
sl@0
   493
sl@0
   494
@param aTypefaceIndex A typeface index number, in the range: 0 to (NumTypefaces() - 1). 
sl@0
   495
@param aHeightIndex A font height index number, in the range: 0 to (iNumHeights - 1).
sl@0
   496
@return The height of the font in pixels. 
sl@0
   497
@see CBitmapDevice::FontHeightInPixels() */
sl@0
   498
	{
sl@0
   499
	return(TypeFaceStore()->FontHeightInPixels(aTypefaceIndex,aHeightIndex));
sl@0
   500
	}
sl@0
   501
sl@0
   502
EXPORT_C TInt CWsScreenDevice::GetFontById(CFont *&aFont,TUid aUid,const TAlgStyle& aAlgStyle)
sl@0
   503
/** Gets a font by its bitmap UID. 
sl@0
   504
sl@0
   505
Within a font file each font has its own UID. An algorithmic style is not 
sl@0
   506
part of the actual font description, but is applied to it. For example algorithmic 
sl@0
   507
bolding applies an algorithm to increase the apparent weight of each character 
sl@0
   508
in the font. Note that the algorithm is applied blindly, and that a typeface 
sl@0
   509
may already have a style e.g. it may already be bold or italic. Thus a bold 
sl@0
   510
face will appear extra-bold if algorithmic bolding is applied to it. Algorithmic 
sl@0
   511
effects are not necessarily a substitute for typeface design and should be 
sl@0
   512
used with care.
sl@0
   513
sl@0
   514
@param aFont On a successful return, contains a pointer to the new CFont. 
sl@0
   515
@param aUid UID of the bitmap font. 
sl@0
   516
@param aAlgStyle The algorithmic style to apply. 
sl@0
   517
@return KErrNone if successful, otherwise one of the system-wide error codes. */
sl@0
   518
	{
sl@0
   519
	return(TypeFaceStore()->GetFontById(aFont,aUid,aAlgStyle));
sl@0
   520
	}
sl@0
   521
sl@0
   522
EXPORT_C TInt CWsScreenDevice::AddFile(const TDesC& aName,TInt& aId)
sl@0
   523
/** Adds a font file to the device's typeface store. The specified font
sl@0
   524
file must be accessible to any process, i.e. not located inside an
sl@0
   525
application's private directory.
sl@0
   526
sl@0
   527
@param aName Name of the font file. 
sl@0
   528
@param aId ID for the font file. 
sl@0
   529
@return KErrNone if successful, otherwise one of the system-wide error codes. 
sl@0
   530
@see CBitmapDevice::AddFile() */
sl@0
   531
	{
sl@0
   532
	return(TypeFaceStore()->AddFile(aName, aId));
sl@0
   533
	}
sl@0
   534
sl@0
   535
EXPORT_C void CWsScreenDevice::RemoveFile(TInt aId)
sl@0
   536
/** Removes a font file from the font store.
sl@0
   537
sl@0
   538
@param aId The ID of the font file to be removed, default 0. 
sl@0
   539
@see CBitmapDevice::RemoveFile() */
sl@0
   540
	{
sl@0
   541
	TypeFaceStore()->RemoveFile(aId);
sl@0
   542
	}
sl@0
   543
sl@0
   544
EXPORT_C void CWsScreenDevice::ReleaseFont(CFont* aFont)
sl@0
   545
/** Releases a specified font.
sl@0
   546
sl@0
   547
This function is used to indicate that the specified font is no longer needed 
sl@0
   548
for use by the screen device. As fonts can be shared between applications, 
sl@0
   549
this function does not delete the copy of the font from RAM, unless the font 
sl@0
   550
was only being used by this device.
sl@0
   551
sl@0
   552
@param aFont A pointer to the font to be released. 
sl@0
   553
@see MGraphicsDeviceMap::ReleaseFont() */
sl@0
   554
	{
sl@0
   555
	TypeFaceStore()->ReleaseFont(aFont);
sl@0
   556
	}
sl@0
   557
sl@0
   558
EXPORT_C void CWsScreenDevice::PaletteAttributes(TBool& aModifiable,TInt& aNumEntries) const
sl@0
   559
/** Gets the attributes of the device's palette.
sl@0
   560
 
sl@0
   561
This function always causes a flush of the window server buffer.
sl@0
   562
sl@0
   563
@param aModifiable On return, indicates whether or not the device's palette 
sl@0
   564
is modifiable (true) or fixed (false).
sl@0
   565
@param aNumEntries On return, holds the number of entries in the device's 
sl@0
   566
palette. 
sl@0
   567
@see CFbsScreenDevice::PaletteAttributes() */
sl@0
   568
	{
sl@0
   569
	TInt ret=WriteReply(EWsSdOpPaletteAttributes);
sl@0
   570
	aModifiable=ret&EWsSdSetableBitFlag;
sl@0
   571
	aNumEntries=ret&(~EWsSdSetableBitFlag);
sl@0
   572
	}
sl@0
   573
sl@0
   574
EXPORT_C void CWsScreenDevice::SetPalette(CPalette* aPalette)
sl@0
   575
/** Sets the screen device's palette.
sl@0
   576
sl@0
   577
This function always causes a flush of the window server buffer.
sl@0
   578
sl@0
   579
Use of this function is deprecated. SetCustomPalette() should be used instead.
sl@0
   580
sl@0
   581
@param aPalette The screen device's new palette. */
sl@0
   582
	{
sl@0
   583
#if defined(__WINS__)
sl@0
   584
	__ASSERT_DEBUG(SetCustomPalette(aPalette)==KErrNone,Panic(EW32PanicSilentFail));
sl@0
   585
#endif
sl@0
   586
	SetCustomPalette(aPalette);
sl@0
   587
	}
sl@0
   588
sl@0
   589
EXPORT_C TInt CWsScreenDevice::SetCustomPalette(const CPalette* aPalette)
sl@0
   590
/** Sets the custom palette.
sl@0
   591
 
sl@0
   592
This function always causes a flush of the window server buffer.
sl@0
   593
sl@0
   594
@param aPalette The custom palette.
sl@0
   595
@return KErrNone if sucessful, or one of the system error codes.
sl@0
   596
@panic W32 6 aPalette is NULL.
sl@0
   597
@capability WriteDeviceData */
sl@0
   598
	{
sl@0
   599
	__ASSERT_ALWAYS(aPalette,Panic(EW32PanicNullPalette));
sl@0
   600
	TPtr8 palette(NULL,0);
sl@0
   601
	CONST_CAST(CPalette*,aPalette)->GetDataPtr(0,aPalette->Entries(),palette);
sl@0
   602
	TPtr8 empty(NULL,0);
sl@0
   603
	return WriteReplyByProvidingRemoteReadAccess(&empty, sizeof(empty), &palette, EWsSdOpSetPalette);
sl@0
   604
	}
sl@0
   605
sl@0
   606
EXPORT_C TInt CWsScreenDevice::GetPalette(CPalette*& aPalette) const
sl@0
   607
/** Gets the screen device's palette.
sl@0
   608
 
sl@0
   609
This function always causes a flush of the window server buffer.
sl@0
   610
sl@0
   611
@param aPalette On return, contains the screen device's palette. The caller 
sl@0
   612
takes responsibility for discarding the palette.
sl@0
   613
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
   614
codes. 
sl@0
   615
@see CFbsScreenDevice::GetPalette() */
sl@0
   616
	{
sl@0
   617
	TBool modifiable;		//Dummy parameter
sl@0
   618
	TInt numEntries;
sl@0
   619
	TInt ret;
sl@0
   620
	PaletteAttributes(modifiable,numEntries);
sl@0
   621
	aPalette=NULL;
sl@0
   622
Retry:
sl@0
   623
	TRAP(ret,aPalette=CPalette::NewL(numEntries));
sl@0
   624
	if (ret==KErrNone)
sl@0
   625
		{
sl@0
   626
		TPtr8 palette(NULL,0);
sl@0
   627
		aPalette->GetDataPtr(0,numEntries,palette);
sl@0
   628
		ret=WriteReplyIntP(numEntries,&palette,EWsSdOpGetPalette);
sl@0
   629
		if (ret!=KErrNone)
sl@0
   630
			{
sl@0
   631
			delete aPalette;
sl@0
   632
			aPalette=NULL;
sl@0
   633
			if (ret>0)		//The mode of the screen display changed
sl@0
   634
				{
sl@0
   635
				numEntries=ret;
sl@0
   636
				goto Retry;
sl@0
   637
				}
sl@0
   638
			}
sl@0
   639
		}
sl@0
   640
	return ret;
sl@0
   641
	}
sl@0
   642
sl@0
   643
EXPORT_C void CWsScreenDevice::SetScreenSizeAndRotation(const TPixelsTwipsAndRotation &aSizeAndRotation)
sl@0
   644
/** Sets the current screen size in twips and pixels, and the rotation for the 
sl@0
   645
screen device.
sl@0
   646
sl@0
   647
@param aSizeAndRotation The new rotation and the screen size in both pixels 
sl@0
   648
and twips. */
sl@0
   649
	{
sl@0
   650
	// Need to reset the cache if the ratio of twip/pixels changes
sl@0
   651
	// Using multiply as this is much quicker than divide on ARM
sl@0
   652
	// No need to flush cache if this is a width/height swap
sl@0
   653
	if((iPhysicalScreenSizeInTwips.iWidth * aSizeAndRotation.iPixelSize.iWidth != aSizeAndRotation.iTwipsSize.iWidth * iDisplaySizeInPixels.iWidth
sl@0
   654
		|| iPhysicalScreenSizeInTwips.iHeight * aSizeAndRotation.iPixelSize.iHeight != aSizeAndRotation.iTwipsSize.iHeight * iDisplaySizeInPixels.iHeight)
sl@0
   655
		&& !(aSizeAndRotation.iPixelSize.iHeight == iDisplaySizeInPixels.iWidth
sl@0
   656
		&& aSizeAndRotation.iPixelSize.iWidth == iDisplaySizeInPixels.iHeight
sl@0
   657
		&& iPhysicalScreenSizeInTwips.iHeight == aSizeAndRotation.iTwipsSize.iWidth
sl@0
   658
		&& iPhysicalScreenSizeInTwips.iWidth == aSizeAndRotation.iTwipsSize.iHeight))
sl@0
   659
		{
sl@0
   660
		TypeFaceStore()->ReleaseTwipsCache();
sl@0
   661
		}
sl@0
   662
	Write(&aSizeAndRotation,sizeof(aSizeAndRotation),EWsSdOpSetScreenSizeAndRotation);
sl@0
   663
	iDisplaySizeInPixels=aSizeAndRotation.iPixelSize;
sl@0
   664
	iPhysicalScreenSizeInTwips=aSizeAndRotation.iTwipsSize;
sl@0
   665
	}
sl@0
   666
sl@0
   667
EXPORT_C void CWsScreenDevice::GetDefaultScreenSizeAndRotation(TPixelsTwipsAndRotation &aSizeAndRotation) const
sl@0
   668
/** Gets the current screen size (in both pixels and twips) and rotation.
sl@0
   669
sl@0
   670
This function always causes a flush of the window server buffer.
sl@0
   671
sl@0
   672
@param aSizeAndRotation The default screen size and rotation, defining screen 
sl@0
   673
size in both pixels and twips. */
sl@0
   674
	{
sl@0
   675
	TPckgBuf<TPixelsTwipsAndRotation> sarPkg;
sl@0
   676
  	WriteReplyP(&sarPkg,EWsSdOpGetDefaultScreenSizeAndRotation);
sl@0
   677
	aSizeAndRotation=sarPkg();
sl@0
   678
	}
sl@0
   679
sl@0
   680
EXPORT_C void CWsScreenDevice::SetScreenSizeAndRotation(const TPixelsAndRotation &aSizeAndRotation)
sl@0
   681
/** Sets the current screen size in pixels, and the rotation for the screen device.
sl@0
   682
sl@0
   683
This function always causes a flush of the window server buffer.
sl@0
   684
sl@0
   685
@param aSizeAndRotation The new rotation and the screen size in pixels. */
sl@0
   686
	{
sl@0
   687
	if(iDisplaySizeInPixels != aSizeAndRotation.iPixelSize
sl@0
   688
		&& !(aSizeAndRotation.iPixelSize.iHeight == iDisplaySizeInPixels.iWidth
sl@0
   689
		&& aSizeAndRotation.iPixelSize.iWidth == iDisplaySizeInPixels.iHeight))
sl@0
   690
		{
sl@0
   691
		// Reset the twips cache.
sl@0
   692
		TypeFaceStore()->ReleaseTwipsCache();
sl@0
   693
		}
sl@0
   694
	Write(&aSizeAndRotation,sizeof(aSizeAndRotation),EWsSdOpSetScreenSizeAndRotation2);
sl@0
   695
	iDisplaySizeInPixels=aSizeAndRotation.iPixelSize;
sl@0
   696
	iPhysicalScreenSizeInTwips=SizeInTwips();
sl@0
   697
	}
sl@0
   698
sl@0
   699
EXPORT_C void CWsScreenDevice::GetDefaultScreenSizeAndRotation(TPixelsAndRotation &aSizeAndRotation) const
sl@0
   700
/** Gets the current screen size (in pixels) and the rotation.
sl@0
   701
sl@0
   702
This function always causes a flush of the window server buffer.
sl@0
   703
sl@0
   704
@param aSizeAndRotation The default screen size in pixels and the rotation. */
sl@0
   705
	{
sl@0
   706
	TPckgBuf<TPixelsAndRotation> sarPkg;
sl@0
   707
  	WriteReplyP(&sarPkg,EWsSdOpGetDefaultScreenSizeAndRotation2);
sl@0
   708
	aSizeAndRotation=sarPkg();
sl@0
   709
	}
sl@0
   710
sl@0
   711
EXPORT_C TDisplayMode CWsScreenDevice::GetScreenModeDisplayMode(const TInt &aMode) const
sl@0
   712
/** Gets the display mode of the screen for the specified screen mode
sl@0
   713
sl@0
   714
This function always causes a flush of the window server buffer.
sl@0
   715
sl@0
   716
@param aMode The index of the screen mode for which the display mode is required
sl@0
   717
@return The display mode for the specified screen mode. */
sl@0
   718
	{
sl@0
   719
	return STATIC_CAST(TDisplayMode,WriteReplyInt(aMode,EWsSdOpGetScreenModeDisplayMode));
sl@0
   720
	}
sl@0
   721
 
sl@0
   722
EXPORT_C TPoint CWsScreenDevice::GetDefaultScreenModeOrigin() const
sl@0
   723
/** Gets the origin for the current screen mode
sl@0
   724
sl@0
   725
This function always causes a flush of the window server buffer.
sl@0
   726
sl@0
   727
@param aOrigin The default offset of the current 
sl@0
   728
screen mode from the physical screen. */
sl@0
   729
	{
sl@0
   730
	TPckgBuf<TPoint> pntPkg;
sl@0
   731
  	WriteReplyP(&pntPkg,EWsSdOpGetDefaultScreenModeOrigin);
sl@0
   732
	return pntPkg();
sl@0
   733
	}
sl@0
   734
sl@0
   735
EXPORT_C TPoint CWsScreenDevice::GetScreenModeOrigin(TInt aMode) const
sl@0
   736
/** Get the origin of the screen for the specified screen mode.
sl@0
   737
sl@0
   738
This function always causes a flush of the window server buffer.
sl@0
   739
sl@0
   740
@param aMode The index of the screen mode for which the screen origin is required. 
sl@0
   741
@param aOrigin The origin of the specified screen mode. */
sl@0
   742
	{
sl@0
   743
	TPckgBuf<TPoint> pntPkg;
sl@0
   744
	WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeOrigin);
sl@0
   745
	return pntPkg();
sl@0
   746
	}
sl@0
   747
sl@0
   748
EXPORT_C TSize CWsScreenDevice::GetScreenModeScale(TInt aMode) const
sl@0
   749
/** Gets the scale for the specified screen mode.
sl@0
   750
sl@0
   751
This function always causes a flush of the window server buffer.
sl@0
   752
sl@0
   753
@param aMode The index of the screen mode for which the screen scale is required. 
sl@0
   754
@return The scale for the specified screen mode. */
sl@0
   755
	{
sl@0
   756
	TPckgBuf<TSize> pntPkg;
sl@0
   757
	WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeScale);
sl@0
   758
	return pntPkg();
sl@0
   759
	}
sl@0
   760
sl@0
   761
EXPORT_C TSize CWsScreenDevice::GetCurrentScreenModeScale() const
sl@0
   762
/** Gets the scale for the current screen mode.
sl@0
   763
sl@0
   764
This function always causes a flush of the window server buffer.
sl@0
   765
sl@0
   766
@return The scale for the current screen mode. */
sl@0
   767
	{
sl@0
   768
	TPckgBuf<TSize> pntPkg;
sl@0
   769
	WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScale);
sl@0
   770
	return pntPkg();
sl@0
   771
	}
sl@0
   772
sl@0
   773
EXPORT_C TPoint CWsScreenDevice::GetCurrentScreenModeScaledOrigin() const
sl@0
   774
/** Gets the current screen mode's scaled origin.
sl@0
   775
sl@0
   776
The formula used is (A+B-1)/B
sl@0
   777
sl@0
   778
where:
sl@0
   779
sl@0
   780
- A is the screen mode origin in physical coordinates,
sl@0
   781
- B is the screen mode scale width.
sl@0
   782
sl@0
   783
The result obtained is the scaled origin of the present screen mode.
sl@0
   784
sl@0
   785
@return The scaled origin for the current screen mode. */
sl@0
   786
	{
sl@0
   787
	TPckgBuf<TPoint> pntPkg;
sl@0
   788
	WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScaledOrigin);
sl@0
   789
	return pntPkg();
sl@0
   790
	}
sl@0
   791
sl@0
   792
EXPORT_C TPoint CWsScreenDevice::GetScreenModeScaledOrigin(TInt aMode) const
sl@0
   793
/** Gets the specfied screen mode's scaled origin.
sl@0
   794
sl@0
   795
The functionality is same as CWsScreenDevice::GetCurrentScreenModeScaledOrigin().
sl@0
   796
sl@0
   797
It always causes a flush of the window server buffer.
sl@0
   798
sl@0
   799
@param aMode The index of the screen mode for which the scaled origin is required. 
sl@0
   800
@return The scaled origin for the specified screen mode. */
sl@0
   801
	{
sl@0
   802
	TPckgBuf<TPoint> pntPkg;
sl@0
   803
	WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeScaledOrigin);
sl@0
   804
	return pntPkg();
sl@0
   805
	}
sl@0
   806
sl@0
   807
/**
sl@0
   808
@internalComponent
sl@0
   809
@released
sl@0
   810
sl@0
   811
Used for testing purposes only.
sl@0
   812
sl@0
   813
@return The present screen mode.
sl@0
   814
*/
sl@0
   815
EXPORT_C TSizeMode CWsScreenDevice::GetCurrentScreenModeAttributes() const
sl@0
   816
	{
sl@0
   817
	TPckgBuf<TSizeMode> pntPkg;
sl@0
   818
	WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeAttributes);
sl@0
   819
	return pntPkg();
sl@0
   820
	}
sl@0
   821
sl@0
   822
/**
sl@0
   823
@internalComponent
sl@0
   824
@released
sl@0
   825
sl@0
   826
Used for testing purposes only.
sl@0
   827
sl@0
   828
@param aModeAtt Screen size mode to be set.
sl@0
   829
*/
sl@0
   830
EXPORT_C void CWsScreenDevice::SetCurrentScreenModeAttributes(const TSizeMode &aModeAtt)
sl@0
   831
	{
sl@0
   832
	Write(&aModeAtt,sizeof(aModeAtt),EWsSdOpSetCurrentScreenModeAttributes);
sl@0
   833
	}
sl@0
   834
sl@0
   835
EXPORT_C void CWsScreenDevice::SetAppScreenMode(TInt aMode)
sl@0
   836
/** Sets the application's screen mode; this also sets all the attributes
sl@0
   837
of the screen mode.
sl@0
   838
sl@0
   839
Note: although this API was added in Symbian OS v8.0, the functionality is 
sl@0
   840
only available from Symbian OS v8.1 onwards.
sl@0
   841
sl@0
   842
@param aMode The index of the application's new screen mode.*/
sl@0
   843
	{
sl@0
   844
	WriteInt(aMode,EWsSdOpSetAppScreenMode);
sl@0
   845
	}
sl@0
   846
sl@0
   847
EXPORT_C TInt CWsScreenDevice::NumScreenModes() const
sl@0
   848
/** Gets the number of available screen modes. 
sl@0
   849
sl@0
   850
Each mode has a different size, and one or more possible rotations/orientations.
sl@0
   851
sl@0
   852
This function always causes a flush of the window server buffer.
sl@0
   853
sl@0
   854
@return The number of screen modes. */
sl@0
   855
	{
sl@0
   856
	return(WriteReply(EWsSdOpGetNumScreenModes));
sl@0
   857
	}
sl@0
   858
sl@0
   859
EXPORT_C TInt CWsScreenDevice::CurrentScreenMode() const
sl@0
   860
/** Gets the current screen mode index.
sl@0
   861
sl@0
   862
This function always causes a flush of the window server buffer.
sl@0
   863
sl@0
   864
@return The index into the list of available screen modes of the current screen 
sl@0
   865
mode. */
sl@0
   866
	{
sl@0
   867
	return WriteReply(EWsSdOpGetScreenMode);
sl@0
   868
	}
sl@0
   869
sl@0
   870
EXPORT_C void CWsScreenDevice::SetScreenMode(TInt aMode)
sl@0
   871
/**
sl@0
   872
@publishedPartner
sl@0
   873
@released
sl@0
   874
sl@0
   875
Sets the current screen mode.
sl@0
   876
sl@0
   877
Note that this function is only useful for testing. This is because the screen mode 
sl@0
   878
normally reflects the state of real hardware, e.g. whether the cover is open 
sl@0
   879
or closed on a phone that supports screen flipping.
sl@0
   880
 
sl@0
   881
This function always causes a flush of the window server buffer.
sl@0
   882
sl@0
   883
@param aMode The screen mode index, starting from zero.
sl@0
   884
@capability WriteDeviceData */
sl@0
   885
	{
sl@0
   886
	WriteInt(aMode,EWsSdOpSetScreenMode);
sl@0
   887
	iDisplaySizeInPixels=SizeInPixels();
sl@0
   888
	iPhysicalScreenSizeInTwips=SizeInTwips();
sl@0
   889
	}
sl@0
   890
sl@0
   891
EXPORT_C void CWsScreenDevice::GetScreenModeSizeAndRotation(TInt aMode, TPixelsTwipsAndRotation &aSizeAndRotation) const
sl@0
   892
/** Get the screen rotation and size, in both pixels and twips, for the specified 
sl@0
   893
screen mode.
sl@0
   894
 
sl@0
   895
This function always causes a flush of the window server buffer.
sl@0
   896
sl@0
   897
@param aMode The index of the screen mode for which the screen size and rotation 
sl@0
   898
are required. 
sl@0
   899
@param aSizeAndRotation The orientation of the specified screen mode, and its 
sl@0
   900
size in both pixels and twips. */
sl@0
   901
	{
sl@0
   902
	TPckgBuf<TPixelsTwipsAndRotation> sarPkg;
sl@0
   903
  	WriteReplyP(&aMode,sizeof(aMode),&sarPkg,EWsSdOpGetScreenModeSizeAndRotation);
sl@0
   904
	aSizeAndRotation=sarPkg();
sl@0
   905
	}
sl@0
   906
sl@0
   907
EXPORT_C void CWsScreenDevice::GetScreenModeSizeAndRotation(TInt aMode, TPixelsAndRotation &aSizeAndRotation) const
sl@0
   908
/** Get the screen rotation and size (in pixels) for the specified screen mode.
sl@0
   909
 
sl@0
   910
This function always causes a flush of the window server buffer.
sl@0
   911
sl@0
   912
@param aMode The index of the screen mode for which the screen size and rotation 
sl@0
   913
are required. 
sl@0
   914
@param aSizeAndRotation The orientation of the specified screen mode, and its 
sl@0
   915
size in pixels. */
sl@0
   916
	{
sl@0
   917
	TPckgBuf<TPixelsAndRotation> sarPkg;
sl@0
   918
  	WriteReplyP(&aMode,sizeof(aMode),&sarPkg,EWsSdOpGetScreenModeSizeAndRotation2);
sl@0
   919
	aSizeAndRotation=sarPkg();
sl@0
   920
	}
sl@0
   921
sl@0
   922
EXPORT_C void CWsScreenDevice::SetCurrentRotations(TInt aMode, CFbsBitGc::TGraphicsOrientation aRotation) const
sl@0
   923
/** 
sl@0
   924
@publishedPartner
sl@0
   925
@released
sl@0
   926
sl@0
   927
Sets the screen rotation that should be used with a particular screen size. 
sl@0
   928
sl@0
   929
After calling this function, whenever you change into the screen size specified 
sl@0
   930
by aMode you will have the rotation aRotation. The setting remains in force 
sl@0
   931
until it is explicitly changed using this function. 
sl@0
   932
sl@0
   933
Panics if the specified rotation is not allowed by the given screen mode.
sl@0
   934
sl@0
   935
@param aMode The index of the screen mode the rotation applies to. 
sl@0
   936
@param aRotation The new screen orientation.
sl@0
   937
@see GetRotationsList()
sl@0
   938
@capability WriteDeviceData */
sl@0
   939
	{
sl@0
   940
	TWsSdCmdSetScreenRotation screenRotation(aMode,aRotation);
sl@0
   941
	Write(&screenRotation,sizeof(screenRotation),EWsSdOpSetModeRotation);
sl@0
   942
	}
sl@0
   943
sl@0
   944
EXPORT_C TInt CWsScreenDevice::GetRotationsList(TInt aMode, CArrayFixFlat<TInt> *aRotationList) const
sl@0
   945
/** Gets the list of valid rotations for a particular screen size.
sl@0
   946
sl@0
   947
The list is initialised in wsini.ini.
sl@0
   948
 
sl@0
   949
This function always causes a flush of the window server buffer.
sl@0
   950
sl@0
   951
@param aMode The index of the screen mode for which the rotation list 
sl@0
   952
is required. 
sl@0
   953
@param aRotationList The list of valid screen orientations. 
sl@0
   954
@return KErrNone if successful, otherwise another of the system-wide error 
sl@0
   955
codes. 
sl@0
   956
@see SetCurrentRotations() */
sl@0
   957
	{
sl@0
   958
	TUint modeList=(TUint)WriteReplyInt(aMode,EWsSdOpGetRotationList);
sl@0
   959
	TUint modeBit=1<<CFbsBitGc::EGraphicsOrientationNormal;
sl@0
   960
	TBool rots[4];
sl@0
   961
	TInt rotations=0;
sl@0
   962
	TInt ii;
sl@0
   963
	for (ii=0;ii<4;ii++)
sl@0
   964
		{
sl@0
   965
		rots[ii]=(modeList&modeBit);
sl@0
   966
		if (rots[ii])
sl@0
   967
			++rotations;
sl@0
   968
		modeBit=modeBit<<1;
sl@0
   969
		}
sl@0
   970
	if (!aRotationList)
sl@0
   971
		return rotations;
sl@0
   972
	TRAPD(err,aRotationList->ResizeL(rotations));
sl@0
   973
	if (err!=KErrNone)
sl@0
   974
		return(err);
sl@0
   975
	rotations=0;
sl@0
   976
	for (ii=0;ii<4;ii++)
sl@0
   977
		{
sl@0
   978
		if (rots[ii])
sl@0
   979
			(*aRotationList)[rotations++]=REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,ii);
sl@0
   980
		}
sl@0
   981
	return KErrNone;
sl@0
   982
	}
sl@0
   983
sl@0
   984
EXPORT_C TScreenModeEnforcement CWsScreenDevice::ScreenModeEnforcement() const
sl@0
   985
/** Gets the current screen mode enforcement settings.
sl@0
   986
sl@0
   987
The global screen mode enforcement setting defines the requirements that a 
sl@0
   988
group window must meet to be displayed. The requirements may have been set 
sl@0
   989
in wsini.ini, or using SetScreenModeEnforcement(). 
sl@0
   990
 
sl@0
   991
This function always causes a flush of the window server buffer.
sl@0
   992
sl@0
   993
@return The screen mode enforcement requirements. */
sl@0
   994
	{
sl@0
   995
	return((TScreenModeEnforcement)WriteReply(EWsSdOpScreenModeEnforcement));
sl@0
   996
	}
sl@0
   997
sl@0
   998
EXPORT_C void CWsScreenDevice::SetScreenModeEnforcement(TScreenModeEnforcement aMode) const
sl@0
   999
/** 
sl@0
  1000
@publishedPartner
sl@0
  1001
@released
sl@0
  1002
sl@0
  1003
Sets the screen mode enforcement requirements.
sl@0
  1004
sl@0
  1005
This global setting defines the requirements that a group window must meet 
sl@0
  1006
to be displayed. The value may be set using this function, but is more likely 
sl@0
  1007
to be defined in wsini.ini. 
sl@0
  1008
sl@0
  1009
@param aMode The screen mode enforcement requirements.
sl@0
  1010
@capability WriteDeviceData */
sl@0
  1011
	{
sl@0
  1012
	WriteInt(aMode,EWsSdOpSetScreenModeEnforcement);
sl@0
  1013
	}
sl@0
  1014
sl@0
  1015
EXPORT_C TInt CWsScreenDevice::GetScreenNumber() const
sl@0
  1016
/** Get device's screen number 
sl@0
  1017
sl@0
  1018
@return The device's screen number
sl@0
  1019
@see CWsScreenDevice::Construct( TInt aDefaultScreenNumber ) */
sl@0
  1020
	{
sl@0
  1021
	return WriteReply(EWsSdOpGetScreenNumber);
sl@0
  1022
	}
sl@0
  1023
sl@0
  1024
/** Gets the available screen size modes.
sl@0
  1025
sl@0
  1026
This function retrieves all available screen size modes which are supported by
sl@0
  1027
the server.
sl@0
  1028
sl@0
  1029
@param aModeList On return, the list of available screen size modes.
sl@0
  1030
@return The number of supported screen size modes if successful otherwise returns KErrNoMemory if 
sl@0
  1031
there is insufficient memory to create the array. */
sl@0
  1032
EXPORT_C TInt CWsScreenDevice::GetScreenSizeModeList(RArray<TInt>* aModeList) const
sl@0
  1033
	{
sl@0
  1034
	__ASSERT_ALWAYS(aModeList, Panic(EW32PanicNullArray));
sl@0
  1035
	aModeList->Reset();
sl@0
  1036
	TInt count=WriteReply(EWsSdOpGetNumScreenModes);
sl@0
  1037
	TInt totSize=count*sizeof(TInt);
sl@0
  1038
	TInt* allocMem=static_cast<TInt*>(User::Alloc(totSize));
sl@0
  1039
	if(allocMem==NULL)
sl@0
  1040
		{
sl@0
  1041
		return KErrNoMemory;
sl@0
  1042
		}
sl@0
  1043
	TPtr8 listPtr(reinterpret_cast<TUint8*>(allocMem), totSize);
sl@0
  1044
	count=WriteReplyP(&listPtr, EWsSdOpGetScreenSizeModeList);
sl@0
  1045
	new(aModeList) RArray<TInt>(allocMem, count);
sl@0
  1046
	return count;	
sl@0
  1047
	}	
sl@0
  1048
sl@0
  1049
EXPORT_C TInt CWsScreenDevice::SetBackLight(TBool aBackLight)
sl@0
  1050
/** Set back light. 
sl@0
  1051
@param aBackLight, ETrue Set the backlight on, EFlase set the backlight off.
sl@0
  1052
@capability EikServ SID */
sl@0
  1053
	{
sl@0
  1054
	return(WriteReplyInt(aBackLight,EWsClOpSetBackLight));
sl@0
  1055
	}
sl@0
  1056
sl@0
  1057
/** Interface Extension capability
sl@0
  1058
	Use of this interface going forward will allow the published client interface to be dynamically extended.
sl@0
  1059
	Note that the pointer returned is only good for the lifetime of the called CBase derived object.
sl@0
  1060
sl@0
  1061
	@param  aInterfaceId	uniqueid or well known id of interface
sl@0
  1062
	@return	pointer to interface object matching this ID or NULL if no match.
sl@0
  1063
*/
sl@0
  1064
EXPORT_C TAny* CWsScreenDevice::GetInterface(TUint aInterfaceId)
sl@0
  1065
	{
sl@0
  1066
	return iExtension->GetInterface(aInterfaceId);
sl@0
  1067
	}
sl@0
  1068
sl@0
  1069
/** Returns whether the given screen size mode is dynamic or not.
sl@0
  1070
	Dynamic screen size modes may change their size in pixels and/or twips 
sl@0
  1071
	and other attributes at run time, so they must not be cached. Static size 
sl@0
  1072
	mode attributes will not change at run time, but may not make full use of the display.
sl@0
  1073
	Invalid size modes shall return EFalse.
sl@0
  1074
sl@0
  1075
	@param aSizeMode The screen size mode to check.
sl@0
  1076
	@return ETrue if the given screen size mode is dynamic, EFalse otherwise.
sl@0
  1077
*/
sl@0
  1078
EXPORT_C TBool CWsScreenDevice::IsModeDynamic(TInt /*aSizeMode*/) const
sl@0
  1079
	{
sl@0
  1080
	return EFalse;
sl@0
  1081
	}
sl@0
  1082
sl@0
  1083
/** Returns whether the current screen size mode is dynamic or not.
sl@0
  1084
sl@0
  1085
	@return ETrue if current screen size mode is dynamic, EFalse otherwise.
sl@0
  1086
	@see IsModeDynamic
sl@0
  1087
*/
sl@0
  1088
EXPORT_C TBool CWsScreenDevice::IsCurrentModeDynamic() const
sl@0
  1089
	{
sl@0
  1090
	return EFalse;
sl@0
  1091
	}