Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/python/hulahop.override
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-05-21 12:41:16 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-05-21 12:41:16 (GMT)
commite4a8e189e7cf25236ffebc72ac8d7bed6893b70d (patch)
treee2bef921f0fb1161e1cc89b6df6312a6c1ae3c5f /python/hulahop.override
parentd8d3d5a63b7934f0740cdebb5f3b1d8fc99ed16b (diff)
Split the python bindings to their own directory
Diffstat (limited to 'python/hulahop.override')
-rw-r--r--python/hulahop.override31
1 files changed, 31 insertions, 0 deletions
diff --git a/python/hulahop.override b/python/hulahop.override
new file mode 100644
index 0000000..d846c64
--- /dev/null
+++ b/python/hulahop.override
@@ -0,0 +1,31 @@
+/* -*- Mode: C; c-basic-offset: 4 -*- */
+%%
+headers
+#include <Python.h>
+#include <pygtk/pygtk.h>
+
+#include "hulahop-web-view.h"
+
+%%
+modulename _hulahop
+%%
+import gtk.Bin as PyGtkBin_Type
+%%
+ignore-glob
+ *_get_type
+ _*
+%%
+override hulahop_web_view_get_browser noargs
+static PyObject *
+_wrap_hulahop_web_view_get_browser(PyGObject *self)
+{
+ return hulahop_web_view_get_browser(HULAHOP_WEB_VIEW(self->obj));
+}
+%%
+override hulahop_web_view_get_window_root noargs
+static PyObject *
+_wrap_hulahop_web_view_get_window_root(PyGObject *self)
+{
+ return hulahop_web_view_get_window_root(HULAHOP_WEB_VIEW(self->obj));
+}
+%%