]> Dogcows Code - chaz/openbox/blobdiff - wrap/otk_widget.i
rm the obsetroot tool and the wrap shit from swig
[chaz/openbox] / wrap / otk_widget.i
diff --git a/wrap/otk_widget.i b/wrap/otk_widget.i
deleted file mode 100644 (file)
index a9f06b5..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-// -*- 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"
This page took 0.021668 seconds and 4 git commands to generate.