| 1 |
< |
/* Copyright (c) 1992 Regents of the University of California */ |
| 2 |
< |
|
| 3 |
< |
/* SCCSid "$SunId$ LBL" */ |
| 4 |
< |
|
| 1 |
> |
/* RCSid $Id$ */ |
| 2 |
|
/* |
| 3 |
|
* Header file for font handling routines |
| 4 |
|
*/ |
| 5 |
+ |
#ifndef _RAD_FONT_H_ |
| 6 |
+ |
#define _RAD_FONT_H_ |
| 7 |
|
|
| 8 |
+ |
#ifdef __cplusplus |
| 9 |
+ |
extern "C" { |
| 10 |
+ |
#endif |
| 11 |
+ |
|
| 12 |
|
typedef unsigned char GORD; |
| 13 |
|
|
| 14 |
|
typedef struct { |
| 15 |
|
short nverts; /* number of vertices */ |
| 16 |
< |
GORD start, width; /* glyph size for prop. spacing */ |
| 16 |
> |
GORD left, right, top, bottom; /* glyph extent */ |
| 17 |
|
/* followed by vertex list */ |
| 18 |
|
} GLYPH; |
| 19 |
|
|
| 20 |
|
#define gvlist(g) ((GORD *)((g)+1)) |
| 21 |
|
|
| 22 |
|
typedef struct font { |
| 23 |
+ |
int nref; /* number of references */ |
| 24 |
|
GLYPH *fg[256]; /* font glyphs */ |
| 25 |
< |
char *name; /* font file name */ |
| 25 |
> |
short mwidth, mheight; /* mean glyph width and height */ |
| 26 |
> |
char name[64]; /* font file name */ |
| 27 |
|
struct font *next; /* next font in list */ |
| 28 |
|
} FONT; |
| 29 |
|
|
| 30 |
< |
extern FONT *getfont(); |
| 30 |
> |
extern int retainfonts; /* retain loaded fonts? */ |
| 31 |
> |
|
| 32 |
> |
|
| 33 |
> |
extern FONT *getfont(char *fname); |
| 34 |
> |
extern void freefont(FONT *f); |
| 35 |
> |
extern int uniftext(short *sp, char *tp, FONT *f); |
| 36 |
> |
extern int squeeztext(short *sp, char *tp, FONT *f, int cis); |
| 37 |
> |
extern int proptext(short *sp, char *tp, FONT *f, int cis, int nsi); |
| 38 |
> |
|
| 39 |
> |
|
| 40 |
> |
#ifdef __cplusplus |
| 41 |
> |
} |
| 42 |
> |
#endif |
| 43 |
> |
#endif /* _RAD_FONT_H_ */ |
| 44 |
> |
|