Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/python/hulahop.override
blob: d846c64d3da61957d564d861db26e94affc4b166 (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
/* -*- 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));
}
%%