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