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;
|
2008-11-25 17:16:57 +00:00
|
|
|
|
using OpenTK.Graphics.Text;
|
2007-11-01 23:23:19 +00:00
|
|
|
|
|
2008-03-08 14:38:10 +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
|
|
|
|
{
|
2007-11-12 07:36:34 +00:00
|
|
|
|
void Begin();
|
|
|
|
|
void End();
|
2008-11-26 21:49:05 +00:00
|
|
|
|
void Print(string text, Font font, Color color);
|
|
|
|
|
void Print(string text, Font font, Color color, RectangleF layoutRectangle);
|
|
|
|
|
void Print(string text, Font font, Color color, RectangleF layoutRectangle, TextPrinterOptions options);
|
2008-11-25 17:16:57 +00:00
|
|
|
|
TextExtents Measure(string text, Font font);
|
2008-11-26 21:49:05 +00:00
|
|
|
|
TextExtents Measure(string text, Font font, RectangleF layoutRectangle);
|
|
|
|
|
TextExtents Measure(string text, Font font, RectangleF layoutRectangle, TextPrinterOptions options);
|
2008-11-25 18:17:30 +00:00
|
|
|
|
|
|
|
|
|
[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
|
|
|
|
}
|
|
|
|
|
}
|