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