DIB Engine:dont use now missing winex11.drv BitBlt and PatBlt funcs
[wine/hacks.git] / include / usp10.h
blob315f2d7b1d116fabca7f4e154c727ae8024bfe3d
1 /*
2 * Copyright (C) 2005 Steven Edwards
3 * Copyright (C) 2005 Vijay Kiran Kamuju
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #ifndef __USP10_H
21 #define __USP10_H
23 #ifndef __WINESRC__
24 # include <windows.h>
25 #endif
26 /* FIXME: #include <specstrings.h> */
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
32 /** ScriptStringAnalyse */
33 #define SSA_PASSWORD 0x00000001
34 #define SSA_TAB 0x00000002
35 #define SSA_CLIP 0x00000004
36 #define SSA_FIT 0x00000008
37 #define SSA_DZWG 0x00000010
38 #define SSA_FALLBACK 0x00000020
39 #define SSA_BREAK 0x00000040
40 #define SSA_GLYPHS 0x00000080
41 #define SSA_RTL 0x00000100
42 #define SSA_GCP 0x00000200
43 #define SSA_HOTKEY 0x00000400
44 #define SSA_METAFILE 0x00000800
45 #define SSA_LINK 0x00001000
46 #define SSA_HIDEHOTKEY 0x00002000
47 #define SSA_HOTKEYONLY 0x00002400
48 #define SSA_FULLMEASURE 0x04000000
49 #define SSA_LPKANSIFALLBACK 0x08000000
50 #define SSA_PIDX 0x10000000
51 #define SSA_LAYOUTRTL 0x20000000
52 #define SSA_DONTGLYPH 0x40000000
53 #define SSA_NOKASHIDA 0x80000000
55 /** StringIsComplex */
56 #define SIC_COMPLEX 1
57 #define SIC_ASCIIDIGIT 2
58 #define SIC_NEUTRAL 4
60 /** ScriptGetCMap */
61 #define SGCM_RTL 0x00000001
63 /** ScriptApplyDigitSubstitution */
64 #define SCRIPT_DIGITSUBSTITUTE_CONTEXT 0
65 #define SCRIPT_DIGITSUBSTITUTE_NONE 1
66 #define SCRIPT_DIGITSUBSTITUTE_NATIONAL 2
67 #define SCRIPT_DIGITSUBSTITUTE_TRADITIONAL 3
69 #define SCRIPT_UNDEFINED 0
71 #define USP_E_SCRIPT_NOT_IN_FONT MAKE_HRESULT(SEVERITY_ERROR,FACILITY_ITF,0x200)
73 typedef enum tag_SCRIPT_JUSTIFY {
74 SCRIPT_JUSTIFY_NONE = 0,
75 SCRIPT_JUSTIFY_ARABIC_BLANK = 1,
76 SCRIPT_JUSTIFY_CHARACTER = 2,
77 SCRIPT_JUSTIFY_RESERVED1 = 3,
78 SCRIPT_JUSTIFY_BLANK = 4,
79 SCRIPT_JUSTIFY_RESERVED2 = 5,
80 SCRIPT_JUSTIFY_RESERVED3 = 6,
81 SCRIPT_JUSTIFY_ARABIC_NORMAL = 7,
82 SCRIPT_JUSTIFY_ARABIC_KASHIDA = 8,
83 SCRIPT_JUSTIFY_ARABIC_ALEF = 9,
84 SCRIPT_JUSTIFY_ARABIC_HA = 10,
85 SCRIPT_JUSTIFY_ARABIC_RA = 11,
86 SCRIPT_JUSTIFY_ARABIC_BA = 12,
87 SCRIPT_JUSTIFY_ARABIC_BARA = 13,
88 SCRIPT_JUSTIFY_ARABIC_SEEN = 14,
89 SCRIPT_JUSTIFY_RESERVED4 = 15,
90 } SCRIPT_JUSTIFY;
92 typedef struct tag_SCRIPT_CONTROL {
93 DWORD uDefaultLanguage :16;
94 DWORD fContextDigits :1;
95 DWORD fInvertPreBoundDir :1;
96 DWORD fInvertPostBoundDir :1;
97 DWORD fLinkStringBefore :1;
98 DWORD fLinkStringAfter :1;
99 DWORD fNeutralOverride :1;
100 DWORD fNumericOverride :1;
101 DWORD fLegacyBidiClass :1;
102 DWORD fMergeNeutralItems :1;
103 DWORD fReserved :7;
104 } SCRIPT_CONTROL;
106 typedef struct {
107 DWORD langid :16;
108 DWORD fNumeric :1;
109 DWORD fComplex :1;
110 DWORD fNeedsWordBreaking :1;
111 DWORD fNeedsCaretInfo :1;
112 DWORD bCharSet :8;
113 DWORD fControl :1;
114 DWORD fPrivateUseArea :1;
115 DWORD fNeedsCharacterJustify :1;
116 DWORD fInvalidGlyph :1;
117 DWORD fInvalidLogAttr :1;
118 DWORD fCDM :1;
119 DWORD fAmbiguousCharSet :1;
120 DWORD fClusterSizeVaries :1;
121 DWORD fRejectInvalid :1;
122 } SCRIPT_PROPERTIES;
124 typedef struct tag_SCRIPT_STATE {
125 WORD uBidiLevel :5;
126 WORD fOverrideDirection :1;
127 WORD fInhibitSymSwap :1;
128 WORD fCharShape :1;
129 WORD fDigitSubstitute :1;
130 WORD fInhibitLigate :1;
131 WORD fDisplayZWG :1;
132 WORD fArabicNumContext :1;
133 WORD fGcpClusters :1;
134 WORD fReserved :1;
135 WORD fEngineReserved :2;
136 } SCRIPT_STATE;
138 typedef struct tag_SCRIPT_ANALYSIS {
139 WORD eScript :10;
140 WORD fRTL :1;
141 WORD fLayoutRTL :1;
142 WORD fLinkBefore :1;
143 WORD fLinkAfter :1;
144 WORD fLogicalOrder :1;
145 WORD fNoGlyphIndex :1;
146 SCRIPT_STATE s;
147 } SCRIPT_ANALYSIS;
149 typedef struct tag_SCRIPT_ITEM {
150 int iCharPos;
151 SCRIPT_ANALYSIS a;
152 } SCRIPT_ITEM;
154 typedef struct tag_SCRIPT_DIGITSUBSTITUTE {
155 DWORD NationalDigitLanguage :16;
156 DWORD TraditionalDigitLanguage :16;
157 DWORD DigitSubstitute :8;
158 DWORD dwReserved;
159 } SCRIPT_DIGITSUBSTITUTE;
161 typedef struct tag_SCRIPT_FONTPROPERTIES {
162 int cBytes;
163 WORD wgBlank;
164 WORD wgDefault;
165 WORD wgInvalid;
166 WORD wgKashida;
167 int iKashidaWidth;
168 } SCRIPT_FONTPROPERTIES;
170 typedef struct tag_SCRIPT_TABDEF {
171 int cTabStops;
172 int iScale;
173 int *pTabStops;
174 int iTabOrigin;
175 } SCRIPT_TABDEF;
177 typedef struct tag_SCRIPT_VISATTR {
178 WORD uJustification :4;
179 WORD fClusterStart :1;
180 WORD fDiacritic :1;
181 WORD fZeroWidth :1;
182 WORD fReserved :1;
183 WORD fShapeReserved :8;
184 } SCRIPT_VISATTR;
186 typedef struct tag_SCRIPT_LOGATTR {
187 BYTE fSoftBreak :1;
188 BYTE fWhiteSpace :1;
189 BYTE fCharStop :1;
190 BYTE fWordStop :1;
191 BYTE fInvalid :1;
192 BYTE fReserved :3;
193 } SCRIPT_LOGATTR;
195 typedef void *SCRIPT_CACHE;
196 typedef void *SCRIPT_STRING_ANALYSIS;
198 #ifndef LSDEFS_DEFINED
199 typedef struct tagGOFFSET {
200 LONG du;
201 LONG dv;
202 } GOFFSET;
203 #endif
205 /* Function Declarations */
207 HRESULT WINAPI ScriptApplyDigitSubstitution(const SCRIPT_DIGITSUBSTITUTE* psds,
208 SCRIPT_CONTROL* psc, SCRIPT_STATE* pss);
209 HRESULT WINAPI ScriptApplyLogicalWidth(const int *piDx, int cChars, int cGlyphs, const WORD *pwLogClust,
210 const SCRIPT_VISATTR *psva, const int *piAdvance,
211 const SCRIPT_ANALYSIS *psa, ABC *pABC, int *piJustify);
212 HRESULT WINAPI ScriptRecordDigitSubstitution(LCID Locale, SCRIPT_DIGITSUBSTITUTE *psds);
213 HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItems,
214 const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState,
215 SCRIPT_ITEM *pItems, int *pcItems);
216 HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars, int cChars,
217 DWORD dwFlags, WORD *pwOutGlyphs);
218 HRESULT WINAPI ScriptGetFontProperties(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_FONTPROPERTIES *sfp);
219 HRESULT WINAPI ScriptGetGlyphABCWidth(HDC hdc, SCRIPT_CACHE *psc, WORD wGlyph, ABC *pABC);
220 HRESULT WINAPI ScriptGetLogicalWidths(const SCRIPT_ANALYSIS *psa, int cChars, int cGlyphs,
221 const int *piGlyphWidth, const WORD *pwLogClust,
222 const SCRIPT_VISATTR *psva, int *piDx);
223 HRESULT WINAPI ScriptGetProperties(const SCRIPT_PROPERTIES ***ppSp, int *piNumScripts);
224 HRESULT WINAPI ScriptStringAnalyse(HDC hdc,
225 const void *pString,
226 int cString,
227 int cGlyphs,
228 int iCharset,
229 DWORD dwFlags,
230 int iReqWidth,
231 SCRIPT_CONTROL *psControl,
232 SCRIPT_STATE *psState,
233 const int *piDx,
234 SCRIPT_TABDEF *pTabdef,
235 const BYTE *pbInClass,
236 SCRIPT_STRING_ANALYSIS *pssa);
237 HRESULT WINAPI ScriptStringValidate(SCRIPT_STRING_ANALYSIS ssa);
238 HRESULT WINAPI ScriptStringFree(SCRIPT_STRING_ANALYSIS *pssa);
239 HRESULT WINAPI ScriptFreeCache(SCRIPT_CACHE *psc);
240 HRESULT WINAPI ScriptIsComplex(const WCHAR* pwcInChars, int cInChars, DWORD dwFlags);
241 HRESULT WINAPI ScriptJustify(const SCRIPT_VISATTR *psva, const int *piAdvance, int cGlyphs,
242 int iDx, int iMinKashida, int *piJustify);
243 HRESULT WINAPI ScriptLayout(int cRuns, const BYTE *pbLevel, int *piVisualToLogical, int *piLogicalToVisual);
244 HRESULT WINAPI ScriptShape(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcChars, int cChars, int cMaxGlyphs,
245 SCRIPT_ANALYSIS *psa, WORD *pwOutGlyphs, WORD *pwLogClust, SCRIPT_VISATTR *psva, int *pcGlyphs);
246 HRESULT WINAPI ScriptPlace(HDC hdc, SCRIPT_CACHE *psc, const WORD *pwGlyphs, int cGlyphs, const SCRIPT_VISATTR *psva,
247 SCRIPT_ANALYSIS *psa, int *piAdvance, GOFFSET *pGoffset, ABC *pABC );
248 HRESULT WINAPI ScriptBreak(const WCHAR *pwcChars, int cChars, const SCRIPT_ANALYSIS *psa, SCRIPT_LOGATTR *psla);
249 HRESULT WINAPI ScriptCacheGetHeight(HDC hdc, SCRIPT_CACHE *psc, LONG *tmHeight);
250 HRESULT WINAPI ScriptCPtoX(int iCP, BOOL fTrailing, int cChars, int cGlyphs, const WORD *pwLogClust, const SCRIPT_VISATTR *psva,
251 const int *piAdvance, const SCRIPT_ANALYSIS *psa, int *piX);
252 HRESULT WINAPI ScriptXtoCP(int iX, int cChars, int cGlyphs, const WORD *pwLogClust, const SCRIPT_VISATTR *psva,
253 const int *piAdvance, const SCRIPT_ANALYSIS *psa, int *piCP, int *piTrailing);
254 HRESULT WINAPI ScriptStringCPtoX(SCRIPT_STRING_ANALYSIS ssa, int icp, BOOL fTrailing, int *pX);
255 HRESULT WINAPI ScriptStringXtoCP(SCRIPT_STRING_ANALYSIS ssa, int iX, int *piCh , int *piTrailing);
256 HRESULT WINAPI ScriptStringGetLogicalWidths(SCRIPT_STRING_ANALYSIS ssa, int *piDx);
257 HRESULT WINAPI ScriptStringGetOrder(SCRIPT_STRING_ANALYSIS ssa, UINT *puOrder);
258 HRESULT WINAPI ScriptStringOut(SCRIPT_STRING_ANALYSIS ssa, int iX, int iY, UINT uOptions, const RECT *prc,
259 int iMinSel, int iMaxSel, BOOL fDisabled);
260 HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UINT fuOptions, const RECT *lprc,
261 const SCRIPT_ANALYSIS *psa, const WCHAR *pwcReserved, int iReserved, const WORD *pwGlyphs,
262 int cGlyphs, const int *piAdvance, const int *piJustify, const GOFFSET *pGoffset);
263 const int* WINAPI ScriptString_pcOutChars(SCRIPT_STRING_ANALYSIS ssa);
264 const SCRIPT_LOGATTR* WINAPI ScriptString_pLogAttr(SCRIPT_STRING_ANALYSIS ssa);
265 const SIZE* WINAPI ScriptString_pSize(SCRIPT_STRING_ANALYSIS ssa);
267 #ifdef __cplusplus
268 } /* extern "C" */
269 #endif
271 #endif /* __USP10_H */