#include <w32std.h>
Link against: ws32.lib
class CWsScreenDevice : public CBitmapDevice, public MWsClientClass, public CBitmapDevice, public MWsClientClass |
Public Member Enumerations | |
---|---|
enum | TSpriteInCompare { ERemoveSprite, EIncludeSprite, EIncludeTextCursor } |
Inherited Attributes | |
---|---|
MWsClientClass::iBuffer | |
MWsClientClass::iWsHandle |
Software device screen.
An object of this class can be used to enquire or set parameters of the software screen, and determine the physical limits of the device.
CWsScreenDevice gives access to the list of screen modes. These are the combinations of screen rotation and screen size supported by the device. One of them is selected as the current screen mode. The possible screen modes are initialised in wsini.ini.
See also: CFbsScreenDevice
Whether or not to include sprites when comparing areas of the screen
Enumerator | Value | Description |
---|---|---|
ERemoveSprite | 0 |
This enum can be specified as the 3rd parameter to CWsScreenDevice::RectCompare(const TRect &aRect1, const TRect &aRect2,TUint aFlags). When called with the value ERemoveSprite if there are any sprites visible in the areas of the screen being compared then these will not be included in the comparison. The function CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2) will not include sprites in the comparison. |
EIncludeSprite | 1 |
This enum can be specified as the 3rd parameter to CWsScreenDevice::RectCompare(const TRect &aRect1, const TRect &aRect2,TUint aFlags). When called with the value EIncludeSprite if there are any sprites visible in the areas of the screen being compared then these will be included in the comparison. |
EIncludeTextCursor | 2 |
This enum can be specified as the 3rd parameter to CWsScreenDevice::RectCompare(const TRect &aRect1, const TRect &aRect2,TUint aFlags). When called with the value EIncludeTextCursor if there are any text cursors visible in the areas of the screen being compared then these will be included in the comparison. |
IMPORT_C | CWsScreenDevice | ( | ) |
Default constructor. Developers should use the other constructor overload.
IMPORT_C | CWsScreenDevice | ( | RWsSession & | aWs | ) |
Constructs a new screen device attached to a particular window server session.
Parameters | |
---|---|
aWs | The window server session this screen should be attached to. |
Reimplemented from CBitmapDevice::AddFile(const TDesC &,TInt &)
Adds a font file to the device's typeface store. The specified font file must be accessible to any process, i.e. not located inside an application's private directory.
See also: CBitmapDevice::AddFile()
Parameters | |
---|---|
aName | Name of the font file. |
aId | ID for the font file. |
IMPORT_C TInt | Construct | ( | ) |
Completes construction of the object.
This method invokes Construct(TInt aDefaultScreenNumber) with default Screen number.
Completes construction of the object.
Parameters | |
---|---|
aDefaultScreenNumber | - This is the screen on which an application will start |
Panic Codes | |
---|---|
TW32Panic | 17 in debug builds if called on an already constructed object. |
IMPORT_C TInt | CopyScreenToBitmap | ( | const CFbsBitmap * | aBitmap | ) | const |
Saves the entire screen to a bitmap.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aBitmap | Bitmap to be filled with the screen image. |
IMPORT_C TInt | CopyScreenToBitmap | ( | const CFbsBitmap * | aBitmap, |
const TRect & | aRect | |||
) | const |
Saves a region of the screen to a bitmap.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aBitmap | Bitmap to be filled with the screen region image. |
aRect | Screen region to be saved. |
IMPORT_C TInt | CreateContext | ( | CGraphicsContext *& | aGc | ) | [virtual] |
Reimplemented from CGraphicsDevice::CreateContext(CGraphicsContext *&)
Creates a graphics context for this device.
This function always causes a flush of the window server buffer.
See also: CGraphicsDevice::CreateContext()
Parameters | |
---|---|
aGc | On successful return, contains a new graphics context referring to this screen device. |
Creates a graphics context for this device.
This function always causes a flush of the window server buffer.
See also: CGraphicsDevice::CreateContext()
Parameters | |
---|---|
aGc | On successful return, contains a new graphics context referring to this screen device. |
IMPORT_C TInt | CurrentScreenMode | ( | ) | const |
Gets the current screen mode index.
This function always causes a flush of the window server buffer.
IMPORT_C TDisplayMode | DisplayMode | ( | ) | const [virtual] |
Reimplemented from CGraphicsDevice::DisplayMode()const
Gets the device's display mode.
This function always causes a flush of the window server buffer.
See also: CGraphicsDevice::DisplayMode()
Reimplemented from CBitmapDevice::FontHeightInPixels(TInt,TInt)const
Gets the height of the specified font in pixels.
The value returned is rounded up or down to the nearest font height in pixels.
The specified font is the one with height index number aHeightIndex of the typeface with index number aTypefaceIndex.
See also: CBitmapDevice::FontHeightInPixels()
Parameters | |
---|---|
aTypefaceIndex | A typeface index number, in the range: 0 to (NumTypefaces() - 1). |
aHeightIndex | A font height index number, in the range: 0 to (iNumHeights - 1). |
Reimplemented from CGraphicsDevice::FontHeightInTwips(TInt,TInt)const
Gets the height in twips of the specified font.
The value returned is rounded up or down to the nearest font height in twips.
The specified font is the one with height index number aHeightIndex of the typeface with index number aTypefaceIndex.
See also: CGraphicsDevice::FontHeightInTwips()
Parameters | |
---|---|
aTypefaceIndex | A typeface index number, in the range: 0 to (NumTypefaces() - 1). |
aHeightIndex | A font height index number, in the range: 0 to (iNumHeights - 1). |
IMPORT_C TSizeMode | GetCurrentScreenModeAttributes | ( | ) | const |
Used for testing purposes only.
IMPORT_C TSize | GetCurrentScreenModeScale | ( | ) | const |
Gets the scale for the current screen mode.
This function always causes a flush of the window server buffer.
IMPORT_C TPoint | GetCurrentScreenModeScaledOrigin | ( | ) | const |
Gets the current screen mode's scaled origin.
The formula used is (A+B-1)/B
where:
A is the screen mode origin in physical coordinates,
B is the screen mode scale width.
The result obtained is the scaled origin of the present screen mode.
IMPORT_C TPoint | GetDefaultScreenModeOrigin | ( | ) | const |
Gets the origin for the current screen mode
This function always causes a flush of the window server buffer.
IMPORT_C void | GetDefaultScreenSizeAndRotation | ( | TPixelsTwipsAndRotation & | aSizeAndRotation | ) | const |
Gets the current screen size (in both pixels and twips) and rotation.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aSizeAndRotation | The default screen size and rotation, defining screen size in both pixels and twips. |
IMPORT_C void | GetDefaultScreenSizeAndRotation | ( | TPixelsAndRotation & | aSizeAndRotation | ) | const |
Gets the current screen size (in pixels) and the rotation.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aSizeAndRotation | The default screen size in pixels and the rotation. |
Gets a font by its bitmap UID.
Within a font file each font has its own UID. An algorithmic style is not part of the actual font description, but is applied to it. For example algorithmic bolding applies an algorithm to increase the apparent weight of each character in the font. Note that the algorithm is applied blindly, and that a typeface may already have a style e.g. it may already be bold or italic. Thus a bold face will appear extra-bold if algorithmic bolding is applied to it. Algorithmic effects are not necessarily a substitute for typeface design and should be used with care.
Parameters | |
---|---|
aFont | On a successful return, contains a pointer to the new CFont. |
aUid | UID of the bitmap font. |
aAlgStyle | The algorithmic style to apply. |
Interface Extension capability Use of this interface going forward will allow the published client interface to be dynamically extended. Note that the pointer returned is only good for the lifetime of the called CBase derived object.
Parameters | |
---|---|
aInterfaceId | uniqueid or well known id of interface |
Reimplemented from CBitmapDevice::GetNearestFontInPixels(CFont *&,const TFontSpec &)
Gets the nearest font to that specified for use by a bitmapped graphics device.
This function is replaced by GetNearestFontToDesignHeightInPixels()
The font and bitmap server returns a pointer to the nearest matching font from those available, in aFont.
See also: CBitmapDevice::GetNearestFontInPixels()
Parameters | |
---|---|
aFont | On return, this is set to point to the device font that is closest to the font specification passed in the second argument |
aFontSpec | An absolute font specification |
Reimplemented from MGraphicsDeviceMap::GetNearestFontInTwips(CFont *&,const TFontSpec &)
Gets the nearest font, in twips, to that in the specified font specification.
This function is replaced by GetNearestFontToDesignHeightInTwips()
The font and bitmap server returns a pointer to the nearest matching font from those available, in aFont.
Parameters | |
---|---|
aFont | On return, this is set to point to the device font closest to the font specification passed in the second argument. |
aFontSpec | An absolute font specification. |
IMPORT_C TInt | GetNearestFontToDesignHeightInPixels | ( | CFont *& | aFont, |
const TFontSpec & | aFontSpec | |||
) | [virtual] |
Gets the nearest font in pixels to that specified.
The font and bitmap server returns a pointer to the nearest matching font from those available. Matches to design height of font - this gives no guarantees on the actual physical size of the font.
This function replaces GetNearestFontInTwips
See also: CBitmapDevice::GetNearestFontToDesignHeightInPixels()
Parameters | |
---|---|
aFont | On return, the pointer is set to point to the device font which most closely approximates to the required font specification. |
aFontSpec | An absolute font specification. |
IMPORT_C TInt | GetNearestFontToDesignHeightInTwips | ( | CFont *& | aFont, |
const TFontSpec & | aFontSpec | |||
) | [virtual] |
Reimplemented from MGraphicsDeviceMap::GetNearestFontToDesignHeightInTwips(CFont *&,const TFontSpec &)
Gets the nearest font in twips to that specified.
The font and bitmap server returns a pointer to the nearest matching font from those available. Matches to design height of font - this gives no guarantees on the actual physical size of the font.
This function replaces GetNearestFontInTwips
See also: MGraphicsDeviceMap::GetNearestFontToDesignHeightInTwips()
Parameters | |
---|---|
aFont | On return, the pointer is set to point to the device font which most closely approximates to the required font specification. |
aFontSpec | An absolute font specification. |
IMPORT_C TInt | GetNearestFontToMaxHeightInPixels | ( | CFont *& | aFont, |
const TFontSpec & | aFontSpec, | |||
TInt | aMaxHeight | |||
) | [virtual] |
Reimplemented from CBitmapDevice::GetNearestFontToMaxHeightInPixels(CFont *&,const TFontSpec &,TInt)
Gets the nearest font in pixels to that specified.
The font and bitmap server returns a pointer to the nearest matching font from those available. Matches to max height of font - this does its best to return a font that will fit within the maximum height specified (but note that variations due to hinting algorithms may rarely result in this height being exceeded by up to one pixel). Problems can also be encountered with bitmap fonts where the typeface exists but doesn't have a font small enough.
See also: CBitmapDevice::GetNearestFontToMaxHeightInPixels()
Parameters | |
---|---|
aFont | On return, the pointer is set to point to the device font which most closely approximates to the required font specification. |
aFontSpec | An absolute font specification. |
aMaxHeight | The maximum height within which the font must fit - this overrides the height specified in the TFontSpec. If maximum height is greater than 1024 pixels, the function returns KErrTooBig. And returns KErrArgument if equals to 1 pixel. |
IMPORT_C TInt | GetNearestFontToMaxHeightInTwips | ( | CFont *& | aFont, |
const TFontSpec & | aFontSpec, | |||
TInt | aMaxHeight | |||
) | [virtual] |
Reimplemented from MGraphicsDeviceMap::GetNearestFontToMaxHeightInTwips(CFont *&,const TFontSpec &,TInt)
Gets the nearest font, in twips, to that specified.
The font and bitmap server returns a pointer to the nearest matching font from those available. Matches to max height of font - this does its best to return a font that will fit within the maximum height specified (but note that variations due to hinting algorithms may rarely result in this height being exceeded by up to one pixel). Problems can also be encountered with bitmap fonts where the typeface exists but doesn't have a font small enough.
See also: MGraphicsDeviceMap::GetNearestFontToMaxHeightInTwips()
Parameters | |
---|---|
aFont | On return, the pointer is set to point to the device font which most closely approximates to the required font specification. |
aFontSpec | An absolute font specification. |
aMaxHeight | The maximum height within which the font must fit - this overrides the height specified in the TFontSpec. If maximum height is greater than 1024 pixels, the function returns KErrTooBig. And returns KErrArgument if equals to 1 pixel. |
Reimplemented from CGraphicsDevice::GetPalette(CPalette *&)const
Gets the screen device's palette.
This function always causes a flush of the window server buffer.
See also: CFbsScreenDevice::GetPalette()
Parameters | |
---|---|
aPalette | On return, contains the screen device's palette. The caller takes responsibility for discarding the palette. |
Reimplemented from CBitmapDevice::GetPixel(TRgb &,const TPoint &)const
Gets the RGB colour of an individual pixel on a screen device.
This function always causes a flush of the window server buffer.
See also: CBitmapDevice::GetPixel()
Parameters | |
---|---|
aColor | On return, contains the RGB colour of the pixel. |
aPixel | The x,y co-ordinates of the pixel. The top left pixel is (0,0). |
IMPORT_C TInt | GetRotationsList | ( | TInt | aMode, |
CArrayFixFlat< TInt > * | aRotationList | |||
) | const |
Gets the list of valid rotations for a particular screen size.
The list is initialised in wsini.ini.
This function always causes a flush of the window server buffer.
See also: SetCurrentRotations()
Parameters | |
---|---|
aMode | The index of the screen mode for which the rotation list is required. |
aRotationList | The list of valid screen orientations. |
IMPORT_C void | GetScanLine | ( | TDes8 & | aScanLine, |
const TPoint & | aStartPixel, | |||
TInt | aPixelLength, | |||
TDisplayMode | aDispMode | |||
) | const [virtual] |
Reimplemented from CBitmapDevice::GetScanLine(TDes8 &,const TPoint &,TInt,TDisplayMode)const
Gets a scanline into a buffer.
The pixels are converted from the bitmapped graphics device display mode format to the format of the specified device display mode.
By specifying the start pixel and number of pixels either the whole or a portion of a bitmapped graphics device pixel row may be copied.
This function always causes a flush of the window server buffer.
See also: CBitmapDevice::GetScanLine()
Parameters | |
---|---|
aScanLine | A buffer into which pixels are copied, it must be sufficiently large to store all the scanline pixels. |
aStartPixel | The (x,y) co-ordinates of the first pixel of the bitmap scanline to be put into the buffer. |
aPixelLength | The number of pixels to put into the buffer. |
aDispMode | The display mode into which to convert the pixels. |
IMPORT_C TDisplayMode | GetScreenModeDisplayMode | ( | const TInt & | aMode | ) | const |
Gets the display mode of the screen for the specified screen mode
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aMode | The index of the screen mode for which the display mode is required |
Gets the specfied screen mode's scaled origin.
The functionality is same as CWsScreenDevice::GetCurrentScreenModeScaledOrigin().
It always causes a flush of the window server buffer.
Parameters | |
---|---|
aMode | The index of the screen mode for which the scaled origin is required. |
IMPORT_C void | GetScreenModeSizeAndRotation | ( | TInt | aMode, |
TPixelsTwipsAndRotation & | aSizeAndRotation | |||
) | const |
Get the screen rotation and size, in both pixels and twips, for the specified screen mode.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aMode | The index of the screen mode for which the screen size and rotation are required. |
aSizeAndRotation | The orientation of the specified screen mode, and its size in both pixels and twips. |
IMPORT_C void | GetScreenModeSizeAndRotation | ( | TInt | aMode, |
TPixelsAndRotation & | aSizeAndRotation | |||
) | const |
Get the screen rotation and size (in pixels) for the specified screen mode.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aMode | The index of the screen mode for which the screen size and rotation are required. |
aSizeAndRotation | The orientation of the specified screen mode, and its size in pixels. |
Gets the available screen size modes.
This function retrieves all available screen size modes which are supported by the server.
Parameters | |
---|---|
aModeList | On return, the list of available screen size modes. |
Reimplemented from MGraphicsDeviceMap::HorizontalPixelsToTwips(TInt)const
Translates a specified pixel value to a twips value.
Parameters | |
---|---|
aPixels | The value in pixels to be translated. |
Reimplemented from MGraphicsDeviceMap::HorizontalTwipsToPixels(TInt)const
Parameters | |
---|---|
aTwips | The value in twips. |
IMPORT_C TBool | IsCurrentModeDynamic | ( | ) | const |
Returns whether the given screen size mode is dynamic or not. Dynamic screen size modes may change their size in pixels and/or twips and other attributes at run time, so they must not be cached. Static size mode attributes will not change at run time, but may not make full use of the display. Invalid size modes shall return EFalse.
Parameters | |
---|---|
aSizeMode | The screen size mode to check. |
IMPORT_C TInt | NumScreenModes | ( | ) | const |
Gets the number of available screen modes.
Each mode has a different size, and one or more possible rotations/orientations.
This function always causes a flush of the window server buffer.
IMPORT_C TInt | NumTypefaces | ( | ) | const [virtual] |
Reimplemented from CGraphicsDevice::NumTypefaces()const
Gets the number of typefaces supported by the screen device.
See also: CGraphicsDevice::NumTypefaces()
Reimplemented from CGraphicsDevice::PaletteAttributes(TBool &,TInt &)const
Gets the attributes of the device's palette.
This function always causes a flush of the window server buffer.
See also: CFbsScreenDevice::PaletteAttributes()
Parameters | |
---|---|
aModifiable | On return, indicates whether or not the device's palette is modifiable (true) or fixed (false). |
aNumEntries | On return, holds the number of entries in the device's palette. |
IMPORT_C TRect | PointerRect | ( | ) | const |
Gets the active area for the pointing device.
This is a device-dependent parameter, and will typically depend on the screen size and other factors.
This function always causes a flush of the window server buffer.
Compares two areas of the screen to see if they have the same content.
If there are any sprites on the screen they are not included in the comparison.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aRect1 | A rectangle. |
aRect2 | Another rectangle. |
Compares two areas of the screen to see if they have the same content.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aRect1 | A rectangle. |
aRect2 | Another rectangle. |
aFlags | EIncludeSprite to include any visible sprites in the comparison, ERemoveSprite to remove the sprites, or EIncludeTextCursor to include any visible text cursors in the comparison. EIncludeSprite and EIncludeTextCursor can be combined (logically ORed) to include both visible sprites and visible text cursors in the comparison. These values are defined in the enum TSpriteInCompare in this class. |
IMPORT_C void | ReleaseFont | ( | CFont * | aFont | ) | [virtual] |
Reimplemented from MGraphicsDeviceMap::ReleaseFont(CFont *)
Releases a specified font.
This function is used to indicate that the specified font is no longer needed for use by the screen device. As fonts can be shared between applications, this function does not delete the copy of the font from RAM, unless the font was only being used by this device.
See also: MGraphicsDeviceMap::ReleaseFont()
Parameters | |
---|---|
aFont | A pointer to the font to be released. |
IMPORT_C void | RemoveFile | ( | TInt | aId = 0 | ) | [virtual] |
Reimplemented from CBitmapDevice::RemoveFile(TInt)
Parameters | |
---|---|
aId | The ID of the font file to be removed, default 0. |
IMPORT_C TScreenModeEnforcement | ScreenModeEnforcement | ( | ) | const |
Gets the current screen mode enforcement settings.
The global screen mode enforcement setting defines the requirements that a group window must meet to be displayed. The requirements may have been set in wsini.ini, or using SetScreenModeEnforcement().
This function always causes a flush of the window server buffer.
IMPORT_C void | SetAppScreenMode | ( | TInt | aMode | ) |
Sets the application's screen mode; this also sets all the attributes of the screen mode.
Note: although this API was added in Symbian OS v8.0, the functionality is only available from Symbian OS v8.1 onwards.
Parameters | |
---|---|
aMode | The index of the application's new screen mode. |
Set the back light state.
If the back light is disabled, or the client process SID does not match the EikSrv one (0x10003a4a), KErrPermissionDenied is returned. If the system is in a low power state, KErrBadPower may be returned.
IMPORT_C void | SetCurrentRotations | ( | TInt | aMode, |
CFbsBitGc::TGraphicsOrientation | aRotation | |||
) | const |
Sets the screen rotation that should be used with a particular screen size.
After calling this function, whenever you change into the screen size specified by aMode you will have the rotation aRotation. The setting remains in force until it is explicitly changed using this function.
Panics if the specified rotation is not allowed by the given screen mode.
See also: GetRotationsList()
Parameters | |
---|---|
aMode | The index of the screen mode the rotation applies to. |
aRotation | The new screen orientation. |
Capability | |
---|---|
WriteDeviceData |
IMPORT_C void | SetCurrentScreenModeAttributes | ( | const TSizeMode & | aModeAtt | ) |
Used for testing purposes only.
Parameters | |
---|---|
aModeAtt | Screen size mode to be set. |
Sets the custom palette.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aPalette | The custom palette. |
Panic Codes | |
---|---|
W32 | 6 aPalette is NULL. |
Capability | |
---|---|
WriteDeviceData |
IMPORT_C void | SetPalette | ( | CPalette * | aPalette | ) | [virtual] |
Reimplemented from CGraphicsDevice::SetPalette(CPalette *)
Sets the screen device's palette.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aPalette | The screen device's new palette. |
Panic Codes | |
---|---|
W32 | 6 aPalette is NULL. |
Capability | |
---|---|
WriteDeviceData |
IMPORT_C void | SetScreenMode | ( | TInt | aMode | ) |
Sets the current screen mode.
Note that this function is only useful for testing. This is because the screen mode normally reflects the state of real hardware, e.g. whether the cover is open or closed on a phone that supports screen flipping.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aMode | The screen mode index, starting from zero. |
Capability | |
---|---|
WriteDeviceData |
IMPORT_C void | SetScreenModeEnforcement | ( | TScreenModeEnforcement | aMode | ) | const |
Sets the screen mode enforcement requirements.
This global setting defines the requirements that a group window must meet to be displayed. The value may be set using this function, but is more likely to be defined in wsini.ini.
Parameters | |
---|---|
aMode | The screen mode enforcement requirements. |
Capability | |
---|---|
WriteDeviceData |
IMPORT_C void | SetScreenSizeAndRotation | ( | const TPixelsTwipsAndRotation & | aSizeAndRotation | ) |
Sets the current screen size in twips and pixels, and the rotation for the screen device.
Parameters | |
---|---|
aSizeAndRotation | The new rotation and the screen size in both pixels and twips. |
IMPORT_C void | SetScreenSizeAndRotation | ( | const TPixelsAndRotation & | aSizeAndRotation | ) |
Sets the current screen size in pixels, and the rotation for the screen device.
This function always causes a flush of the window server buffer.
Parameters | |
---|---|
aSizeAndRotation | The new rotation and the screen size in pixels. |
IMPORT_C TSize | SizeInPixels | ( | ) | const [virtual] |
Reimplemented from CGraphicsDevice::SizeInPixels()const
Gets the size of the screen device area in pixels.
This function always causes a flush of the window server buffer.
See also: CGraphicsDevice::SizeInPixels()
IMPORT_C TSize | SizeInTwips | ( | ) | const [virtual] |
Reimplemented from CGraphicsDevice::SizeInTwips()const
Gets the size of the screen device area in twips.
This function always causes a flush of the window server buffer.
See also: CGraphicsDevice::SizeInTwips()
IMPORT_C void | TypefaceSupport | ( | TTypefaceSupport & | aTypefaceSupport, |
TInt | aTypefaceIndex | |||
) | const [virtual] |
Reimplemented from CGraphicsDevice::TypefaceSupport(TTypefaceSupport &,TInt)const
Gets typeface information for a particular typeface index number.
This information is returned in aTypefaceSupport, and includes: the typeface name and typeface attributes (in a TTypeface object), the number of font heights, the maximum and minimum font heights and whether it is a scalable typeface.
See also: CGraphicsDevice::TypefaceSupport()
Parameters | |
---|---|
aTypefaceSupport | On return, if the function executed successfully, this contains the typeface information. |
aTypefaceIndex | A typeface index number, in the range zero to (NumTypefaces()1). |
Reimplemented from MGraphicsDeviceMap::VerticalPixelsToTwips(TInt)const
Translates a vertical dimension of a screen device in pixels into twips.
Parameters | |
---|---|
aPixels | A vertical dimension of a device in pixels. |
Reimplemented from MGraphicsDeviceMap::VerticalTwipsToPixels(TInt)const
Translates a vertical dimension of a screen device in twips into pixels.
Parameters | |
---|---|
aTwips | A vertical dimension of a device in twips. |