summaryrefslogtreecommitdiff
path: root/otk/otk.i
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 /otk/otk.i
parent85b0dc80cff679d964820159de018a6e89997184 (diff)
use client messages to switch desktops/move windows between desktops
Diffstat (limited to 'otk/otk.i')
-rw-r--r--otk/otk.i10
1 files changed, 9 insertions, 1 deletions
diff --git a/otk/otk.i b/otk/otk.i
index fc5a4c5f..399d89e0 100644
--- a/otk/otk.i
+++ b/otk/otk.i
@@ -36,9 +36,14 @@
#include "widget.hh"
%}
-%include stl.i
+%include "stl.i"
//%include std_list.i
+%ignore otk::OBDisplay::display;
+%inline %{
+ Display *OBDisplay_display() { return otk::OBDisplay::display; }
+%};
+
namespace otk {
%rename(setValue_bool) Configuration::setValue(std::string const &,bool);
%rename(setValue_unsigned) Configuration::setValue(const std::string &, unsigned int);
@@ -99,3 +104,6 @@ namespace otk {
%include "timerqueue.hh"
%include "timerqueuemanager.hh"
%include "util.hh"
+
+// for Mod1Mask etc
+%include "X11/X.h"