]>
Dogcows Code - chaz/openbox/blob - src/XDisplay.h
b736fd423dd10dc95f88de702c165378979b1ad7
1 // XDisplay.h for Openbox
2 // Copyright (c) 2002 - 2002 Ben Janens (ben at orodu.net)
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:
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
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.
32 friend XAtom::XAtom(const XDisplay
*);
33 friend XScreen::XScreen(const XDisplay
*, const unsigned int);
40 int _shape_event_base
;
42 typedef std::vector
<XScreen
*> XScreenList
;
46 static int XErrorHandler(Display
*d
, XErrorEvent
*e
);
47 static std::string _app_name
;
48 static Window _last_bad_window
;
51 XDisplay(const XDisplay
&);
52 XDisplay
& operator=(const XDisplay
&);
55 virtual void process_event(XEvent
*) = 0;
58 XDisplay(const std::string
&application_name
, const char *dpyname
= 0);
61 XScreen
*screen(unsigned int s
) const;
62 inline unsigned int screenCount() const { return _screens
.size(); }
64 inline bool hasShape() const { return _hasshape
; }
65 inline int shapeEventBase() const { return _shape_event_base
; }
67 //inline Display *display() const { return _display; }
69 inline std::string
name() const { return _name
; }
71 // these belong in Xwindow
72 //const bool validateWindow(Window);
73 //void grabButton(unsigned int, unsigned int, Window, Bool, unsigned int, int,
74 // int, Window, Cursor) const;
75 //void ungrabButton(unsigned int button, unsigned int modifiers,
76 // Window grab_window) const;
81 bool nextEvent(XEvent
&e
);
This page took 0.036198 seconds and 4 git commands to generate.