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