Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/python/_sugarmodule.c
blob: bceb1651557219d64c13b24bd232397cf44a92bf (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
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "xulrunner.h"

/* include this first, before NO_IMPORT_PYGOBJECT is defined */
#include <pygobject.h>

#include <pycairo.h>
Pycairo_CAPI_t *Pycairo_CAPI;

void py_sugar_register_classes (PyObject *d);

extern PyMethodDef py_sugar_functions[];

DL_EXPORT(void)
init_sugar(void)
{
    PyObject *m, *d;

    xulrunner_startup();

    init_pygobject ();

    Pycairo_IMPORT;

    m = Py_InitModule ("_sugar", py_sugar_functions);
    d = PyModule_GetDict (m);

    py_sugar_register_classes (d);
    py_sugar_add_constants(m, "GTK_MOZ_EMBED_");

    if (PyErr_Occurred ()) {
        Py_FatalError ("can't initialise module _sugar");
    }
}