blob: 27e6edb8d00a3b90b9cee0d237307a78afe54e2f (
plain)
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
|
#ifndef _PYGTK_PRIVATE_H_
#define _PYGTK_PRIVATE_H_
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef _PYGTK_H_
#error "don't include pygtk.h and pygtk-private.h together"
#endif
#define _INSIDE_PYGTK_
#include "pygtk.h"
#undef WITH_THREAD
/* type objects */
extern PyTypeObject PyGdkAtom_Type;
/* check the type of a PyObject */
#define PyGdkAtom_Check(v) ((v)->ob_type == &PyGdkAtom_Type)
/* constructors for PyObject wrappers ... */
PyObject *PyGdkAtom_New(GdkAtom atom);
void pygtk_handler_marshal(gpointer a, PyObject *func, int nargs,GtkArg *args);
void pygtk_input_marshal(gpointer a, PyObject *func, int nargs, GtkArg *args);
/* private */
PyObject *pygtk_tree_path_to_pyobject(GtkTreePath *path);
GtkTreePath *pygtk_tree_path_from_pyobject(PyObject *object);
GdkAtom pygdk_atom_from_pyobject(PyObject *object);
typedef struct {
PyObject *func, *data;
} PyGtkCustomNotify;
void pygtk_custom_destroy_notify(gpointer user_data);
#endif
|