]> icculus.org git repositories - dana/openbox.git/blob - util/epist/epist.hh
epist now based on the BaseDisplay.
[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 "../../src/BaseDisplay.hh"
34
35 class XAtom;
36 class screen;
37 class XWindow;
38
39 class epist : public BaseDisplay {
40 private:
41   std::string     _rc_file;
42   XAtom          *_xatom;
43   char          **_argv;
44
45   typedef std::vector<screen *> ScreenList;
46   ScreenList      _screens;
47
48   typedef std::map<Window, XWindow*> WindowLookup;
49   typedef WindowLookup::value_type WindowLookupPair;
50   WindowLookup    _windows;
51
52   virtual void process_event(XEvent *e);
53   virtual bool handleSignal(int sig);
54
55 public:
56   epist(char **argv, char *display_name, char *rc_file);
57   virtual ~epist();
58
59   inline XAtom *xatom() { return _xatom; }
60
61   void addWindow(XWindow *window);
62   void removeWindow(XWindow *window);
63   XWindow *findWindow(Window window) const;
64 };
65
66 #endif // __epist_hh