1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/CLIENT/RSCRDEV.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1091 @@
1.4 +// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Shells for window server screen device
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include <e32hal.h>
1.23 +#include "../SERVER/w32cmd.h"
1.24 +#include "CLIENT.H"
1.25 +#include "w32comm.h"
1.26 +#include "scrdevextension.h"
1.27 +
1.28 +const TInt KDefaultScreenNumber = 0 ;
1.29 +
1.30 +EXPORT_C CWsScreenDevice::CWsScreenDevice()
1.31 +/** Default constructor. Developers should use the other constructor overload. */
1.32 + {
1.33 + }
1.34 +
1.35 +EXPORT_C CWsScreenDevice::CWsScreenDevice(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
1.36 +/** Constructs a new screen device attached to a particular window server session.
1.37 +
1.38 +@param aWs The window server session this screen should be attached to. */
1.39 + {
1.40 + }
1.41 +
1.42 +EXPORT_C TInt CWsScreenDevice::CreateContext(CGraphicsContext *&aGc)
1.43 +/** Creates a graphics context for this device.
1.44 +
1.45 +This function always causes a flush of the window server buffer.
1.46 +
1.47 +@param aGc On successful return, contains a new graphics context referring
1.48 +to this screen device.
1.49 +@return KErrNone if successful, otherwise one of the system-wide error codes.
1.50 +@see CGraphicsDevice::CreateContext() */
1.51 + {
1.52 + if ((aGc=new CWindowGc(this))==NULL)
1.53 + return(KErrNoMemory);
1.54 + TInt err=((CWindowGc *)aGc)->Construct();
1.55 + if (err!=KErrNone)
1.56 + {
1.57 + delete aGc;
1.58 + aGc=NULL;
1.59 + }
1.60 + return(err);
1.61 + }
1.62 +
1.63 +EXPORT_C CWsScreenDevice::~CWsScreenDevice()
1.64 +/** Destructor. */
1.65 + {
1.66 + if (iBuffer)
1.67 + {
1.68 + if (iWsHandle)
1.69 + Write(EWsSdOpFree);
1.70 + }
1.71 + if (iExtension)
1.72 + {
1.73 + delete TypeFaceStore();
1.74 + delete iExtension;
1.75 + }
1.76 + }
1.77 +
1.78 +#pragma warning(disable : 4710)
1.79 +/**
1.80 +Completes construction of the object.
1.81 +
1.82 +This method invokes Construct(TInt aDefaultScreenNumber) with default Screen number.
1.83 +@return KErrNone if successful, otherwise another of the system-wide error codes.
1.84 +*/
1.85 +EXPORT_C TInt CWsScreenDevice::Construct()
1.86 + {
1.87 + return Construct( KDefaultScreenNumber ) ;
1.88 + }
1.89 +
1.90 +
1.91 +EXPORT_C TInt CWsScreenDevice::Construct(TInt aDefaultScreenNumber)
1.92 +/** Completes construction of the object.
1.93 +
1.94 +This function always causes a flush of the window server buffer.
1.95 +@param aDefaultScreenNumber - This is the screen on which an application will start
1.96 +@return KErrNone if successful, otherwise another of the system-wide error
1.97 +codes.
1.98 +@panic TW32Panic 17 in debug builds if called on an already constructed object.*/
1.99 + {
1.100 + __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
1.101 + TInt ret;
1.102 + TWsClCmdCreateScreenDevice createScreenDevice;
1.103 + createScreenDevice.screenNumber = aDefaultScreenNumber;
1.104 + createScreenDevice.clientScreenDevicePointer = (TUint)this;
1.105 + if ( ( ret=iBuffer->WriteReplyWs(&createScreenDevice,sizeof(createScreenDevice),EWsClOpCreateScreenDevice ) ) < 0 )
1.106 + {
1.107 + iBuffer=NULL;
1.108 + }
1.109 + else
1.110 + {
1.111 + iWsHandle=ret;
1.112 + //If the extension fails to allocate then clients will be refused access to the extension interface.
1.113 + TRAP(ret,iExtension=new(ELeave) CScrDevExtension(iBuffer,iWsHandle));
1.114 + if (ret>=KErrNone)
1.115 + {
1.116 + TRAP(ret,iExtension->SetTypefaceStore(CFbsTypefaceStore::NewL(this)));
1.117 + }
1.118 + iDisplaySizeInPixels=SizeInPixels();
1.119 + iPhysicalScreenSizeInTwips=SizeInTwips();
1.120 + if (iDisplaySizeInPixels.iWidth==0)
1.121 + {
1.122 + TMachineInfoV1Buf macInfo;
1.123 + UserHal::MachineInfo(macInfo);
1.124 + iPhysicalScreenSizeInTwips=macInfo().iPhysicalScreenSize;
1.125 + iDisplaySizeInPixels=macInfo().iDisplaySizeInPixels;
1.126 + }
1.127 + }
1.128 + return(ret);
1.129 + }
1.130 +#pragma warning(default : 4710)
1.131 +
1.132 +EXPORT_C TDisplayMode CWsScreenDevice::DisplayMode() const
1.133 +/** Gets the device's display mode.
1.134 +
1.135 +This function always causes a flush of the window server buffer.
1.136 +
1.137 +@return The device's display mode.
1.138 +@see CGraphicsDevice::DisplayMode() */
1.139 + {
1.140 + return((TDisplayMode)WriteReply(EWsSdOpDisplayMode));
1.141 + }
1.142 +
1.143 +EXPORT_C TRect CWsScreenDevice::PointerRect() const
1.144 +/** Gets the active area for the pointing device.
1.145 +
1.146 +This is a device-dependent parameter, and will typically depend on the screen
1.147 +size and other factors.
1.148 +
1.149 +This function always causes a flush of the window server buffer.
1.150 +
1.151 +@return The active area, measured in pixels. */
1.152 + {
1.153 + TPckgBuf<TRect> rectPkg;
1.154 + WriteReplyP(&rectPkg,EWsSdOpPointerRect);
1.155 + return(rectPkg());
1.156 + }
1.157 +
1.158 +EXPORT_C TSize CWsScreenDevice::SizeInPixels() const
1.159 +/** Gets the size of the screen device area in pixels.
1.160 +
1.161 +This function always causes a flush of the window server buffer.
1.162 +
1.163 +@return The x and y dimensions of the screen device area, in pixels.
1.164 +@see CGraphicsDevice::SizeInPixels() */
1.165 + {
1.166 + TPckgBuf<TSize> sizePkg;
1.167 + WriteReplyP(&sizePkg,EWsSdOpPixelSize);
1.168 + return(sizePkg());
1.169 + }
1.170 +
1.171 +EXPORT_C TSize CWsScreenDevice::SizeInTwips() const
1.172 +/** Gets the size of the screen device area in twips.
1.173 +
1.174 +This function always causes a flush of the window server buffer.
1.175 +
1.176 +@return The x and y dimensions of the screen device area, in twips.
1.177 +@see CGraphicsDevice::SizeInTwips() */
1.178 + {
1.179 + TPckgBuf<TSize> sizePkg;
1.180 + WriteReplyP(&sizePkg,EWsSdOpTwipsSize);
1.181 + return(sizePkg());
1.182 + }
1.183 +
1.184 +EXPORT_C TInt CWsScreenDevice::HorizontalTwipsToPixels(TInt aTwips) const
1.185 +/** Translates a twips to a pixel value.
1.186 +
1.187 +@param aTwips The value in twips.
1.188 +@return The equivalent number of pixels.
1.189 +@see MGraphicsDeviceMap::HorizontalTwipsToPixels() */
1.190 + {
1.191 + TInt64 twips=aTwips;
1.192 + twips=(twips*iDisplaySizeInPixels.iWidth+(iPhysicalScreenSizeInTwips.iWidth/2))/iPhysicalScreenSizeInTwips.iWidth;
1.193 + return I64INT(twips);
1.194 + }
1.195 +
1.196 +EXPORT_C TInt CWsScreenDevice::VerticalTwipsToPixels(TInt aTwips) const
1.197 +/** Translates a vertical dimension of a screen device in twips into pixels.
1.198 +
1.199 +@param aTwips A vertical dimension of a device in twips.
1.200 +@return The vertical dimension in pixels. */
1.201 + {
1.202 + TInt64 twips=aTwips;
1.203 + twips=(twips*iDisplaySizeInPixels.iHeight+(iPhysicalScreenSizeInTwips.iHeight/2))/iPhysicalScreenSizeInTwips.iHeight;
1.204 + return I64INT(twips);
1.205 + }
1.206 +
1.207 +EXPORT_C TInt CWsScreenDevice::HorizontalPixelsToTwips(TInt aPixels) const
1.208 +/** Translates a specified pixel value to a twips value.
1.209 +
1.210 +@param aPixels The value in pixels to be translated.
1.211 +@return The equivalent number of twips. */
1.212 + {
1.213 + TInt64 pixels=aPixels;
1.214 + pixels=(pixels*iPhysicalScreenSizeInTwips.iWidth+(iDisplaySizeInPixels.iWidth/2))/iDisplaySizeInPixels.iWidth;
1.215 + return I64INT(pixels);
1.216 + }
1.217 +
1.218 +EXPORT_C TInt CWsScreenDevice::VerticalPixelsToTwips(TInt aPixels) const
1.219 +/** Translates a vertical dimension of a screen device in pixels into twips.
1.220 +
1.221 +@param aPixels A vertical dimension of a device in pixels.
1.222 +@return The vertical dimension in twips.
1.223 +@see MGraphicsDeviceMap::VerticalPixelsToTwips() */
1.224 + {
1.225 + TInt64 pixels=aPixels;
1.226 + pixels=(pixels*iPhysicalScreenSizeInTwips.iHeight+(iDisplaySizeInPixels.iHeight/2))/iDisplaySizeInPixels.iHeight;
1.227 + return I64INT(pixels);
1.228 + }
1.229 +
1.230 +EXPORT_C void CWsScreenDevice::GetPixel(TRgb &aColor,const TPoint &aPixel) const
1.231 +/** Gets the RGB colour of an individual pixel on a screen device.
1.232 +
1.233 +This function always causes a flush of the window server buffer.
1.234 +
1.235 +@param aColor On return, contains the RGB colour of the pixel.
1.236 +@param aPixel The x,y co-ordinates of the pixel. The top left pixel is (0,0).
1.237 +@see CBitmapDevice::GetPixel() */
1.238 + {
1.239 + aColor.SetInternal(((TUint32)WriteReply(&aPixel,sizeof(aPixel),EWsSdOpPixel)));
1.240 + }
1.241 +
1.242 +EXPORT_C void CWsScreenDevice::GetScanLine(TDes8 &aScanLine,const TPoint &aStartPixel,TInt aPixelLength, TDisplayMode aDispMode) const
1.243 +/** Gets a scanline into a buffer.
1.244 +
1.245 +The pixels are converted from the current screen display mode format
1.246 +to the format of the specified device display mode.
1.247 +
1.248 +By specifying the start pixel and number of pixels either the whole or a portion
1.249 +of a row of screen pixels may be copied.
1.250 +
1.251 +This function always causes a flush of the window server buffer.
1.252 +
1.253 +@param aScanLine A buffer into which pixels are copied, it must be sufficiently
1.254 +large to store all the scanline pixels.
1.255 +@param aStartPixel The (x,y) co-ordinates of the first pixel of the bitmap scanline
1.256 +to be put into the buffer.
1.257 +@param aPixelLength The number of pixels to put into the buffer.
1.258 +@param aDispMode The display mode into which to convert the pixels.
1.259 +@see CBitmapDevice::GetScanLine() */
1.260 + {
1.261 + TWsSdCmdGetScanLine getScanLine(aStartPixel,aPixelLength,aDispMode);
1.262 + WriteReplyP(&getScanLine,sizeof(getScanLine),&aScanLine,EWsSdOpGetScanLine);
1.263 + }
1.264 +
1.265 +EXPORT_C TBool CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2) const
1.266 +/** Compares two areas of the screen to see if they have the same content.
1.267 +
1.268 +If there are any sprites on the screen they are not included in the comparison.
1.269 +
1.270 +This function always causes a flush of the window server buffer.
1.271 +
1.272 +@param aRect1 A rectangle.
1.273 +@param aRect2 Another rectangle.
1.274 +@return ETrue if the two screen areas are identical. */
1.275 + {
1.276 + return RectCompare(aRect1,aRect2,ERemoveSprite);
1.277 + }
1.278 +
1.279 +EXPORT_C TBool CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2,TUint aFlags) const
1.280 +/** Compares two areas of the screen to see if they have the same content.
1.281 +
1.282 +This function always causes a flush of the window server buffer.
1.283 +
1.284 +@param aRect1 A rectangle.
1.285 +@param aRect2 Another rectangle.
1.286 +@param aFlags EIncludeSprite to include the sprite in the compare or ERemoveSprite to remove the sprite.
1.287 +@return ETrue if the two screen areas are identical. */
1.288 + {
1.289 + TWsSdCmdRectCompare rectCompare(aRect1,aRect2,aFlags);
1.290 + return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpRectCompare));
1.291 + }
1.292 +
1.293 +EXPORT_C TInt CWsScreenDevice::CopyScreenToBitmap(const CFbsBitmap *aBitmap) const
1.294 +/** Saves the entire screen to a bitmap.
1.295 +
1.296 +This function always causes a flush of the window server buffer.
1.297 +
1.298 +@param aBitmap Bitmap to be filled with the screen image.
1.299 +@return KErrNone if successful, otherwise one of the system-wide error codes. */
1.300 + {
1.301 + AddToBitmapArray(aBitmap->Handle());
1.302 + TWsSdCmdCopyScreenToBitmap rectCompare(aBitmap->Handle());
1.303 + return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap));
1.304 + }
1.305 +
1.306 +EXPORT_C TInt CWsScreenDevice::CopyScreenToBitmap(const CFbsBitmap *aBitmap, const TRect &aRect) const
1.307 +/** Saves a region of the screen to a bitmap.
1.308 +
1.309 +This function always causes a flush of the window server buffer.
1.310 +
1.311 +@param aBitmap Bitmap to be filled with the screen region image.
1.312 +@param aRect Screen region to be saved.
1.313 +@return KErrNone if successful, otherwise one of the system-wide error codes. */
1.314 + {
1.315 + AddToBitmapArray(aBitmap->Handle());
1.316 + TWsSdCmdCopyScreenToBitmap2 rectCompare(aRect, aBitmap->Handle());
1.317 + return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap2));
1.318 + }
1.319 +
1.320 +EXPORT_C TInt CWsScreenDevice::GetNearestFontInTwips(CFont*& aFont,const TFontSpec& aFontSpec)
1.321 +/** Gets the nearest font, in twips, to that in the specified font specification.
1.322 +
1.323 +This function is replaced by GetNearestFontToDesignHeightInTwips()
1.324 +
1.325 +The font and bitmap server returns a pointer to the nearest matching font
1.326 +from those available, in aFont.
1.327 +
1.328 +@param aFont On return, this is set to point to the device font closest to the font
1.329 +specification passed in the second argument.
1.330 +@param aFontSpec An absolute font specification.
1.331 +@return KErrNone if successful, otherwise another of the system-wide error
1.332 +codes.
1.333 +@see MGraphicsDeviceMap::GetNearestFontInTwips()
1.334 +@deprecated */
1.335 + {
1.336 + return GetNearestFontToDesignHeightInTwips(aFont, aFontSpec);
1.337 + }
1.338 +CFbsTypefaceStore* CWsScreenDevice::TypeFaceStore()const
1.339 +/** Helper member fn to access the movable typeface store.
1.340 + **/
1.341 + {
1.342 + return iExtension->TypefaceStore();
1.343 + }
1.344 +
1.345 +EXPORT_C TInt CWsScreenDevice::GetNearestFontToDesignHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec)
1.346 +/** Gets the nearest font in twips to that specified.
1.347 +
1.348 +The font and bitmap server returns a pointer to the nearest matching font
1.349 +from those available. Matches to design height of font - this gives no
1.350 +guarantees on the actual physical size of the font.
1.351 +
1.352 +This function replaces GetNearestFontInTwips
1.353 +
1.354 +@param aFont On return, the pointer is set to point to the device font which
1.355 +most closely approximates to the required font specification.
1.356 +@param aFontSpec An absolute font specification.
1.357 +@return KErrNone, if successful; otherwise, another of the system-wide error
1.358 +codes.
1.359 +@see MGraphicsDeviceMap::GetNearestFontToDesignHeightInTwips() */
1.360 + {
1.361 + return TypeFaceStore()->GetNearestFontToDesignHeightInTwips(aFont, aFontSpec);
1.362 + }
1.363 +
1.364 +/** Gets the nearest font, in twips, to that specified.
1.365 +
1.366 +The font and bitmap server returns a pointer to the nearest matching font
1.367 +from those available. Matches to max height of font - this does its best
1.368 +to return a font that will fit within the maximum height specified (but
1.369 +note that variations due to hinting algorithms may rarely result in this
1.370 +height being exceeded by up to one pixel). Problems can also be
1.371 +encountered with bitmap fonts where the typeface exists but doesn't have
1.372 +a font small enough.
1.373 +
1.374 +@param aFont On return, the pointer is set to point to the device font which
1.375 +most closely approximates to the required font specification.
1.376 +@param aFontSpec An absolute font specification.
1.377 +@param aMaxHeight The maximum height within which the font must fit - this
1.378 +overrides the height specified in the TFontSpec.
1.379 +@return KErrNone, if successful; otherwise, another of the system-wide error
1.380 +codes.
1.381 +@see MGraphicsDeviceMap::GetNearestFontToMaxHeightInTwips() */
1.382 +EXPORT_C TInt CWsScreenDevice::GetNearestFontToMaxHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight)
1.383 + {
1.384 + return TypeFaceStore()->GetNearestFontToMaxHeightInTwips(aFont, aFontSpec, aMaxHeight);
1.385 + }
1.386 +
1.387 +EXPORT_C TInt CWsScreenDevice::GetNearestFontInPixels(CFont*& aFont,const TFontSpec& aFontSpec)
1.388 +/** Gets the nearest font to that specified for use by a bitmapped graphics device.
1.389 +
1.390 +This function is replaced by GetNearestFontToDesignHeightInPixels()
1.391 +
1.392 +The font and bitmap server returns a pointer to the nearest matching font
1.393 +from those available, in aFont.
1.394 +
1.395 +@param aFont On return, this is set to point to the device font that is
1.396 +closest to the font specification passed in the second argument
1.397 +@param aFontSpec An absolute font specification
1.398 +@return KErrNone if successful, otherwise another of the system-wide error
1.399 +codes.
1.400 +@see CBitmapDevice::GetNearestFontInPixels()
1.401 +@deprecated */
1.402 + {
1.403 + return GetNearestFontToDesignHeightInPixels(aFont, aFontSpec);
1.404 + }
1.405 +
1.406 +EXPORT_C TInt CWsScreenDevice::GetNearestFontToDesignHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec)
1.407 +/** Gets the nearest font in pixels to that specified.
1.408 +
1.409 +The font and bitmap server returns a pointer to the nearest matching font
1.410 +from those available. Matches to design height of font - this gives no
1.411 +guarantees on the actual physical size of the font.
1.412 +
1.413 +This function replaces GetNearestFontInTwips
1.414 +
1.415 +@param aFont On return, the pointer is set to point to the device font which
1.416 +most closely approximates to the required font specification.
1.417 +@param aFontSpec An absolute font specification.
1.418 +@return KErrNone, if successful; otherwise, another of the system-wide error
1.419 +codes.
1.420 +@see CBitmapDevice::GetNearestFontToDesignHeightInPixels() */
1.421 + {
1.422 + return TypeFaceStore()->GetNearestFontToDesignHeightInPixels(aFont, aFontSpec);
1.423 + }
1.424 +
1.425 +/** Gets the nearest font in pixels to that specified.
1.426 +
1.427 +The font and bitmap server returns a pointer to the nearest matching font
1.428 +from those available. Matches to max height of font - this does its best
1.429 +to return a font that will fit within the maximum height specified (but
1.430 +note that variations due to hinting algorithms may rarely result in this
1.431 +height being exceeded by up to one pixel). Problems can also be
1.432 +encountered with bitmap fonts where the typeface exists but doesn't have
1.433 +a font small enough.
1.434 +
1.435 +@param aFont On return, the pointer is set to point to the device font which
1.436 +most closely approximates to the required font specification.
1.437 +@param aFontSpec An absolute font specification.
1.438 +@param aMaxHeight The maximum height within which the font must fit - this
1.439 +overrides the height specified in the TFontSpec.
1.440 +@return KErrNone, if successful; otherwise, another of the system-wide error
1.441 +codes.
1.442 +@see CBitmapDevice::GetNearestFontToMaxHeightInPixels() */
1.443 +EXPORT_C TInt CWsScreenDevice::GetNearestFontToMaxHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight)
1.444 + {
1.445 + return TypeFaceStore()->GetNearestFontToMaxHeightInPixels(aFont, aFontSpec, aMaxHeight);
1.446 + }
1.447 +
1.448 +EXPORT_C TInt CWsScreenDevice::NumTypefaces() const
1.449 +/** Gets the number of typefaces supported by the screen device.
1.450 +
1.451 +@return The number of typefaces supported.
1.452 +@see CGraphicsDevice::NumTypefaces() */
1.453 + {
1.454 + return(TypeFaceStore()->NumTypefaces());
1.455 + }
1.456 +
1.457 +EXPORT_C void CWsScreenDevice::TypefaceSupport(TTypefaceSupport& aTypefaceSupport,TInt aTypefaceIndex) const
1.458 +/** Gets typeface information for a particular typeface index number.
1.459 +
1.460 +This information is returned in aTypefaceSupport, and includes: the typeface
1.461 +name and typeface attributes (in a TTypeface object), the number of font heights,
1.462 +the maximum and minimum font heights and whether it is a scalable typeface.
1.463 +
1.464 +@param aTypefaceSupport On return, if the function executed successfully,
1.465 +this contains the typeface information.
1.466 +@param aTypefaceIndex A typeface index number, in the range zero to (NumTypefaces()
1.467 +- 1).
1.468 +@see CGraphicsDevice::TypefaceSupport() */
1.469 + {
1.470 + TypeFaceStore()->TypefaceSupport(aTypefaceSupport,aTypefaceIndex);
1.471 + }
1.472 +
1.473 +EXPORT_C TInt CWsScreenDevice::FontHeightInTwips(TInt aTypefaceIndex,TInt aHeightIndex) const
1.474 +/** Gets the height in twips of the specified font.
1.475 +
1.476 +The value returned is rounded up or down to the nearest font height in twips.
1.477 +
1.478 +The specified font is the one with height index number aHeightIndex of the
1.479 +typeface with index number aTypefaceIndex.
1.480 +
1.481 +@param aTypefaceIndex A typeface index number, in the range: 0 to (NumTypefaces() - 1).
1.482 +@param aHeightIndex A font height index number, in the range: 0 to (iNumHeights - 1).
1.483 +@return The height of the font in twips.
1.484 +@see CGraphicsDevice::FontHeightInTwips() */
1.485 + {
1.486 + return(TypeFaceStore()->FontHeightInTwips(aTypefaceIndex,aHeightIndex));
1.487 + }
1.488 +
1.489 +EXPORT_C TInt CWsScreenDevice::FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const
1.490 +/** Gets the height of the specified font in pixels.
1.491 +
1.492 +The value returned is rounded up or down to the nearest font height in pixels.
1.493 +
1.494 +The specified font is the one with height index number aHeightIndex of the
1.495 +typeface with index number aTypefaceIndex.
1.496 +
1.497 +@param aTypefaceIndex A typeface index number, in the range: 0 to (NumTypefaces() - 1).
1.498 +@param aHeightIndex A font height index number, in the range: 0 to (iNumHeights - 1).
1.499 +@return The height of the font in pixels.
1.500 +@see CBitmapDevice::FontHeightInPixels() */
1.501 + {
1.502 + return(TypeFaceStore()->FontHeightInPixels(aTypefaceIndex,aHeightIndex));
1.503 + }
1.504 +
1.505 +EXPORT_C TInt CWsScreenDevice::GetFontById(CFont *&aFont,TUid aUid,const TAlgStyle& aAlgStyle)
1.506 +/** Gets a font by its bitmap UID.
1.507 +
1.508 +Within a font file each font has its own UID. An algorithmic style is not
1.509 +part of the actual font description, but is applied to it. For example algorithmic
1.510 +bolding applies an algorithm to increase the apparent weight of each character
1.511 +in the font. Note that the algorithm is applied blindly, and that a typeface
1.512 +may already have a style e.g. it may already be bold or italic. Thus a bold
1.513 +face will appear extra-bold if algorithmic bolding is applied to it. Algorithmic
1.514 +effects are not necessarily a substitute for typeface design and should be
1.515 +used with care.
1.516 +
1.517 +@param aFont On a successful return, contains a pointer to the new CFont.
1.518 +@param aUid UID of the bitmap font.
1.519 +@param aAlgStyle The algorithmic style to apply.
1.520 +@return KErrNone if successful, otherwise one of the system-wide error codes. */
1.521 + {
1.522 + return(TypeFaceStore()->GetFontById(aFont,aUid,aAlgStyle));
1.523 + }
1.524 +
1.525 +EXPORT_C TInt CWsScreenDevice::AddFile(const TDesC& aName,TInt& aId)
1.526 +/** Adds a font file to the device's typeface store. The specified font
1.527 +file must be accessible to any process, i.e. not located inside an
1.528 +application's private directory.
1.529 +
1.530 +@param aName Name of the font file.
1.531 +@param aId ID for the font file.
1.532 +@return KErrNone if successful, otherwise one of the system-wide error codes.
1.533 +@see CBitmapDevice::AddFile() */
1.534 + {
1.535 + return(TypeFaceStore()->AddFile(aName, aId));
1.536 + }
1.537 +
1.538 +EXPORT_C void CWsScreenDevice::RemoveFile(TInt aId)
1.539 +/** Removes a font file from the font store.
1.540 +
1.541 +@param aId The ID of the font file to be removed, default 0.
1.542 +@see CBitmapDevice::RemoveFile() */
1.543 + {
1.544 + TypeFaceStore()->RemoveFile(aId);
1.545 + }
1.546 +
1.547 +EXPORT_C void CWsScreenDevice::ReleaseFont(CFont* aFont)
1.548 +/** Releases a specified font.
1.549 +
1.550 +This function is used to indicate that the specified font is no longer needed
1.551 +for use by the screen device. As fonts can be shared between applications,
1.552 +this function does not delete the copy of the font from RAM, unless the font
1.553 +was only being used by this device.
1.554 +
1.555 +@param aFont A pointer to the font to be released.
1.556 +@see MGraphicsDeviceMap::ReleaseFont() */
1.557 + {
1.558 + TypeFaceStore()->ReleaseFont(aFont);
1.559 + }
1.560 +
1.561 +EXPORT_C void CWsScreenDevice::PaletteAttributes(TBool& aModifiable,TInt& aNumEntries) const
1.562 +/** Gets the attributes of the device's palette.
1.563 +
1.564 +This function always causes a flush of the window server buffer.
1.565 +
1.566 +@param aModifiable On return, indicates whether or not the device's palette
1.567 +is modifiable (true) or fixed (false).
1.568 +@param aNumEntries On return, holds the number of entries in the device's
1.569 +palette.
1.570 +@see CFbsScreenDevice::PaletteAttributes() */
1.571 + {
1.572 + TInt ret=WriteReply(EWsSdOpPaletteAttributes);
1.573 + aModifiable=ret&EWsSdSetableBitFlag;
1.574 + aNumEntries=ret&(~EWsSdSetableBitFlag);
1.575 + }
1.576 +
1.577 +EXPORT_C void CWsScreenDevice::SetPalette(CPalette* aPalette)
1.578 +/** Sets the screen device's palette.
1.579 +
1.580 +This function always causes a flush of the window server buffer.
1.581 +
1.582 +Use of this function is deprecated. SetCustomPalette() should be used instead.
1.583 +
1.584 +@param aPalette The screen device's new palette. */
1.585 + {
1.586 +#if defined(__WINS__)
1.587 + __ASSERT_DEBUG(SetCustomPalette(aPalette)==KErrNone,Panic(EW32PanicSilentFail));
1.588 +#endif
1.589 + SetCustomPalette(aPalette);
1.590 + }
1.591 +
1.592 +EXPORT_C TInt CWsScreenDevice::SetCustomPalette(const CPalette* aPalette)
1.593 +/** Sets the custom palette.
1.594 +
1.595 +This function always causes a flush of the window server buffer.
1.596 +
1.597 +@param aPalette The custom palette.
1.598 +@return KErrNone if sucessful, or one of the system error codes.
1.599 +@panic W32 6 aPalette is NULL.
1.600 +@capability WriteDeviceData */
1.601 + {
1.602 + __ASSERT_ALWAYS(aPalette,Panic(EW32PanicNullPalette));
1.603 + TPtr8 palette(NULL,0);
1.604 + CONST_CAST(CPalette*,aPalette)->GetDataPtr(0,aPalette->Entries(),palette);
1.605 + TPtr8 empty(NULL,0);
1.606 + return WriteReplyByProvidingRemoteReadAccess(&empty, sizeof(empty), &palette, EWsSdOpSetPalette);
1.607 + }
1.608 +
1.609 +EXPORT_C TInt CWsScreenDevice::GetPalette(CPalette*& aPalette) const
1.610 +/** Gets the screen device's palette.
1.611 +
1.612 +This function always causes a flush of the window server buffer.
1.613 +
1.614 +@param aPalette On return, contains the screen device's palette. The caller
1.615 +takes responsibility for discarding the palette.
1.616 +@return KErrNone if successful, otherwise another of the system-wide error
1.617 +codes.
1.618 +@see CFbsScreenDevice::GetPalette() */
1.619 + {
1.620 + TBool modifiable; //Dummy parameter
1.621 + TInt numEntries;
1.622 + TInt ret;
1.623 + PaletteAttributes(modifiable,numEntries);
1.624 + aPalette=NULL;
1.625 +Retry:
1.626 + TRAP(ret,aPalette=CPalette::NewL(numEntries));
1.627 + if (ret==KErrNone)
1.628 + {
1.629 + TPtr8 palette(NULL,0);
1.630 + aPalette->GetDataPtr(0,numEntries,palette);
1.631 + ret=WriteReplyIntP(numEntries,&palette,EWsSdOpGetPalette);
1.632 + if (ret!=KErrNone)
1.633 + {
1.634 + delete aPalette;
1.635 + aPalette=NULL;
1.636 + if (ret>0) //The mode of the screen display changed
1.637 + {
1.638 + numEntries=ret;
1.639 + goto Retry;
1.640 + }
1.641 + }
1.642 + }
1.643 + return ret;
1.644 + }
1.645 +
1.646 +EXPORT_C void CWsScreenDevice::SetScreenSizeAndRotation(const TPixelsTwipsAndRotation &aSizeAndRotation)
1.647 +/** Sets the current screen size in twips and pixels, and the rotation for the
1.648 +screen device.
1.649 +
1.650 +@param aSizeAndRotation The new rotation and the screen size in both pixels
1.651 +and twips. */
1.652 + {
1.653 + // Need to reset the cache if the ratio of twip/pixels changes
1.654 + // Using multiply as this is much quicker than divide on ARM
1.655 + // No need to flush cache if this is a width/height swap
1.656 + if((iPhysicalScreenSizeInTwips.iWidth * aSizeAndRotation.iPixelSize.iWidth != aSizeAndRotation.iTwipsSize.iWidth * iDisplaySizeInPixels.iWidth
1.657 + || iPhysicalScreenSizeInTwips.iHeight * aSizeAndRotation.iPixelSize.iHeight != aSizeAndRotation.iTwipsSize.iHeight * iDisplaySizeInPixels.iHeight)
1.658 + && !(aSizeAndRotation.iPixelSize.iHeight == iDisplaySizeInPixels.iWidth
1.659 + && aSizeAndRotation.iPixelSize.iWidth == iDisplaySizeInPixels.iHeight
1.660 + && iPhysicalScreenSizeInTwips.iHeight == aSizeAndRotation.iTwipsSize.iWidth
1.661 + && iPhysicalScreenSizeInTwips.iWidth == aSizeAndRotation.iTwipsSize.iHeight))
1.662 + {
1.663 + TypeFaceStore()->ReleaseTwipsCache();
1.664 + }
1.665 + Write(&aSizeAndRotation,sizeof(aSizeAndRotation),EWsSdOpSetScreenSizeAndRotation);
1.666 + iDisplaySizeInPixels=aSizeAndRotation.iPixelSize;
1.667 + iPhysicalScreenSizeInTwips=aSizeAndRotation.iTwipsSize;
1.668 + }
1.669 +
1.670 +EXPORT_C void CWsScreenDevice::GetDefaultScreenSizeAndRotation(TPixelsTwipsAndRotation &aSizeAndRotation) const
1.671 +/** Gets the current screen size (in both pixels and twips) and rotation.
1.672 +
1.673 +This function always causes a flush of the window server buffer.
1.674 +
1.675 +@param aSizeAndRotation The default screen size and rotation, defining screen
1.676 +size in both pixels and twips. */
1.677 + {
1.678 + TPckgBuf<TPixelsTwipsAndRotation> sarPkg;
1.679 + WriteReplyP(&sarPkg,EWsSdOpGetDefaultScreenSizeAndRotation);
1.680 + aSizeAndRotation=sarPkg();
1.681 + }
1.682 +
1.683 +EXPORT_C void CWsScreenDevice::SetScreenSizeAndRotation(const TPixelsAndRotation &aSizeAndRotation)
1.684 +/** Sets the current screen size in pixels, and the rotation for the screen device.
1.685 +
1.686 +This function always causes a flush of the window server buffer.
1.687 +
1.688 +@param aSizeAndRotation The new rotation and the screen size in pixels. */
1.689 + {
1.690 + if(iDisplaySizeInPixels != aSizeAndRotation.iPixelSize
1.691 + && !(aSizeAndRotation.iPixelSize.iHeight == iDisplaySizeInPixels.iWidth
1.692 + && aSizeAndRotation.iPixelSize.iWidth == iDisplaySizeInPixels.iHeight))
1.693 + {
1.694 + // Reset the twips cache.
1.695 + TypeFaceStore()->ReleaseTwipsCache();
1.696 + }
1.697 + Write(&aSizeAndRotation,sizeof(aSizeAndRotation),EWsSdOpSetScreenSizeAndRotation2);
1.698 + iDisplaySizeInPixels=aSizeAndRotation.iPixelSize;
1.699 + iPhysicalScreenSizeInTwips=SizeInTwips();
1.700 + }
1.701 +
1.702 +EXPORT_C void CWsScreenDevice::GetDefaultScreenSizeAndRotation(TPixelsAndRotation &aSizeAndRotation) const
1.703 +/** Gets the current screen size (in pixels) and the rotation.
1.704 +
1.705 +This function always causes a flush of the window server buffer.
1.706 +
1.707 +@param aSizeAndRotation The default screen size in pixels and the rotation. */
1.708 + {
1.709 + TPckgBuf<TPixelsAndRotation> sarPkg;
1.710 + WriteReplyP(&sarPkg,EWsSdOpGetDefaultScreenSizeAndRotation2);
1.711 + aSizeAndRotation=sarPkg();
1.712 + }
1.713 +
1.714 +EXPORT_C TDisplayMode CWsScreenDevice::GetScreenModeDisplayMode(const TInt &aMode) const
1.715 +/** Gets the display mode of the screen for the specified screen mode
1.716 +
1.717 +This function always causes a flush of the window server buffer.
1.718 +
1.719 +@param aMode The index of the screen mode for which the display mode is required
1.720 +@return The display mode for the specified screen mode. */
1.721 + {
1.722 + return STATIC_CAST(TDisplayMode,WriteReplyInt(aMode,EWsSdOpGetScreenModeDisplayMode));
1.723 + }
1.724 +
1.725 +EXPORT_C TPoint CWsScreenDevice::GetDefaultScreenModeOrigin() const
1.726 +/** Gets the origin for the current screen mode
1.727 +
1.728 +This function always causes a flush of the window server buffer.
1.729 +
1.730 +@param aOrigin The default offset of the current
1.731 +screen mode from the physical screen. */
1.732 + {
1.733 + TPckgBuf<TPoint> pntPkg;
1.734 + WriteReplyP(&pntPkg,EWsSdOpGetDefaultScreenModeOrigin);
1.735 + return pntPkg();
1.736 + }
1.737 +
1.738 +EXPORT_C TPoint CWsScreenDevice::GetScreenModeOrigin(TInt aMode) const
1.739 +/** Get the origin of the screen for the specified screen mode.
1.740 +
1.741 +This function always causes a flush of the window server buffer.
1.742 +
1.743 +@param aMode The index of the screen mode for which the screen origin is required.
1.744 +@param aOrigin The origin of the specified screen mode. */
1.745 + {
1.746 + TPckgBuf<TPoint> pntPkg;
1.747 + WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeOrigin);
1.748 + return pntPkg();
1.749 + }
1.750 +
1.751 +EXPORT_C TSize CWsScreenDevice::GetScreenModeScale(TInt aMode) const
1.752 +/** Gets the scale for the specified screen mode.
1.753 +
1.754 +This function always causes a flush of the window server buffer.
1.755 +
1.756 +@param aMode The index of the screen mode for which the screen scale is required.
1.757 +@return The scale for the specified screen mode. */
1.758 + {
1.759 + TPckgBuf<TSize> pntPkg;
1.760 + WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeScale);
1.761 + return pntPkg();
1.762 + }
1.763 +
1.764 +EXPORT_C TSize CWsScreenDevice::GetCurrentScreenModeScale() const
1.765 +/** Gets the scale for the current screen mode.
1.766 +
1.767 +This function always causes a flush of the window server buffer.
1.768 +
1.769 +@return The scale for the current screen mode. */
1.770 + {
1.771 + TPckgBuf<TSize> pntPkg;
1.772 + WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScale);
1.773 + return pntPkg();
1.774 + }
1.775 +
1.776 +EXPORT_C TPoint CWsScreenDevice::GetCurrentScreenModeScaledOrigin() const
1.777 +/** Gets the current screen mode's scaled origin.
1.778 +
1.779 +The formula used is (A+B-1)/B
1.780 +
1.781 +where:
1.782 +
1.783 +- A is the screen mode origin in physical coordinates,
1.784 +- B is the screen mode scale width.
1.785 +
1.786 +The result obtained is the scaled origin of the present screen mode.
1.787 +
1.788 +@return The scaled origin for the current screen mode. */
1.789 + {
1.790 + TPckgBuf<TPoint> pntPkg;
1.791 + WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScaledOrigin);
1.792 + return pntPkg();
1.793 + }
1.794 +
1.795 +EXPORT_C TPoint CWsScreenDevice::GetScreenModeScaledOrigin(TInt aMode) const
1.796 +/** Gets the specfied screen mode's scaled origin.
1.797 +
1.798 +The functionality is same as CWsScreenDevice::GetCurrentScreenModeScaledOrigin().
1.799 +
1.800 +It always causes a flush of the window server buffer.
1.801 +
1.802 +@param aMode The index of the screen mode for which the scaled origin is required.
1.803 +@return The scaled origin for the specified screen mode. */
1.804 + {
1.805 + TPckgBuf<TPoint> pntPkg;
1.806 + WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeScaledOrigin);
1.807 + return pntPkg();
1.808 + }
1.809 +
1.810 +/**
1.811 +@internalComponent
1.812 +@released
1.813 +
1.814 +Used for testing purposes only.
1.815 +
1.816 +@return The present screen mode.
1.817 +*/
1.818 +EXPORT_C TSizeMode CWsScreenDevice::GetCurrentScreenModeAttributes() const
1.819 + {
1.820 + TPckgBuf<TSizeMode> pntPkg;
1.821 + WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeAttributes);
1.822 + return pntPkg();
1.823 + }
1.824 +
1.825 +/**
1.826 +@internalComponent
1.827 +@released
1.828 +
1.829 +Used for testing purposes only.
1.830 +
1.831 +@param aModeAtt Screen size mode to be set.
1.832 +*/
1.833 +EXPORT_C void CWsScreenDevice::SetCurrentScreenModeAttributes(const TSizeMode &aModeAtt)
1.834 + {
1.835 + Write(&aModeAtt,sizeof(aModeAtt),EWsSdOpSetCurrentScreenModeAttributes);
1.836 + }
1.837 +
1.838 +EXPORT_C void CWsScreenDevice::SetAppScreenMode(TInt aMode)
1.839 +/** Sets the application's screen mode; this also sets all the attributes
1.840 +of the screen mode.
1.841 +
1.842 +Note: although this API was added in Symbian OS v8.0, the functionality is
1.843 +only available from Symbian OS v8.1 onwards.
1.844 +
1.845 +@param aMode The index of the application's new screen mode.*/
1.846 + {
1.847 + WriteInt(aMode,EWsSdOpSetAppScreenMode);
1.848 + }
1.849 +
1.850 +EXPORT_C TInt CWsScreenDevice::NumScreenModes() const
1.851 +/** Gets the number of available screen modes.
1.852 +
1.853 +Each mode has a different size, and one or more possible rotations/orientations.
1.854 +
1.855 +This function always causes a flush of the window server buffer.
1.856 +
1.857 +@return The number of screen modes. */
1.858 + {
1.859 + return(WriteReply(EWsSdOpGetNumScreenModes));
1.860 + }
1.861 +
1.862 +EXPORT_C TInt CWsScreenDevice::CurrentScreenMode() const
1.863 +/** Gets the current screen mode index.
1.864 +
1.865 +This function always causes a flush of the window server buffer.
1.866 +
1.867 +@return The index into the list of available screen modes of the current screen
1.868 +mode. */
1.869 + {
1.870 + return WriteReply(EWsSdOpGetScreenMode);
1.871 + }
1.872 +
1.873 +EXPORT_C void CWsScreenDevice::SetScreenMode(TInt aMode)
1.874 +/**
1.875 +@publishedPartner
1.876 +@released
1.877 +
1.878 +Sets the current screen mode.
1.879 +
1.880 +Note that this function is only useful for testing. This is because the screen mode
1.881 +normally reflects the state of real hardware, e.g. whether the cover is open
1.882 +or closed on a phone that supports screen flipping.
1.883 +
1.884 +This function always causes a flush of the window server buffer.
1.885 +
1.886 +@param aMode The screen mode index, starting from zero.
1.887 +@capability WriteDeviceData */
1.888 + {
1.889 + WriteInt(aMode,EWsSdOpSetScreenMode);
1.890 + iDisplaySizeInPixels=SizeInPixels();
1.891 + iPhysicalScreenSizeInTwips=SizeInTwips();
1.892 + }
1.893 +
1.894 +EXPORT_C void CWsScreenDevice::GetScreenModeSizeAndRotation(TInt aMode, TPixelsTwipsAndRotation &aSizeAndRotation) const
1.895 +/** Get the screen rotation and size, in both pixels and twips, for the specified
1.896 +screen mode.
1.897 +
1.898 +This function always causes a flush of the window server buffer.
1.899 +
1.900 +@param aMode The index of the screen mode for which the screen size and rotation
1.901 +are required.
1.902 +@param aSizeAndRotation The orientation of the specified screen mode, and its
1.903 +size in both pixels and twips. */
1.904 + {
1.905 + TPckgBuf<TPixelsTwipsAndRotation> sarPkg;
1.906 + WriteReplyP(&aMode,sizeof(aMode),&sarPkg,EWsSdOpGetScreenModeSizeAndRotation);
1.907 + aSizeAndRotation=sarPkg();
1.908 + }
1.909 +
1.910 +EXPORT_C void CWsScreenDevice::GetScreenModeSizeAndRotation(TInt aMode, TPixelsAndRotation &aSizeAndRotation) const
1.911 +/** Get the screen rotation and size (in pixels) for the specified screen mode.
1.912 +
1.913 +This function always causes a flush of the window server buffer.
1.914 +
1.915 +@param aMode The index of the screen mode for which the screen size and rotation
1.916 +are required.
1.917 +@param aSizeAndRotation The orientation of the specified screen mode, and its
1.918 +size in pixels. */
1.919 + {
1.920 + TPckgBuf<TPixelsAndRotation> sarPkg;
1.921 + WriteReplyP(&aMode,sizeof(aMode),&sarPkg,EWsSdOpGetScreenModeSizeAndRotation2);
1.922 + aSizeAndRotation=sarPkg();
1.923 + }
1.924 +
1.925 +EXPORT_C void CWsScreenDevice::SetCurrentRotations(TInt aMode, CFbsBitGc::TGraphicsOrientation aRotation) const
1.926 +/**
1.927 +@publishedPartner
1.928 +@released
1.929 +
1.930 +Sets the screen rotation that should be used with a particular screen size.
1.931 +
1.932 +After calling this function, whenever you change into the screen size specified
1.933 +by aMode you will have the rotation aRotation. The setting remains in force
1.934 +until it is explicitly changed using this function.
1.935 +
1.936 +Panics if the specified rotation is not allowed by the given screen mode.
1.937 +
1.938 +@param aMode The index of the screen mode the rotation applies to.
1.939 +@param aRotation The new screen orientation.
1.940 +@see GetRotationsList()
1.941 +@capability WriteDeviceData */
1.942 + {
1.943 + TWsSdCmdSetScreenRotation screenRotation(aMode,aRotation);
1.944 + Write(&screenRotation,sizeof(screenRotation),EWsSdOpSetModeRotation);
1.945 + }
1.946 +
1.947 +EXPORT_C TInt CWsScreenDevice::GetRotationsList(TInt aMode, CArrayFixFlat<TInt> *aRotationList) const
1.948 +/** Gets the list of valid rotations for a particular screen size.
1.949 +
1.950 +The list is initialised in wsini.ini.
1.951 +
1.952 +This function always causes a flush of the window server buffer.
1.953 +
1.954 +@param aMode The index of the screen mode for which the rotation list
1.955 +is required.
1.956 +@param aRotationList The list of valid screen orientations.
1.957 +@return KErrNone if successful, otherwise another of the system-wide error
1.958 +codes.
1.959 +@see SetCurrentRotations() */
1.960 + {
1.961 + TUint modeList=(TUint)WriteReplyInt(aMode,EWsSdOpGetRotationList);
1.962 + TUint modeBit=1<<CFbsBitGc::EGraphicsOrientationNormal;
1.963 + TBool rots[4];
1.964 + TInt rotations=0;
1.965 + TInt ii;
1.966 + for (ii=0;ii<4;ii++)
1.967 + {
1.968 + rots[ii]=(modeList&modeBit);
1.969 + if (rots[ii])
1.970 + ++rotations;
1.971 + modeBit=modeBit<<1;
1.972 + }
1.973 + if (!aRotationList)
1.974 + return rotations;
1.975 + TRAPD(err,aRotationList->ResizeL(rotations));
1.976 + if (err!=KErrNone)
1.977 + return(err);
1.978 + rotations=0;
1.979 + for (ii=0;ii<4;ii++)
1.980 + {
1.981 + if (rots[ii])
1.982 + (*aRotationList)[rotations++]=REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,ii);
1.983 + }
1.984 + return KErrNone;
1.985 + }
1.986 +
1.987 +EXPORT_C TScreenModeEnforcement CWsScreenDevice::ScreenModeEnforcement() const
1.988 +/** Gets the current screen mode enforcement settings.
1.989 +
1.990 +The global screen mode enforcement setting defines the requirements that a
1.991 +group window must meet to be displayed. The requirements may have been set
1.992 +in wsini.ini, or using SetScreenModeEnforcement().
1.993 +
1.994 +This function always causes a flush of the window server buffer.
1.995 +
1.996 +@return The screen mode enforcement requirements. */
1.997 + {
1.998 + return((TScreenModeEnforcement)WriteReply(EWsSdOpScreenModeEnforcement));
1.999 + }
1.1000 +
1.1001 +EXPORT_C void CWsScreenDevice::SetScreenModeEnforcement(TScreenModeEnforcement aMode) const
1.1002 +/**
1.1003 +@publishedPartner
1.1004 +@released
1.1005 +
1.1006 +Sets the screen mode enforcement requirements.
1.1007 +
1.1008 +This global setting defines the requirements that a group window must meet
1.1009 +to be displayed. The value may be set using this function, but is more likely
1.1010 +to be defined in wsini.ini.
1.1011 +
1.1012 +@param aMode The screen mode enforcement requirements.
1.1013 +@capability WriteDeviceData */
1.1014 + {
1.1015 + WriteInt(aMode,EWsSdOpSetScreenModeEnforcement);
1.1016 + }
1.1017 +
1.1018 +EXPORT_C TInt CWsScreenDevice::GetScreenNumber() const
1.1019 +/** Get device's screen number
1.1020 +
1.1021 +@return The device's screen number
1.1022 +@see CWsScreenDevice::Construct( TInt aDefaultScreenNumber ) */
1.1023 + {
1.1024 + return WriteReply(EWsSdOpGetScreenNumber);
1.1025 + }
1.1026 +
1.1027 +/** Gets the available screen size modes.
1.1028 +
1.1029 +This function retrieves all available screen size modes which are supported by
1.1030 +the server.
1.1031 +
1.1032 +@param aModeList On return, the list of available screen size modes.
1.1033 +@return The number of supported screen size modes if successful otherwise returns KErrNoMemory if
1.1034 +there is insufficient memory to create the array. */
1.1035 +EXPORT_C TInt CWsScreenDevice::GetScreenSizeModeList(RArray<TInt>* aModeList) const
1.1036 + {
1.1037 + __ASSERT_ALWAYS(aModeList, Panic(EW32PanicNullArray));
1.1038 + aModeList->Reset();
1.1039 + TInt count=WriteReply(EWsSdOpGetNumScreenModes);
1.1040 + TInt totSize=count*sizeof(TInt);
1.1041 + TInt* allocMem=static_cast<TInt*>(User::Alloc(totSize));
1.1042 + if(allocMem==NULL)
1.1043 + {
1.1044 + return KErrNoMemory;
1.1045 + }
1.1046 + TPtr8 listPtr(reinterpret_cast<TUint8*>(allocMem), totSize);
1.1047 + count=WriteReplyP(&listPtr, EWsSdOpGetScreenSizeModeList);
1.1048 + new(aModeList) RArray<TInt>(allocMem, count);
1.1049 + return count;
1.1050 + }
1.1051 +
1.1052 +EXPORT_C TInt CWsScreenDevice::SetBackLight(TBool aBackLight)
1.1053 +/** Set back light.
1.1054 +@param aBackLight, ETrue Set the backlight on, EFlase set the backlight off.
1.1055 +@capability EikServ SID */
1.1056 + {
1.1057 + return(WriteReplyInt(aBackLight,EWsClOpSetBackLight));
1.1058 + }
1.1059 +
1.1060 +/** Interface Extension capability
1.1061 + Use of this interface going forward will allow the published client interface to be dynamically extended.
1.1062 + Note that the pointer returned is only good for the lifetime of the called CBase derived object.
1.1063 +
1.1064 + @param aInterfaceId uniqueid or well known id of interface
1.1065 + @return pointer to interface object matching this ID or NULL if no match.
1.1066 +*/
1.1067 +EXPORT_C TAny* CWsScreenDevice::GetInterface(TUint aInterfaceId)
1.1068 + {
1.1069 + return iExtension->GetInterface(aInterfaceId);
1.1070 + }
1.1071 +
1.1072 +/** Returns whether the given screen size mode is dynamic or not.
1.1073 + Dynamic screen size modes may change their size in pixels and/or twips
1.1074 + and other attributes at run time, so they must not be cached. Static size
1.1075 + mode attributes will not change at run time, but may not make full use of the display.
1.1076 + Invalid size modes shall return EFalse.
1.1077 +
1.1078 + @param aSizeMode The screen size mode to check.
1.1079 + @return ETrue if the given screen size mode is dynamic, EFalse otherwise.
1.1080 +*/
1.1081 +EXPORT_C TBool CWsScreenDevice::IsModeDynamic(TInt /*aSizeMode*/) const
1.1082 + {
1.1083 + return EFalse;
1.1084 + }
1.1085 +
1.1086 +/** Returns whether the current screen size mode is dynamic or not.
1.1087 +
1.1088 + @return ETrue if current screen size mode is dynamic, EFalse otherwise.
1.1089 + @see IsModeDynamic
1.1090 +*/
1.1091 +EXPORT_C TBool CWsScreenDevice::IsCurrentModeDynamic() const
1.1092 + {
1.1093 + return EFalse;
1.1094 + }