usp10: Add Tibetan Script.
[wine/multimedia.git] / dlls / usp10 / usp10_internal.h
blobbc3fd57a3724e18a5668b01a6d51de2183f8f5ca
1 /*
2 * Implementation of Uniscribe Script Processor (usp10.dll)
4 * Copyright 2010 CodeWeavers, Aric Stewart
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #define Script_Latin 1
23 #define Script_CR 2
24 #define Script_Numeric 3
25 #define Script_Control 4
26 #define Script_Punctuation 5
27 #define Script_Arabic 6
28 #define Script_Arabic_Numeric 7
29 #define Script_Hebrew 8
30 #define Script_Syriac 9
31 #define Script_Persian 10
32 #define Script_Thaana 11
33 #define Script_Greek 12
34 #define Script_Cyrillic 13
35 #define Script_Armenian 14
36 #define Script_Georgian 15
37 /* Unicode Chapter 10 */
38 #define Script_Sinhala 16
39 #define Script_Tibetan 17
40 #define Script_Tibetan_Numeric 18
42 #define GLYPH_BLOCK_SHIFT 8
43 #define GLYPH_BLOCK_SIZE (1UL << GLYPH_BLOCK_SHIFT)
44 #define GLYPH_BLOCK_MASK (GLYPH_BLOCK_SIZE - 1)
45 #define GLYPH_MAX 65536
47 typedef struct {
48 char tag[4];
49 LPCVOID feature;
50 } LoadedFeature;
52 typedef struct {
53 LOGFONTW lf;
54 TEXTMETRICW tm;
55 WORD *glyphs[GLYPH_MAX / GLYPH_BLOCK_SIZE];
56 ABC *widths[GLYPH_MAX / GLYPH_BLOCK_SIZE];
57 LPVOID GSUB_Table;
58 INT feature_count;
59 LoadedFeature *features;
60 } ScriptCache;
62 #define odd(x) ((x) & 1)
64 BOOL BIDI_DetermineLevels( LPCWSTR lpString, INT uCount, const SCRIPT_STATE *s,
65 const SCRIPT_CONTROL *c, WORD *lpOutLevels );
67 INT BIDI_ReorderV2lLevel(int level, int *pIndexs, const BYTE* plevel, int cch, BOOL fReverse);
68 INT BIDI_ReorderL2vLevel(int level, int *pIndexs, const BYTE* plevel, int cch, BOOL fReverse);
69 void SHAPE_ContextualShaping(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
70 void SHAPE_ApplyDefaultOpentypeFeatures(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, INT cChars, WORD *pwLogClust);