functions: revert the function init order to make pylint happy again. See #217
[pygobject.git] / gi / pygi-type.h
blob94ddc850f8521ac56003fe00b096acf6786b4465
1 /* -*- Mode: C; c-basic-offset: 4 -*-
2 * pygtk- Python bindings for the GTK toolkit.
3 * Copyright (C) 1998-2003 James Henstridge
4 * 2004-2008 Johan Dahlin
5 * pyginterface.c: wrapper for the gobject library.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #ifndef __PYGI_TYPE_H__
22 #define __PYGI_TYPE_H__
24 #include <Python.h>
25 #include <glib-object.h>
26 #include <girepository.h>
27 #include "pygobject-internal.h"
29 #define PYGOBJECT_REGISTER_GTYPE(d, type, name, gtype) \
30 { \
31 PyObject *o; \
32 PYGLIB_REGISTER_TYPE(d, type, name); \
33 PyDict_SetItemString(type.tp_dict, "__gtype__", \
34 o=pyg_type_wrapper_new(gtype)); \
35 Py_DECREF(o); \
38 extern PyTypeObject PyGTypeWrapper_Type;
40 typedef PyObject *(* fromvaluefunc)(const GValue *value);
41 typedef int (*tovaluefunc)(GValue *value, PyObject *obj);
43 typedef struct {
44 fromvaluefunc fromvalue;
45 tovaluefunc tovalue;
46 } PyGTypeMarshal;
48 PyGTypeMarshal *pyg_type_lookup(GType type);
50 gboolean pyg_gtype_is_custom (GType gtype);
52 void pyg_register_gtype_custom(GType gtype,
53 fromvaluefunc from_func,
54 tovaluefunc to_func);
56 int pygi_type_register_types(PyObject *d);
58 PyObject *pyg_object_descr_doc_get(void);
59 PyObject *pyg_type_wrapper_new (GType type);
60 GType pyg_type_from_object_strict (PyObject *obj, gboolean strict);
61 GType pyg_type_from_object (PyObject *obj);
63 int pyg_pyobj_to_unichar_conv (PyObject* py_obj, void* ptr);
65 GClosure *pyg_closure_new(PyObject *callback, PyObject *extra_args, PyObject *swap_data);
66 GClosure *pyg_signal_class_closure_get(void);
67 void pyg_closure_set_exception_handler(GClosure *closure,
68 PyClosureExceptionHandler handler);
70 PyObject *pygi_type_import_by_g_type (GType g_type);
71 PyObject *pygi_type_import_by_name (const char *namespace_, const char *name);
72 PyObject *pygi_type_import_by_gi_info (GIBaseInfo *info);
73 PyObject *pygi_type_get_from_g_type (GType g_type);
75 #endif /* __PYGI_TYPE_H__ */