RaUI/Source/ryControls/HtmlRenderer/Adapters/RFont.cs

46 lines
1.4 KiB
C#
Raw Normal View History

// "Therefore those skilled at the unorthodox
// are infinite as heaven and earth,
// inexhaustible as the great rivers.
// When they come to an end,
// they begin again,
// like the days and months;
// they die and are reborn,
// like the four seasons."
//
// - Sun Tsu,
// "The Art of War"
namespace TheArtOfDev.HtmlRenderer.Adapters
{
/// <summary>
/// Adapter for platform specific font object - used to render text using specific font.
/// </summary>
public abstract class RFont
{
/// <summary>
/// Gets the em-size of this Font measured in the units specified by the Unit property.
/// </summary>
public abstract double Size { get; }
/// <summary>
/// The line spacing, in pixels, of this font.
/// </summary>
public abstract double Height { get; }
/// <summary>
/// Get the vertical offset of the font underline location from the top of the font.
/// </summary>
public abstract double UnderlineOffset { get; }
/// <summary>
/// Get the left padding, in pixels, of the font.
/// </summary>
public abstract double LeftPadding { get; }
/// <summary>
///
/// </summary>
/// <param name="graphics"></param>
/// <returns></returns>
public abstract double GetWhitespaceWidth(RGraphics graphics);
}
}