graphicsdeviceinterface/gdi/inc/GDI.INL
changeset 183 6a1564a2f3e6
parent 0 5d03bc08d59c
--- a/graphicsdeviceinterface/gdi/inc/GDI.INL	Thu Sep 02 21:50:40 2010 +0300
+++ b/graphicsdeviceinterface/gdi/inc/GDI.INL	Fri Sep 17 08:36:49 2010 +0300
@@ -573,83 +573,3 @@
 
 @return The graphics device map of the TZoomFactor. */
 	{return(iDevice);}
-
-
-
-/** Gets the ascent of an ANSI capital letter in the font whether or not
-there are any ANSI capitals in the font.
-@return The positive distance from the font baseline to the top of a
-standard ANSI capital letter
-@publishedAll
-@released
-*/
-inline TInt CFont::FontCapitalAscent() const
-	{
-	return ExtendedFunction(KFontCapitalAscent);
-	}
-
-/** Gets the max ascent of any pre-composed glyph in the font. This will
-include accents or diacritics that form part of pre-composed glyphs. It is
-not guaranteed to cover the max ascent of composite glyphs that have to be
-created by a layout engine. This is also the recommended distance between
-the top of a text box and the baseline of the first line of text. 
-@return The positive distance from the font baseline to the top of the
-highest pre-composed glyph (including accents) above the baseline
-@publishedAll
-@released
-*/
-inline TInt CFont::FontMaxAscent() const
-	{
-	return ExtendedFunction(KFontMaxAscent);
-	}
-
-/** Gets the descent of an ANSI descending character in the font.
-Whether or not there are any ANSI descenders in the font.
-@return The positive distance from the font baseline to the bottom of the
-lowest ANSI descender
-@publishedAll
-@released
-*/
-inline TInt CFont::FontStandardDescent() const
-	{
-	return ExtendedFunction(KFontStandardDescent);
-	}
-
-/** Gets the max descent of any pre-composed glyph in the font. This will
-include accents or diacritics that form part of pre-composed glyphs. It is
-not guaranteed to cover the max descent of composite glyphs that have to be
-created by a layout engine.
-@return The positive distance from the font baseline to the bottom of the
-lowest pre-composed glyph (including accents) below the baseline
-@publishedAll
-@released
-*/
-inline TInt CFont::FontMaxDescent() const
-	{
-	return ExtendedFunction(KFontMaxDescent);
-	}
-
-/** Gets the suggested line gap for the font. This is the recommended
-baseline to baseline distance between successive lines of text in the font.
-@return The positive recommended gap between successive lines
-@publishedAll
-@released
-*/
-inline TInt CFont::FontLineGap() const
-	{
-	return ExtendedFunction(KFontLineGap);
-	}
-
-/**
-Gets the (positive) maximum height in pixels of the font.
-This may differ from the design height.
-
-@return The maximum height of the font.
-@publishedAll
-@released
-*/
-inline TInt CFont::FontMaxHeight() const
-	{
-	return FontMaxAscent() + FontMaxDescent();
-	}
-