aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/EventManager.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-12-02 19:36:58 (GMT)
committerfluxgen <fluxgen>2002-12-02 19:36:58 (GMT)
commit2045fcca4913f47dd68f86c4f0660927c74e3e00 (patch)
tree1b8028e1032f199e5f41a776712fc6a694c716c1 /src/FbTk/EventManager.hh
parentc8aff5576a187f3921a0db998cd5a47173b28742 (diff)
downloadfluxbox-2045fcca4913f47dd68f86c4f0660927c74e3e00.zip
fluxbox-2045fcca4913f47dd68f86c4f0660927c74e3e00.tar.bz2
add and remove functions
Diffstat (limited to 'src/FbTk/EventManager.hh')
-rw-r--r--src/FbTk/EventManager.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/FbTk/EventManager.hh b/src/FbTk/EventManager.hh
index cdec410..39883b3 100644
--- a/src/FbTk/EventManager.hh
+++ b/src/FbTk/EventManager.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: EventManager.hh,v 1.2 2002/12/01 13:42:14 rathnor Exp $ 22// $Id: EventManager.hh,v 1.3 2002/12/02 19:36:58 fluxgen Exp $
23 23
24#include "EventHandler.hh" 24#include "EventHandler.hh"
25#include <map> 25#include <map>
@@ -34,7 +34,8 @@ public:
34 static EventManager *instance(); 34 static EventManager *instance();
35 35
36 void handleEvent(XEvent &ev); 36 void handleEvent(XEvent &ev);
37 37 void add(EventHandler &ev, Window win) { registerEventHandler(ev, win); }
38 void remove(Window win) { unregisterEventHandler(win); }
38 void registerEventHandler(EventHandler &ev, Window win); 39 void registerEventHandler(EventHandler &ev, Window win);
39 void unregisterEventHandler(Window win); 40 void unregisterEventHandler(Window win);
40private: 41private: