X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fopenbox.i;h=b914ce9c52bd4d4ee0a3386bb79b06ef77a6e792;hb=889df8a74da733c849cb52c3a76ae59956755882;hp=bde9a8cb2c48f510611c04056fbd11866c9cf167;hpb=5f78b51429b204f89b654d634bb4cc8cb78b95f6;p=chaz%2Fopenbox diff --git a/src/openbox.i b/src/openbox.i index bde9a8cb..b914ce9c 100644 --- a/src/openbox.i +++ b/src/openbox.i @@ -10,19 +10,45 @@ #include "openbox.hh" #include "screen.hh" #include "client.hh" +#include "bindings.hh" +#include "actions.hh" %} -%immutable ob::Openbox::instance; +%include "stl.i" +//%include std_list.i +//%template(ClientList) std::list; + +%ignore ob::Openbox::instance; +%inline %{ + ob::Openbox *Openbox_instance() { return ob::Openbox::instance; } +%}; + +%ignore ob::OBScreen::clients; +%{ + #include +%} +%extend ob::OBScreen { + OBClient *client(int i) { + if (i >= (int)self->clients.size()) + return NULL; + ob::OBClient::List::iterator it = self->clients.begin(); + std::advance(it,i); + return *it; + } + int clientCount() const { + 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" - -%include stl.i -%include std_list.i - -%{ -class OBClient; -%} -%template(ClientList) std::list; +// for Mod1Mask etc +%include "X11/X.h"