2007-11-11 00:29:25 +01:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-11-02 00:23:19 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Fonts
|
|
|
|
|
{
|
2007-11-06 14:30:25 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Defines the interface for a TextPrinter.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITextPrinter
|
2007-11-02 00:23:19 +01:00
|
|
|
|
{
|
2007-11-06 14:30:25 +01:00
|
|
|
|
void Prepare(string text, TextureFont font, out TextHandle handle);
|
|
|
|
|
void Prepare(string text, TextureFont font, out TextHandle handle, float width, bool wordWarp);
|
|
|
|
|
void Prepare(string text, TextureFont font, out TextHandle handle, float width, bool wordWarp, StringAlignment alignment);
|
|
|
|
|
void Prepare(string text, TextureFont font, out TextHandle handle, float width, bool wordWarp, StringAlignment alignment, bool rightToLeft);
|
|
|
|
|
void Draw(TextHandle handle);
|
2007-11-02 00:23:19 +01:00
|
|
|
|
}
|
|
|
|
|
}
|