summaryrefslogtreecommitdiff
path: root/src/client.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-04 01:04:31 +0000
committerDana Jansens <danakj@orodu.net>2002-12-04 01:04:31 +0000
commit9860b76c50e5ecacc85921539058eab4c655c38d (patch)
tree5587ac2eb155a2a22997132f4552ee979b29cfbb /src/client.hh
parent22bd294c7baed75a24b1df7cc423042c965acbdb (diff)
unmap works.. once
Diffstat (limited to 'src/client.hh')
-rw-r--r--src/client.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client.hh b/src/client.hh
index 9c0bd7d4..e07ce12d 100644
--- a/src/client.hh
+++ b/src/client.hh
@@ -130,7 +130,8 @@ public:
};
//! The event mask to grab on client windows
- static const long event_mask = PropertyChangeMask | FocusChangeMask;
+ static const long event_mask = PropertyChangeMask | FocusChangeMask |
+ StructureNotifyMask;
//! The number of unmap events to ignore on the window
int ignore_unmaps;
@@ -415,12 +416,11 @@ public:
inline const otk::Rect &area() const { return _area; }
virtual void propertyHandler(const XPropertyEvent &e);
-
virtual void clientMessageHandler(const XClientMessageEvent &e);
-
virtual void shapeHandler(const XShapeEvent &e);
-
virtual void configureRequestHandler(const XConfigureRequestEvent &e);
+ virtual void unmapHandler(const XUnmapEvent &e);
+ virtual void destroyHandler(const XDestroyWindowEvent &e);
};
}