Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/hulahop.override
blob: 38ea00d793e6b1aae0081bd65b74cd8f5eec9f2a (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-browser.h"

%%
modulename _hulahop
%%
import gtk.Bin as PyGtkBin_Type
%%
ignore-glob
  *_get_type
  _*
%%
override hulahop_browser_get_browser noargs
static PyObject *
_wrap_hulahop_browser_get_browser(PyGObject *self)
{
    return hulahop_browser_get_browser(HULAHOP_BROWSER(self->obj));
}
%%
override hulahop_browser_get_window_root noargs
static PyObject *
_wrap_hulahop_browser_get_window_root(PyGObject *self)
{
    return hulahop_browser_get_window_root(HULAHOP_BROWSER(self->obj));
}
%%