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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/* Pango
* pangowin32-private.h:
*
* Copyright (C) 1999 Red Hat Software
* Copyright (C) 2000 Tor Lillqvist
* Copyright (C) 2001 Alexander Larsson
*
* 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 __PANGOWIN32_PRIVATE_H__
#define __PANGOWIN32_PRIVATE_H__
#define DEBUGGING 0
#if defined(DEBUGGING) && DEBUGGING
#ifdef __GNUC__
#define PING(printlist) \
(g_print ("%s:%d ", __PRETTY_FUNCTION__, __LINE__), \
g_print printlist, \
g_print ("\n"))
#else
#define PING(printlist) \
(g_print ("%s:%d ", __FILE__, __LINE__), \
g_print printlist, \
g_print ("\n"))
#endif
#else /* !DEBUGGING */
#define PING(printlist)
#endif
#include "pango-modules.h"
#include "pangowin32.h"
#ifndef FS_VIETNAMESE
#define FS_VIETNAMESE 0x100
#endif
typedef struct _PangoWin32Font PangoWin32Font;
typedef struct _PangoWin32FontEntry PangoWin32FontEntry;
typedef struct _PangoWin32GlyphInfo PangoWin32GlyphInfo;
struct _PangoWin32Font
{
PangoFont font;
LOGFONT logfont;
int size;
PangoFontMap *fontmap;
/* Written by pango_win32_get_hfont: */
HFONT hfont;
gint tm_ascent;
gint tm_descent;
gint tm_overhang;
PangoWin32FontEntry *entry;
/* If TRUE, font is in cache of recently unused fonts and not otherwise
* in use.
*/
gboolean in_cache;
GHashTable *glyph_info;
};
struct _PangoWin32FontEntry
{
LOGFONT logfont;
PangoFontDescription description;
PangoCoverage *coverage;
gpointer unicode_table;
GSList *cached_fonts;
};
struct _PangoWin32GlyphInfo
{
PangoRectangle logical_rect;
PangoRectangle ink_rect;
};
PangoWin32Font *pango_win32_font_new (PangoFontMap *fontmap,
const LOGFONT *lfp,
int size);
PangoMap * pango_win32_get_shaper_map (PangoLanguage *lang);
void pango_win32_make_matching_logfont (PangoFontMap *fontmap,
const LOGFONT *lfp,
int size,
LOGFONT *out);
PangoCoverage * pango_win32_font_entry_get_coverage (PangoWin32FontEntry *entry);
void pango_win32_font_entry_set_coverage (PangoWin32FontEntry *entry,
PangoCoverage *coverage);
void pango_win32_font_entry_remove (PangoWin32FontEntry *entry,
PangoFont *font);
void pango_win32_fontmap_cache_add (PangoFontMap *fontmap,
PangoWin32Font *xfont);
void pango_win32_fontmap_cache_remove (PangoFontMap *fontmap,
PangoWin32Font *xfont);
extern HDC pango_win32_hdc;
#endif /* __PANGOWIN32_PRIVATE_H__ */
|