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
|
/* -*- Mode: C; c-basic-offset: 4 -*-
* pygtk- Python bindings for the GTK toolkit.
* Copyright (C) 1998-2003 James Henstridge
*
* pangomodule.c: module wrapping the Pango library
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <Python.h>
#include <pygobject.h>
#include <pango/pango-font.h>
/* include any extra headers needed here */
void pypango_register_classes(PyObject *d);
void pypango_add_constants(PyObject *module, const gchar *strip_prefix);
extern PyMethodDef pypango_functions[];
static void
_log_func(const gchar *log_domain,
GLogLevelFlags log_level,
const gchar *message,
gpointer user_data)
{
PyGILState_STATE state;
PyObject* warning = user_data;
state = pyg_gil_state_ensure();
PyErr_Warn(warning, (char *) message);
pyg_gil_state_release(state);
}
DL_EXPORT(void)
initpango(void)
{
PyObject *m, *d;
PyObject *warning;
/* perform any initialisation required by the library here */
m = Py_InitModule("pango", pypango_functions);
d = PyModule_GetDict(m);
init_pygobject();
pypango_register_classes(d);
pypango_add_constants(m, "PANGO_");
PyModule_AddObject(m, "SCALE_XX_SMALL",
PyFloat_FromDouble(PANGO_SCALE_XX_SMALL));
PyModule_AddObject(m, "SCALE_X_SMALL",
PyFloat_FromDouble(PANGO_SCALE_X_SMALL));
PyModule_AddObject(m, "SCALE_SMALL",
PyFloat_FromDouble(PANGO_SCALE_SMALL));
PyModule_AddObject(m, "SCALE_MEDIUM",
PyFloat_FromDouble(PANGO_SCALE_MEDIUM));
PyModule_AddObject(m, "SCALE_LARGE",
PyFloat_FromDouble(PANGO_SCALE_LARGE));
PyModule_AddObject(m, "SCALE_X_LARGE",
PyFloat_FromDouble(PANGO_SCALE_X_LARGE));
PyModule_AddObject(m, "SCALE_XX_LARGE",
PyFloat_FromDouble(PANGO_SCALE_XX_LARGE));
PyModule_AddObject(m, "SCALE",
PyInt_FromLong(PANGO_SCALE));
/* add anything else to the module dictionary (such as constants) */
warning = PyErr_NewException("pango.PangoWarning", PyExc_Warning, NULL);
PyDict_SetItemString(d, "Warning", warning);
g_log_set_handler("Pango", G_LOG_LEVEL_CRITICAL|G_LOG_LEVEL_WARNING,
_log_func, warning);
}
|