]> icculus.org git repositories - dana/openbox.git/blob - util/epist/epist.hh
Added an action class and started the even handler.
[dana/openbox.git] / util / epist / epist.hh
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // epist.hh for Epistory - a key handler for NETWM/EWMH window managers.
3 // Copyright (c) 2002 - 2002 Ben Jansens <ben at orodu.net>
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
22
23 #ifndef   __epist_hh
24 #define   __epist_hh
25
26 extern "C" {
27 #include <X11/Xlib.h>
28 }
29
30 #include <string>
31 #include <map>
32
33 #include <actions.hh>
34
35 #include "../../src/BaseDisplay.hh"
36
37 class XAtom;
38 class screen;
39 class XWindow;
40
41 class epist : public BaseDisplay {
42 private:
43   std::string     _rc_file;
44   XAtom          *_xatom;
45   char          **_argv;
46
47   typedef std::vector<screen *> ScreenList;
48   ScreenList      _screens;
49
50   typedef std::map<Window, XWindow*> WindowLookup;
51   typedef WindowLookup::value_type WindowLookupPair;
52   WindowLookup    _windows;
53
54   ActionList _actions;
55   
56   virtual void process_event(XEvent *e);
57   virtual bool handleSignal(int sig);
58
59   void activateGrabs();
60 public:
61   epist(char **argv, char *display_name, char *rc_file);
62   virtual ~epist();
63
64   inline XAtom *xatom() { return _xatom; }
65
66   void addWindow(XWindow *window);
67   void removeWindow(XWindow *window);
68   XWindow *findWindow(Window window) const;
69
70   list<Action> actions(void) { return _actions; }
71 };
72
73 #endif // __epist_hh