all repos — openbox @ 4534151926c4f3887ba9e37ae67df16f1eb039ef

openbox fork - make it a bit more like ryudo

wrap/otk_widget.i (raw)

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
32
33
34
35
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-

%module otk_widget

%{
#include "config.h"
#include "widget.hh"
%}

%include "otk_rendercolor.i"

%typemap(python,out) const std::list<Widget*>& {
  std::list<Widget*> *v = $1;
  unsigned int s = v->size();
  PyObject *l = PyList_New(s);

  std::list<Widget*>::const_iterator it = v->begin(), end = v->end();
  for (unsigned int i = 0; i < s; ++i, ++it) {
    PyObject *pdata = SWIG_NewPointerObj((void*)*it,SWIGTYPE_p_otk__Widget,0);
    PyList_SET_ITEM(l, i, pdata);
  }
  $result = l;
}

namespace otk {

%ignore Widget::exposeHandler(const XExposeEvent &);
%ignore Widget::configureHandler(const XConfigureEvent &);
%ignore Widget::styleChanged(const RenderStyle &);

}

%import "../otk/eventhandler.hh"
%import "../otk/renderstyle.hh"
%include "widget.hh"