]>
Dogcows Code - chaz/openbox/blob - otk/display.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
4 # include "../config.h"
8 #include "screeninfo.hh"
12 #include <X11/keysym.h>
15 #include <X11/XKBlib.h>
19 #include <X11/extensions/shape.h>
24 #endif // HAVE_STDIO_H
28 #endif // HAVE_STDLIB_H
32 #endif // HAVE_SIGNAL_H
36 #endif // HAVE_FCNTL_H
39 # include <sys/types.h>
41 #endif // HAVE_UNISTD_H
44 #define _(str) gettext(str)
50 Display
*OBDisplay::display
= (Display
*) 0;
51 bool OBDisplay::_xkb
= false;
52 int OBDisplay::_xkb_event_basep
= 0;
53 bool OBDisplay::_shape
= false;
54 int OBDisplay::_shape_event_basep
= 0;
55 bool OBDisplay::_xinerama
= false;
56 int OBDisplay::_xinerama_event_basep
= 0;
57 unsigned int OBDisplay::_mask_list
[8];
58 unsigned int OBDisplay::_scrollLockMask
= 0;
59 unsigned int OBDisplay::_numLockMask
= 0;
60 OBDisplay::ScreenInfoList
OBDisplay::_screenInfoList
;
61 BGCCache
*OBDisplay::_gccache
= (BGCCache
*) 0;
62 int OBDisplay::_grab_count
= 0;
65 int OBDisplay::xerrorHandler(Display
*d
, XErrorEvent
*e
)
70 //if (e->error_code != BadWindow)
72 XGetErrorText(d
, e
->error_code
, errtxt
, 128);
73 printf("X Error: %s\n", errtxt
);
74 if (e
->error_code
!= BadWindow
)
86 void OBDisplay::initialize(char *name
)
92 if (!(display
= XOpenDisplay(name
))) {
93 printf(_("Unable to open connection to the X server. Please set the \n\
94 DISPLAY environment variable approriately, or use the '-display' command \n\
95 line argument.\n\n"));
98 if (fcntl(ConnectionNumber(display
), F_SETFD
, 1) == -1) {
99 printf(_("Couldn't mark display connection as close-on-exec.\n\n"));
103 // set our error handler for X errors
104 XSetErrorHandler(xerrorHandler
);
106 // set the DISPLAY environment variable for any lauched children, to the
107 // display we're using, so they open in the right place.
108 // XXX rm -> std::string dtmp = "DISPLAY=" + DisplayString(display);
109 if (putenv(const_cast<char*>((std::string("DISPLAY=") +
110 DisplayString(display
)).c_str()))) {
111 printf(_("warning: couldn't set environment variable 'DISPLAY'\n"));
115 // find the availability of X extensions we like to use
117 _xkb
= XkbQueryExtension(display
, &junk
, &_xkb_event_basep
, &junk
, NULL
,
122 _shape
= XShapeQueryExtension(display
, &_shape_event_basep
, &junk
);
126 _xinerama
= XineramaQueryExtension(display
, &_xinerama_event_basep
, &junk
);
129 // get lock masks that are defined by the display (not constant)
130 XModifierKeymap
*modmap
;
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
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
);
146 for (size_t cnt
= 0; cnt
< size
; ++cnt
) {
147 if (! modmap
->modifiermap
[cnt
]) continue;
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
];
156 if (modmap
) XFreeModifiermap(modmap
);
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
;
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
));
172 _gccache
= new BGCCache(_screenInfoList
.size());
176 void OBDisplay::destroy()
179 while (_grab_count
> 0)
181 XCloseDisplay(display
);
185 const ScreenInfo
* OBDisplay::screenInfo(int snum
) {
187 assert(snum
< static_cast<int>(_screenInfoList
.size()));
188 return &_screenInfoList
[snum
];
192 const ScreenInfo
* OBDisplay::findScreen(Window root
)
194 ScreenInfoList::iterator it
, end
= _screenInfoList
.end();
195 for (it
= _screenInfoList
.begin(); it
!= end
; ++it
)
196 if (it
->rootWindow() == root
)
202 void OBDisplay::grab()
204 if (_grab_count
== 0)
205 XGrabServer(display
);
210 void OBDisplay::ungrab()
212 if (_grab_count
== 0) return;
214 if (_grab_count
== 0)
215 XUngrabServer(display
);
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.
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.
231 void OBDisplay::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:
238 for (size_t cnt
= 0; cnt
< length
; ++cnt
)
239 XGrabButton(otk::OBDisplay::display
, button
, modifiers
| _mask_list
[cnt
],
240 grab_window
, owner_events
, event_mask
, pointer_mode
,
241 keyboard_mode
, confine_to
, cursor
);
246 * Releases the grab on a button, and ungrabs all possible combinations of the
247 * keyboard lock keys.
249 void OBDisplay::ungrabButton(unsigned int button
, unsigned int modifiers
,
250 Window grab_window
) {
251 for (size_t cnt
= 0; cnt
< 8; ++cnt
)
252 XUngrabButton(otk::OBDisplay::display
, button
, modifiers
| _mask_list
[cnt
],
256 void OBDisplay::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
)
261 unsigned int length
= (allow_scroll_lock
) ? 8 / 2:
263 for (size_t cnt
= 0; cnt
< length
; ++cnt
)
264 XGrabKey(otk::OBDisplay::display
, keycode
, modifiers
| _mask_list
[cnt
],
265 grab_window
, owner_events
, pointer_mode
, keyboard_mode
);
268 void OBDisplay::ungrabKey(unsigned int keycode
, unsigned int modifiers
,
271 for (size_t cnt
= 0; cnt
< 8; ++cnt
)
272 XUngrabKey(otk::OBDisplay::display
, keycode
, modifiers
| _mask_list
[cnt
],
This page took 0.050007 seconds and 4 git commands to generate.