X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fopenbox.i;h=4d11507c388ede9a631b0fe274c20680c837793d;hb=5fdd493d0d2255f134114e69f028371366f4dfd3;hp=cf7859d4cdea40a3e199781c2beb1998f9a993bc;hpb=fe55bb846db1933d8d6f023236298940cab441f8;p=chaz%2Fopenbox diff --git a/src/openbox.i b/src/openbox.i index cf7859d4..4d11507c 100644 --- a/src/openbox.i +++ b/src/openbox.i @@ -10,29 +10,61 @@ #include "openbox.hh" #include "screen.hh" #include "client.hh" +#include "python.hh" %} + %include stl.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; } %}; +// stuff for scripting callbacks! +%inline %{ + enum ActionType { + Action_ButtonPress, + Action_ButtonRelease, + Action_Click, + Action_DoubleClick, + Action_EnterWindow, + Action_LeaveWindow, + Action_KeyPress, + Action_MouseMotion + }; + enum WidgetType { + Type_Frame, + Type_Titlebar, + Type_Handle, + Type_Plate, + Type_Label, + Type_MaximizeButton, + Type_CloseButton, + Type_IconifyButton, + Type_StickyButton, + Type_LeftGrip, + Type_RightGrip, + Type_Client, + Type_Root + }; +%} +%ignore ob::python_callback; +%rename(register) ob::python_register; +%rename(preregister) ob::python_preregister; +%rename(unregister) ob::python_unregister; +%rename(unregister_all) ob::python_unregister_all; + +%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 +73,15 @@ return (int) self->clients.size(); } }; + +%import "../otk/eventdispatcher.hh" +%import "../otk/eventhandler.hh" +%import "widget.hh" + +%include "openbox.hh" +%include "screen.hh" +%include "client.hh" +%include "python.hh" + +// for Mod1Mask etc +%include "X11/X.h"