Update contrib.
1 // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
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 /** Interface Extension capability
40 Use of this interface going forward will allow the published client interface to be dynamically extended.
41 Note that the pointer returned is only good for the lifetime of the called CBase derived object.
43 @param aInterfaceId uniqueid or well known id of interface
44 @return pointer to interface object matching this ID or NULL if no match.
46 EXPORT_C TAny* CWsScreenDevice::GetInterface(TUint aInterfaceId)
48 return iExtension->GetInterface(aInterfaceId);
51 /** Returns whether the given screen size mode is dynamic or not.
52 Dynamic screen size modes may change their size in pixels and/or twips
53 and other attributes at run time, so they must not be cached. Static size
54 mode attributes will not change at run time, but may not make full use of the display.
55 Invalid size modes shall return EFalse.
57 @param aSizeMode The screen size mode to check.
58 @return ETrue if the given screen size mode is dynamic, EFalse otherwise.
60 EXPORT_C TBool CWsScreenDevice::IsModeDynamic(TInt aSizeMode) const
66 return((TBool)WriteReply(&aSizeMode, sizeof(aSizeMode), EWsSdOpIsScreenModeDynamic));
69 /** Returns whether the current screen size mode is dynamic or not.
71 @return ETrue if current screen size mode is dynamic, EFalse otherwise.
74 EXPORT_C TBool CWsScreenDevice::IsCurrentModeDynamic() const
76 const TInt KCurrentMode = -1;
77 return((TBool)WriteReply(&KCurrentMode, sizeof(KCurrentMode), EWsSdOpIsScreenModeDynamic));
80 EXPORT_C TInt CWsScreenDevice::CreateContext(CGraphicsContext *&aGc)
81 /** Creates a graphics context for this device.
83 This function always causes a flush of the window server buffer.
85 @param aGc On successful return, contains a new graphics context referring
86 to this screen device.
87 @return KErrNone if successful, otherwise one of the system-wide error codes.
88 @see CGraphicsDevice::CreateContext() */
90 if ((aGc=new CWindowGc(this))==NULL)
92 TInt err=((CWindowGc *)aGc)->Construct();
101 EXPORT_C CWsScreenDevice::~CWsScreenDevice()
111 delete TypeFaceStore();
116 #pragma warning(disable : 4710)
118 Completes construction of the object.
120 This method invokes Construct(TInt aDefaultScreenNumber) with default Screen number.
121 @return KErrNone if successful, otherwise another of the system-wide error codes.
123 EXPORT_C TInt CWsScreenDevice::Construct()
125 return Construct( KDefaultScreenNumber ) ;
129 EXPORT_C TInt CWsScreenDevice::Construct(TInt aDefaultScreenNumber)
130 /** Completes construction of the object.
132 This function always causes a flush of the window server buffer.
133 @param aDefaultScreenNumber - This is the screen on which an application will start
134 @return KErrNone if successful, otherwise another of the system-wide error
136 @panic TW32Panic 17 in debug builds if called on an already constructed object.*/
138 __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
140 TWsClCmdCreateScreenDevice createScreenDevice;
141 createScreenDevice.screenNumber = aDefaultScreenNumber;
142 createScreenDevice.clientScreenDevicePointer = (TUint)this;
143 if ( ( ret=iBuffer->WriteReplyWs(&createScreenDevice,sizeof(createScreenDevice),EWsClOpCreateScreenDevice ) ) < 0 )
148 //If the extension fails to allocate then clients will be refused access to the extension interface.
149 TRAP(ret,iExtension=new(ELeave) CScrDevExtension(iBuffer,iWsHandle));
152 TRAP(ret,iExtension->SetTypefaceStore(CFbsTypefaceStore::NewL(this)));
154 if (IsCurrentModeDynamic())
156 iDisplaySizeInPixels=TSize(-1,-1);
157 iPhysicalScreenSizeInTwips=TSize(-1,-1);
162 iDisplaySizeInPixels=SizeInPixels();
163 iPhysicalScreenSizeInTwips=SizeInTwips();
165 if (iDisplaySizeInPixels.iWidth==0)
167 TMachineInfoV1Buf macInfo;
168 UserHal::MachineInfo(macInfo);
169 iPhysicalScreenSizeInTwips=macInfo().iPhysicalScreenSize;
170 iDisplaySizeInPixels=macInfo().iDisplaySizeInPixels;
175 #pragma warning(default : 4710)
177 EXPORT_C TDisplayMode CWsScreenDevice::DisplayMode() const
178 /** Gets the device's display mode.
180 This function always causes a flush of the window server buffer.
182 @return The device's display mode.
183 @see CGraphicsDevice::DisplayMode() */
185 return((TDisplayMode)WriteReply(EWsSdOpDisplayMode));
188 EXPORT_C TRect CWsScreenDevice::PointerRect() const
189 /** Gets the active area for the pointing device.
191 This is a device-dependent parameter, and will typically depend on the screen
192 size and other factors.
194 This function always causes a flush of the window server buffer.
196 @return The active area, measured in pixels. */
198 TPckgBuf<TRect> rectPkg;
199 WriteReplyP(&rectPkg,EWsSdOpPointerRect);
203 EXPORT_C TSize CWsScreenDevice::SizeInPixels() const
204 /** Gets the size of the screen device area in pixels.
206 This function always causes a flush of the window server buffer.
208 @return The x and y dimensions of the screen device area, in pixels.
209 @see CGraphicsDevice::SizeInPixels() */
211 TPckgBuf<TSize> sizePkg;
212 WriteReplyP(&sizePkg,EWsSdOpPixelSize);
216 EXPORT_C TSize CWsScreenDevice::SizeInTwips() const
217 /** Gets the size of the screen device area in twips.
219 This function always causes a flush of the window server buffer.
221 @return The x and y dimensions of the screen device area, in twips.
222 @see CGraphicsDevice::SizeInTwips() */
224 TPckgBuf<TSize> sizePkg;
225 WriteReplyP(&sizePkg,EWsSdOpTwipsSize);
229 TSize CWsScreenDevice::DisplaySizeInPixels() const
231 if (iDisplaySizeInPixels == TSize(-1,-1))
233 return SizeInPixels();
235 return iDisplaySizeInPixels;
238 TSize CWsScreenDevice::PhysicalScreenSizeInTwips() const
240 if (iPhysicalScreenSizeInTwips == TSize(-1,-1))
242 return SizeInTwips();
244 return iPhysicalScreenSizeInTwips;
247 EXPORT_C TInt CWsScreenDevice::HorizontalTwipsToPixels(TInt aTwips) const
248 /** Translates a twips to a pixel value.
250 @param aTwips The value in twips.
251 @return The equivalent number of pixels.
252 @see MGraphicsDeviceMap::HorizontalTwipsToPixels() */
255 TSize displaySizeInPixels = DisplaySizeInPixels();
256 TSize physicalScreenSizeInTwips = PhysicalScreenSizeInTwips();
257 if (displaySizeInPixels.iWidth <= 0 ||
258 physicalScreenSizeInTwips.iWidth <= 0)
262 twips=(twips*displaySizeInPixels.iWidth+(physicalScreenSizeInTwips.iWidth/2))/physicalScreenSizeInTwips.iWidth;
263 return I64INT(twips);
266 EXPORT_C TInt CWsScreenDevice::VerticalTwipsToPixels(TInt aTwips) const
267 /** Translates a vertical dimension of a screen device in twips into pixels.
269 @param aTwips A vertical dimension of a device in twips.
270 @return The vertical dimension in pixels. */
273 TSize displaySizeInPixels = DisplaySizeInPixels();
274 TSize physicalScreenSizeInTwips = PhysicalScreenSizeInTwips();
275 if (displaySizeInPixels.iHeight <= 0 ||
276 physicalScreenSizeInTwips.iHeight <= 0)
280 twips=(twips*displaySizeInPixels.iHeight+(physicalScreenSizeInTwips.iHeight/2))/physicalScreenSizeInTwips.iHeight;
281 return I64INT(twips);
284 EXPORT_C TInt CWsScreenDevice::HorizontalPixelsToTwips(TInt aPixels) const
285 /** Translates a specified pixel value to a twips value.
287 @param aPixels The value in pixels to be translated.
288 @return The equivalent number of twips. */
290 TInt64 pixels=aPixels;
291 TSize displaySizeInPixels = DisplaySizeInPixels();
292 TSize physicalScreenSizeInTwips = PhysicalScreenSizeInTwips();
293 if (displaySizeInPixels.iWidth <= 0 ||
294 physicalScreenSizeInTwips.iWidth <= 0)
298 pixels=(pixels*physicalScreenSizeInTwips.iWidth+(displaySizeInPixels.iWidth/2))/displaySizeInPixels.iWidth;
299 return I64INT(pixels);
302 EXPORT_C TInt CWsScreenDevice::VerticalPixelsToTwips(TInt aPixels) const
303 /** Translates a vertical dimension of a screen device in pixels into twips.
305 @param aPixels A vertical dimension of a device in pixels.
306 @return The vertical dimension in twips.
307 @see MGraphicsDeviceMap::VerticalPixelsToTwips() */
309 TInt64 pixels=aPixels;
310 TSize displaySizeInPixels = DisplaySizeInPixels();
311 TSize physicalScreenSizeInTwips = PhysicalScreenSizeInTwips();
312 if (displaySizeInPixels.iHeight <= 0 ||
313 physicalScreenSizeInTwips.iHeight <= 0)
317 pixels=(pixels*physicalScreenSizeInTwips.iHeight+(displaySizeInPixels.iHeight/2))/displaySizeInPixels.iHeight;
318 return I64INT(pixels);
321 EXPORT_C void CWsScreenDevice::GetPixel(TRgb &aColor,const TPoint &aPixel) const
322 /** Gets the RGB colour of an individual pixel on a screen device.
324 This function always causes a flush of the window server buffer.
326 @param aColor On return, contains the RGB colour of the pixel.
327 @param aPixel The x,y co-ordinates of the pixel. The top left pixel is (0,0).
328 @see CBitmapDevice::GetPixel() */
330 aColor.SetInternal(((TUint32)WriteReply(&aPixel,sizeof(aPixel),EWsSdOpPixel)));
333 EXPORT_C void CWsScreenDevice::GetScanLine(TDes8 &aScanLine,const TPoint &aStartPixel,TInt aPixelLength, TDisplayMode aDispMode) const
334 /** Gets a scanline into a buffer.
336 The pixels are converted from the bitmapped graphics device display mode format
337 to the format of the specified device display mode.
339 By specifying the start pixel and number of pixels either the whole or a portion
340 of a bitmapped graphics device pixel row may be copied.
342 This function always causes a flush of the window server buffer.
344 @param aScanLine A buffer into which pixels are copied, it must be sufficiently
345 large to store all the scanline pixels.
346 @param aStartPixel The (x,y) co-ordinates of the first pixel of the bitmap scanline
347 to be put into the buffer.
348 @param aPixelLength The number of pixels to put into the buffer.
349 @param aDispMode The display mode into which to convert the pixels.
350 @see CBitmapDevice::GetScanLine() */
352 TWsSdCmdGetScanLine getScanLine(aStartPixel,aPixelLength,aDispMode);
353 WriteReplyP(&getScanLine,sizeof(getScanLine),&aScanLine,EWsSdOpGetScanLine);
356 EXPORT_C TBool CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2) const
357 /** Compares two areas of the screen to see if they have the same content.
359 If there are any sprites on the screen they are not included in the comparison.
361 This function always causes a flush of the window server buffer.
363 @param aRect1 A rectangle.
364 @param aRect2 Another rectangle.
365 @return ETrue if the two screen areas are identical. */
367 return RectCompare(aRect1,aRect2,ERemoveSprite);
370 EXPORT_C TBool CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2,TUint aFlags) const
371 /** Compares two areas of the screen to see if they have the same content.
373 This function always causes a flush of the window server buffer.
375 @param aRect1 A rectangle.
376 @param aRect2 Another rectangle.
377 @param aFlags EIncludeSprite to include any visible sprites in the comparison, ERemoveSprite to remove the sprites,
378 or EIncludeTextCursor to include any visible text cursors in the comparison. EIncludeSprite and EIncludeTextCursor
379 can be combined (logically ORed) to include both visible sprites and visible text cursors in the comparison. These
380 values are defined in the enum TSpriteInCompare in this class.
381 @return ETrue if the two screen areas are identical. */
383 TWsSdCmdRectCompare rectCompare(aRect1,aRect2,aFlags);
384 return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpRectCompare));
387 EXPORT_C TInt CWsScreenDevice::CopyScreenToBitmap(const CFbsBitmap *aBitmap) const
388 /** Saves the entire screen to a bitmap.
390 This function always causes a flush of the window server buffer.
392 @param aBitmap Bitmap to be filled with the screen image.
393 @return KErrNone if successful, otherwise one of the system-wide error codes. */
395 AddToBitmapArray(aBitmap->Handle());
396 TWsSdCmdCopyScreenToBitmap rectCompare(aBitmap->Handle());
397 return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap));
400 EXPORT_C TInt CWsScreenDevice::CopyScreenToBitmap(const CFbsBitmap *aBitmap, const TRect &aRect) const
401 /** Saves a region of the screen to a bitmap.
403 This function always causes a flush of the window server buffer.
405 @param aBitmap Bitmap to be filled with the screen region image.
406 @param aRect Screen region to be saved.
407 @return KErrNone if successful, otherwise one of the system-wide error codes. */
409 AddToBitmapArray(aBitmap->Handle());
410 TWsSdCmdCopyScreenToBitmap2 rectCompare(aRect, aBitmap->Handle());
411 return(WriteReply(&rectCompare,sizeof(rectCompare),EWsSdOpCopyScreenToBitmap2));
414 EXPORT_C TInt CWsScreenDevice::GetNearestFontInTwips(CFont*& aFont,const TFontSpec& aFontSpec)
415 /** Gets the nearest font, in twips, to that in the specified font specification.
417 This function is replaced by GetNearestFontToDesignHeightInTwips()
419 The font and bitmap server returns a pointer to the nearest matching font
420 from those available, in aFont.
422 @param aFont On return, this is set to point to the device font closest to the font
423 specification passed in the second argument.
424 @param aFontSpec An absolute font specification.
425 @return KErrNone if successful, otherwise another of the system-wide error
427 @see MGraphicsDeviceMap::GetNearestFontInTwips()
430 return GetNearestFontToDesignHeightInTwips(aFont, aFontSpec);
432 CFbsTypefaceStore* CWsScreenDevice::TypeFaceStore()const
433 /** Helper member fn to access the movable typeface store.
436 return iExtension->TypefaceStore();
440 EXPORT_C TInt CWsScreenDevice::GetNearestFontToDesignHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec)
441 /** Gets the nearest font in twips to that specified.
443 The font and bitmap server returns a pointer to the nearest matching font
444 from those available. Matches to design height of font - this gives no
445 guarantees on the actual physical size of the font.
447 This function replaces GetNearestFontInTwips
449 @param aFont On return, the pointer is set to point to the device font which
450 most closely approximates to the required font specification.
451 @param aFontSpec An absolute font specification.
452 @return KErrNone, if successful; otherwise, another of the system-wide error
454 @see MGraphicsDeviceMap::GetNearestFontToDesignHeightInTwips() */
456 return TypeFaceStore()->GetNearestFontToDesignHeightInTwips(aFont, aFontSpec);
459 /** Gets the nearest font, in twips, to that specified.
461 The font and bitmap server returns a pointer to the nearest matching font
462 from those available. Matches to max height of font - this does its best
463 to return a font that will fit within the maximum height specified (but
464 note that variations due to hinting algorithms may rarely result in this
465 height being exceeded by up to one pixel). Problems can also be
466 encountered with bitmap fonts where the typeface exists but doesn't have
469 @param aFont On return, the pointer is set to point to the device font which
470 most closely approximates to the required font specification.
471 @param aFontSpec An absolute font specification.
472 @param aMaxHeight The maximum height within which the font must fit - this
473 overrides the height specified in the TFontSpec. If maximum height
474 is greater than 1024 pixels, the function returns KErrTooBig. And returns
475 KErrArgument if equals to 1 pixel.
476 @return KErrNone, if successful; otherwise, another of the system-wide error
478 @see MGraphicsDeviceMap::GetNearestFontToMaxHeightInTwips() */
479 EXPORT_C TInt CWsScreenDevice::GetNearestFontToMaxHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight)
481 return TypeFaceStore()->GetNearestFontToMaxHeightInTwips(aFont, aFontSpec, aMaxHeight);
484 EXPORT_C TInt CWsScreenDevice::GetNearestFontInPixels(CFont*& aFont,const TFontSpec& aFontSpec)
485 /** Gets the nearest font to that specified for use by a bitmapped graphics device.
487 This function is replaced by GetNearestFontToDesignHeightInPixels()
489 The font and bitmap server returns a pointer to the nearest matching font
490 from those available, in aFont.
492 @param aFont On return, this is set to point to the device font that is
493 closest to the font specification passed in the second argument
494 @param aFontSpec An absolute font specification
495 @return KErrNone if successful, otherwise another of the system-wide error
497 @see CBitmapDevice::GetNearestFontInPixels()
500 return GetNearestFontToDesignHeightInPixels(aFont, aFontSpec);
503 EXPORT_C TInt CWsScreenDevice::GetNearestFontToDesignHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec)
504 /** Gets the nearest font in pixels to that specified.
506 The font and bitmap server returns a pointer to the nearest matching font
507 from those available. Matches to design height of font - this gives no
508 guarantees on the actual physical size of the font.
510 This function replaces GetNearestFontInTwips
512 @param aFont On return, the pointer is set to point to the device font which
513 most closely approximates to the required font specification.
514 @param aFontSpec An absolute font specification.
515 @return KErrNone, if successful; otherwise, another of the system-wide error
517 @see CBitmapDevice::GetNearestFontToDesignHeightInPixels() */
519 return TypeFaceStore()->GetNearestFontToDesignHeightInPixels(aFont, aFontSpec);
522 /** Gets the nearest font in pixels to that specified.
524 The font and bitmap server returns a pointer to the nearest matching font
525 from those available. Matches to max height of font - this does its best
526 to return a font that will fit within the maximum height specified (but
527 note that variations due to hinting algorithms may rarely result in this
528 height being exceeded by up to one pixel). Problems can also be
529 encountered with bitmap fonts where the typeface exists but doesn't have
532 @param aFont On return, the pointer is set to point to the device font which
533 most closely approximates to the required font specification.
534 @param aFontSpec An absolute font specification.
535 @param aMaxHeight The maximum height within which the font must fit - this
536 overrides the height specified in the TFontSpec. If maximum height
537 is greater than 1024 pixels, the function returns KErrTooBig. And returns
538 KErrArgument if equals to 1 pixel.
539 @return KErrNone, if successful; otherwise, another of the system-wide error
541 @see CBitmapDevice::GetNearestFontToMaxHeightInPixels() */
542 EXPORT_C TInt CWsScreenDevice::GetNearestFontToMaxHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight)
544 return TypeFaceStore()->GetNearestFontToMaxHeightInPixels(aFont, aFontSpec, aMaxHeight);
547 EXPORT_C TInt CWsScreenDevice::NumTypefaces() const
548 /** Gets the number of typefaces supported by the screen device.
550 @return The number of typefaces supported.
551 @see CGraphicsDevice::NumTypefaces() */
553 return(TypeFaceStore()->NumTypefaces());
556 EXPORT_C void CWsScreenDevice::TypefaceSupport(TTypefaceSupport& aTypefaceSupport,TInt aTypefaceIndex) const
557 /** Gets typeface information for a particular typeface index number.
559 This information is returned in aTypefaceSupport, and includes: the typeface
560 name and typeface attributes (in a TTypeface object), the number of font heights,
561 the maximum and minimum font heights and whether it is a scalable typeface.
563 @param aTypefaceSupport On return, if the function executed successfully,
564 this contains the typeface information.
565 @param aTypefaceIndex A typeface index number, in the range zero to (NumTypefaces()
567 @see CGraphicsDevice::TypefaceSupport() */
569 TypeFaceStore()->TypefaceSupport(aTypefaceSupport,aTypefaceIndex);
572 EXPORT_C TInt CWsScreenDevice::FontHeightInTwips(TInt aTypefaceIndex,TInt aHeightIndex) const
573 /** Gets the height in twips of the specified font.
575 The value returned is rounded up or down to the nearest font height in twips.
577 The specified font is the one with height index number aHeightIndex of the
578 typeface with index number aTypefaceIndex.
580 @param aTypefaceIndex A typeface index number, in the range: 0 to (NumTypefaces() - 1).
581 @param aHeightIndex A font height index number, in the range: 0 to (iNumHeights - 1).
582 @return The height of the font in twips.
583 @see CGraphicsDevice::FontHeightInTwips() */
585 return(TypeFaceStore()->FontHeightInTwips(aTypefaceIndex,aHeightIndex));
588 EXPORT_C TInt CWsScreenDevice::FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const
589 /** Gets the height of the specified font in pixels.
591 The value returned is rounded up or down to the nearest font height in pixels.
593 The specified font is the one with height index number aHeightIndex of the
594 typeface with index number aTypefaceIndex.
596 @param aTypefaceIndex A typeface index number, in the range: 0 to (NumTypefaces() - 1).
597 @param aHeightIndex A font height index number, in the range: 0 to (iNumHeights - 1).
598 @return The height of the font in pixels.
599 @see CBitmapDevice::FontHeightInPixels() */
601 return(TypeFaceStore()->FontHeightInPixels(aTypefaceIndex,aHeightIndex));
604 EXPORT_C TInt CWsScreenDevice::GetFontById(CFont *&aFont,TUid aUid,const TAlgStyle& aAlgStyle)
605 /** Gets a font by its bitmap UID.
607 Within a font file each font has its own UID. An algorithmic style is not
608 part of the actual font description, but is applied to it. For example algorithmic
609 bolding applies an algorithm to increase the apparent weight of each character
610 in the font. Note that the algorithm is applied blindly, and that a typeface
611 may already have a style e.g. it may already be bold or italic. Thus a bold
612 face will appear extra-bold if algorithmic bolding is applied to it. Algorithmic
613 effects are not necessarily a substitute for typeface design and should be
616 @param aFont On a successful return, contains a pointer to the new CFont.
617 @param aUid UID of the bitmap font.
618 @param aAlgStyle The algorithmic style to apply.
619 @return KErrNone if successful, otherwise one of the system-wide error codes. */
621 return(TypeFaceStore()->GetFontById(aFont,aUid,aAlgStyle));
624 EXPORT_C TInt CWsScreenDevice::AddFile(const TDesC& aName,TInt& aId)
625 /** Adds a font file to the device's typeface store. The specified font
626 file must be accessible to any process, i.e. not located inside an
627 application's private directory.
629 @param aName Name of the font file.
630 @param aId ID for the font file.
631 @return KErrNone if successful, otherwise one of the system-wide error codes.
632 @see CBitmapDevice::AddFile() */
634 return(TypeFaceStore()->AddFile(aName, aId));
637 EXPORT_C void CWsScreenDevice::RemoveFile(TInt aId)
638 /** Removes a font file from the font store.
640 @param aId The ID of the font file to be removed, default 0.
641 @see CBitmapDevice::RemoveFile() */
643 TypeFaceStore()->RemoveFile(aId);
646 EXPORT_C void CWsScreenDevice::ReleaseFont(CFont* aFont)
647 /** Releases a specified font.
649 This function is used to indicate that the specified font is no longer needed
650 for use by the screen device. As fonts can be shared between applications,
651 this function does not delete the copy of the font from RAM, unless the font
652 was only being used by this device.
654 @param aFont A pointer to the font to be released.
655 @see MGraphicsDeviceMap::ReleaseFont() */
657 TypeFaceStore()->ReleaseFont(aFont);
660 EXPORT_C void CWsScreenDevice::PaletteAttributes(TBool& aModifiable,TInt& aNumEntries) const
661 /** Gets the attributes of the device's palette.
663 This function always causes a flush of the window server buffer.
665 @param aModifiable On return, indicates whether or not the device's palette
666 is modifiable (true) or fixed (false).
667 @param aNumEntries On return, holds the number of entries in the device's
669 @see CFbsScreenDevice::PaletteAttributes() */
671 TInt ret=WriteReply(EWsSdOpPaletteAttributes);
672 aModifiable=ret&EWsSdSetableBitFlag;
673 aNumEntries=ret&(~EWsSdSetableBitFlag);
676 EXPORT_C void CWsScreenDevice::SetPalette(CPalette* aPalette)
677 /** Sets the screen device's palette.
679 This function always causes a flush of the window server buffer.
681 @param aPalette The screen device's new palette.
682 @deprecated SetCustomPalette() should be used instead.
683 @panic W32 6 aPalette is NULL.
684 @capability WriteDeviceData */
686 #if defined(__WINS__)
687 __ASSERT_DEBUG(SetCustomPalette(aPalette)==KErrNone,Panic(EW32PanicSilentFail));
689 SetCustomPalette(aPalette);
692 EXPORT_C TInt CWsScreenDevice::SetCustomPalette(const CPalette* aPalette)
693 /** Sets the custom palette.
695 This function always causes a flush of the window server buffer.
697 @param aPalette The custom palette.
698 @return KErrNone if sucessful, or one of the system error codes.
699 @panic W32 6 aPalette is NULL.
700 @capability WriteDeviceData */
702 __ASSERT_ALWAYS(aPalette,Panic(EW32PanicNullPalette));
703 TPtr8 palette(NULL,0);
704 CONST_CAST(CPalette*,aPalette)->GetDataPtr(0,aPalette->Entries(),palette);
706 return WriteReplyByProvidingRemoteReadAccess(&empty, sizeof(empty), &palette, EWsSdOpSetPalette);
709 EXPORT_C TInt CWsScreenDevice::GetPalette(CPalette*& aPalette) const
710 /** Gets the screen device's palette.
712 This function always causes a flush of the window server buffer.
714 @param aPalette On return, contains the screen device's palette. The caller
715 takes responsibility for discarding the palette.
716 @return KErrNone if successful, otherwise another of the system-wide error
718 @see CFbsScreenDevice::GetPalette() */
720 TBool modifiable; //Dummy parameter
723 PaletteAttributes(modifiable,numEntries);
726 TRAP(ret,aPalette=CPalette::NewL(numEntries));
729 TPtr8 palette(NULL,0);
730 aPalette->GetDataPtr(0,numEntries,palette);
731 ret=WriteReplyIntP(numEntries,&palette,EWsSdOpGetPalette);
736 if (ret>0) //The mode of the screen display changed
746 EXPORT_C void CWsScreenDevice::SetScreenSizeAndRotation(const TPixelsTwipsAndRotation &aSizeAndRotation)
747 /** Sets the current screen size in twips and pixels, and the rotation for the
750 @param aSizeAndRotation The new rotation and the screen size in both pixels
753 TSize displaySizeInPixels = DisplaySizeInPixels();
754 TSize physicalScreenSizeInTwips = PhysicalScreenSizeInTwips();
755 // Need to reset the cache if the ratio of twip/pixels changes
756 // Using multiply as this is much quicker than divide on ARM
757 // No need to flush cache if this is a width/height swap
758 if((physicalScreenSizeInTwips.iWidth * aSizeAndRotation.iPixelSize.iWidth != aSizeAndRotation.iTwipsSize.iWidth * displaySizeInPixels.iWidth
759 || physicalScreenSizeInTwips.iHeight * aSizeAndRotation.iPixelSize.iHeight != aSizeAndRotation.iTwipsSize.iHeight * displaySizeInPixels.iHeight)
760 && !(aSizeAndRotation.iPixelSize.iHeight == displaySizeInPixels.iWidth
761 && aSizeAndRotation.iPixelSize.iWidth == displaySizeInPixels.iHeight
762 && physicalScreenSizeInTwips.iHeight == aSizeAndRotation.iTwipsSize.iWidth
763 && physicalScreenSizeInTwips.iWidth == aSizeAndRotation.iTwipsSize.iHeight))
765 TypeFaceStore()->ReleaseTwipsCache();
767 Write(&aSizeAndRotation,sizeof(aSizeAndRotation),EWsSdOpSetScreenSizeAndRotation);
769 if (!(iDisplaySizeInPixels == TSize(-1,-1)) || !IsCurrentModeDynamic())
771 iDisplaySizeInPixels=aSizeAndRotation.iPixelSize;
772 iPhysicalScreenSizeInTwips=aSizeAndRotation.iTwipsSize;
776 EXPORT_C void CWsScreenDevice::GetDefaultScreenSizeAndRotation(TPixelsTwipsAndRotation &aSizeAndRotation) const
777 /** Gets the current screen size (in both pixels and twips) and rotation.
779 This function always causes a flush of the window server buffer.
781 @param aSizeAndRotation The default screen size and rotation, defining screen
782 size in both pixels and twips. */
784 TPckgBuf<TPixelsTwipsAndRotation> sarPkg;
785 WriteReplyP(&sarPkg,EWsSdOpGetDefaultScreenSizeAndRotation);
786 aSizeAndRotation=sarPkg();
789 EXPORT_C void CWsScreenDevice::SetScreenSizeAndRotation(const TPixelsAndRotation &aSizeAndRotation)
790 /** Sets the current screen size in pixels, and the rotation for the screen device.
792 This function always causes a flush of the window server buffer.
794 @param aSizeAndRotation The new rotation and the screen size in pixels. */
796 TSize displaySizeInPixels = DisplaySizeInPixels();
797 if(displaySizeInPixels != aSizeAndRotation.iPixelSize
798 && !(aSizeAndRotation.iPixelSize.iHeight == displaySizeInPixels.iWidth
799 && aSizeAndRotation.iPixelSize.iWidth == displaySizeInPixels.iHeight))
801 // Reset the twips cache.
802 TypeFaceStore()->ReleaseTwipsCache();
804 Write(&aSizeAndRotation,sizeof(aSizeAndRotation),EWsSdOpSetScreenSizeAndRotation2);
805 if (!(iDisplaySizeInPixels == TSize(-1,-1)) || !IsCurrentModeDynamic())
807 iDisplaySizeInPixels=aSizeAndRotation.iPixelSize;
808 iPhysicalScreenSizeInTwips=SizeInTwips();
812 EXPORT_C void CWsScreenDevice::GetDefaultScreenSizeAndRotation(TPixelsAndRotation &aSizeAndRotation) const
813 /** Gets the current screen size (in pixels) and the rotation.
815 This function always causes a flush of the window server buffer.
817 @param aSizeAndRotation The default screen size in pixels and the rotation. */
819 TPckgBuf<TPixelsAndRotation> sarPkg;
820 WriteReplyP(&sarPkg,EWsSdOpGetDefaultScreenSizeAndRotation2);
821 aSizeAndRotation=sarPkg();
824 EXPORT_C TDisplayMode CWsScreenDevice::GetScreenModeDisplayMode(const TInt &aMode) const
825 /** Gets the display mode of the screen for the specified screen mode
827 This function always causes a flush of the window server buffer.
829 @param aMode The index of the screen mode for which the display mode is required
830 @return The display mode for the specified screen mode. */
832 return STATIC_CAST(TDisplayMode,WriteReplyInt(aMode,EWsSdOpGetScreenModeDisplayMode));
835 EXPORT_C TPoint CWsScreenDevice::GetDefaultScreenModeOrigin() const
836 /** Gets the origin for the current screen mode
838 This function always causes a flush of the window server buffer.
840 @param aOrigin The default offset of the current
841 screen mode from the physical screen. */
843 TPckgBuf<TPoint> pntPkg;
844 WriteReplyP(&pntPkg,EWsSdOpGetDefaultScreenModeOrigin);
848 EXPORT_C TPoint CWsScreenDevice::GetScreenModeOrigin(TInt aMode) const
849 /** Get the origin of the screen for the specified screen mode.
851 This function always causes a flush of the window server buffer.
853 @param aMode The index of the screen mode for which the screen origin is required.
854 @param aOrigin The origin of the specified screen mode. */
856 TPckgBuf<TPoint> pntPkg;
857 WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeOrigin);
861 EXPORT_C TSize CWsScreenDevice::GetScreenModeScale(TInt aMode) const
862 /** Gets the scale for the specified screen mode.
864 This function always causes a flush of the window server buffer.
866 @param aMode The index of the screen mode for which the screen scale is required.
867 @return The scale for the specified screen mode. */
869 TPckgBuf<TSize> pntPkg;
870 WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeScale);
874 EXPORT_C TSize CWsScreenDevice::GetCurrentScreenModeScale() const
875 /** Gets the scale for the current screen mode.
877 This function always causes a flush of the window server buffer.
879 @return The scale for the current screen mode. */
881 TPckgBuf<TSize> pntPkg;
882 WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScale);
886 EXPORT_C TPoint CWsScreenDevice::GetCurrentScreenModeScaledOrigin() const
887 /** Gets the current screen mode's scaled origin.
889 The formula used is (A+B-1)/B
893 - A is the screen mode origin in physical coordinates,
894 - B is the screen mode scale width.
896 The result obtained is the scaled origin of the present screen mode.
898 @return The scaled origin for the current screen mode. */
900 TPckgBuf<TPoint> pntPkg;
901 WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeScaledOrigin);
905 EXPORT_C TPoint CWsScreenDevice::GetScreenModeScaledOrigin(TInt aMode) const
906 /** Gets the specfied screen mode's scaled origin.
908 The functionality is same as CWsScreenDevice::GetCurrentScreenModeScaledOrigin().
910 It always causes a flush of the window server buffer.
912 @param aMode The index of the screen mode for which the scaled origin is required.
913 @return The scaled origin for the specified screen mode. */
915 TPckgBuf<TPoint> pntPkg;
916 WriteReplyP(&aMode,sizeof(aMode),&pntPkg,EWsSdOpGetScreenModeScaledOrigin);
924 Used for testing purposes only.
926 @return The present screen mode.
928 EXPORT_C TSizeMode CWsScreenDevice::GetCurrentScreenModeAttributes() const
930 TPckgBuf<TSizeMode> pntPkg;
931 WriteReplyP(&pntPkg,EWsSdOpGetCurrentScreenModeAttributes);
939 Used for testing purposes only.
941 @param aModeAtt Screen size mode to be set.
943 EXPORT_C void CWsScreenDevice::SetCurrentScreenModeAttributes(const TSizeMode &aModeAtt)
945 Write(&aModeAtt,sizeof(aModeAtt),EWsSdOpSetCurrentScreenModeAttributes);
948 EXPORT_C void CWsScreenDevice::SetAppScreenMode(TInt aMode)
949 /** Sets the application's screen mode; this also sets all the attributes
952 Note: although this API was added in Symbian OS v8.0, the functionality is
953 only available from Symbian OS v8.1 onwards.
955 @param aMode The index of the application's new screen mode.*/
957 WriteInt(aMode,EWsSdOpSetAppScreenMode);
960 EXPORT_C TInt CWsScreenDevice::NumScreenModes() const
961 /** Gets the number of available screen modes.
963 Each mode has a different size, and one or more possible rotations/orientations.
965 This function always causes a flush of the window server buffer.
967 @return The number of screen modes. */
969 return(WriteReply(EWsSdOpGetNumScreenModes));
972 EXPORT_C TInt CWsScreenDevice::CurrentScreenMode() const
973 /** Gets the current screen mode index.
975 This function always causes a flush of the window server buffer.
977 @return The index into the list of available screen modes of the current screen
980 return WriteReply(EWsSdOpGetScreenMode);
983 EXPORT_C void CWsScreenDevice::SetScreenMode(TInt aMode)
988 Sets the current screen mode.
990 Note that this function is only useful for testing. This is because the screen mode
991 normally reflects the state of real hardware, e.g. whether the cover is open
992 or closed on a phone that supports screen flipping.
994 This function always causes a flush of the window server buffer.
996 @param aMode The screen mode index, starting from zero.
997 @capability WriteDeviceData */
999 WriteInt(aMode,EWsSdOpSetScreenMode);
1000 if (IsCurrentModeDynamic())
1002 iDisplaySizeInPixels=TSize(-1,-1);
1003 iPhysicalScreenSizeInTwips=TSize(-1,-1);
1007 iDisplaySizeInPixels=SizeInPixels();
1008 iPhysicalScreenSizeInTwips=SizeInTwips();
1012 EXPORT_C void CWsScreenDevice::GetScreenModeSizeAndRotation(TInt aMode, TPixelsTwipsAndRotation &aSizeAndRotation) const
1013 /** Get the screen rotation and size, in both pixels and twips, for the specified
1016 This function always causes a flush of the window server buffer.
1018 @param aMode The index of the screen mode for which the screen size and rotation
1020 @param aSizeAndRotation The orientation of the specified screen mode, and its
1021 size in both pixels and twips. */
1023 TPckgBuf<TPixelsTwipsAndRotation> sarPkg;
1024 WriteReplyP(&aMode,sizeof(aMode),&sarPkg,EWsSdOpGetScreenModeSizeAndRotation);
1025 aSizeAndRotation=sarPkg();
1028 EXPORT_C void CWsScreenDevice::GetScreenModeSizeAndRotation(TInt aMode, TPixelsAndRotation &aSizeAndRotation) const
1029 /** Get the screen rotation and size (in pixels) for the specified screen mode.
1031 This function always causes a flush of the window server buffer.
1033 @param aMode The index of the screen mode for which the screen size and rotation
1035 @param aSizeAndRotation The orientation of the specified screen mode, and its
1038 TPckgBuf<TPixelsAndRotation> sarPkg;
1039 WriteReplyP(&aMode,sizeof(aMode),&sarPkg,EWsSdOpGetScreenModeSizeAndRotation2);
1040 aSizeAndRotation=sarPkg();
1043 EXPORT_C void CWsScreenDevice::SetCurrentRotations(TInt aMode, CFbsBitGc::TGraphicsOrientation aRotation) const
1048 Sets the screen rotation that should be used with a particular screen size.
1050 After calling this function, whenever you change into the screen size specified
1051 by aMode you will have the rotation aRotation. The setting remains in force
1052 until it is explicitly changed using this function.
1054 Panics if the specified rotation is not allowed by the given screen mode.
1056 @param aMode The index of the screen mode the rotation applies to.
1057 @param aRotation The new screen orientation.
1058 @see GetRotationsList()
1059 @capability WriteDeviceData */
1061 TWsSdCmdSetScreenRotation screenRotation(aMode,aRotation);
1062 Write(&screenRotation,sizeof(screenRotation),EWsSdOpSetModeRotation);
1065 EXPORT_C TInt CWsScreenDevice::GetRotationsList(TInt aMode, CArrayFixFlat<TInt> *aRotationList) const
1066 /** Gets the list of valid rotations for a particular screen size.
1068 The list is initialised in wsini.ini.
1070 This function always causes a flush of the window server buffer.
1072 @param aMode The index of the screen mode for which the rotation list
1074 @param aRotationList The list of valid screen orientations.
1075 @return KErrNone if successful, otherwise another of the system-wide error
1077 @see SetCurrentRotations() */
1079 TUint modeList=(TUint)WriteReplyInt(aMode,EWsSdOpGetRotationList);
1080 TUint modeBit=1<<CFbsBitGc::EGraphicsOrientationNormal;
1084 for (ii=0;ii<4;ii++)
1086 rots[ii]=(modeList&modeBit);
1093 TRAPD(err,aRotationList->ResizeL(rotations));
1097 for (ii=0;ii<4;ii++)
1100 (*aRotationList)[rotations++]=REINTERPRET_CAST(CFbsBitGc::TGraphicsOrientation&,ii);
1105 EXPORT_C TScreenModeEnforcement CWsScreenDevice::ScreenModeEnforcement() const
1106 /** Gets the current screen mode enforcement settings.
1108 The global screen mode enforcement setting defines the requirements that a
1109 group window must meet to be displayed. The requirements may have been set
1110 in wsini.ini, or using SetScreenModeEnforcement().
1112 This function always causes a flush of the window server buffer.
1114 @return The screen mode enforcement requirements. */
1116 return((TScreenModeEnforcement)WriteReply(EWsSdOpScreenModeEnforcement));
1119 EXPORT_C void CWsScreenDevice::SetScreenModeEnforcement(TScreenModeEnforcement aMode) const
1124 Sets the screen mode enforcement requirements.
1126 This global setting defines the requirements that a group window must meet
1127 to be displayed. The value may be set using this function, but is more likely
1128 to be defined in wsini.ini.
1130 @param aMode The screen mode enforcement requirements.
1131 @capability WriteDeviceData */
1133 WriteInt(aMode,EWsSdOpSetScreenModeEnforcement);
1136 EXPORT_C TInt CWsScreenDevice::GetScreenNumber() const
1137 /** Get device's screen number
1139 @return The device's screen number
1140 @see CWsScreenDevice::Construct( TInt aDefaultScreenNumber ) */
1142 return WriteReply(EWsSdOpGetScreenNumber);
1145 /** Gets the available screen size modes.
1147 This function retrieves all available screen size modes which are supported by
1150 @param aModeList On return, the list of available screen size modes.
1151 @return The number of supported screen size modes if successful otherwise returns KErrNoMemory if
1152 there is insufficient memory to create the array. */
1153 EXPORT_C TInt CWsScreenDevice::GetScreenSizeModeList(RArray<TInt>* aModeList) const
1155 __ASSERT_ALWAYS(aModeList, Panic(EW32PanicNullArray));
1157 TInt count=WriteReply(EWsSdOpGetNumScreenModes);
1158 TInt totSize=count*sizeof(TInt);
1159 TInt* allocMem=static_cast<TInt*>(User::Alloc(totSize));
1162 return KErrNoMemory;
1164 TPtr8 listPtr(reinterpret_cast<TUint8*>(allocMem), totSize);
1165 count=WriteReplyP(&listPtr, EWsSdOpGetScreenSizeModeList);
1166 new(aModeList) RArray<TInt>(allocMem, count);
1170 EXPORT_C TInt CWsScreenDevice::SetBackLight(TBool aBackLight)
1171 /** Set the back light state.
1173 If the back light is disabled, or the client process SID does not match the EikSrv
1174 one (0x10003a4a), KErrPermissionDenied is returned. If the system is in a low power
1175 state, KErrBadPower may be returned.
1177 @param aBackLight, ETrue Set the backlight on, EFlase set the backlight off.
1178 @return KErrNone if successful, otherwise a system-wide error code. */
1180 return(WriteReplyInt(aBackLight,EWsClOpSetBackLight));