]> Dogcows Code - chaz/openbox/blob - otk/display.cc
rm old comment
[chaz/openbox] / otk / display.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #ifdef HAVE_CONFIG_H
4 # include "../config.h"
5 #endif
6
7 #include "display.hh"
8 #include "screeninfo.hh"
9 #include "gccache.hh"
10 #include "util.hh"
11
12 extern "C" {
13 #include <X11/keysym.h>
14
15 #ifdef XKB
16 #include <X11/XKBlib.h>
17 #endif // XKB
18
19 #ifdef SHAPE
20 #include <X11/extensions/shape.h>
21 #endif // SHAPE
22
23 #ifdef XINERAMA
24 #include <X11/extensions/Xinerama.h>
25 #endif // XINERAMA
26
27 #ifdef HAVE_STDIO_H
28 # include <stdio.h>
29 #endif // HAVE_STDIO_H
30
31 #ifdef HAVE_SIGNAL_H
32 # include <signal.h>
33 #endif // HAVE_SIGNAL_H
34
35 #ifdef HAVE_FCNTL_H
36 # include <fcntl.h>
37 #endif // HAVE_FCNTL_H
38
39 #ifdef HAVE_UNISTD_H
40 # include <sys/types.h>
41 # include <unistd.h>
42 #endif // HAVE_UNISTD_H
43
44 #include "gettext.h"
45 #define _(str) gettext(str)
46 }
47
48 namespace otk {
49
50
51 ::Display *Display::display = (::Display*) 0;
52 bool Display::_xkb = false;
53 int Display::_xkb_event_basep = 0;
54 bool Display::_shape = false;
55 int Display::_shape_event_basep = 0;
56 bool Display::_xinerama = false;
57 int Display::_xinerama_event_basep = 0;
58 unsigned int Display::_mask_list[8];
59 unsigned int Display::_scrollLockMask = 0;
60 unsigned int Display::_numLockMask = 0;
61 Display::ScreenInfoList Display::_screenInfoList;
62 GCCache *Display::_gccache = (GCCache*) 0;
63 int Display::_grab_count = 0;
64
65
66 static int xerrorHandler(::Display *d, XErrorEvent *e)
67 {
68 #ifdef DEBUG
69 char errtxt[128];
70
71 //if (e->error_code != BadWindow)
72 {
73 XGetErrorText(d, e->error_code, errtxt, 128);
74 printf("X Error: %s\n", errtxt);
75 if (e->error_code != BadWindow)
76 abort();
77 }
78 #else
79 (void)d;
80 (void)e;
81 #endif
82
83 return false;
84 }
85
86
87 void Display::initialize(char *name)
88 {
89 int junk;
90 (void)junk;
91
92 // Open the X display
93 if (!(display = XOpenDisplay(name))) {
94 printf(_("Unable to open connection to the X server. Please set the \n\
95 DISPLAY environment variable approriately, or use the '-display' command \n\
96 line argument.\n\n"));
97 ::exit(1);
98 }
99 if (fcntl(ConnectionNumber(display), F_SETFD, 1) == -1) {
100 printf(_("Couldn't mark display connection as close-on-exec.\n\n"));
101 ::exit(1);
102 }
103 if (!XSupportsLocale())
104 printf(_("X server does not support locale.\n"));
105 if (!XSetLocaleModifiers(""))
106 printf(_("Cannot set locale modifiers for the X server.\n"));
107
108 // set our error handler for X errors
109 XSetErrorHandler(xerrorHandler);
110
111 // set the DISPLAY environment variable for any lauched children, to the
112 // display we're using, so they open in the right place.
113 putenv(std::string("DISPLAY=") + DisplayString(display));
114
115 // find the availability of X extensions we like to use
116 #ifdef XKB
117 _xkb = XkbQueryExtension(display, &junk, &_xkb_event_basep, &junk, NULL,
118 NULL);
119 #endif
120
121 #ifdef SHAPE
122 _shape = XShapeQueryExtension(display, &_shape_event_basep, &junk);
123 #endif
124
125 #ifdef XINERAMA
126 _xinerama = XineramaQueryExtension(display, &_xinerama_event_basep, &junk);
127 #endif // XINERAMA
128
129 // get lock masks that are defined by the display (not constant)
130 XModifierKeymap *modmap;
131
132 modmap = XGetModifierMapping(display);
133 if (modmap && modmap->max_keypermod > 0) {
134 const int mask_table[] = {
135 ShiftMask, LockMask, ControlMask, Mod1Mask,
136 Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask
137 };
138 const size_t size = (sizeof(mask_table) / sizeof(mask_table[0])) *
139 modmap->max_keypermod;
140 // get the values of the keyboard lock modifiers
141 // Note: Caps lock is not retrieved the same way as Scroll and Num lock
142 // since it doesn't need to be.
143 const KeyCode num_lock = XKeysymToKeycode(display, XK_Num_Lock);
144 const KeyCode scroll_lock = XKeysymToKeycode(display, XK_Scroll_Lock);
145
146 for (size_t cnt = 0; cnt < size; ++cnt) {
147 if (! modmap->modifiermap[cnt]) continue;
148
149 if (num_lock == modmap->modifiermap[cnt])
150 _numLockMask = mask_table[cnt / modmap->max_keypermod];
151 if (scroll_lock == modmap->modifiermap[cnt])
152 _scrollLockMask = mask_table[cnt / modmap->max_keypermod];
153 }
154 }
155
156 if (modmap) XFreeModifiermap(modmap);
157
158 _mask_list[0] = 0;
159 _mask_list[1] = LockMask;
160 _mask_list[2] = _numLockMask;
161 _mask_list[3] = LockMask | _numLockMask;
162 _mask_list[4] = _scrollLockMask;
163 _mask_list[5] = _scrollLockMask | LockMask;
164 _mask_list[6] = _scrollLockMask | _numLockMask;
165 _mask_list[7] = _scrollLockMask | LockMask | _numLockMask;
166
167 // Get information on all the screens which are available.
168 _screenInfoList.reserve(ScreenCount(display));
169 for (int i = 0; i < ScreenCount(display); ++i)
170 _screenInfoList.push_back(ScreenInfo(i));
171
172 _gccache = new GCCache(_screenInfoList.size());
173 }
174
175
176 void Display::destroy()
177 {
178 delete _gccache;
179 while (_grab_count > 0)
180 ungrab();
181 XCloseDisplay(display);
182 }
183
184
185 const ScreenInfo* Display::screenInfo(int snum) {
186 assert(snum >= 0);
187 assert(snum < static_cast<int>(_screenInfoList.size()));
188 return &_screenInfoList[snum];
189 }
190
191
192 const ScreenInfo* Display::findScreen(Window root)
193 {
194 ScreenInfoList::iterator it, end = _screenInfoList.end();
195 for (it = _screenInfoList.begin(); it != end; ++it)
196 if (it->rootWindow() == root)
197 return &(*it);
198 return 0;
199 }
200
201
202 void Display::grab()
203 {
204 if (_grab_count == 0)
205 XGrabServer(display);
206 _grab_count++;
207 }
208
209
210 void Display::ungrab()
211 {
212 if (_grab_count == 0) return;
213 _grab_count--;
214 if (_grab_count == 0)
215 XUngrabServer(display);
216 }
217
218
219
220
221
222
223
224 /*
225 * Grabs a button, but also grabs the button in every possible combination
226 * with the keyboard lock keys, so that they do not cancel out the event.
227
228 * if allow_scroll_lock is true then only the top half of the lock mask
229 * table is used and scroll lock is ignored. This value defaults to false.
230 */
231 void Display::grabButton(unsigned int button, unsigned int modifiers,
232 Window grab_window, bool owner_events,
233 unsigned int event_mask, int pointer_mode,
234 int keyboard_mode, Window confine_to,
235 Cursor cursor, bool allow_scroll_lock) {
236 unsigned int length = (allow_scroll_lock) ? 8 / 2:
237 8;
238 for (size_t cnt = 0; cnt < length; ++cnt)
239 XGrabButton(Display::display, button, modifiers | _mask_list[cnt],
240 grab_window, owner_events, event_mask, pointer_mode,
241 keyboard_mode, confine_to, cursor);
242 }
243
244
245 /*
246 * Releases the grab on a button, and ungrabs all possible combinations of the
247 * keyboard lock keys.
248 */
249 void Display::ungrabButton(unsigned int button, unsigned int modifiers,
250 Window grab_window) {
251 for (size_t cnt = 0; cnt < 8; ++cnt)
252 XUngrabButton(Display::display, button, modifiers | _mask_list[cnt],
253 grab_window);
254 }
255
256 void Display::grabKey(unsigned int keycode, unsigned int modifiers,
257 Window grab_window, bool owner_events,
258 int pointer_mode, int keyboard_mode,
259 bool allow_scroll_lock)
260 {
261 unsigned int length = (allow_scroll_lock) ? 8 / 2:
262 8;
263 for (size_t cnt = 0; cnt < length; ++cnt)
264 XGrabKey(Display::display, keycode, modifiers | _mask_list[cnt],
265 grab_window, owner_events, pointer_mode, keyboard_mode);
266 }
267
268 void Display::ungrabKey(unsigned int keycode, unsigned int modifiers,
269 Window grab_window)
270 {
271 for (size_t cnt = 0; cnt < 8; ++cnt)
272 XUngrabKey(Display::display, keycode, modifiers | _mask_list[cnt],
273 grab_window);
274 }
275
276 }
This page took 0.044597 seconds and 5 git commands to generate.