]> icculus.org git repositories - mikachu/openbox.git/blob - src/XDisplay.h
adding new X base classes which encapsulate all X server interation
[mikachu/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
29 class Xdisplay {
30   friend XAtom::XAtom();
31   //friend class XAtom;
32
33 private:
34   Display       *_display;
35   std::string    _name;
36   unsigned int   _grabs;
37   bool           _hasshape;
38   int            _shape_event_base;
39
40   typedef std::vector<XScreen*> XScreenList;
41   XScreenList    _screens;
42  
43   int XErrorHandler(Display *d, XErrorEvent *e);
44
45   // no copying!!
46   XDisplay(const XDisplay &);
47   XDisplay& operator=(const XDisplay&);
48   
49 protected:
50   virtual void process_event(XEvent *) = 0;
51
52 public:
53   Xdisplay(const char *dpyname = 0);
54   virtual ~Xdisplay();
55
56   XScreen *screen(unsigned int s) const;
57   inline unsigned int screenCount() const { return _screens.size(); }
58   
59   inline bool hasShape() const { return _hasshape; }
60   inline int shapeEventBase() const { return shape.event_basep; }
61
62   //inline Display *display() const { return _display; }
63
64   inline std::string name() const { return name; }
65
66   // these belong in Xwindow
67   //const bool validateWindow(Window);
68   //void grabButton(unsigned int, unsigned int, Window, Bool, unsigned int, int,
69   //    int, Window, Cursor) const;
70   //void ungrabButton(unsigned int button, unsigned int modifiers,
71   //    Window grab_window) const;
72   
73   void grab();
74   void ungrab();
75 };
76
77 #endif // _XDisplay_h