First public contribution.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Shells for window server screen device
20 #include "../SERVER/w32cmd.h"
23 #include "scrdevextension.h"
25 const TInt KDefaultScreenNumber = 0 ;
27 EXPORT_C CWsScreenDevice::CWsScreenDevice()
28 /** Default constructor. Developers should use the other constructor overload. */
32 EXPORT_C CWsScreenDevice::CWsScreenDevice(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
33 /** Constructs a new screen device attached to a particular window server session.
35 @param aWs The window server session this screen should be attached to. */
39 EXPORT_C TInt CWsScreenDevice::CreateContext(CGraphicsContext *&aGc)
40 /** Creates a graphics context for this device.
42 This function always causes a flush of the window server buffer.
44 @param aGc On successful return, contains a new graphics context referring
45 to this screen device.
46 @return KErrNone if successful, otherwise one of the system-wide error codes.
47 @see CGraphicsDevice::CreateContext() */
49 if ((aGc=new CWindowGc(this))==NULL)
51 TInt err=((CWindowGc *)aGc)->Construct();
60 EXPORT_C CWsScreenDevice::~CWsScreenDevice()
70 delete TypeFaceStore();
75 #pragma warning(disable : 4710)
77 Completes construction of the object.
79 This method invokes Construct(TInt aDefaultScreenNumber) with default Screen number.
80 @return KErrNone if successful, otherwise another of the system-wide error codes.
82 EXPORT_C TInt CWsScreenDevice::Construct()
84 return Construct( KDefaultScreenNumber ) ;
88 EXPORT_C TInt CWsScreenDevice::Construct(TInt aDefaultScreenNumber)
89 /** Completes construction of the object.
91 This function always causes a flush of the window server buffer.
92 @param aDefaultScreenNumber - This is the screen on which an application will start
93 @return KErrNone if successful, otherwise another of the system-wide error
95 @panic TW32Panic 17 in debug builds if called on an already constructed object.*/
97 __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
99 TWsClCmdCreateScreenDevice createScreenDevice;
100 createScreenDevice.screenNumber = aDefaultScreenNumber;
101 createScreenDevice.clientScreenDevicePointer = (TUint)this;
102 if ( ( ret=iBuffer->WriteReplyWs(&createScreenDevice,sizeof(createScreenDevice),EWsClOpCreateScreenDevice ) ) < 0 )
109 //If the extension fails to allocate then clients will be refused access to the extension interface.
110 TRAP(ret,iExtension=new(ELeave) CScrDevExtension(iBuffer,iWsHandle));
113 TRAP(ret,iExtension->SetTypefaceStore(CFbsTypefaceStore::NewL(this)));
115 iDisplaySizeInPixels=SizeInPixels();
116 iPhysicalScreenSizeInTwips=SizeInTwips();
117 if (iDisplaySizeInPixels.iWidth==0)
119 TMachineInfoV1Buf macInfo;
120 UserHal::MachineInfo(macInfo);
121 iPhysicalScreenSizeInTwips=macInfo().iPhysicalScreenSize;
122 iDisplaySizeInPixels=macInfo().iDisplaySizeInPixels;
127 #pragma warning(default : 4710)
129 EXPORT_C TDisplayMode CWsScreenDevice::DisplayMode() const
130 /** Gets the device's display mode.
132 This function always causes a flush of the window server buffer.
134 @return The device's display mode.
135 @see CGraphicsDevice::DisplayMode() */
137 return((TDisplayMode)WriteReply(EWsSdOpDisplayMode));
140 EXPORT_C TRect CWsScreenDevice::PointerRect() const
141 /** Gets the active area for the pointing device.
143 This is a device-dependent parameter, and will typically depend on the screen
144 size and other factors.
146 This function always causes a flush of the window server buffer.
148 @return The active area, measured in pixels. */
150 TPckgBuf<TRect> rectPkg;
151 WriteReplyP(&rectPkg,EWsSdOpPointerRect);
155 EXPORT_C TSize CWsScreenDevice::SizeInPixels() const
156 /** Gets the size of the screen device area in pixels.
158 This function always causes a flush of the window server buffer.
160 @return The x and y dimensions of the screen device area, in pixels.
161 @see CGraphicsDevice::SizeInPixels() */
163 TPckgBuf<TSize> sizePkg;
164 WriteReplyP(&sizePkg,EWsSdOpPixelSize);
168 EXPORT_C TSize CWsScreenDevice::SizeInTwips() const
169 /** Gets the size of the screen device area in twips.
171 This function always causes a flush of the window server buffer.
173 @return The x and y dimensions of the screen device area, in twips.
174 @see CGraphicsDevice::SizeInTwips() */
176 TPckgBuf<TSize> sizePkg;
177 WriteReplyP(&sizePkg,EWsSdOpTwipsSize);
181 EXPORT_C TInt CWsScreenDevice::HorizontalTwipsToPixels(TInt aTwips) const
182 /** Translates a twips to a pixel value.
184 @param aTwips The value in twips.
185 @return The equivalent number of pixels.
186 @see MGraphicsDeviceMap::HorizontalTwipsToPixels() */
189 twips=(twips*iDisplaySizeInPixels.iWidth+(iPhysicalScreenSizeInTwips.iWidth/2))/iPhysicalScreenSizeInTwips.iWidth;
190 return I64INT(twips);
193 EXPORT_C TInt CWsScreenDevice::VerticalTwipsToPixels(TInt aTwips) const
194 /** Translates a vertical dimension of a screen device in twips into pixels.
196 @param aTwips A vertical dimension of a device in twips.
197 @return The vertical dimension in pixels. */
200 twips=(twips*iDisplaySizeInPixels.iHeight+(iPhysicalScreenSizeInTwips.iHeight/2))/iPhysicalScreenSizeInTwips.iHeight;
201 return I64INT(twips);
204 EXPORT_C TInt CWsScreenDevice::HorizontalPixelsToTwips(TInt aPixels) const
205 /** Translates a specified pixel value to a twips value.
207 @param aPixels The value in pixels to be translated.
208 @return The equivalent number of twips. */
210 TInt64 pixels=aPixels;
211 pixels=(pixels*iPhysicalScreenSizeInTwips.iWidth+(iDisplaySizeInPixels.iWidth/2))/iDisplaySizeInPixels.iWidth;
212 return I64INT(pixels);
215 EXPORT_C TInt CWsScreenDevice::VerticalPixelsToTwips(TInt aPixels) const
216 /** Translates a vertical dimension of a screen device in pixels into twips.
218 @param aPixels A vertical dimension of a device in pixels.
219 @return The vertical dimension in twips.
220 @see MGraphicsDeviceMap::VerticalPixelsToTwips() */
222 TInt64 pixels=aPixels;
223 pixels=(pixels*iPhysicalScreenSizeInTwips.iHeight+(iDisplaySizeInPixels.iHeight/2))/iDisplaySizeInPixels.iHeight;
224 return I64INT(pixels);
227 EXPORT_C void CWsScreenDevice::GetPixel(TRgb &aColor,const TPoint &aPixel) const
228 /** Gets the RGB colour of an individual pixel on a screen device.
230 This function always causes a flush of the window server buffer.
232 @param aColor On return, contains the RGB colour of the pixel.
233 @param aPixel The x,y co-ordinates of the pixel. The top left pixel is (0,0).
234 @see CBitmapDevice::GetPixel() */
236 aColor.SetInternal(((TUint32)WriteReply(&aPixel,sizeof(aPixel),EWsSdOpPixel)));
239 EXPORT_C void CWsScreenDevice::GetScanLine(TDes8 &aScanLine,const TPoint &aStartPixel,TInt aPixelLength, TDisplayMode aDispMode) const
240 /** Gets a scanline into a buffer.
242 The pixels are converted from the current screen display mode format
243 to the format of the specified device display mode.
245 By specifying the start pixel and number of pixels either the whole or a portion
246 of a row of screen pixels may be copied.
248 This function always causes a flush of the window server buffer.
250 @param aScanLine A buffer into which pixels are copied, it must be sufficiently
251 large to store all the scanline pixels.
252 @param aStartPixel The (x,y) co-ordinates of the first pixel of the bitmap scanline
253 to be put into the buffer.
254 @param aPixelLength The number of pixels to put into the buffer.
255 @param aDispMode The display mode into which to convert the pixels.
256 @see CBitmapDevice::GetScanLine() */
258 TWsSdCmdGetScanLine getScanLine(aStartPixel,aPixelLength,aDispMode);
259 WriteReplyP(&getScanLine,sizeof(getScanLine),&aScanLine,EWsSdOpGetScanLine);
262 EXPORT_C TBool CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2) const
263 /** Compares two areas of the screen to see if they have the same content.
265 If there are any sprites on the screen they are not included in the comparison.
267 This function always causes a flush of the window server buffer.
269 @param aRect1 A rectangle.
270 @param aRect2 Another rectangle.
271 @return ETrue if the two screen areas are identical. */
273 return RectCompare(aRect1,aRect2,ERemoveSprite);
276 EXPORT_C TBool CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2,TUint aFlags) const
277 /** Compares two areas of the screen to see if they have the same content.
279 This function always causes a flush of the window server buffer.
281 @param aRect1 A rectangle.
282 @param aRect2 Another rectangle.
283 @param aFlags EIncludeSprite to include the sprite in the compare or ERemoveSprite to remove the sprite.
284 @return ETrue if the two screen areas are identical. */
286 TWsSdCmdRectCompare rectCompare(aRect1,aRect2,aFlags);
287 return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpRectCompare));
290 EXPORT_C TInt CWsScreenDevice::CopyScreenToBitmap(const CFbsBitmap *aBitmap) const
291 /** Saves the entire screen to a bitmap.
293 This function always causes a flush of the window server buffer.
295 @param aBitmap Bitmap to be filled with the screen image.
296 @return KErrNone if successful, otherwise one of the system-wide error codes. */
298 AddToBitmapArray(aBitmap->Handle());
299 TWsSdCmdCopyScreenToBitmap rectCompare(aBitmap->Handle());
300 return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap));
303 EXPORT_C TInt CWsScreenDevice::CopyScreenToBitmap(const CFbsBitmap *aBitmap, const TRect &aRect) const
304 /** Saves a region of the screen to a bitmap.
306 This function always causes a flush of the window server buffer.
308 @param aBitmap Bitmap to be filled with the screen region image.
309 @param aRect Screen region to be saved.
310 @return KErrNone if successful, otherwise one of the system-wide error codes. */
312 AddToBitmapArray(aBitmap->Handle());
313 TWsSdCmdCopyScreenToBitmap2 rectCompare(aRect, aBitmap->Handle());
314 return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap2));
317 EXPORT_C TInt CWsScreenDevice::GetNearestFontInTwips(CFont*& aFont,const TFontSpec& aFontSpec)
318 /** Gets the nearest font, in twips, to that in the specified font specification.
320 This function is replaced by GetNearestFontToDesignHeightInTwips()
322 The font and bitmap server returns a pointer to the nearest matching font
323 from those available, in aFont.
325 @param aFont On return, this is set to point to the device font closest to the font
326 specification passed in the second argument.
327 @param aFontSpec An absolute font specification.
328 @return KErrNone if successful, otherwise another of the system-wide error
330 @see MGraphicsDeviceMap::GetNearestFontInTwips()
333 return GetNearestFontToDesignHeightInTwips(aFont, aFontSpec);
335 CFbsTypefaceStore* CWsScreenDevice::TypeFaceStore()const
336 /** Helper member fn to access the movable typeface store.
339 return iExtension->TypefaceStore();
342 EXPORT_C TInt CWsScreenDevice::GetNearestFontToDesignHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec)
343 /** Gets the nearest font in twips to that specified.
345 The font and bitmap server returns a pointer to the nearest matching font
346 from those available. Matches to design height of font - this gives no
347 guarantees on the actual physical size of the font.
349 This function replaces GetNearestFontInTwips
351 @param aFont On return, the pointer is set to point to the device font which
352 most closely approximates to the required font specification.
353 @param aFontSpec An absolute font specification.
354 @return KErrNone, if successful; otherwise, another of the system-wide error
356 @see MGraphicsDeviceMap::GetNearestFontToDesignHeightInTwips() */
358 return TypeFaceStore()->GetNearestFontToDesignHeightInTwips(aFont, aFontSpec);
361 /** Gets the nearest font, in twips, to that specified.
363 The font and bitmap server returns a pointer to the nearest matching font
364 from those available. Matches to max height of font - this does its best
365 to return a font that will fit within the maximum height specified (but
366 note that variations due to hinting algorithms may rarely result in this
367 height being exceeded by up to one pixel). Problems can also be
368 encountered with bitmap fonts where the typeface exists but doesn't have
371 @param aFont On return, the pointer is set to point to the device font which
372 most closely approximates to the required font specification.
373 @param aFontSpec An absolute font specification.
374 @param aMaxHeight The maximum height within which the font must fit - this
375 overrides the height specified in the TFontSpec.
376 @return KErrNone, if successful; otherwise, another of the system-wide error
378 @see MGraphicsDeviceMap::GetNearestFontToMaxHeightInTwips() */
379 EXPORT_C TInt CWsScreenDevice::GetNearestFontToMaxHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight)
381 return TypeFaceStore()->GetNearestFontToMaxHeightInTwips(aFont, aFontSpec, aMaxHeight);
384 EXPORT_C TInt CWsScreenDevice::GetNearestFontInPixels(CFont*& aFont,const TFontSpec& aFontSpec)
385 /** Gets the nearest font to that specified for use by a bitmapped graphics device.
387 This function is replaced by GetNearestFontToDesignHeightInPixels()
389 The font and bitmap server returns a pointer to the nearest matching font
390 from those available, in aFont.
392 @param aFont On return, this is set to point to the device font that is
393 closest to the font specification passed in the second argument
394 @param aFontSpec An absolute font specification
395 @return KErrNone if successful, otherwise another of the system-wide error
397 @see CBitmapDevice::GetNearestFontInPixels()
400 return GetNearestFontToDesignHeightInPixels(aFont, aFontSpec);
403 EXPORT_C TInt CWsScreenDevice::GetNearestFontToDesignHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec)
404 /** Gets the nearest font in pixels to that specified.
406 The font and bitmap server returns a pointer to the nearest matching font
407 from those available. Matches to design height of font - this gives no
408 guarantees on the actual physical size of the font.
410 This function replaces GetNearestFontInTwips
412 @param aFont On return, the pointer is set to point to the device font which
413 most closely approximates to the required font specification.
414 @param aFontSpec An absolute font specification.
415 @return KErrNone, if successful; otherwise, another of the system-wide error
417 @see CBitmapDevice::GetNearestFontToDesignHeightInPixels() */
419 return TypeFaceStore()->GetNearestFontToDesignHeightInPixels(aFont, aFontSpec);
422 /** Gets the nearest font in pixels to that specified.
424 The font and bitmap server returns a pointer to the nearest matching font
425 from those available. Matches to max height of font - this does its best
426 to return a font that will fit within the maximum height specified (but
427 note that variations due to hinting algorithms may rarely result in this
428 height being exceeded by up to one pixel). Problems can also be
429 encountered with bitmap fonts where the typeface exists but doesn't have
432 @param aFont On return, the pointer is set to point to the device font which
433 most closely approximates to the required font specification.
434 @param aFontSpec An absolute font specification.
435 @param aMaxHeight The maximum height within which the font must fit - this
436 overrides the height specified in the TFontSpec.
437 @return KErrNone, if successful; otherwise, another of the system-wide error
439 @see CBitmapDevice::GetNearestFontToMaxHeightInPixels() */
440 EXPORT_C TInt CWsScreenDevice::GetNearestFontToMaxHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight)
442 return TypeFaceStore()->GetNearestFontToMaxHeightInPixels(aFont, aFontSpec, aMaxHeight);
445 EXPORT_C TInt CWsScreenDevice::NumTypefaces() const
446 /** Gets the number of typefaces supported by the screen device.
448 @return The number of typefaces supported.
449 @see CGraphicsDevice::NumTypefaces() */
451 return(TypeFaceStore()->NumTypefaces());
454 EXPORT_C void CWsScreenDevice::TypefaceSupport(TTypefaceSupport& aTypefaceSupport,TInt aTypefaceIndex) const
455 /** Gets typeface information for a particular typeface index number.
457 This information is returned in aTypefaceSupport, and includes: the typeface
458 name and typeface attributes (in a TTypeface object), the number of font heights,
459 the maximum and minimum font heights and whether it is a scalable typeface.
461 @param aTypefaceSupport On return, if the function executed successfully,
462 this contains the typeface information.
463 @param aTypefaceIndex A typeface index number, in the range zero to (NumTypefaces()
465 @see CGraphicsDevice::TypefaceSupport() */
467 TypeFaceStore()->TypefaceSupport(aTypefaceSupport,aTypefaceIndex);
470 EXPORT_C TInt CWsScreenDevice::FontHeightInTwips(TInt aTypefaceIndex,TInt aHeightIndex) const
471 /** Gets the height in twips of the specified font.
473 The value returned is rounded up or down to the nearest font height in twips.
475 The specified font is the one with height index number aHeightIndex of the
476 typeface with index number aTypefaceIndex.
478 @param aTypefaceIndex A typeface index number, in the range: 0 to (NumTypefaces() - 1).
479 @param aHeightIndex A font height index number, in the range: 0 to (iNumHeights - 1).
480 @return The height of the font in twips.
481 @see CGraphicsDevice::FontHeightInTwips() */
483 return(TypeFaceStore()->FontHeightInTwips(aTypefaceIndex,aHeightIndex));
486 EXPORT_C TInt CWsScreenDevice::FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const
487 /** Gets the height of the specified font in pixels.
489 The value returned is rounded up or down to the nearest font height in pixels.
491 The specified font is the one with height index number aHeightIndex of the
492 typeface with index number aTypefaceIndex.
494 @param aTypefaceIndex A typeface index number, in the range: 0 to (NumTypefaces() - 1).
495 @param aHeightIndex A font height index number, in the range: 0 to (iNumHeights - 1).
496 @return The height of the font in pixels.
497 @see CBitmapDevice::FontHeightInPixels() */
499 return(TypeFaceStore()->FontHeightInPixels(aTypefaceIndex,aHeightIndex));
502 EXPORT_C TInt CWsScreenDevice::GetFontById(CFont *&aFont,TUid aUid,const TAlgStyle& aAlgStyle)
503 /** Gets a font by its bitmap UID.
505 Within a font file each font has its own UID. An algorithmic style is not
506 part of the actual font description, but is applied to it. For example algorithmic
507 bolding applies an algorithm to increase the apparent weight of each character
508 in the font. Note that the algorithm is applied blindly, and that a typeface
509 may already have a style e.g. it may already be bold or italic. Thus a bold
510 face will appear extra-bold if algorithmic bolding is applied to it. Algorithmic
511 effects are not necessarily a substitute for typeface design and should be
514 @param aFont On a successful return, contains a pointer to the new CFont.
515 @param aUid UID of the bitmap font.
516 @param aAlgStyle The algorithmic style to apply.
517 @return KErrNone if successful, otherwise one of the system-wide error codes. */
519 return(TypeFaceStore()->GetFontById(aFont,aUid,aAlgStyle));
522 EXPORT_C TInt CWsScreenDevice::AddFile(const TDesC& aName,TInt& aId)
523 /** Adds a font file to the device's typeface store. The specified font
524 file must be accessible to any process, i.e. not located inside an
525 application's private directory.
527 @param aName Name of the font file.
528 @param aId ID for the font file.
529 @return KErrNone if successful, otherwise one of the system-wide error codes.
530 @see CBitmapDevice::AddFile() */
532 return(TypeFaceStore()->AddFile(aName, aId));
535 EXPORT_C void CWsScreenDevice::RemoveFile(TInt aId)
536 /** Removes a font file from the font store.
538 @param aId The ID of the font file to be removed, default 0.
539 @see CBitmapDevice::RemoveFile() */
541 TypeFaceStore()->RemoveFile(aId);
544 EXPORT_C void CWsScreenDevice::ReleaseFont(CFont* aFont)
545 /** Releases a specified font.
547 This function is used to indicate that the specified font is no longer needed
548 for use by the screen device. As fonts can be shared between applications,
549 this function does not delete the copy of the font from RAM, unless the font
550 was only being used by this device.
552 @param aFont A pointer to the font to be released.
553 @see MGraphicsDeviceMap::ReleaseFont() */
555 TypeFaceStore()->ReleaseFont(aFont);
558 EXPORT_C void CWsScreenDevice::PaletteAttributes(TBool& aModifiable,TInt& aNumEntries) const
559 /** Gets the attributes of the device's palette.
561 This function always causes a flush of the window server buffer.
563 @param aModifiable On return, indicates whether or not the device's palette
564 is modifiable (true) or fixed (false).
565 @param aNumEntries On return, holds the number of entries in the device's
567 @see CFbsScreenDevice::PaletteAttributes() */
569 TInt ret=WriteReply(EWsSdOpPaletteAttributes);
570 aModifiable=ret&EWsSdSetableBitFlag;
571 aNumEntries=ret&(~EWsSdSetableBitFlag);
574 EXPORT_C void CWsScreenDevice::SetPalette(CPalette* aPalette)
575 /** Sets the screen device's palette.
577 This function always causes a flush of the window server buffer.
579 Use of this function is deprecated. SetCustomPalette() should be used instead.
581 @param aPalette The screen device's new palette. */
583 #if defined(__WINS__)
584 __ASSERT_DEBUG(SetCustomPalette(aPalette)==KErrNone,Panic(EW32PanicSilentFail));
586 SetCustomPalette(aPalette);
589 EXPORT_C TInt CWsScreenDevice::SetCustomPalette(const CPalette* aPalette)
590 /** Sets the custom palette.
592 This function always causes a flush of the window server buffer.
594 @param aPalette The custom palette.
595 @return KErrNone if sucessful, or one of the system error codes.
596 @panic W32 6 aPalette is NULL.
597 @capability WriteDeviceData */
599 __ASSERT_ALWAYS(aPalette,Panic(EW32PanicNullPalette));
600 TPtr8 palette(NULL,0);
601 CONST_CAST(CPalette*,aPalette)->GetDataPtr(0,aPalette->Entries(),palette);
603 return WriteReplyByProvidingRemoteReadAccess(&empty, sizeof(empty), &palette, EWsSdOpSetPalette);
606 EXPORT_C TInt CWsScreenDevice::GetPalette(CPalette*& aPalette) const
607 /** Gets the screen device's palette.
609 This function always causes a flush of the window server buffer.
611 @param aPalette On return, contains the screen device's palette. The caller
612 takes responsibility for discarding the palette.
613 @return KErrNone if successful, otherwise another of the system-wide error
615 @see CFbsScreenDevice::GetPalette() */
617 TBool modifiable; //Dummy parameter
620 PaletteAttributes(modifiable,numEntries);
623 TRAP(ret,aPalette=CPalette::NewL(numEntries));
626 TPtr8 palette(NULL,0);
627 aPalette->GetDataPtr(0,numEntries,palette);
628 ret=WriteReplyIntP(numEntries,&palette,EWsSdOpGetPalette);
633 if (ret>0) //The mode of the screen display changed
643 EXPORT_C void CWsScreenDevice::SetScreenSizeAndRotation(const TPixelsTwipsAndRotation &aSizeAndRotation)
644 /** Sets the current screen size in twips and pixels, and the rotation for the
647 @param aSizeAndRotation The new rotation and the screen size in both pixels
650 // Need to reset the cache if the ratio of twip/pixels changes
651 // Using multiply as this is much quicker than divide on ARM
652 // No need to flush cache if this is a width/height swap
653 if((iPhysicalScreenSizeInTwips.iWidth * aSizeAndRotation.iPixelSize.iWidth != aSizeAndRotation.iTwipsSize.iWidth * iDisplaySizeInPixels.iWidth
654 || iPhysicalScreenSizeInTwips.iHeight * aSizeAndRotation.iPixelSize.iHeight != aSizeAndRotation.iTwipsSize.iHeight * iDisplaySizeInPixels.iHeight)
655 && !(aSizeAndRotation.iPixelSize.iHeight == iDisplaySizeInPixels.iWidth
656 && aSizeAndRotation.iPixelSize.iWidth == iDisplaySizeInPixels.iHeight
657 && iPhysicalScreenSizeInTwips.iHeight == aSizeAndRotation.iTwipsSize.iWidth
658 && iPhysicalScreenSizeInTwips.iWidth == aSizeAndRotation.iTwipsSize.iHeight))
660 TypeFaceStore()->ReleaseTwipsCache();
662 Write(&aSizeAndRotation,sizeof(aSizeAndRotation),EWsSdOpSetScreenSizeAndRotation);
663 iDisplaySizeInPixels=aSizeAndRotation.iPixelSize;
664 iPhysicalScreenSizeInTwips=aSizeAndRotation.iTwipsSize;
667 EXPORT_C void CWsScreenDevice::GetDefaultScreenSizeAndRotation(TPixelsTwipsAndRotation &aSizeAndRotation) const
668 /** Gets the current screen size (in both pixels and twips) and rotation.
670 This function always causes a flush of the window server buffer.
672 @param aSizeAndRotation The default screen size and rotation, defining screen
673 size in both pixels and twips. */
675 TPckgBuf<TPixelsTwipsAndRotation> sarPkg;
676 WriteReplyP(&sarPkg,EWsSdOpGetDefaultScreenSizeAndRotation);
677 aSizeAndRotation=sarPkg();
680 EXPORT_C void CWsScreenDevice::SetScreenSizeAndRotation(const TPixelsAndRotation &aSizeAndRotation)
681 /** Sets the current screen size in pixels, and the rotation for the screen device.
683 This function always causes a flush of the window server buffer.
685 @param aSizeAndRotation The new rotation and the screen size in pixels. */
687 if(iDisplaySizeInPixels != aSizeAndRotation.iPixelSize
688 && !(aSizeAndRotation.iPixelSize.iHeight == iDisplaySizeInPixels.iWidth
689 && aSizeAndRotation.iPixelSize.iWidth == iDisplaySizeInPixels.iHeight))
691 // Reset the twips cache.
692 TypeFaceStore()->ReleaseTwipsCache();
694 Write(&aSizeAndRotation,sizeof(aSizeAndRotation),EWsSdOpSetScreenSizeAndRotation2);
695 iDisplaySizeInPixels=aSizeAndRotation.iPixelSize;
696 iPhysicalScreenSizeInTwips=SizeInTwips();
699 EXPORT_C void CWsScreenDevice::GetDefaultScreenSizeAndRotation(TPixelsAndRotation &aSizeAndRotation) const
700 /** Gets the current screen size (in pixels) and the rotation.
702 This function always causes a flush of the window server buffer.
704 @param aSizeAndRotation The default screen size in pixels and the rotation. */
706 TPckgBuf<TPixelsAndRotation> sarPkg;
707 WriteReplyP(&sarPkg,EWsSdOpGetDefaultScreenSizeAndRotation2);
708 aSizeAndRotation=sarPkg();
711 EXPORT_C TDisplayMode CWsScreenDevice::GetScreenModeDisplayMode(const TInt &aMode) const
712 /** Gets the display mode of the screen for the specified screen mode
714 This function always causes a flush of the window server buffer.
716 @param aMode The index of the screen mode for which the display mode is required
717 @return The display mode for the specified screen mode. */
719 return STATIC_CAST(TDisplayMode,WriteReplyInt(aMode,EWsSdOpGetScreenModeDisplayMode));
722 EXPORT_C TPoint CWsScreenDevice::GetDefaultScreenModeOrigin() const
723 /** Gets the origin for the current screen mode
725 This function always causes a flush of the window server buffer.
727 @param aOrigin The default offset of the current
728 screen mode from the physical screen. */
730 TPckgBuf<TPoint> pntPkg;
731 WriteReplyP(&pntPkg,EWsSdOpGetDefaultScreenModeOrigin);
735 EXPORT_C TPoint CWsScreenDevice::GetScreenModeOrigin(TInt aMode) const
736 /** Get the origin of the screen for the specified screen mode.
738 This function always causes a flush of the window server buffer.
740 @param aMode The index of the screen mode for which the screen origin is required.
741 @param aOrigin The origin of the specified screen mode. */
743 TPckgBuf<TPoint> pntPkg;
744 WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeOrigin);
748 EXPORT_C TSize CWsScreenDevice::GetScreenModeScale(TInt aMode) const
749 /** Gets the scale for the specified screen mode.
751 This function always causes a flush of the window server buffer.
753 @param aMode The index of the screen mode for which the screen scale is required.
754 @return The scale for the specified screen mode. */
756 TPckgBuf<TSize> pntPkg;
757 WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeScale);
761 EXPORT_C TSize CWsScreenDevice::GetCurrentScreenModeScale() const
762 /** Gets the scale for the current screen mode.
764 This function always causes a flush of the window server buffer.
766 @return The scale for the current screen mode. */
768 TPckgBuf<TSize> pntPkg;
769 WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScale);
773 EXPORT_C TPoint CWsScreenDevice::GetCurrentScreenModeScaledOrigin() const
774 /** Gets the current screen mode's scaled origin.
776 The formula used is (A+B-1)/B
780 - A is the screen mode origin in physical coordinates,
781 - B is the screen mode scale width.
783 The result obtained is the scaled origin of the present screen mode.
785 @return The scaled origin for the current screen mode. */
787 TPckgBuf<TPoint> pntPkg;
788 WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScaledOrigin);
792 EXPORT_C TPoint CWsScreenDevice::GetScreenModeScaledOrigin(TInt aMode) const
793 /** Gets the specfied screen mode's scaled origin.
795 The functionality is same as CWsScreenDevice::GetCurrentScreenModeScaledOrigin().
797 It always causes a flush of the window server buffer.
799 @param aMode The index of the screen mode for which the scaled origin is required.
800 @return The scaled origin for the specified screen mode. */
802 TPckgBuf<TPoint> pntPkg;
803 WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeScaledOrigin);
811 Used for testing purposes only.
813 @return The present screen mode.
815 EXPORT_C TSizeMode CWsScreenDevice::GetCurrentScreenModeAttributes() const
817 TPckgBuf<TSizeMode> pntPkg;
818 WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeAttributes);
826 Used for testing purposes only.
828 @param aModeAtt Screen size mode to be set.
830 EXPORT_C void CWsScreenDevice::SetCurrentScreenModeAttributes(const TSizeMode &aModeAtt)
832 Write(&aModeAtt,sizeof(aModeAtt),EWsSdOpSetCurrentScreenModeAttributes);
835 EXPORT_C void CWsScreenDevice::SetAppScreenMode(TInt aMode)
836 /** Sets the application's screen mode; this also sets all the attributes
839 Note: although this API was added in Symbian OS v8.0, the functionality is
840 only available from Symbian OS v8.1 onwards.
842 @param aMode The index of the application's new screen mode.*/
844 WriteInt(aMode,EWsSdOpSetAppScreenMode);
847 EXPORT_C TInt CWsScreenDevice::NumScreenModes() const
848 /** Gets the number of available screen modes.
850 Each mode has a different size, and one or more possible rotations/orientations.
852 This function always causes a flush of the window server buffer.
854 @return The number of screen modes. */
856 return(WriteReply(EWsSdOpGetNumScreenModes));
859 EXPORT_C TInt CWsScreenDevice::CurrentScreenMode() const
860 /** Gets the current screen mode index.
862 This function always causes a flush of the window server buffer.
864 @return The index into the list of available screen modes of the current screen
867 return WriteReply(EWsSdOpGetScreenMode);
870 EXPORT_C void CWsScreenDevice::SetScreenMode(TInt aMode)
875 Sets the current screen mode.
877 Note that this function is only useful for testing. This is because the screen mode
878 normally reflects the state of real hardware, e.g. whether the cover is open
879 or closed on a phone that supports screen flipping.
881 This function always causes a flush of the window server buffer.
883 @param aMode The screen mode index, starting from zero.
884 @capability WriteDeviceData */
886 WriteInt(aMode,EWsSdOpSetScreenMode);
887 iDisplaySizeInPixels=SizeInPixels();
888 iPhysicalScreenSizeInTwips=SizeInTwips();
891 EXPORT_C void CWsScreenDevice::GetScreenModeSizeAndRotation(TInt aMode, TPixelsTwipsAndRotation &aSizeAndRotation) const
892 /** Get the screen rotation and size, in both pixels and twips, for the specified
895 This function always causes a flush of the window server buffer.
897 @param aMode The index of the screen mode for which the screen size and rotation
899 @param aSizeAndRotation The orientation of the specified screen mode, and its
900 size in both pixels and twips. */
902 TPckgBuf<TPixelsTwipsAndRotation> sarPkg;
903 WriteReplyP(&aMode,sizeof(aMode),&sarPkg,EWsSdOpGetScreenModeSizeAndRotation);
904 aSizeAndRotation=sarPkg();
907 EXPORT_C void CWsScreenDevice::GetScreenModeSizeAndRotation(TInt aMode, TPixelsAndRotation &aSizeAndRotation) const
908 /** Get the screen rotation and size (in pixels) for the specified screen mode.
910 This function always causes a flush of the window server buffer.
912 @param aMode The index of the screen mode for which the screen size and rotation
914 @param aSizeAndRotation The orientation of the specified screen mode, and its
917 TPckgBuf<TPixelsAndRotation> sarPkg;
918 WriteReplyP(&aMode,sizeof(aMode),&sarPkg,EWsSdOpGetScreenModeSizeAndRotation2);
919 aSizeAndRotation=sarPkg();
922 EXPORT_C void CWsScreenDevice::SetCurrentRotations(TInt aMode, CFbsBitGc::TGraphicsOrientation aRotation) const
927 Sets the screen rotation that should be used with a particular screen size.
929 After calling this function, whenever you change into the screen size specified
930 by aMode you will have the rotation aRotation. The setting remains in force
931 until it is explicitly changed using this function.
933 Panics if the specified rotation is not allowed by the given screen mode.
935 @param aMode The index of the screen mode the rotation applies to.
936 @param aRotation The new screen orientation.
937 @see GetRotationsList()
938 @capability WriteDeviceData */
940 TWsSdCmdSetScreenRotation screenRotation(aMode,aRotation);
941 Write(&screenRotation,sizeof(screenRotation),EWsSdOpSetModeRotation);
944 EXPORT_C TInt CWsScreenDevice::GetRotationsList(TInt aMode, CArrayFixFlat<TInt> *aRotationList) const
945 /** Gets the list of valid rotations for a particular screen size.
947 The list is initialised in wsini.ini.
949 This function always causes a flush of the window server buffer.
951 @param aMode The index of the screen mode for which the rotation list
953 @param aRotationList The list of valid screen orientations.
954 @return KErrNone if successful, otherwise another of the system-wide error
956 @see SetCurrentRotations() */
958 TUint modeList=(TUint)WriteReplyInt(aMode,EWsSdOpGetRotationList);
959 TUint modeBit=1<<CFbsBitGc::EGraphicsOrientationNormal;
965 rots[ii]=(modeList&modeBit);
972 TRAPD(err,aRotationList->ResizeL(rotations));
979 (*aRotationList)[rotations++]=REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,ii);
984 EXPORT_C TScreenModeEnforcement CWsScreenDevice::ScreenModeEnforcement() const
985 /** Gets the current screen mode enforcement settings.
987 The global screen mode enforcement setting defines the requirements that a
988 group window must meet to be displayed. The requirements may have been set
989 in wsini.ini, or using SetScreenModeEnforcement().
991 This function always causes a flush of the window server buffer.
993 @return The screen mode enforcement requirements. */
995 return((TScreenModeEnforcement)WriteReply(EWsSdOpScreenModeEnforcement));
998 EXPORT_C void CWsScreenDevice::SetScreenModeEnforcement(TScreenModeEnforcement aMode) const
1003 Sets the screen mode enforcement requirements.
1005 This global setting defines the requirements that a group window must meet
1006 to be displayed. The value may be set using this function, but is more likely
1007 to be defined in wsini.ini.
1009 @param aMode The screen mode enforcement requirements.
1010 @capability WriteDeviceData */
1012 WriteInt(aMode,EWsSdOpSetScreenModeEnforcement);
1015 EXPORT_C TInt CWsScreenDevice::GetScreenNumber() const
1016 /** Get device's screen number
1018 @return The device's screen number
1019 @see CWsScreenDevice::Construct( TInt aDefaultScreenNumber ) */
1021 return WriteReply(EWsSdOpGetScreenNumber);
1024 /** Gets the available screen size modes.
1026 This function retrieves all available screen size modes which are supported by
1029 @param aModeList On return, the list of available screen size modes.
1030 @return The number of supported screen size modes if successful otherwise returns KErrNoMemory if
1031 there is insufficient memory to create the array. */
1032 EXPORT_C TInt CWsScreenDevice::GetScreenSizeModeList(RArray<TInt>* aModeList) const
1034 __ASSERT_ALWAYS(aModeList, Panic(EW32PanicNullArray));
1036 TInt count=WriteReply(EWsSdOpGetNumScreenModes);
1037 TInt totSize=count*sizeof(TInt);
1038 TInt* allocMem=static_cast<TInt*>(User::Alloc(totSize));
1041 return KErrNoMemory;
1043 TPtr8 listPtr(reinterpret_cast<TUint8*>(allocMem), totSize);
1044 count=WriteReplyP(&listPtr, EWsSdOpGetScreenSizeModeList);
1045 new(aModeList) RArray<TInt>(allocMem, count);
1049 EXPORT_C TInt CWsScreenDevice::SetBackLight(TBool aBackLight)
1051 @param aBackLight, ETrue Set the backlight on, EFlase set the backlight off.
1052 @capability EikServ SID */
1054 return(WriteReplyInt(aBackLight,EWsClOpSetBackLight));
1057 /** Interface Extension capability
1058 Use of this interface going forward will allow the published client interface to be dynamically extended.
1059 Note that the pointer returned is only good for the lifetime of the called CBase derived object.
1061 @param aInterfaceId uniqueid or well known id of interface
1062 @return pointer to interface object matching this ID or NULL if no match.
1064 EXPORT_C TAny* CWsScreenDevice::GetInterface(TUint aInterfaceId)
1066 return iExtension->GetInterface(aInterfaceId);
1069 /** Returns whether the given screen size mode is dynamic or not.
1070 Dynamic screen size modes may change their size in pixels and/or twips
1071 and other attributes at run time, so they must not be cached. Static size
1072 mode attributes will not change at run time, but may not make full use of the display.
1073 Invalid size modes shall return EFalse.
1075 @param aSizeMode The screen size mode to check.
1076 @return ETrue if the given screen size mode is dynamic, EFalse otherwise.
1078 EXPORT_C TBool CWsScreenDevice::IsModeDynamic(TInt /*aSizeMode*/) const
1083 /** Returns whether the current screen size mode is dynamic or not.
1085 @return ETrue if current screen size mode is dynamic, EFalse otherwise.
1088 EXPORT_C TBool CWsScreenDevice::IsCurrentModeDynamic() const