X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fopenbox.i;h=aeae40dd051188937098bfd488e4374f79e3d659;hb=105bd729e8341bacce630f2780f0a9a5a0102526;hp=cf7859d4cdea40a3e199781c2beb1998f9a993bc;hpb=fe55bb846db1933d8d6f023236298940cab441f8;p=chaz%2Fopenbox diff --git a/src/openbox.i b/src/openbox.i index cf7859d4..aeae40dd 100644 --- a/src/openbox.i +++ b/src/openbox.i @@ -10,29 +10,30 @@ #include "openbox.hh" #include "screen.hh" #include "client.hh" +#include "bindings.hh" +#include "actions.hh" %} -%include stl.i +%include "stl.i" +%include "exception.i" //%include std_list.i //%template(ClientList) std::list; - %ignore ob::Openbox::instance; -%ignore ob::OBScreen::clients; - -%include "openbox.hh" -%include "screen.hh" -%include "client.hh" - %inline %{ ob::Openbox *Openbox_instance() { return ob::Openbox::instance; } %}; +%rename(register) python_register; + +%ignore ob::OBScreen::clients; %{ #include %} %extend ob::OBScreen { OBClient *client(int i) { + if (i >= (int)self->clients.size()) + return NULL; ob::OBScreen::ClientList::iterator it = self->clients.begin(); std::advance(it,i); return *it; @@ -41,3 +42,16 @@ return (int) self->clients.size(); } }; + +%import "../otk/eventdispatcher.hh" +%import "../otk/eventhandler.hh" +%import "widget.hh" +%import "actions.hh" + +%include "openbox.hh" +%include "screen.hh" +%include "client.hh" +%include "python.hh" + +// for Mod1Mask etc +%include "X11/X.h"