X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=otk%2Feventdispatcher.hh;h=c62e24b925c19e3d6a19ea48b3c5c54e446cca33;hb=19bfac5195a1917f4a0bbcf910e90d5b800c5146;hp=716a81189eb9ca55b55229303310996dc10d71b6;hpb=2ae2b257d39ea62640c2590f794e4275c6db1cd4;p=chaz%2Fopenbox diff --git a/otk/eventdispatcher.hh b/otk/eventdispatcher.hh index 716a8118..c62e24b9 100644 --- a/otk/eventdispatcher.hh +++ b/otk/eventdispatcher.hh @@ -31,17 +31,19 @@ public: otk::OtkEventHandler *getMasterHandler(void) const { return _master; } otk::OtkEventHandler *findHandler(Window win); + + inline Time lastTime() const { return _lasttime; } private: OtkEventMap _map; OtkEventHandler *_fallback; OtkEventHandler *_master; - XEvent _focus_e; //! The time at which the last XEvent with a time was received - Time _lasttime; // XXX: store this! also provide an accessor! + Time _lasttime; - void dispatch(const XEvent &e); + void dispatch(Window win, const XEvent &e); + void dispatchFocus(const XEvent &e); }; }