]> Dogcows Code - chaz/openbox/blob - otk/eventdispatcher.cc
handle configure requests
[chaz/openbox] / otk / eventdispatcher.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #ifdef HAVE_CONFIG_H
4 # include "../config.h"
5 #endif
6
7 #include "eventdispatcher.hh"
8 #include "display.hh"
9 #include <iostream>
10
11 namespace otk {
12
13 OtkEventDispatcher::OtkEventDispatcher()
14 : _fallback(0)
15 {
16 }
17
18 OtkEventDispatcher::~OtkEventDispatcher()
19 {
20 }
21
22 void OtkEventDispatcher::clearAllHandlers(void)
23 {
24 _map.clear();
25 }
26
27 void OtkEventDispatcher::registerHandler(Window id, OtkEventHandler *handler)
28 {
29 _map.insert(std::pair<Window, OtkEventHandler*>(id, handler));
30 }
31
32 void OtkEventDispatcher::clearHandler(Window id)
33 {
34 _map.erase(id);
35 }
36
37 void OtkEventDispatcher::dispatchEvents(void)
38 {
39 XEvent e;
40 OtkEventHandler *handler;
41 OtkEventMap::iterator it;
42
43 while (XPending(OBDisplay::display)) {
44 XNextEvent(OBDisplay::display, &e);
45
46 it = _map.find(e.xany.window);
47
48 if (it != _map.end())
49 handler = it->second;
50 else
51 handler = _fallback;
52
53 if (handler)
54 handler->handle(e);
55 }
56 }
57
58 }
This page took 0.036426 seconds and 5 git commands to generate.