aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/EventManager.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-11-27 21:41:13 (GMT)
committerfluxgen <fluxgen>2002-11-27 21:41:13 (GMT)
commit7d6df5692c5c13c804f562be98a84c66dc8a540f (patch)
tree1a97bf7ae516c7cd257a4b7f3a18364f40faa824 /src/FbTk/EventManager.hh
parent2f588e5570e941d77b7330db7b15d4be7a35784a (diff)
downloadfluxbox_pavel-7d6df5692c5c13c804f562be98a84c66dc8a540f.zip
fluxbox_pavel-7d6df5692c5c13c804f562be98a84c66dc8a540f.tar.bz2
initial import
Diffstat (limited to 'src/FbTk/EventManager.hh')
-rw-r--r--src/FbTk/EventManager.hh47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/FbTk/EventManager.hh b/src/FbTk/EventManager.hh
new file mode 100644
index 0000000..97a0dc6
--- /dev/null
+++ b/src/FbTk/EventManager.hh
@@ -0,0 +1,47 @@
1// EventManager.hh
2// Copyright (c) 2002 Henrik Kinnunen (fluxgen at linuxmail.org)
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22// $Id: EventManager.hh,v 1.1 2002/11/27 21:41:13 fluxgen Exp $
23
24#include "EventHandler.hh"
25#include <map>
26
27namespace FbTk {
28
29/**
30 singleton mediator for EventHandlers
31*/
32class EventManager {
33public:
34 static EventManager *instance();
35
36 void handleEvent(XEvent &ev);
37
38 void registerEventHandler(EventHandler &ev, Window win);
39 void unregisterEventHandler(Window win);
40private:
41 EventManager() { }
42 ~EventManager();
43
44 std::map<Window, EventHandler *> m_eventhandlers;
45};
46
47}; //end namespace FbTk