summaryrefslogtreecommitdiff
path: root/src/python.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-07 04:51:55 +0000
committerDana Jansens <danakj@orodu.net>2003-01-07 04:51:55 +0000
commit4c768d5d63154e416e1282396dc48492d0585d42 (patch)
tree879060f576e9ebea69ca924239e2b162e1cdc9c5 /src/python.hh
parent85b0dc80cff679d964820159de018a6e89997184 (diff)
use client messages to switch desktops/move windows between desktops
Diffstat (limited to 'src/python.hh')
-rw-r--r--src/python.hh6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/python.hh b/src/python.hh
index 2f779321..81b3b0ca 100644
--- a/src/python.hh
+++ b/src/python.hh
@@ -8,6 +8,7 @@
#include "otk/point.hh"
#include "otk/rect.hh"
+#include "otk/property.hh"
extern "C" {
#include <X11/Xlib.h>
@@ -55,6 +56,7 @@ enum EventAction {
EventCloseWindow,
EventStartup,
EventShutdown,
+ EventFocus,
NUM_EVENTS
};
@@ -142,6 +144,10 @@ PyObject *ebind(ob::EventAction action, PyObject *func);
void set_reset_key(const std::string &key);
+PyObject *send_client_msg(Window target, int type, Window about,
+ long data, long data1 = 0, long data2 = 0,
+ long data3 = 0, long data4 = 0);
+
}
#endif // __python_hh