]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/epist.hh
fix indenting
[mikachu/openbox.git] / util / epist / epist.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // epist.hh for Epistrophy - 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 #include "window.hh"
35 #include "keytree.hh"
36 #include "config.hh"
37
38 #include "../../src/basedisplay.hh"
39
40 class XAtom;
41 class screen;
42
43 class epist : public BaseDisplay {
44 private:
45   std::string _rc_file;
46   XAtom *_xatom;
47   char **_argv;
48   keytree *_ktree;
49   Config *_config;
50
51   typedef std::vector<screen *> ScreenList;
52   ScreenList _screens;
53
54   typedef std::map<Window, XWindow*> WindowLookup;
55   typedef WindowLookup::value_type WindowLookupPair;
56   WindowLookup    _windows;
57   
58   WindowList _clients;
59   WindowList::iterator _active;
60
61   ActionList _actions;
62   
63   virtual void process_event(XEvent *e);
64   virtual bool handleSignal(int sig);
65
66   void activateGrabs();
67
68 public:
69   epist(char **argv, char *display_name, char *rc_file);
70   virtual ~epist();
71
72   inline XAtom *xatom() { return _xatom; }
73
74   void addWindow(XWindow *window);
75   void removeWindow(XWindow *window);
76   XWindow *findWindow(Window window) const;
77
78   void cycleScreen(int current, bool forward) const;
79
80   void getLockModifiers(int &numlockMask, int &scrolllockMask) const {
81     numlockMask = NumLockMask;
82     scrolllockMask = ScrollLockMask;
83   }
84   
85   const ActionList &actions(void) { return _actions; }
86   keytree &getKeyTree(void) { return *_ktree; }
87   inline const Config *getConfig(void) { return _config; }
88
89   WindowList& clientsList() { return _clients; }
90   WindowList::iterator& activeWindow() { return _active; }
91 };
92
93 #endif // __epist_hh