xfont.h@0:601fd83c75e0, 2010-12-29 (annotated)
- Committer:
- Midimetric
- Date:
- Wed Dec 29 09:53:24 2010 +0000
- Revision:
- 0:601fd83c75e0
- Child:
- 2:d6e572640dcc
Alpha version with (poke, wipe, inv, linev, lineh, frame, rect, xchar, xfont)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Midimetric | 0:601fd83c75e0 | 1 | #ifndef FONT_H |
Midimetric | 0:601fd83c75e0 | 2 | #define FONT_H |
Midimetric | 0:601fd83c75e0 | 3 | |
Midimetric | 0:601fd83c75e0 | 4 | typedef struct { |
Midimetric | 0:601fd83c75e0 | 5 | unsigned int cod; // unicode value |
Midimetric | 0:601fd83c75e0 | 6 | int wid; // data width in pixels |
Midimetric | 0:601fd83c75e0 | 7 | int hei; // data height in pixels (multiple of 8) |
Midimetric | 0:601fd83c75e0 | 8 | int tlc; // form allows left top crening |
Midimetric | 0:601fd83c75e0 | 9 | int trc; // form allows right top crening |
Midimetric | 0:601fd83c75e0 | 10 | int blc; // form allows left bottom crening |
Midimetric | 0:601fd83c75e0 | 11 | int brc; // form allows right bottom crening |
Midimetric | 0:601fd83c75e0 | 12 | const char* bmp; |
Midimetric | 0:601fd83c75e0 | 13 | } XGlyph; |
Midimetric | 0:601fd83c75e0 | 14 | |
Midimetric | 0:601fd83c75e0 | 15 | #endif |