]> icculus.org git repositories - mikachu/openbox.git/blob - src/BaseDisplay.cc
use the raw screen size not the strut adjusted size to determine max_height and width...
[mikachu/openbox.git] / src / BaseDisplay.cc
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // BaseDisplay.cc for Blackbox - an X11 Window manager
3 // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a
7 // copy of this software and associated documentation files (the "Software"),
8 // to deal in the Software without restriction, including without limitation
9 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 // and/or sell copies of the Software, and to permit persons to whom the
11 // Software is furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23
24 #ifdef    HAVE_CONFIG_H
25 #  include "../config.h"
26 #endif // HAVE_CONFIG_H
27
28 extern "C" {
29 #include <X11/Xlib.h>
30 #include <X11/Xatom.h>
31 #include <X11/Xutil.h>
32 #include <X11/keysym.h>
33
34 #ifdef    SHAPE
35 #  include <X11/extensions/shape.h>
36 #endif // SHAPE
37
38 #ifdef    HAVE_FCNTL_H
39 #  include <fcntl.h>
40 #endif // HAVE_FCNTL_H
41
42 #ifdef    HAVE_STDIO_H
43 #  include <stdio.h>
44 #endif // HAVE_STDIO_H
45
46 #ifdef HAVE_STDLIB_H
47 #  include <stdlib.h>
48 #endif // HAVE_STDLIB_H
49
50 #ifdef HAVE_STRING_H
51 #  include <string.h>
52 #endif // HAVE_STRING_H
53
54 #ifdef    HAVE_UNISTD_H
55 #  include <sys/types.h>
56 #  include <unistd.h>
57 #endif // HAVE_UNISTD_H
58
59 #ifdef    HAVE_SYS_SELECT_H
60 #  include <sys/select.h>
61 #endif // HAVE_SYS_SELECT_H
62
63 #ifdef    HAVE_SIGNAL_H
64 #  include <signal.h>
65 #endif // HAVE_SIGNAL_H
66
67 #ifndef   SA_NODEFER
68 #  ifdef   SA_INTERRUPT
69 #    define SA_NODEFER SA_INTERRUPT
70 #  else // !SA_INTERRUPT
71 #    define SA_NODEFER (0)
72 #  endif // SA_INTERRUPT
73 #endif // SA_NODEFER
74
75 #ifdef    HAVE_SYS_WAIT_H
76 #  include <sys/types.h>
77 #  include <sys/wait.h>
78 #endif // HAVE_SYS_WAIT_H
79 }
80
81 #include <sstream>
82 using std::string;
83
84 #include "i18n.hh"
85 #include "BaseDisplay.hh"
86 #include "GCCache.hh"
87 #include "Timer.hh"
88 #include "Util.hh"
89
90
91 // X error handler to handle any and all X errors while the application is
92 // running
93 static bool internal_error = False;
94 static Window last_bad_window = None;
95
96 BaseDisplay *base_display;
97
98 #ifdef    DEBUG
99 static int handleXErrors(Display *d, XErrorEvent *e) {
100   char errtxt[128];
101
102   XGetErrorText(d, e->error_code, errtxt, 128);
103   fprintf(stderr,
104           i18n(BaseDisplaySet, BaseDisplayXError,
105                "%s:  X error: %s(%d) opcodes %d/%d\n  resource 0x%lx\n"),
106           base_display->getApplicationName(), errtxt, e->error_code,
107           e->request_code, e->minor_code, e->resourceid);
108 #else
109 static int handleXErrors(Display *, XErrorEvent *e) {
110 #endif // DEBUG
111
112   if (e->error_code == BadWindow) last_bad_window = e->resourceid;
113   if (internal_error) abort();
114
115   return(False);
116 }
117
118
119 // signal handler to allow for proper and gentle shutdown
120
121 #ifndef   HAVE_SIGACTION
122 static RETSIGTYPE signalhandler(int sig) {
123 #else //  HAVE_SIGACTION
124 static void signalhandler(int sig) {
125 #endif // HAVE_SIGACTION
126
127   static int re_enter = 0;
128
129   switch (sig) {
130   case SIGCHLD:
131     int status;
132     waitpid(-1, &status, WNOHANG | WUNTRACED);
133
134 #ifndef   HAVE_SIGACTION
135     // assume broken, braindead sysv signal semantics
136     signal(SIGCHLD, (RETSIGTYPE (*)(int)) signalhandler);
137 #endif // HAVE_SIGACTION
138
139     break;
140
141   default:
142     if (base_display->handleSignal(sig)) {
143
144 #ifndef   HAVE_SIGACTION
145       // assume broken, braindead sysv signal semantics
146       signal(sig, (RETSIGTYPE (*)(int)) signalhandler);
147 #endif // HAVE_SIGACTION
148
149       return;
150     }
151
152     fprintf(stderr, i18n(BaseDisplaySet, BaseDisplaySignalCaught,
153                          "%s:  signal %d caught\n"),
154             base_display->getApplicationName(), sig);
155
156     if (! base_display->isStartup() && ! re_enter) {
157       internal_error = True;
158
159       re_enter = 1;
160       fprintf(stderr, i18n(BaseDisplaySet, BaseDisplayShuttingDown,
161                            "shutting down\n"));
162       base_display->shutdown();
163     }
164
165     if (sig != SIGTERM && sig != SIGINT) {
166       fprintf(stderr, i18n(BaseDisplaySet, BaseDisplayAborting,
167                            "aborting... dumping core\n"));
168       abort();
169     }
170
171     exit(0);
172
173     break;
174   }
175 }
176
177
178 BaseDisplay::BaseDisplay(const char *app_name, const char *dpy_name) {
179   application_name = app_name;
180
181   run_state = STARTUP;
182   last_bad_window = None;
183
184   ::base_display = this;
185
186 #ifdef    HAVE_SIGACTION
187   struct sigaction action;
188
189   action.sa_handler = signalhandler;
190   action.sa_mask = sigset_t();
191   action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
192
193   sigaction(SIGPIPE, &action, NULL);
194   sigaction(SIGSEGV, &action, NULL);
195   sigaction(SIGFPE, &action, NULL);
196   sigaction(SIGTERM, &action, NULL);
197   sigaction(SIGINT, &action, NULL);
198   sigaction(SIGCHLD, &action, NULL);
199   sigaction(SIGHUP, &action, NULL);
200   sigaction(SIGUSR1, &action, NULL);
201   sigaction(SIGUSR2, &action, NULL);
202 #else // !HAVE_SIGACTION
203   signal(SIGPIPE, (RETSIGTYPE (*)(int)) signalhandler);
204   signal(SIGSEGV, (RETSIGTYPE (*)(int)) signalhandler);
205   signal(SIGFPE, (RETSIGTYPE (*)(int)) signalhandler);
206   signal(SIGTERM, (RETSIGTYPE (*)(int)) signalhandler);
207   signal(SIGINT, (RETSIGTYPE (*)(int)) signalhandler);
208   signal(SIGUSR1, (RETSIGTYPE (*)(int)) signalhandler);
209   signal(SIGUSR2, (RETSIGTYPE (*)(int)) signalhandler);
210   signal(SIGHUP, (RETSIGTYPE (*)(int)) signalhandler);
211   signal(SIGCHLD, (RETSIGTYPE (*)(int)) signalhandler);
212 #endif // HAVE_SIGACTION
213
214   if (! (display = XOpenDisplay(dpy_name))) {
215     fprintf(stderr,
216             i18n(BaseDisplaySet, BaseDisplayXConnectFail,
217                "BaseDisplay::BaseDisplay: connection to X server failed.\n"));
218     ::exit(2);
219   } else if (fcntl(ConnectionNumber(display), F_SETFD, 1) == -1) {
220     fprintf(stderr,
221             i18n(BaseDisplaySet, BaseDisplayCloseOnExecFail,
222                  "BaseDisplay::BaseDisplay: couldn't mark display connection "
223                  "as close-on-exec\n"));
224     ::exit(2);
225   }
226
227   display_name = XDisplayName(dpy_name);
228
229 #ifdef    SHAPE
230   shape.extensions = XShapeQueryExtension(display, &shape.event_basep,
231                                           &shape.error_basep);
232 #else // !SHAPE
233   shape.extensions = False;
234 #endif // SHAPE
235
236   XSetErrorHandler((XErrorHandler) handleXErrors);
237
238   screenInfoList.reserve(ScreenCount(display));
239   for (int i = 0; i < ScreenCount(display); ++i)
240     screenInfoList.push_back(ScreenInfo(this, i));
241
242 #ifndef   NOCLOBBER
243   NumLockMask = ScrollLockMask = 0;
244
245   const XModifierKeymap* const modmap = XGetModifierMapping(display);
246   if (modmap && modmap->max_keypermod > 0) {
247     const int mask_table[] = {
248       ShiftMask, LockMask, ControlMask, Mod1Mask,
249       Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask
250     };
251     const size_t size = (sizeof(mask_table) / sizeof(mask_table[0])) *
252       modmap->max_keypermod;
253     // get the values of the keyboard lock modifiers
254     // Note: Caps lock is not retrieved the same way as Scroll and Num lock
255     // since it doesn't need to be.
256     const KeyCode num_lock = XKeysymToKeycode(display, XK_Num_Lock);
257     const KeyCode scroll_lock = XKeysymToKeycode(display, XK_Scroll_Lock);
258
259     for (size_t cnt = 0; cnt < size; ++cnt) {
260       if (! modmap->modifiermap[cnt]) continue;
261
262       if (num_lock == modmap->modifiermap[cnt])
263         NumLockMask = mask_table[cnt / modmap->max_keypermod];
264       if (scroll_lock == modmap->modifiermap[cnt])
265         ScrollLockMask = mask_table[cnt / modmap->max_keypermod];
266     }
267   }
268
269   MaskList[0] = 0;
270   MaskList[1] = LockMask;
271   MaskList[2] = NumLockMask;
272   MaskList[3] = ScrollLockMask;
273   MaskList[4] = LockMask | NumLockMask;
274   MaskList[5] = NumLockMask  | ScrollLockMask;
275   MaskList[6] = LockMask | ScrollLockMask;
276   MaskList[7] = LockMask | NumLockMask | ScrollLockMask;
277   MaskListLength = sizeof(MaskList) / sizeof(MaskList[0]);
278
279   if (modmap) XFreeModifiermap(const_cast<XModifierKeymap*>(modmap));
280 #else  // NOCLOBBER
281   NumLockMask = 0;
282   ScrollLockMask = 0;
283 #endif // NOCLOBBER
284
285   gccache = 0;
286 }
287
288
289 BaseDisplay::~BaseDisplay(void) {
290   delete gccache;
291
292   XCloseDisplay(display);
293 }
294
295
296 void BaseDisplay::eventLoop(void) {
297   run();
298
299   const int xfd = ConnectionNumber(display);
300
301   while (run_state == RUNNING && ! internal_error) {
302     if (XPending(display)) {
303       XEvent e;
304       XNextEvent(display, &e);
305
306       if (last_bad_window != None && e.xany.window == last_bad_window)
307         continue;
308
309       last_bad_window = None;
310       process_event(&e);
311     } else {
312       fd_set rfds;
313       timeval now, tm, *timeout = (timeval *) 0;
314
315       FD_ZERO(&rfds);
316       FD_SET(xfd, &rfds);
317
318       if (! timerList.empty()) {
319         const BTimer* const timer = timerList.top();
320
321         gettimeofday(&now, 0);
322         tm = timer->timeRemaining(now);
323
324         timeout = &tm;
325       }
326
327       select(xfd + 1, &rfds, 0, 0, timeout);
328
329       // check for timer timeout
330       gettimeofday(&now, 0);
331
332       // there is a small chance for deadlock here:
333       // *IF* the timer list keeps getting refreshed *AND* the time between
334       // timer->start() and timer->shouldFire() is within the timer's period
335       // then the timer will keep firing.  This should be VERY near impossible.
336       while (! timerList.empty()) {
337         BTimer *timer = timerList.top();
338         if (! timer->shouldFire(now))
339           break;
340
341         timerList.pop();
342
343         timer->fireTimeout();
344         timer->halt();
345         if (timer->isRecurring())
346           timer->start();
347       }
348     }
349   }
350 }
351
352
353 void BaseDisplay::addTimer(BTimer *timer) {
354   if (! timer) return;
355
356   timerList.push(timer);
357 }
358
359
360 void BaseDisplay::removeTimer(BTimer *timer) {
361   timerList.release(timer);
362 }
363
364
365 /*
366  * Grabs a button, but also grabs the button in every possible combination
367  * with the keyboard lock keys, so that they do not cancel out the event.
368  */
369 void BaseDisplay::grabButton(unsigned int button, unsigned int modifiers,
370                              Window grab_window, bool owner_events,
371                              unsigned int event_mask, int pointer_mode,
372                              int keyboard_mode, Window confine_to,
373                              Cursor cursor) const {
374 #ifndef   NOCLOBBER
375   for (size_t cnt = 0; cnt < MaskListLength; ++cnt)
376     XGrabButton(display, button, modifiers | MaskList[cnt], grab_window,
377                 owner_events, event_mask, pointer_mode, keyboard_mode,
378                 confine_to, cursor);
379 #else  // NOCLOBBER
380   XGrabButton(display, button, modifiers, grab_window,
381               owner_events, event_mask, pointer_mode, keyboard_mode,
382               confine_to, cursor);
383 #endif // NOCLOBBER
384 }
385
386 /*
387  * Releases the grab on a button, and ungrabs all possible combinations of the
388  * keyboard lock keys.
389  */
390 void BaseDisplay::ungrabButton(unsigned int button, unsigned int modifiers,
391                                Window grab_window) const {
392 #ifndef   NOCLOBBER
393   for (size_t cnt = 0; cnt < MaskListLength; ++cnt)
394     XUngrabButton(display, button, modifiers | MaskList[cnt], grab_window);
395 #else  // NOCLOBBER
396   XUngrabButton(display, button, modifiers, grab_window);
397 #endif // NOCLOBBER
398 }
399
400
401 const ScreenInfo* BaseDisplay::getScreenInfo(unsigned int s) const {
402   if (s < screenInfoList.size())
403     return &screenInfoList[s];
404   return (const ScreenInfo*) 0;
405 }
406
407
408 BGCCache *BaseDisplay::gcCache(void) const
409 {
410     if (! gccache) gccache = new BGCCache(this);
411     return gccache;
412 }
413
414
415 ScreenInfo::ScreenInfo(BaseDisplay *d, unsigned int num) {
416   basedisplay = d;
417   screen_number = num;
418
419   root_window = RootWindow(basedisplay->getXDisplay(), screen_number);
420   depth = DefaultDepth(basedisplay->getXDisplay(), screen_number);
421
422   rect.setSize(WidthOfScreen(ScreenOfDisplay(basedisplay->getXDisplay(),
423                                              screen_number)),
424                HeightOfScreen(ScreenOfDisplay(basedisplay->getXDisplay(),
425                                               screen_number)));
426
427   // search for a TrueColor Visual... if we can't find one... we will use the
428   // default visual for the screen
429   XVisualInfo vinfo_template, *vinfo_return;
430   int vinfo_nitems;
431
432   vinfo_template.screen = screen_number;
433   vinfo_template.c_class = TrueColor;
434
435   visual = (Visual *) 0;
436
437   vinfo_return = XGetVisualInfo(basedisplay->getXDisplay(),
438                                 VisualScreenMask | VisualClassMask,
439                                 &vinfo_template, &vinfo_nitems);
440   if (vinfo_return && vinfo_nitems > 0) {
441     for (int i = 0; i < vinfo_nitems; i++) {
442       if (depth < (vinfo_return + i)->depth) {
443         depth = (vinfo_return + i)->depth;
444         visual = (vinfo_return + i)->visual;
445       }
446     }
447
448     XFree(vinfo_return);
449   }
450
451   if (visual) {
452     colormap = XCreateColormap(basedisplay->getXDisplay(), root_window,
453                                visual, AllocNone);
454   } else {
455     visual = DefaultVisual(basedisplay->getXDisplay(), screen_number);
456     colormap = DefaultColormap(basedisplay->getXDisplay(), screen_number);
457   }
458
459   // get the default display string and strip the screen number
460   string default_string = DisplayString(basedisplay->getXDisplay());
461   const string::size_type pos = default_string.rfind(".");
462   if (pos != string::npos)
463     default_string.resize(pos);
464
465   std::ostringstream formatter;
466   formatter << "DISPLAY=" << default_string << '.' << screen_number;
467   display_string = formatter.str();
468 }