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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
/* Pango
* pangowin32.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_H__
#define __PANGOWIN32_H__
#include <glib.h>
#include <pango/pango-font.h>
#include <pango/pango-layout.h>
G_BEGIN_DECLS
#define STRICT
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0600 /* To get ClearType-related macros */
#endif
#include <windows.h>
#undef STRICT
/**
* PANGO_RENDER_TYPE_WIN32:
*
* A string constant identifying the Win32 renderer. The associated quark (see
* g_quark_from_string()) is used to identify the renderer in pango_find_map().
*/
#define PANGO_RENDER_TYPE_WIN32 "PangoRenderWin32"
/* Calls for applications
*/
#ifndef PANGO_DISABLE_DEPRECATED
PANGO_DEPRECATED_FOR(pango_font_map_create_context)
PangoContext * pango_win32_get_context (void);
#endif
PANGO_AVAILABLE_IN_ALL
void pango_win32_render (HDC hdc,
PangoFont *font,
PangoGlyphString *glyphs,
gint x,
gint y);
PANGO_AVAILABLE_IN_ALL
void pango_win32_render_layout_line (HDC hdc,
PangoLayoutLine *line,
int x,
int y);
PANGO_AVAILABLE_IN_ALL
void pango_win32_render_layout (HDC hdc,
PangoLayout *layout,
int x,
int y);
PANGO_AVAILABLE_IN_ALL
void pango_win32_render_transformed (HDC hdc,
const PangoMatrix *matrix,
PangoFont *font,
PangoGlyphString *glyphs,
int x,
int y);
#ifdef PANGO_ENABLE_ENGINE
/* For shape engines
*/
#ifndef PANGO_DISABLE_DEPRECATED
PANGO_DEPRECATED_FOR(PANGO_GET_UNKNOWN_GLYPH)
PangoGlyph pango_win32_get_unknown_glyph (PangoFont *font,
gunichar wc);
#endif /* PANGO_DISABLE_DEPRECATED */
PANGO_AVAILABLE_IN_ALL
gint pango_win32_font_get_glyph_index(PangoFont *font,
gunichar wc);
PANGO_AVAILABLE_IN_ALL
HDC pango_win32_get_dc (void);
PANGO_AVAILABLE_IN_1_2
gboolean pango_win32_get_debug_flag (void);
PANGO_AVAILABLE_IN_ALL
gboolean pango_win32_font_select_font (PangoFont *font,
HDC hdc);
PANGO_AVAILABLE_IN_ALL
void pango_win32_font_done_font (PangoFont *font);
PANGO_AVAILABLE_IN_ALL
double pango_win32_font_get_metrics_factor (PangoFont *font);
#endif
/* API for libraries that want to use PangoWin32 mixed with classic
* Win32 fonts.
*/
typedef struct _PangoWin32FontCache PangoWin32FontCache;
PANGO_AVAILABLE_IN_ALL
PangoWin32FontCache *pango_win32_font_cache_new (void);
PANGO_AVAILABLE_IN_ALL
void pango_win32_font_cache_free (PangoWin32FontCache *cache);
PANGO_AVAILABLE_IN_ALL
HFONT pango_win32_font_cache_load (PangoWin32FontCache *cache,
const LOGFONTA *logfont);
PANGO_AVAILABLE_IN_1_16
HFONT pango_win32_font_cache_loadw (PangoWin32FontCache *cache,
const LOGFONTW *logfont);
PANGO_AVAILABLE_IN_ALL
void pango_win32_font_cache_unload (PangoWin32FontCache *cache,
HFONT hfont);
PANGO_AVAILABLE_IN_ALL
PangoFontMap *pango_win32_font_map_for_display (void);
PANGO_AVAILABLE_IN_ALL
void pango_win32_shutdown_display (void);
PANGO_AVAILABLE_IN_ALL
PangoWin32FontCache *pango_win32_font_map_get_font_cache (PangoFontMap *font_map);
PANGO_AVAILABLE_IN_ALL
LOGFONTA *pango_win32_font_logfont (PangoFont *font);
PANGO_AVAILABLE_IN_1_16
LOGFONTW *pango_win32_font_logfontw (PangoFont *font);
PANGO_AVAILABLE_IN_1_12
PangoFontDescription *pango_win32_font_description_from_logfont (const LOGFONTA *lfp);
PANGO_AVAILABLE_IN_1_16
PangoFontDescription *pango_win32_font_description_from_logfontw (const LOGFONTW *lfp);
G_END_DECLS
#endif /* __PANGOWIN32_H__ */
|