summaryrefslogtreecommitdiff
path: root/src/client.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-19 07:58:54 +0000
committerDana Jansens <danakj@orodu.net>2002-12-19 07:58:54 +0000
commit9e0ae7ecee94a0cc467d90926428fdc84f9a0339 (patch)
tree81b0553b03c0e1335bca32aa2773274ce964b359 /src/client.hh
parent38f8155bf50af2a2bf13e8767236dae924abb157 (diff)
resizing works and whatnot
Diffstat (limited to 'src/client.hh')
-rw-r--r--src/client.hh8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/client.hh b/src/client.hh
index e61ece42..458fe088 100644
--- a/src/client.hh
+++ b/src/client.hh
@@ -134,6 +134,14 @@ public:
static const long event_mask = PropertyChangeMask | FocusChangeMask |
StructureNotifyMask;
+ //! The mask of events to not let propogate past the client
+ /*!
+ This makes things like xprop work on the client window, but means we have
+ to explicitly grab clicks that we want.
+ */
+ static const long no_propagate_mask = ButtonPressMask | ButtonReleaseMask |
+ ButtonMotionMask;
+
//! The number of unmap events to ignore on the window
int ignore_unmaps;