]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/screen.hh
add iconifying
[mikachu/openbox.git] / util / epist / screen.hh
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // screen.hh for Epistophy - 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   __screen_hh
24 #define   __screen_hh
25
26 extern "C" {
27 #include "X11/Xlib.h"
28 }
29
30 #include <vector>
31
32 #include "window.hh"
33
34 class epist;
35 class screen;
36 class XAtom;
37
38 class screen {
39   epist *_epist;
40   XAtom *_xatom;
41   int _number;
42   Window _root;
43
44   std::string _wm_name;
45   
46   WindowList _clients;
47   WindowList::iterator _active;
48
49   bool _managed;
50
51   XWindow *findWindow(const XEvent &e) const;
52   void updateClientList();
53   void updateActiveWindow();
54   bool doAddWindow(Window window) const;
55   bool findSupportingWM();
56
57 public:
58   screen(epist *epist, int number);
59   virtual ~screen();
60   
61   inline Window rootWindow() const { return _root; }
62   inline bool managed() const { return _managed; }
63   inline int number() const { return _number; }
64   
65   void processEvent(const XEvent &e);
66
67   void handleKeypress(const XEvent &e);
68
69   void cycleWindow(const bool forward) const;
70   void cycleWorkspace(const bool forward) const;
71   void changeWorkspace(const int num) const;
72   void toggleShaded(const Window win) const;
73 };
74
75 #endif // __screen_hh
76