X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fclient.hh;h=e07ce12df32c1e955f2075abdf1ad99641730944;hb=9860b76c50e5ecacc85921539058eab4c655c38d;hp=9c0bd7d4402272bdb2b0523d18cbd11f9c033285;hpb=1fa445c88033e564a25d907a7f478e76bff9e89e;p=chaz%2Fopenbox 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); }; }