]> icculus.org git repositories - dana/openbox.git/blob - src/XDisplay.h
added the X classes to the build process though they aren't sued by anything else...
[dana/openbox.git] / src / XDisplay.h
1 // XDisplay.h for Openbox
2 // Copyright (c) 2002 - 2002 Ben Janens (ben at orodu.net)
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 #ifndef   __XDisplay_h
23 #define   __XDisplay_h
24
25 #include <X11/Xlib.h>
26 #include <string>
27 #include <vector>
28 #include "XAtom.h"
29 #include "XScreen.h"
30
31 class XDisplay {
32   friend XAtom::XAtom(const XDisplay *);
33   friend XScreen::XScreen(const XDisplay *, const unsigned int);
34
35 private:
36   Display       *_display;
37   std::string    _name;
38   unsigned int   _grabs;
39   bool           _hasshape;
40   int            _shape_event_base;
41
42   typedef std::vector<XScreen*> XScreenList;
43   XScreenList    _screens;
44  
45   static int XErrorHandler(Display *d, XErrorEvent *e);
46
47   // no copying!!
48   XDisplay(const XDisplay &);
49   XDisplay& operator=(const XDisplay&);
50   
51 protected:
52   virtual void process_event(XEvent *) = 0;
53
54 public:
55   XDisplay(const char *dpyname = 0);
56   virtual ~XDisplay();
57
58   XScreen *screen(unsigned int s) const;
59   inline unsigned int screenCount() const { return _screens.size(); }
60   
61   inline bool hasShape() const { return _hasshape; }
62   inline int shapeEventBase() const { return _shape_event_base; }
63
64   //inline Display *display() const { return _display; }
65
66   inline std::string name() const { return _name; }
67
68   // these belong in Xwindow
69   //const bool validateWindow(Window);
70   //void grabButton(unsigned int, unsigned int, Window, Bool, unsigned int, int,
71   //    int, Window, Cursor) const;
72   //void ungrabButton(unsigned int button, unsigned int modifiers,
73   //    Window grab_window) const;
74   
75   void grab();
76   void ungrab();
77 };
78
79 #endif // _XDisplay_h