22 lines
468 B
Plaintext
22 lines
468 B
Plaintext
%%
|
|
headers
|
|
#include <Python.h>
|
|
#define NO_IMPORT_PYGOBJECT
|
|
#include "pygobject.h"
|
|
#include "mooapp/mooapp.h"
|
|
#include "mooapp/mooapp-python.h"
|
|
|
|
void moo_app_add_constants (PyObject *module, const gchar *strip_prefix);
|
|
void moo_app_register_classes (PyObject *d);
|
|
%%
|
|
modulename moo
|
|
%%
|
|
import gtk.Window as PyGtkWindow_Type
|
|
import gtk.Widget as PyGtkWidget_Type
|
|
import gobject.GObject as PyGObject_Type
|
|
import moo.UIXML as PyMooUIXML_Type
|
|
%%
|
|
ignore-glob
|
|
*_get_type
|
|
%%
|