1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
|
/*
* ion/ioncore/rootwin.c
*
* Copyright (c) Tuomo Valkonen 1999-2007.
*
* See the included file LICENSE for details.
*/
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/time.h>
#include <time.h>
#include <signal.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xproto.h>
#include <libtu/objp.h>
#include "common.h"
#include "rootwin.h"
#include "binding.h"
#include "cursor.h"
#include "global.h"
#include "event.h"
#include "gr.h"
#include "clientwin.h"
#include "property.h"
#include "focus.h"
#include "regbind.h"
#include "screen.h"
#include "bindmaps.h"
#include <libextl/readconfig.h>
#include "resize.h"
#include "saveload.h"
#include "netwm.h"
#include "xwindow.h"
#include "log.h"
/*{{{ Error handling */
static bool redirect_error=FALSE;
static bool ignore_badwindow=TRUE;
static int my_redirect_error_handler(Display *UNUSED(dpy), XErrorEvent *UNUSED(ev))
{
redirect_error=TRUE;
return 0;
}
static void modifiers_to_string(char* target, const uint modifiers)
{
if ((modifiers & ShiftMask) != 0) {
strcpy(target, "Shift-");
target += strlen("Shift-");
}
if ((modifiers & LockMask) != 0) {
strcpy(target, "Lock-");
target += strlen("Lock-");
}
if ((modifiers & ControlMask) != 0) {
strcpy(target, "Control-");
target += strlen("Control-");
}
if ((modifiers & Mod1Mask) != 0) {
strcpy(target, "Mod1-");
target += strlen("Mod1-");
}
if ((modifiers & Mod2Mask) != 0) {
strcpy(target, "Mod2-");
target += strlen("Mod2-");
}
if ((modifiers & Mod3Mask) != 0) {
strcpy(target, "Mod3-");
target += strlen("Mod3-");
}
if ((modifiers & Mod4Mask) != 0) {
strcpy(target, "Mod4-");
target += strlen("Mod4-");
}
if ((modifiers & Mod5Mask) != 0) {
strcpy(target, "Mod5-");
target += strlen("Mod5-");
}
*target = '\0';
}
static int my_error_handler(Display *dpy, XErrorEvent *ev)
{
static char msg[128], request[64], num[32], mod_str[255];
if (ev->error_code==BadAccess && ev->request_code==X_GrabKey) {
int ksb = ioncore_ksb(ev->serial);
int modifiers = ioncore_modifiers(ev->serial);
if (ksb == -1)
LOG(WARN, GENERAL, "Failed to grab some key. Moving on without it.");
else{
char* key = XKeysymToString(ksb);
if(key == NULL)
LOG(WARN, GENERAL, "Failed to grab key with keysym %d. Moving on without it.", ksb);
else{
modifiers_to_string(mod_str, modifiers);
LOG(WARN, GENERAL, "Failed to grab key %s%s. Moving on without it.", mod_str, key);
}
}
return 0;
}
/* Just ignore bad window and similar errors; makes the rest of
* the code simpler.
*/
if((ev->error_code==BadWindow ||
(ev->error_code==BadMatch && ev->request_code==X_SetInputFocus) ||
(ev->error_code==BadDrawable && ev->request_code==X_GetGeometry)) &&
ignore_badwindow)
return 0;
#if 0
XmuPrintDefaultErrorMessage(dpy, ev, stderr);
#else
XGetErrorText(dpy, ev->error_code, msg, 128);
snprintf(num, 32, "%d", ev->request_code);
XGetErrorDatabaseText(dpy, "XRequest", num, "", request, 64);
if(request[0]=='\0')
snprintf(request, 64, "<unknown request>");
if(ev->minor_code!=0){
warn("[%d] %s (%d.%d) %#lx: %s", ev->serial, request,
ev->request_code, ev->minor_code, ev->resourceid,msg);
}else{
warn("[%d] %s (%d) %#lx: %s", ev->serial, request,
ev->request_code, ev->resourceid,msg);
}
#endif
kill(getpid(), SIGTRAP);
return 0;
}
/*}}}*/
/*{{{ Init/deinit */
static void scan_initial_windows(WRootWin *rootwin)
{
Window dummy_root, dummy_parent, *wins=NULL;
uint nwins=0, i, j;
XWMHints *hints;
XQueryTree(ioncore_g.dpy, WROOTWIN_ROOT(rootwin), &dummy_root, &dummy_parent,
&wins, &nwins);
for(i=0; i<nwins; i++){
if(wins[i]==None)
continue;
hints=XGetWMHints(ioncore_g.dpy, wins[i]);
if(hints!=NULL && hints->flags&IconWindowHint){
for(j=0; j<nwins; j++){
if(wins[j]==hints->icon_window){
wins[j]=None;
break;
}
}
}
if(hints!=NULL)
XFree((void*)hints);
}
rootwin->tmpwins=wins;
rootwin->tmpnwins=nwins;
}
void rootwin_manage_initial_windows(WRootWin *rootwin)
{
Window *wins=rootwin->tmpwins;
Window tfor=None;
int i, nwins=rootwin->tmpnwins;
rootwin->tmpwins=NULL;
rootwin->tmpnwins=0;
for(i=0; i<nwins; i++){
if(XWINDOW_REGION_OF(wins[i])!=NULL)
wins[i]=None;
if(wins[i]==None)
continue;
if(XGetTransientForHint(ioncore_g.dpy, wins[i], &tfor))
continue;
ioncore_manage_clientwin(wins[i], FALSE);
wins[i]=None;
}
for(i=0; i<nwins; i++){
if(wins[i]==None)
continue;
ioncore_manage_clientwin(wins[i], FALSE);
}
XFree((void*)wins);
}
static void create_wm_windows(WRootWin *rootwin)
{
const char *p[1];
rootwin->dummy_win=XCreateWindow(ioncore_g.dpy, WROOTWIN_ROOT(rootwin),
0, 0, 1, 1, 0,
CopyFromParent, InputOnly,
CopyFromParent, 0, NULL);
p[0] = "WRootWin";
xwindow_set_text_property(rootwin->dummy_win, XA_WM_NAME, p, 1);
XSelectInput(ioncore_g.dpy, rootwin->dummy_win, PropertyChangeMask);
}
static void preinit_gr(WRootWin *rootwin)
{
XGCValues gcv;
ulong gcvmask;
/* Create XOR gc (for resize) */
gcv.line_style=LineSolid;
gcv.join_style=JoinBevel;
gcv.cap_style=CapButt;
gcv.fill_style=FillSolid;
gcv.line_width=2;
gcv.subwindow_mode=IncludeInferiors;
gcv.function=GXxor;
gcv.foreground=~0L;
gcvmask=(GCLineStyle|GCLineWidth|GCFillStyle|
GCJoinStyle|GCCapStyle|GCFunction|
GCSubwindowMode|GCForeground);
rootwin->xor_gc=XCreateGC(ioncore_g.dpy, WROOTWIN_ROOT(rootwin),
gcvmask, &gcv);
}
static bool rootwin_init(WRootWin *rootwin, int xscr)
{
Display *dpy=ioncore_g.dpy;
WFitParams fp;
Window root;
WScreen *scr;
/* Try to select input on the root window */
root=RootWindow(dpy, xscr);
redirect_error=FALSE;
XSetErrorHandler(my_redirect_error_handler);
XSelectInput(dpy, root, IONCORE_EVENTMASK_ROOT);
XSync(dpy, 0);
XSetErrorHandler(my_error_handler);
if(redirect_error){
warn(TR("Unable to redirect root window events for screen %d."),
xscr);
return FALSE;
}
rootwin->xscr=xscr;
rootwin->default_cmap=DefaultColormap(dpy, xscr);
rootwin->tmpwins=NULL;
rootwin->tmpnwins=0;
rootwin->dummy_win=None;
rootwin->xor_gc=None;
fp.mode=REGION_FIT_EXACT;
fp.g.x=0; fp.g.y=0;
fp.g.w=DisplayWidth(dpy, xscr);
fp.g.h=DisplayHeight(dpy, xscr);
if(!window_do_init((WWindow*)rootwin, NULL, &fp, root, "WRootWin")){
return FALSE;
}
((WWindow*)rootwin)->event_mask=IONCORE_EVENTMASK_ROOT;
((WRegion*)rootwin)->flags|=REGION_BINDINGS_ARE_GRABBED|REGION_PLEASE_WARP;
((WRegion*)rootwin)->rootwin=rootwin;
REGION_MARK_MAPPED(rootwin);
scan_initial_windows(rootwin);
create_wm_windows(rootwin);
preinit_gr(rootwin);
netwm_init_rootwin(rootwin);
region_add_bindmap((WRegion*)rootwin, ioncore_screen_bindmap);
scr=create_screen(rootwin, &fp, xscr);
if(scr==NULL){
return FALSE;
}
region_set_manager((WRegion*)scr, (WRegion*)rootwin);
region_map((WRegion*)scr);
LINK_ITEM(*(WRegion**)&ioncore_g.rootwins, (WRegion*)rootwin, p_next, p_prev);
ioncore_screens_updated(rootwin);
xwindow_set_cursor(root, IONCORE_CURSOR_DEFAULT);
return TRUE;
}
WRootWin *create_rootwin(int xscr)
{
CREATEOBJ_IMPL(WRootWin, rootwin, (p, xscr));
}
void rootwin_deinit(WRootWin *rw)
{
WScreen *scr, *next;
FOR_ALL_SCREENS_W_NEXT(scr, next){
if(REGION_MANAGER(scr)==(WRegion*)rw)
destroy_obj((Obj*)scr);
}
UNLINK_ITEM(*(WRegion**)&ioncore_g.rootwins, (WRegion*)rw, p_next, p_prev);
XSelectInput(ioncore_g.dpy, WROOTWIN_ROOT(rw), 0);
XFreeGC(ioncore_g.dpy, rw->xor_gc);
window_deinit((WWindow*)rw);
}
/*}}}*/
/*{{{ region dynfun implementations */
static void rootwin_do_set_focus(WRootWin *rootwin, bool warp)
{
WRegion *sub;
sub=REGION_ACTIVE_SUB(rootwin);
if(sub==NULL || !REGION_IS_MAPPED(sub)){
WScreen *scr;
FOR_ALL_SCREENS(scr){
if(REGION_IS_MAPPED(scr)){
sub=(WRegion*)scr;
break;
}
}
}
if(sub!=NULL)
region_do_set_focus(sub, warp);
else
window_do_set_focus((WWindow*)rootwin, warp);
}
static bool rootwin_fitrep(WRootWin *UNUSED(rootwin), WWindow *UNUSED(par),
const WFitParams *UNUSED(fp))
{
D(warn("Don't know how to reparent or fit root windows."));
return FALSE;
}
static void rootwin_map(WRootWin *UNUSED(rootwin))
{
D(warn("Attempt to map a root window."));
}
static void rootwin_unmap(WRootWin *UNUSED(rootwin))
{
D(warn("Attempt to unmap a root window -- impossible."));
}
static void rootwin_managed_remove(WRootWin *rootwin, WRegion *reg)
{
region_unset_manager(reg, (WRegion*)rootwin);
}
static WRegion *rootwin_managed_disposeroot(WRootWin *UNUSED(rootwin), WRegion *reg)
{
WScreen *scr=OBJ_CAST(reg, WScreen);
if(scr!=NULL && scr==scr->prev_scr){
warn(TR("Only screen may not be destroyed/detached."));
return NULL;
}
return reg;
}
static Window rootwin_x_window(WRootWin *rootwin)
{
return WROOTWIN_ROOT(rootwin);
}
/*}}}*/
/*{{{ Misc */
static bool scr_ok(WRegion *r)
{
return (OBJ_IS(r, WScreen) && REGION_IS_MAPPED(r));
}
/*EXTL_DOC
* Returns the most recently active screen on root window \var{rootwin}.
*/
EXTL_SAFE
EXTL_EXPORT_MEMBER
WScreen *rootwin_current_scr(WRootWin *rootwin)
{
WRegion *r=REGION_ACTIVE_SUB(rootwin);
WScreen *scr;
/* There should be no non-WScreen as children or managed by us, but... */
if(r!=NULL && scr_ok(r))
return (WScreen*)r;
FOR_ALL_SCREENS(scr){
if(REGION_MANAGER(scr)==(WRegion*)rootwin
&& REGION_IS_MAPPED(scr)){
break;
}
}
return scr;
}
/*EXTL_DOC
* Warp the cursor pointer to this location
*
* I'm not *entirely* sure what 'safe' means, but this doesn't change internal
* notion state, so I guess it's 'safe'...
*/
EXTL_SAFE
EXTL_EXPORT_MEMBER
void rootwin_warp_pointer(WRootWin *root, int x, int y)
{
XWarpPointer(ioncore_g.dpy, None, WROOTWIN_ROOT(root), 0, 0, 0, 0, x, y);
}
/*EXTL_DOC
* Returns the first WRootWin
*/
EXTL_SAFE
EXTL_EXPORT
WRootWin *ioncore_rootwin()
{
return ioncore_g.rootwins;
}
/*}}}*/
/*{{{ Dynamic function table and class implementation */
static DynFunTab rootwin_dynfuntab[]={
{region_map, rootwin_map},
{region_unmap, rootwin_unmap},
{region_do_set_focus, rootwin_do_set_focus},
{(DynFun*)region_xwindow, (DynFun*)rootwin_x_window},
{(DynFun*)region_fitrep, (DynFun*)rootwin_fitrep},
{region_managed_remove, rootwin_managed_remove},
{(DynFun*)region_managed_disposeroot,
(DynFun*)rootwin_managed_disposeroot},
END_DYNFUNTAB
};
EXTL_EXPORT
IMPLCLASS(WRootWin, WWindow, rootwin_deinit, rootwin_dynfuntab);
/*}}}*/
|