2005-06-22 11:20:32 -07:00
|
|
|
%%
|
|
|
|
headers
|
|
|
|
#include <Python.h>
|
|
|
|
#define NO_IMPORT_PYGOBJECT
|
|
|
|
#include "pygobject.h"
|
2005-11-05 07:32:04 -08:00
|
|
|
#include "mooedit/mooeditor.h"
|
|
|
|
#include "mooedit/mooeditsearch.h"
|
|
|
|
#include "mooedit/mootextbuffer.h"
|
|
|
|
#include "mooedit/moocmdview.h"
|
2005-07-30 23:20:59 -07:00
|
|
|
|
|
|
|
void moo_edit_add_constants (PyObject *module, const gchar *strip_prefix);
|
|
|
|
void moo_edit_register_classes (PyObject *d);
|
2005-06-22 11:20:32 -07:00
|
|
|
%%
|
|
|
|
modulename moo
|
|
|
|
%%
|
|
|
|
import gtk.Widget as PyGtkWidget_Type
|
|
|
|
import gtk.TextView as PyGtkTextView_Type
|
|
|
|
import gtk.TextBuffer as PyGtkTextBuffer_Type
|
|
|
|
import gtk.TextTagTable as PyGtkTextTagTable_Type
|
2005-10-13 07:08:18 -07:00
|
|
|
import gtk.TextTag as PyGtkTextTag_Type
|
2005-06-22 11:20:32 -07:00
|
|
|
import gtk.gdk.Pixbuf as PyGdkPixbuf_Type
|
|
|
|
import gobject.GObject as PyGObject_Type
|
|
|
|
import moo.Window as PyMooWindow_Type
|
|
|
|
import moo.UIXML as PyMooUIXML_Type
|
|
|
|
%%
|
|
|
|
ignore-glob
|
|
|
|
*_get_type
|
|
|
|
%%
|