Unit RasterFontEditor

Classes

TRasterFontEditor -

Functions

Register -

Types

PItem
TBitMapFont
TCharItem
TItem
TTextArray

Constants

MAX_SIZE

Variables


Functions


procedure Register;


Types


PItem = ^TItem

TBitMapFont = record
FontFile : string[255];
FontHeight : integer;
FontWidth : integer;
CharSetWidth : integer;
CharSetHeight : integer;
LineSize : integer;
end;

TCharItem = record
Top : Single;
Left : Single;
Width : Single;
Height : Single;
Color : TColor;
Character : char;
end;

TItem = record
Row : integer;
Col : integer;
end;

TTextArray = array [1..MAX_SIZE, 1..MAX_SIZE] of TCharItem;

Constants

MAX_SIZE = 100

****************************************************************************** * RasterFontEditor component * * by * * Vaclav Kourda * * * * 1998 * * * * With this component you can easily manipulate position, width, height, colour* * of rasterfont characters in a text *

Variables