1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* Pango
* thai-shaper.h:
*
* Copyright (C) 1999 Red Hat Software
* Author: Owen Taylor <otaylor@redhat.com>
*
* Copyright (C) 2004 Theppitak Karoonboonyanan
* Copyright (C) 2002 Software and Language Engineering Laboratory, NECTEC
* Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
*
* Copyright (c) 1996-2000 by Sun Microsystems, Inc.
* Author: Chookij Vanatham <Chookij.Vanatham@Eng.Sun.COM>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef __THAI_SHAPER_H__
#define __THAI_SHAPER_H__
typedef struct _ThaiFontInfo ThaiFontInfo;
/* Font encodings we will use
*/
typedef enum {
THAI_FONT_NONE,
THAI_FONT_TIS,
THAI_FONT_TIS_MAC,
THAI_FONT_TIS_WIN
} ThaiFontSet;
typedef enum {
THAI_FONTINFO_X,
THAI_FONTINFO_XFT
} ThaiFontInfoType;
struct _ThaiFontInfo
{
PangoFont *font;
ThaiFontSet font_set;
};
/*
* Abstract methods (implemented by each shaper module)
*/
PangoGlyph
thai_get_glyph_tis (ThaiFontInfo *font_info, guchar c);
PangoGlyph
thai_make_glyph_tis (ThaiFontInfo *font_info, guchar c);
PangoGlyph
thai_get_glyph_uni (ThaiFontInfo *font_info, gunichar uc);
PangoGlyph
thai_make_glyph_uni (ThaiFontInfo *font_info, gunichar uc);
PangoGlyph
thai_make_unknown_glyph (ThaiFontInfo *font_info, gunichar uc);
void
thai_set_glyphs (ThaiFontInfo *font_info,
const char *text,
gint length,
PangoScript script,
PangoGlyphString *glyphs);
#endif /* __THAI_SHAPER_H__ */
|