class MGraphicsDeviceMap |
Interface class for mapping between twips and device-specific units (pixels).
TZoomFactor is derived from MGraphicsDeviceMap.
Public Member Functions | |
---|---|
MGraphicsDeviceMap() | |
~MGraphicsDeviceMap() | |
TInt | GetNearestFontInTwips(CFont *&, const TFontSpec &) |
TInt | GetNearestFontToDesignHeightInTwips(CFont *&, const TFontSpec &) |
TInt | GetNearestFontToMaxHeightInTwips(CFont *&, const TFontSpec &, TInt) |
TInt | HorizontalPixelsToTwips(TInt) |
TInt | HorizontalTwipsToPixels(TInt) |
IMPORT_C TPoint | PixelsToTwips(const TPoint &) |
IMPORT_C TRect | PixelsToTwips(const TRect &) |
void | ReleaseFont(CFont *) |
IMPORT_C TPoint | TwipsToPixels(const TPoint &) |
IMPORT_C TRect | TwipsToPixels(const TRect &) |
TInt | VerticalPixelsToTwips(TInt) |
TInt | VerticalTwipsToPixels(TInt) |
TInt | GetNearestFontInTwips | ( | CFont *& | aFont, |
const TFontSpec & | aFontSpec | |||
) | [pure virtual] |
Gets the font which is the nearest to the given font specification.
When the font is no longer needed, call ReleaseFont().
Note that this deprecated function is replaced by the new GetNearestFontToDesignHeightInTwips() yielding (virtually) the same result. However clients are strongly encouraged to use the new GetNearestFontToMaxHeightInTwips() function instead. This will guarantee that every character within any given text string will fit within the given amount of twips, whereas the design height is an aesthetic unit decided by the font designer without strict physical meaning, which may result in cropped characters.
KErrNone if successful; a system-wide error code otherwise.
Use GetNearestFontToDesignHeightInTwips
TInt | GetNearestFontToDesignHeightInTwips | ( | CFont *& | , |
const TFontSpec & | ||||
) | [inline, virtual] |
Gets the font which is the nearest to the given font specification.
When the font is no longer needed, call ReleaseFont().
This new function replaces the deprecated GetNearestFontInTwips() yielding (virtually) the same result. However clients are strongly encouraged to use the new GetNearestFontToMaxHeightInTwips() function instead. This will guarantee that every character within any given text string will fit within the given amount of twips, whereas the design height is an aesthetic unit decided by the font designer without strict physical meaning, which may result in cropped characters.
KErrNone if successful; a system-wide error code otherwise.
TInt | GetNearestFontToMaxHeightInTwips | ( | CFont *& | , |
const TFontSpec & | , | |||
TInt | ||||
) | [inline, virtual] |
Gets the font which is the nearest to the given font specification.
When the font is no longer needed, call ReleaseFont().
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.
KErrNone if successful; a system-wide error code otherwise.
TInt | HorizontalPixelsToTwips | ( | TInt | aPixels | ) | const [pure virtual] |
Converts a horizontal dimension from pixels to twips.
An implementation is supplied by a derived class.
A horizontal dimension of a device in twips.
TInt aPixels | A horizontal dimension of a device in pixels. |
TInt | HorizontalTwipsToPixels | ( | TInt | aTwips | ) | const [pure virtual] |
Converts a horizontal dimension from twips to pixels.
An implementation is supplied by a derived class.
A horizontal dimension of a device in pixels.
TInt aTwips | A horizontal dimension of a device in twips. |
IMPORT_C TPoint | PixelsToTwips | ( | const TPoint & | aPixelPoint | ) | const |
const TPoint & aPixelPoint |
IMPORT_C TRect | PixelsToTwips | ( | const TRect & | aPixelRect | ) | const |
const TRect & aPixelRect |
void | ReleaseFont | ( | CFont * | aFont | ) | [pure virtual] |
Releases the specified font.
It is used to indicate that the specified font is no longer needed for use by the device map. 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 particular device map.
An implementation is supplied by a derived class.
CFont * aFont | A pointer to the font to be released. |
IMPORT_C TPoint | TwipsToPixels | ( | const TPoint & | aTwipPoint | ) | const |
const TPoint & aTwipPoint |
IMPORT_C TRect | TwipsToPixels | ( | const TRect & | aTwipRect | ) | const |
const TRect & aTwipRect |