summaryrefslogtreecommitdiff
path: root/src/Manager.h
diff options
context:
space:
mode:
authorPeter Hutterer <peter@cs.unisa.edu.au>2006-02-16 07:26:10 +0000
committerPeter Hutterer <peter@cs.unisa.edu.au>2006-02-16 07:26:10 +0000
commit383edd4bfe96a5e9546a5fb37e8bdffcb45ef0e5 (patch)
treee3c4550fddc188df49af96de69a5955bcc91ae12 /src/Manager.h
parent4ffc4b0416dc56f19e4de52909c6b827f0ded46b (diff)
o The XKillClient call in the destroy() function was wrong, we only want to
destroy the window, not the client. Is fixed now. + shaped and coloured cursors TAG: MPGWMPP_0_4
Diffstat (limited to 'src/Manager.h')
-rw-r--r--src/Manager.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Manager.h b/src/Manager.h
index ad82234..dcca0fc 100644
--- a/src/Manager.h
+++ b/src/Manager.h
@@ -6,6 +6,7 @@
#include<X11/Xlib.h>
#include<X11/Xutil.h>
#include<X11/extensions/XInput.h>
+#include<X11/extensions/shape.h>
#include<vector>
#include<map>
#include<stdio.h>
@@ -40,7 +41,9 @@ class Manager
void loop();
void takedown();
vector<PointerDevice*>* getPointers();
-
+
+ bool hasShapeExtension();
+
private:
void initX11(char* display);
void initXi();