Separate GetTextMetrics and implement it for SBCS/Unicode/cp932.
[wine.git] / include / x11font.h
blob0155a05bcb683c5c177780139165f606bc3cdf1e
1 /*
2 * X11 physical font definitions
4 * Copyright 1997 Alex Korobka
5 */
7 #ifndef __WINE_X11FONT_H
8 #define __WINE_X11FONT_H
10 #include "gdi.h"
11 #include "x11drv.h"
12 #include "pshpack1.h"
14 /* this is a part of the font resource header, should
15 * make it easier to implement dynamic softfont loading */
17 typedef struct
19 INT16 dfType;
20 INT16 dfPoints;
21 INT16 dfVertRes;
22 INT16 dfHorizRes;
23 INT16 dfAscent;
24 INT16 dfInternalLeading;
25 INT16 dfExternalLeading;
26 CHAR dfItalic;
27 CHAR dfUnderline;
28 CHAR dfStrikeOut;
29 INT16 dfWeight;
30 BYTE dfCharSet;
31 INT16 dfPixWidth;
32 INT16 dfPixHeight;
33 CHAR dfPitchAndFamily;
34 INT16 dfAvgWidth;
35 INT16 dfMaxWidth;
36 CHAR dfFirstChar;
37 CHAR dfLastChar;
38 CHAR dfDefaultChar;
39 CHAR dfBreakChar;
40 INT16 dfWidthBytes;
41 LPCSTR dfDevice;
42 LPCSTR dfFace;
43 } IFONTINFO16, *LPIFONTINFO16;
45 #include "poppack.h"
47 /* internal flags */
49 #define FI_POLYWEIGHT 0x0001
50 #define FI_POLYSLANT 0x0002
51 #define FI_OBLIQUE 0x0004
52 #define FI_SCALABLE 0x0008
53 #define FI_FW_BOOK 0x0010
54 #define FI_FW_DEMI 0x0020
55 #define FI_VARIABLEPITCH 0x0040
56 #define FI_FIXEDPITCH 0x0080
58 #define FI_FIXEDEX 0x1000
59 #define FI_NORMAL 0x2000
60 #define FI_SUBSET 0x4000
61 #define FI_TRUETYPE 0x8000
63 /* code pages */
65 #define FI_ENC_ANSI 0
66 #define FI_ENC_ISO8859 1
67 #define FI_ENC_ISO646 2
68 #define FI_ENC_MICROSOFT 3
69 #define FI_ENC_KOI8 4
70 #define FI_ENC_ASCII 5
71 #define FI_ENC_VISCII 6
72 #define FI_ENC_TCVN 7
73 #define FI_ENC_TIS620 8
75 enum X11DRV_CPTABLE
77 X11DRV_CPTABLE_SBCS,
78 X11DRV_CPTABLE_UNICODE,
79 X11DRV_CPTABLE_CP932,
80 X11DRV_CPTABLE_CP936,
81 X11DRV_CPTABLE_CP949,
82 X11DRV_CPTABLE_CP950,
83 X11DRV_CPTABLE_COUNT
86 typedef struct tagFontInfo
88 struct tagFontInfo* next;
89 UINT16 fi_flags;
90 UINT16 fi_encoding;
91 UINT16 codepage;
92 UINT16 cptable;
94 /* LFD parameters can be quite different from the actual metrics */
96 UINT16 lfd_height;
97 UINT16 lfd_resolution;
98 IFONTINFO16 df;
99 } fontInfo;
101 /* Font resource list for EnumFont() purposes */
103 #define FR_SOFTFONT 0x1000 /* - .FON or .FOT file */
104 #define FR_SOFTRESOURCE 0x2000 /* - resource handle */
105 #define FR_REMOVED 0x4000 /* delayed remove */
106 #define FR_NAMESET 0x8000
108 #define LFD_FIELDS 14
109 typedef struct
111 const char* foundry;
112 const char* family;
113 const char* weight;
114 const char* slant;
115 const char* set_width;
116 const char* add_style;
117 const char* pixel_size;
118 const char* point_size;
119 const char* resolution_x;
120 const char* resolution_y;
121 const char* spacing;
122 const char* average_width;
123 const char* charset_registry;
124 const char* charset_encoding;
125 } LFD;
127 typedef struct tagFontResource
129 struct tagFontResource* next;
130 UINT16 fr_flags;
131 UINT16 fr_penalty;
132 UINT16 fi_count;
133 UINT16 fo_count;
134 fontInfo* fi;
135 LFD* resource;
136 HANDLE hOwner; /* For FR_SOFTFONT/FR_SOFTRESOURCE fonts */
137 CHAR lfFaceName[LF_FACESIZE];
138 } fontResource;
140 typedef struct {
141 float a,b,c,d; /* pixelsize matrix, FIXME: switch to MAT2 format */
142 unsigned long RAW_ASCENT;
143 unsigned long RAW_DESCENT;
144 float pixelsize;
145 float ascent;
146 float descent;
147 } XFONTTRANS;
149 #define FO_RESOURCE_MASK 0x000F
150 #define FO_SYSTEM 0x0001 /* resident in cache */
151 #define FO_SOFTFONT 0x0002 /* installed at runtime */
152 #define FO_SHARED 0x0004 /* MITSHM */
153 #define FO_REMOVED 0x0008 /* remove when count falls to 0 */
155 #define FO_MATCH_MASK 0x00F0
156 #define FO_MATCH_NORASTER 0x0010
157 #define FO_MATCH_PAF 0x0020
158 #define FO_MATCH_XYINDEP 0x0040
160 #define FO_SYNTH_MASK 0xFF00
161 #define FO_SYNTH_HEIGHT 0x2000
162 #define FO_SYNTH_WIDTH 0x4000
163 #define FO_SYNTH_ROTATE 0x8000
164 #define FO_SYNTH_BOLD 0x0100
165 #define FO_SYNTH_ITALIC 0x0200
166 #define FO_SYNTH_UNDERLINE 0x0400
167 #define FO_SYNTH_STRIKEOUT 0x0800
169 /* Realized screen font */
171 #define X11FONT_REFOBJS_MAX 4
173 typedef struct
175 XFontStruct* fs; /* text metrics */
176 fontResource* fr; /* font family */
177 fontInfo* fi; /* font instance info */
178 Pixmap* lpPixmap; /* optional character bitmasks for synth fonts */
179 X_PHYSFONT prefobjs[X11FONT_REFOBJS_MAX]; /* font objects for DBCS charsets */
181 XFONTTRANS *lpX11Trans; /* Info for X11R6 transform */
182 float rescale; /* Rescale for large fonts */
183 INT16 foInternalLeading;
184 INT16 foAvgCharWidth;
185 INT16 foMaxCharWidth;
186 UINT16 fo_flags;
188 /* font cache housekeeping */
190 UINT16 count;
191 UINT16 lru;
192 UINT16 lfchecksum;
193 LOGFONT16 lf;
194 } fontObject;
196 typedef struct
198 fontResource* pfr;
199 fontInfo* pfi;
200 UINT16 height;
201 UINT16 flags;
202 LPLOGFONT16 plf;
203 } fontMatch;
205 typedef struct
207 LPLOGFONT16 lpLogFontParam;
208 FONTENUMPROC16 lpEnumFunc;
209 LPARAM lpData;
211 LPNEWTEXTMETRICEX16 lpTextMetric;
212 LPENUMLOGFONTEX16 lpLogFont;
213 SEGPTR segTextMetric;
214 SEGPTR segLogFont;
215 } fontEnum16;
217 typedef struct
219 LPLOGFONTW lpLogFontParam;
220 FONTENUMPROCEXW lpEnumFunc;
221 LPARAM lpData;
223 LPNEWTEXTMETRICEXW lpTextMetric;
224 LPENUMLOGFONTEXW lpLogFont;
225 DWORD dwFlags;
226 } fontEnum32;
228 extern fontObject* XFONT_GetFontObject( X_PHYSFONT pFont );
229 extern XFontStruct* XFONT_GetFontStruct( X_PHYSFONT pFont );
230 extern LPIFONTINFO16 XFONT_GetFontInfo( X_PHYSFONT pFont );
232 typedef struct tagX11DRV_CP
234 BYTE (*penum_subfont_charset)( UINT index );
235 XChar2b* (*punicode_to_char2b)( fontObject* pfo,
236 LPCWSTR lpwstr, UINT count );
237 void (*pDrawString)( fontObject* pfo, Display* pdisp, Drawable d, GC gc,
238 int x, int y, XChar2b* pstr, int count );
239 int (*pTextWidth)( fontObject* pfo, XChar2b* pstr, int count );
240 void (*pDrawText)( fontObject* pfo, Display* pdisp, Drawable d, GC gc,
241 int x, int y, XTextItem16* pitems, int count );
242 void (*pTextExtents)( fontObject* pfo, XChar2b* pstr, int count,
243 int* pdir, int* pascent, int* pdescent,
244 int* pwidth );
245 void (*pGetTextMetricsA)( fontObject* pfo, LPTEXTMETRICA pTM );
246 } X11DRV_CP;
248 extern const X11DRV_CP X11DRV_cptable[X11DRV_CPTABLE_COUNT];
250 #endif /* __WINE_X11FONT_H */