X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=otk%2Feventdispatcher.cc;h=c80f3857a41a77ab7fd9ccb5f5571d2d894def74;hb=2b2f81b93c89c2a2d6abc3b12dee66b8e2a0452d;hp=69fa3d5ab0e428f74ddc49634372da6a380d6cd9;hpb=bbdfd8f1d6b46954f5611f245ee2c68aa2fe91ce;p=chaz%2Fopenbox diff --git a/otk/eventdispatcher.cc b/otk/eventdispatcher.cc index 69fa3d5a..c80f3857 100644 --- a/otk/eventdispatcher.cc +++ b/otk/eventdispatcher.cc @@ -11,8 +11,10 @@ namespace otk { OtkEventDispatcher::OtkEventDispatcher() - : _fallback(0) + : _fallback(0), _master(0), _focus(None) { + _focus_e.xfocus.mode = NotifyNormal; + _focus_e.xfocus.detail = NotifyNonlinear; } OtkEventDispatcher::~OtkEventDispatcher() @@ -33,26 +35,107 @@ void OtkEventDispatcher::clearHandler(Window id) { _map.erase(id); } -#include + void OtkEventDispatcher::dispatchEvents(void) { - XEvent e; - OtkEventHandler *handler; OtkEventMap::iterator it; + XEvent e; + Window focus = _focus; + Window unfocus = None; while (XPending(OBDisplay::display)) { XNextEvent(OBDisplay::display, &e); - it = _map.find(e.xany.window); +#if 0 + printf("Event %d window %lx\n", e.type, e.xany.window); +#endif + + // these ConfigureRequests require some special attention + if (e.type == ConfigureRequest) { + // find the actual window! e.xany.window is the parent window + it = _map.find(e.xconfigurerequest.window); + + if (it != _map.end()) + it->second->handle(e); + else { + // unhandled configure requests must be used to configure the window + // directly + XWindowChanges xwc; - if (it != _map.end()) - handler = it->second; - else - handler = _fallback; + xwc.x = e.xconfigurerequest.x; + xwc.y = e.xconfigurerequest.y; + xwc.width = e.xconfigurerequest.width; + xwc.height = e.xconfigurerequest.height; + xwc.border_width = e.xconfigurerequest.border_width; + xwc.sibling = e.xconfigurerequest.above; + xwc.stack_mode = e.xconfigurerequest.detail; - if (handler) - handler->handle(e); + XConfigureWindow(otk::OBDisplay::display, e.xconfigurerequest.window, + e.xconfigurerequest.value_mask, &xwc); + } + // madly compress all focus events + } else if (e.type == FocusIn) { + // any other types are not ones we're interested in + if (e.xfocus.detail == NotifyNonlinear) { + if (e.xfocus.window != focus) { + if (focus) + unfocus = focus; + focus = e.xfocus.window; + printf("FocusIn focus=%lx unfocus=%lx\n", focus, unfocus); + } + } + } else if (e.type == FocusOut) { + // any other types are not ones we're interested in + if (e.xfocus.detail == NotifyNonlinear) { + if (e.xfocus.window == focus) { + unfocus = focus; + focus = None; + printf("FocusIn focus=%lx unfocus=%lx\n", focus, unfocus); + } + } + } else { + // normal events + dispatch(e); + } + } + + if (focus != _focus) { + _focus_e.xfocus.type = FocusIn; + _focus_e.xfocus.window = focus; + dispatch(_focus_e); + _focus = focus; + } + if (unfocus != None) { + _focus_e.xfocus.type = FocusOut; + _focus_e.xfocus.window = unfocus; + dispatch(_focus_e); } } +void OtkEventDispatcher::dispatch(const XEvent &e) { + OtkEventHandler *handler; + OtkEventMap::iterator it; + + it = _map.find(e.xany.window); + + if (it != _map.end()) + handler = it->second; + else + handler = _fallback; + + if (handler) + handler->handle(e); + + if (_master) + _master->handle(e); +} + +OtkEventHandler *OtkEventDispatcher::findHandler(Window win) +{ + OtkEventMap::iterator it = _map.find(win); + if (it != _map.end()) + return it->second; + return 0; +} + }