Opentk/Source/Utilities/Graphics/ITextPrinter.cs

39 lines
1.2 KiB
C#
Raw Normal View History

2007-11-10 23:29:25 +00:00
#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
2007-11-01 23:23:19 +00:00
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using OpenTK.Graphics.Text;
2007-11-01 23:23:19 +00:00
namespace OpenTK.Graphics
2007-11-01 23:23:19 +00:00
{
2007-11-06 13:30:25 +00:00
/// <summary>
/// Defines the interface for a TextPrinter.
/// </summary>
public interface ITextPrinter
2007-11-01 23:23:19 +00:00
{
void Begin();
void End();
void Print(string text, Font font, Color color);
void Print(string text, Font font, Color color, SizeF size);
void Print(string text, Font font, Color color, SizeF size, TextPrinterOptions options);
TextExtents Measure(string text, Font font);
TextExtents Measure(string text, Font font, SizeF size);
TextExtents Measure(string text, Font font, SizeF size, TextPrinterOptions options);
[Obsolete("Use TextPrinter.Print instead")]
void Draw(TextHandle handle);
[Obsolete("Use TextPrinter.Print instead")]
void Draw(string text, TextureFont font);
[Obsolete("Use TextPrinter.Print instead")]
void Prepare(string text, TextureFont font, out TextHandle handle);
2007-11-01 23:23:19 +00:00
}
}