summaryrefslogtreecommitdiff
path: root/src/openbox.i
diff options
context:
space:
mode:
Diffstat (limited to 'src/openbox.i')
-rw-r--r--src/openbox.i20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/openbox.i b/src/openbox.i
index 1ff7d357..ef82956b 100644
--- a/src/openbox.i
+++ b/src/openbox.i
@@ -23,17 +23,33 @@
ob::Openbox *Openbox_instance() { return ob::Openbox::instance; }
%};
-// stuff for registering callbacks!
-
+// 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;