ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvttoolkit.C
(Generate patch)

Comparing rxvt-unicode/src/rxvttoolkit.C (file contents):
Revision 1.86 by root, Mon Dec 24 08:00:18 2007 UTC vs.
Revision 1.146 by root, Sun Dec 14 04:52:10 2014 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvttoolkit.C 2 * File: rxvttoolkit.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2003-2011 Marc Lehmann <schmorp@schmorp.de>
7 * Copyright (c) 2011 Emanuele Giaquinta <e.giaquinta@glauco.it>
7 * 8 *
8 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 10 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version. 12 * (at your option) any later version.
12 * 13 *
13 * This program is distributed in the hope that it will be useful, 14 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 23
23#include "../config.h" 24#include "../config.h"
24#include <rxvt.h> 25#include <rxvt.h>
25#include <rxvttoolkit.h> 26#include <rxvttoolkit.h>
26 27
28#include <stdlib.h>
29
27#include <unistd.h> 30#include <unistd.h>
28#include <fcntl.h> 31#include <fcntl.h>
29 32
30#include <sys/utsname.h> 33#include <sys/utsname.h>
31#include <sys/socket.h> 34#include <sys/socket.h>
33 36
34#if XFT 37#if XFT
35# include <X11/extensions/Xrender.h> 38# include <X11/extensions/Xrender.h>
36#endif 39#endif
37 40
38const char *const xa_names[] = 41static const char *const xa_names[] =
39{ 42{
40 "TEXT", 43 "TEXT",
41 "COMPOUND_TEXT", 44 "COMPOUND_TEXT",
42 "UTF8_STRING", 45 "UTF8_STRING",
43 "MULTIPLE", 46 "MULTIPLE",
59#if ENABLE_EWMH 62#if ENABLE_EWMH
60 "_NET_WM_PID", 63 "_NET_WM_PID",
61 "_NET_WM_NAME", 64 "_NET_WM_NAME",
62 "_NET_WM_ICON_NAME", 65 "_NET_WM_ICON_NAME",
63 "_NET_WM_PING", 66 "_NET_WM_PING",
67 "_NET_WM_ICON",
64#endif 68#endif
65#if USE_XIM 69#if USE_XIM
66 "WM_LOCALE_NAME", 70 "WM_LOCALE_NAME",
67 "XIM_SERVERS", 71 "XIM_SERVERS",
68#endif 72#endif
69#ifdef ENABLE_TRANSPARENCY 73#if HAVE_IMG || ENABLE_PERL
70 "_XROOTPMAP_ID", 74 "_XROOTPMAP_ID",
71 "ESETROOT_PMAP_ID", 75 "ESETROOT_PMAP_ID",
72#endif 76#endif
73#if ENABLE_XEMBED 77#if ENABLE_XEMBED
74 "_XEMBED", 78 "_XEMBED",
151 put (*this->begin ()); 155 put (*this->begin ());
152} 156}
153 157
154///////////////////////////////////////////////////////////////////////////// 158/////////////////////////////////////////////////////////////////////////////
155 159
156#ifdef USE_XIM 160#if USE_XIM
157 161
158static void 162static void
159#if XIMCB_PROTO_BROKEN 163#if XIMCB_PROTO_BROKEN
160im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3) 164im_destroy_cb (XIC unused1, XPointer client_data, XPointer unused3)
161#else 165#else
226{ 230{
227} 231}
228 232
229rxvt_drawable &rxvt_screen::scratch_drawable (int w, int h) 233rxvt_drawable &rxvt_screen::scratch_drawable (int w, int h)
230{ 234{
231 // it's actually faster to re-allocate every time. don't ask me
232 // why, but its likely no big deal there are no roundtrips
233 // (I think/hope).
234 if (!scratch_area || w > scratch_w || h > scratch_h || 1/*D*/) 235 if (!scratch_area || w > scratch_w || h > scratch_h)
235 { 236 {
236 if (scratch_area) 237 if (scratch_area)
237 { 238 {
238 XFreePixmap (dpy, scratch_area->drawable); 239 XFreePixmap (dpy, scratch_area->drawable);
239 delete scratch_area; 240 delete scratch_area;
261 depth = DefaultDepthOfScreen (screen); 262 depth = DefaultDepthOfScreen (screen);
262 visual = DefaultVisualOfScreen (screen); 263 visual = DefaultVisualOfScreen (screen);
263 cmap = DefaultColormapOfScreen (screen); 264 cmap = DefaultColormapOfScreen (screen);
264} 265}
265 266
267#if ENABLE_FRILLS
268
266void 269void
267rxvt_screen::select_visual (int bitdepth) 270rxvt_screen::select_visual (int id)
268{ 271{
269#if XFT
270 XVisualInfo vinfo; 272 XVisualInfo vinfo;
273 vinfo.visualid = id;
274 int n;
275
276 if (XVisualInfo *vi = XGetVisualInfo (dpy, VisualIDMask, &vinfo, &n))
277 {
278 depth = vi->depth;
279 visual = vi->visual;
280
281 XFree (vi);
282
283 cmap = XCreateColormap (dpy, display->root, visual, AllocNone);
284 }
285 else
286 rxvt_warn ("no visual found for requested id 0x%02x, using default visual.\n", id);
287}
288
289void
290rxvt_screen::select_depth (int bitdepth)
291{
292 XVisualInfo vinfo;
271 293
272 if (XMatchVisualInfo (dpy, display->screen, bitdepth, TrueColor, &vinfo)) 294 if (XMatchVisualInfo (dpy, display->screen, bitdepth, TrueColor, &vinfo))
273 {
274 depth = bitdepth;
275 visual = vinfo.visual; 295 select_visual (vinfo.visualid);
276 cmap = XCreateColormap (dpy, display->root, visual, AllocNone); 296 else
277 } 297 rxvt_warn ("no visual found for requested depth %d, using default visual.\n", bitdepth);
278#endif
279} 298}
299
300#endif
280 301
281void 302void
282rxvt_screen::clear () 303rxvt_screen::clear ()
283{ 304{
284#if XFT 305#if XFT
296///////////////////////////////////////////////////////////////////////////// 317/////////////////////////////////////////////////////////////////////////////
297 318
298rxvt_display::rxvt_display (const char *id) 319rxvt_display::rxvt_display (const char *id)
299: refcounted (id) 320: refcounted (id)
300, selection_owner (0) 321, selection_owner (0)
322, clipboard_owner (0)
301{ 323{
302 x_ev .set<rxvt_display, &rxvt_display::x_cb > (this); 324 x_ev .set<rxvt_display, &rxvt_display::x_cb > (this);
303 flush_ev.set<rxvt_display, &rxvt_display::flush_cb> (this); 325 flush_ev.set<rxvt_display, &rxvt_display::flush_cb> (this);
304} 326}
305 327
312 /* 334 /*
313 * get resources using the X library function 335 * get resources using the X library function
314 */ 336 */
315 char *displayResource, *xe; 337 char *displayResource, *xe;
316 XrmDatabase rdb1, database = 0; 338 XrmDatabase rdb1, database = 0;
339
340#if !XLIB_ILLEGAL_ACCESS
341 /* work around a bug in XrmSetDatabase where it frees the db, see ref_next */
342 database = XrmGetStringDatabase ("");
343#endif
317 344
318 // for ordering, see for example http://www.faqs.org/faqs/Xt-FAQ/ Subject: 20 345 // for ordering, see for example http://www.faqs.org/faqs/Xt-FAQ/ Subject: 20
319 // as opposed to "standard practise", we always read in ~/.Xdefaults 346 // as opposed to "standard practise", we always read in ~/.Xdefaults
320 347
321 // 6. System wide per application default file. 348 // 6. System wide per application default file.
360 XA_STRING, &actual_type, &actual_format, 387 XA_STRING, &actual_type, &actual_format,
361 &nitems, &nremaining, 388 &nitems, &nremaining,
362 (unsigned char **)&val) == Success 389 (unsigned char **)&val) == Success
363 && actual_type == XA_STRING 390 && actual_type == XA_STRING
364 && actual_format == 8) 391 && actual_format == 8)
365 displayResource = val; 392 displayResource = val;
366 else 393 else
367 { 394 {
368 displayResource = 0; 395 displayResource = 0;
369 396
370 if (val) 397 if (val)
371 XFree(val); 398 XFree (val);
372 } 399 }
373 400
374#if XLIB_ILLEGAL_ACCESS 401#if XLIB_ILLEGAL_ACCESS
375 dpy->xdefaults = displayResource; 402 dpy->xdefaults = displayResource;
376#endif 403#endif
377 } 404 }
425bool rxvt_display::ref_init () 452bool rxvt_display::ref_init ()
426{ 453{
427#ifdef LOCAL_X_IS_UNIX 454#ifdef LOCAL_X_IS_UNIX
428 if (id[0] == ':') 455 if (id[0] == ':')
429 { 456 {
430 val = rxvt_malloc (5 + strlen (id) + 1); 457 char *val = rxvt_temp_buf<char> (5 + strlen (id) + 1);
458
431 strcpy (val, "unix/"); 459 strcpy (val, "unix/");
432 strcat (val, id); 460 strcat (val, id);
461
433 dpy = XOpenDisplay (val); 462 dpy = XOpenDisplay (val);
434 free (val);
435 } 463 }
436 else 464 else
437#endif 465#endif
438 dpy = 0; 466 dpy = 0;
439 467
444 return false; 472 return false;
445 473
446 screen = DefaultScreen (dpy); 474 screen = DefaultScreen (dpy);
447 root = DefaultRootWindow (dpy); 475 root = DefaultRootWindow (dpy);
448 476
449 assert (sizeof (xa_names) / sizeof (char *) == NUM_XA); 477 assert (ecb_array_length (xa_names) == NUM_XA);
450 XInternAtoms (dpy, (char **)xa_names, NUM_XA, False, xa); 478 XInternAtoms (dpy, (char **)xa_names, NUM_XA, False, xa);
451 479
452 XrmSetDatabase (dpy, get_resources (false)); 480 XrmSetDatabase (dpy, get_resources (false));
453 481
454#ifdef POINTER_BLANK 482#ifdef POINTER_BLANK
460 blank_cursor = XCreateGlyphCursor (dpy, f, f, ' ', ' ', 488 blank_cursor = XCreateGlyphCursor (dpy, f, f, ' ', ' ',
461 &blackcolour, &blackcolour); 489 &blackcolour, &blackcolour);
462 XUnloadFont (dpy, f); 490 XUnloadFont (dpy, f);
463#endif 491#endif
464 492
493 flags = 0;
494#if XRENDER
495 int major, minor;
496 if (XRenderQueryVersion (dpy, &major, &minor))
497 if (major > 0 || (major == 0 && minor >= 11))
498 {
499 flags |= DISPLAY_HAS_RENDER;
500
501 if (XFilters *filters = XRenderQueryFilters (dpy, root))
502 {
503 for (int i = 0; i < filters->nfilter; i++)
504 if (!strcmp (filters->filter [i], FilterConvolution))
505 flags |= DISPLAY_HAS_RENDER_CONV;
506
507 XFree (filters);
508 }
509 }
510#endif
511
465 int fd = XConnectionNumber (dpy); 512 int fd = XConnectionNumber (dpy);
466 513
467 // try to detect wether we have a local connection. 514 // try to detect whether we have a local connection.
468 // assume unix domain socket == local, everything else not 515 // assume unix domain socket == local, everything else not
469 // TODO: might want to check for inet/127.0.0.1 516 // TODO: might want to check for inet/127.0.0.1
470 is_local = 0; 517 is_local = 0;
471 sockaddr_un sa; 518 sockaddr_un sa;
472 socklen_t sl = sizeof (sa); 519 socklen_t sl = sizeof (sa);
486} 533}
487 534
488void 535void
489rxvt_display::ref_next () 536rxvt_display::ref_next ()
490{ 537{
491 // TODO: somehow check wether the database files/resources changed 538 // TODO: somehow check whether the database files/resources changed
492 // before affording re-loading/parsing 539 // before affording re-loading/parsing
493 XrmDestroyDatabase (XrmGetDatabase (dpy)); 540 XrmDestroyDatabase (XrmGetDatabase (dpy));
541#if XLIB_ILLEGAL_ACCESS
542 /* work around a bug in XrmSetDatabase where it frees the db */
543 dpy->db = 0;
544#endif
494 XrmSetDatabase (dpy, get_resources (true)); 545 XrmSetDatabase (dpy, get_resources (true));
495} 546}
496 547
497rxvt_display::~rxvt_display () 548rxvt_display::~rxvt_display ()
498{ 549{
502#ifdef POINTER_BLANK 553#ifdef POINTER_BLANK
503 XFreeCursor (dpy, blank_cursor); 554 XFreeCursor (dpy, blank_cursor);
504#endif 555#endif
505 x_ev.stop (); 556 x_ev.stop ();
506 flush_ev.stop (); 557 flush_ev.stop ();
507#ifdef USE_XIM 558#if USE_XIM
508 xims.clear (); 559 xims.clear ();
509#endif 560#endif
561 XrmDestroyDatabase (XrmGetDatabase (dpy));
510 XCloseDisplay (dpy); 562 XCloseDisplay (dpy);
511} 563}
512 564
513#ifdef USE_XIM 565#if USE_XIM
514void rxvt_display::im_change_cb () 566void rxvt_display::im_change_cb ()
515{ 567{
516 for (im_watcher **i = imw.begin (); i != imw.end (); ++i) 568 for (im_watcher **i = imw.begin (); i != imw.end (); ++i)
517 (*i)->call (); 569 (*i)->call ();
518} 570}
526 unsigned long nitems, bytes_after; 578 unsigned long nitems, bytes_after;
527 579
528 if (XGetWindowProperty (dpy, root, xa[XA_XIM_SERVERS], 0L, 1000000L, 580 if (XGetWindowProperty (dpy, root, xa[XA_XIM_SERVERS], 0L, 1000000L,
529 False, XA_ATOM, &actual_type, &actual_format, 581 False, XA_ATOM, &actual_type, &actual_format,
530 &nitems, &bytes_after, (unsigned char **)&atoms) 582 &nitems, &bytes_after, (unsigned char **)&atoms)
531 != Success ) 583 != Success)
532 return; 584 return;
533 585
534 if (actual_type == XA_ATOM && actual_format == 32) 586 if (actual_type == XA_ATOM && actual_format == 32)
535 for (int i = 0; i < nitems; i++) 587 for (int i = 0; i < nitems; i++)
536 if (XGetSelectionOwner (dpy, atoms[i])) 588 if (XGetSelectionOwner (dpy, atoms[i]))
537 { 589 {
538 im_change_cb (); 590 im_change_cb ();
539 break; 591 break;
543} 595}
544#endif 596#endif
545 597
546void rxvt_display::x_cb (ev::io &w, int revents) 598void rxvt_display::x_cb (ev::io &w, int revents)
547{ 599{
548 while (XEventsQueued (dpy, QueuedAfterReading)) 600 flush_ev.start ();
549 {
550 XEvent xev;
551 XNextEvent (dpy, &xev);
552
553#ifdef USE_XIM
554 if (!XFilterEvent (&xev, None))
555 {
556 if (xev.type == PropertyNotify
557 && xev.xany.window == root
558 && xev.xproperty.atom == xa[XA_XIM_SERVERS])
559 im_change_check ();
560#endif
561 if (xev.type == MappingNotify)
562 XRefreshKeyboardMapping (&xev.xmapping);
563
564 for (int i = xw.size (); i--; )
565 {
566 if (!xw[i])
567 xw.erase_unordered (i);
568 else if (xw[i]->window == xev.xany.window)
569 xw[i]->call (xev);
570 }
571#ifdef USE_XIM
572 }
573#endif
574 }
575} 601}
576 602
577void rxvt_display::flush_cb (ev::prepare &w, int revents) 603void rxvt_display::flush_cb (ev::prepare &w, int revents)
578{ 604{
605 while (XEventsQueued (dpy, QueuedAfterFlush))
606 do
607 {
608 XEvent xev;
609 XNextEvent (dpy, &xev);
610
611#if USE_XIM
612 if (!XFilterEvent (&xev, None))
613 {
614 if (xev.type == PropertyNotify
615 && xev.xany.window == root
616 && xev.xproperty.atom == xa[XA_XIM_SERVERS])
617 im_change_check ();
618#endif
619 if (xev.type == MappingNotify)
620 XRefreshKeyboardMapping (&xev.xmapping);
621
622 for (int i = xw.size (); i--; )
623 {
624 if (!xw[i])
625 xw.erase_unordered (i);
626 else if (xw[i]->window == xev.xany.window)
627 xw[i]->call (xev);
628 }
629#if USE_XIM
630 }
631#endif
632 }
633 while (XEventsQueued (dpy, QueuedAlready));
634
579 w.stop (); 635 w.stop ();
580 XFlush (dpy);
581} 636}
582 637
583void rxvt_display::reg (xevent_watcher *w) 638void rxvt_display::reg (xevent_watcher *w)
584{ 639{
585 if (!w->active) 640 if (!w->active)
596 xw[w->active - 1] = 0; 651 xw[w->active - 1] = 0;
597 w->active = 0; 652 w->active = 0;
598 } 653 }
599} 654}
600 655
601void rxvt_display::set_selection_owner (rxvt_term *owner) 656void rxvt_display::set_selection_owner (rxvt_term *owner, bool clipboard)
602{ 657{
658 rxvt_term * &cur_owner = !clipboard ? selection_owner : clipboard_owner;
659
603 if (selection_owner && selection_owner != owner) 660 if (cur_owner && cur_owner != owner)
604 { 661 {
605 selection_owner->selection_clear (); 662 rxvt_term *term = cur_owner;
663 term->selection_clear (clipboard);
606 flush (); 664 term->flush ();
607 } 665 }
608 666
609 selection_owner = owner; 667 cur_owner = owner;
610} 668}
611 669
612#ifdef USE_XIM 670#if USE_XIM
613 671
614void rxvt_display::reg (im_watcher *w) 672void rxvt_display::reg (im_watcher *w)
615{ 673{
616 imw.push_back (w); 674 imw.push_back (w);
617} 675}
627 int l, m; 685 int l, m;
628 686
629 l = strlen (locale); 687 l = strlen (locale);
630 m = strlen (modifiers); 688 m = strlen (modifiers);
631 689
632 if (!(id = (char *)malloc (l + m + 2))) 690 if (!(id = rxvt_temp_buf<char> (l + m + 2)))
633 return 0; 691 return 0;
634 692
635 memcpy (id, locale, l); id[l] = '\n'; 693 memcpy (id, locale, l); id[l] = '\n';
636 memcpy (id + l + 1, modifiers, m); id[l + m + 1] = 0; 694 memcpy (id + l + 1, modifiers, m); id[l + m + 1] = 0;
637 695
638 rxvt_xim *xim = xims.get (id); 696 rxvt_xim *xim = xims.get (id);
639
640 free (id);
641 697
642 return xim; 698 return xim;
643} 699}
644 700
645void rxvt_display::put_xim (rxvt_xim *xim) 701void rxvt_display::put_xim (rxvt_xim *xim)
654Atom rxvt_display::atom (const char *name) 710Atom rxvt_display::atom (const char *name)
655{ 711{
656 return XInternAtom (dpy, name, False); 712 return XInternAtom (dpy, name, False);
657} 713}
658 714
715Pixmap
716rxvt_display::get_pixmap_property (Atom property)
717{
718 Pixmap pixmap = None;
719
720 int aformat;
721 unsigned long nitems, bytes_after;
722 Atom atype;
723 unsigned char *prop;
724 int result = XGetWindowProperty (dpy, root, property,
725 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
726 &nitems, &bytes_after, &prop);
727 if (result == Success)
728 {
729 if (atype == XA_PIXMAP)
730 pixmap = *(Pixmap *)prop;
731 XFree (prop);
732 }
733
734 return pixmap;
735}
736
659///////////////////////////////////////////////////////////////////////////// 737/////////////////////////////////////////////////////////////////////////////
660 738
661template class refcache<rxvt_display>; 739template class refcache<rxvt_display>;
662refcache<rxvt_display> displays; 740refcache<rxvt_display> displays;
663 741
671} 749}
672 750
673bool 751bool
674rxvt_color::alloc (rxvt_screen *screen, const rgba &color) 752rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
675{ 753{
754 //TODO: only supports 24 bit
755 unsigned int alpha = color.a >= 0xff00 ? 0xffff : color.a;
756
676#if XFT 757#if XFT
677 XRenderPictFormat *format; 758 XRenderPictFormat *format;
678 759
679 // FUCKING Xft gets it wrong, of course, so work around it. 760 // FUCKING Xft gets it wrong, of course, so work around it.
680 // Transparency users should eat shit and die, and then 761 // Transparency users should eat shit and die, and then
684 { 765 {
685 // the fun lies in doing everything manually... 766 // the fun lies in doing everything manually...
686 c.color.red = color.r; 767 c.color.red = color.r;
687 c.color.green = color.g; 768 c.color.green = color.g;
688 c.color.blue = color.b; 769 c.color.blue = color.b;
689 c.color.alpha = color.a; 770 c.color.alpha = alpha;
690 771
772 // Xft wants premultiplied alpha, but abuses the alpha channel
773 // as blend factor, and doesn't allow us to set the alpha channel
774 c.color.red = c.color.red * alpha / 0xffff;
775 c.color.green = c.color.green * alpha / 0xffff;
776 c.color.blue = c.color.blue * alpha / 0xffff;
777
691 c.pixel = insert_component (color.r, format->direct.redMask , format->direct.red ) 778 c.pixel = insert_component (c.color.red , format->direct.redMask , format->direct.red )
692 | insert_component (color.g, format->direct.greenMask, format->direct.green) 779 | insert_component (c.color.green, format->direct.greenMask, format->direct.green)
693 | insert_component (color.b, format->direct.blueMask , format->direct.blue ) 780 | insert_component (c.color.blue , format->direct.blueMask , format->direct.blue )
694 | insert_component (color.a, format->direct.alphaMask, format->direct.alpha); 781 | insert_component (alpha , format->direct.alphaMask, format->direct.alpha);
695 782
696 return true; 783 return true;
697 } 784 }
698 else 785 else
699 { 786 {
700 XRenderColor d; 787 XRenderColor d;
701 788
702 d.red = color.r; 789 d.red = color.r;
703 d.green = color.g; 790 d.green = color.g;
704 d.blue = color.b; 791 d.blue = color.b;
705 d.alpha = color.a; 792 d.alpha = alpha;
706 793
707 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c); 794 if (XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c))
795 return true;
708 } 796 }
709#else 797#else
710 c.red = color.r; 798 c.red = color.r;
711 c.green = color.g; 799 c.green = color.g;
712 c.blue = color.b; 800 c.blue = color.b;
713 801
714 if (screen->visual->c_class == TrueColor) 802 if (screen->visual->c_class == TrueColor)
715 { 803 {
716 c.pixel = (color.r >> (16 - popcount (screen->visual->red_mask )) << ctz (screen->visual->red_mask )) 804 c.pixel = (color.r >> (16 - ecb_popcount32 (screen->visual->red_mask )) << ecb_ctz32 (screen->visual->red_mask ))
717 | (color.g >> (16 - popcount (screen->visual->green_mask)) << ctz (screen->visual->green_mask)) 805 | (color.g >> (16 - ecb_popcount32 (screen->visual->green_mask)) << ecb_ctz32 (screen->visual->green_mask))
718 | (color.b >> (16 - popcount (screen->visual->blue_mask )) << ctz (screen->visual->blue_mask )); 806 | (color.b >> (16 - ecb_popcount32 (screen->visual->blue_mask )) << ecb_ctz32 (screen->visual->blue_mask ));
719 807
720 return true; 808 return true;
721 } 809 }
722 else if (XAllocColor (screen->dpy, screen->cmap, &c)) 810 else if (XAllocColor (screen->dpy, screen->cmap, &c))
723 return true; 811 return true;
724 else 812#endif
813
814 //TODO: set c.color* or c.*
725 c.pixel = (color.r + color.g + color.b) > 128*3 815 c.pixel = (color.r * 2 + color.g * 3 + color.b) >= 0x8000 * 6
726 ? WhitePixelOfScreen (DefaultScreenOfDisplay (screen->dpy)) 816 ? WhitePixelOfScreen (DefaultScreenOfDisplay (screen->dpy))
727 : BlackPixelOfScreen (DefaultScreenOfDisplay (screen->dpy)); 817 : BlackPixelOfScreen (DefaultScreenOfDisplay (screen->dpy));
728#endif
729 818
730 return false; 819 return false;
731} 820}
732 821
733bool 822bool
735{ 824{
736 rgba c; 825 rgba c;
737 char eos; 826 char eos;
738 int skip; 827 int skip;
739 828
829 c.a = rgba::MAX_CC;
830
740 // parse the nonstandard "[alphapercent]" prefix 831 // parse the nonstandard "[alphapercent]" prefix
741 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip)) 832 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip))
742 { 833 {
743 c.a = lerp<int, int, int> (0, rgba::MAX_CC, c.a); 834 c.a = lerp<int, int, int> (0, rgba::MAX_CC, c.a);
744 name += skip; 835 name += skip;
745 } 836 }
746 else
747 c.a = rgba::MAX_CC;
748 837
749 // parse the non-standard "#aarrggbb" format
750 if (name[0] == '#' && strlen (name) == 1+2+2+2+2 && 4 == sscanf (name+1, "%2hx%2hx%2hx%2hx%c", &c.a, &c.r, &c.g, &c.b, &eos))
751 {
752 if (c.r)
753 c.r = (c.r << 8) | 0x0ff;
754 if (c.g)
755 c.g = (c.g << 8) | 0x0ff;
756 if (c.b)
757 c.b = (c.b << 8) | 0x0ff;
758 if (c.a)
759 c.a = (c.a << 8) | 0x0ff;
760 }
761 // parse the non-standard "rgba:rrrr/gggg/bbbb/aaaa" format 838 // parse the non-standard "rgba:rrrr/gggg/bbbb/aaaa" format
762 else if (strlen (name) != 4+5*4 || 4 != sscanf (name, "rgba:%4hx/%4hx/%4hx/%4hx%c", &c.r, &c.g, &c.b, &c.a, &eos)) 839 if (strlen (name) != 4+5*4 || 4 != sscanf (name, "rgba:%4hx/%4hx/%4hx/%4hx%c", &c.r, &c.g, &c.b, &c.a, &eos))
763 { 840 {
764 XColor xc; 841 XColor xc;
765 842
766 if (XParseColor (screen->dpy, screen->cmap, name, &xc)) 843 if (XParseColor (screen->dpy, screen->cmap, name, &xc))
767 { 844 {
801 878
802 // many kilobytes transfer per colour, but pseudocolor isn't worth 879 // many kilobytes transfer per colour, but pseudocolor isn't worth
803 // many extra optimisations. 880 // many extra optimisations.
804 XQueryColors (screen->dpy, screen->cmap, colors, cmap_size); 881 XQueryColors (screen->dpy, screen->cmap, colors, cmap_size);
805 882
883 while (cmap_size)
884 {
806 int diff = 0x7fffffffUL; 885 int diff = 0x7fffffffL;
807 XColor *best = colors; 886 XColor *best = colors;
808 887
809 for (int i = 0; i < cmap_size; i++) 888 for (int i = 0; i < cmap_size; i++)
810 {
811 int d = (squared_diff<int> (color.r >> 2, colors [i].red >> 2))
812 + (squared_diff<int> (color.g >> 2, colors [i].green >> 2))
813 + (squared_diff<int> (color.b >> 2, colors [i].blue >> 2));
814
815 if (d < diff)
816 { 889 {
890 // simple weighted rgb distance sucks, but keeps it simple
891 int d = abs (color.r - colors [i].red ) * 2
892 + abs (color.g - colors [i].green) * 3
893 + abs (color.b - colors [i].blue );
894
895 if (d < diff)
896 {
817 diff = d; 897 diff = d;
818 best = colors + i; 898 best = colors + i;
899 }
819 } 900 }
820 }
821 901
822 //rxvt_warn ("could not allocate %04x %04x %04x, getting %04x %04x %04x instead (%d)\n", 902 //rxvt_warn ("could not allocate %04x %04x %04x, getting %04x %04x %04x instead (%d,%d)\n",
823 // color.r, color.g, color.b, best->red, best->green, best->blue, diff); 903 // color.r, color.g, color.b, best->red, best->green, best->blue, diff, best - colors);
824 904
825 got = alloc (screen, rgba (best->red, best->green, best->blue)); 905 got = alloc (screen, rgba (best->red, best->green, best->blue));
906
907 if (got)
908 break;
909
910 *best = colors [--cmap_size];
911 }
826 912
827 delete [] colors; 913 delete [] colors;
828 } 914 }
829#endif 915#endif
830 916
831 return got; 917 return got;
832} 918}
833 919
834void 920void
835rxvt_color::get (rgba &color) 921rxvt_color::get (rgba &color) const
836{ 922{
837#if XFT 923#if XFT
924 //TODO premultiplied alpha??
838 color.r = c.color.red; 925 color.r = c.color.red;
839 color.g = c.color.green; 926 color.g = c.color.green;
840 color.b = c.color.blue; 927 color.b = c.color.blue;
841 color.a = c.color.alpha; 928 color.a = c.color.alpha;
842#else 929#else
846 color.a = rgba::MAX_CC; 933 color.a = rgba::MAX_CC;
847#endif 934#endif
848} 935}
849 936
850void 937void
851rxvt_color::get (XColor &color) 938rxvt_color::get (XColor &color) const
852{ 939{
853 rgba c; 940 rgba c;
854 get (c); 941 get (c);
855 942
856 color.red = c.r; 943 color.red = c.r;
887 lerp (c.a, to.a, percent) 974 lerp (c.a, to.a, percent)
888 ) 975 )
889 ); 976 );
890} 977}
891 978
892#if TRACE_PIXMAPS 979rxvt_selection::rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, rxvt_term *term)
893# undef XCreatePixmap 980: display (disp), request_time (tm), request_win (win), request_prop (prop), term (term)
894# undef XFreePixmap
895Pixmap trace_XCreatePixmap (const char *file, int line, Display *dpy, Window r, unsigned int w, unsigned int h, unsigned int d)
896{ 981{
897 Pixmap res = XCreatePixmap (dpy, r, w, h, d); 982 assert (selnum >= Sel_Primary && selnum <= Sel_Clipboard);
898 fprintf (stderr, "%s:%d: XCreatePixmap (%p,%lX,%u,%u,%u) returned %lX\n", file, line, dpy, r, w, h, d, res); 983
984 timer_ev.set<rxvt_selection, &rxvt_selection::timer_cb> (this);
985 timer_ev.repeat = 10.;
986 x_ev.set<rxvt_selection, &rxvt_selection::x_cb> (this);
987
988 incr_buf = 0;
989 incr_buf_size = incr_buf_fill = 0;
990 selection_wait = Sel_normal;
991 selection_type = selnum;
992 cb_sv = 0;
993}
994
995void
996rxvt_selection::stop ()
997{
998 free (incr_buf);
999 incr_buf = 0;
1000 timer_ev.stop ();
1001 x_ev.stop (display);
1002}
1003
1004rxvt_selection::~rxvt_selection ()
1005{
1006 stop ();
1007}
1008
1009void
1010rxvt_selection::run ()
1011{
1012 int selnum = selection_type;
1013
1014#if ENABLE_FRILLS
1015 if (selnum == Sel_Primary && display->selection_owner)
1016 {
1017 /* internal selection */
1018 char *str = rxvt_wcstombs (display->selection_owner->selection.text, display->selection_owner->selection.len);
1019 finish (str, strlen (str));
1020 free (str);
1021 return;
1022 }
1023#endif
1024
1025#if X_HAVE_UTF8_STRING
1026 selection_type = Sel_UTF8String;
1027 if (request (display->xa[XA_UTF8_STRING], selnum))
1028 return;
1029#else
1030 selection_type = Sel_CompoundText;
1031 if (request (display->xa[XA_COMPOUND_TEXT], selnum))
1032 return;
1033#endif
1034
1035 // fallback to CUT_BUFFER0 if the requested property has no owner
1036 handle_selection (display->root, XA_CUT_BUFFER0, false);
1037}
1038
1039void
1040rxvt_selection::finish (char *data, unsigned int len)
1041{
1042 if (!cb_sv)
1043 {
1044 if (data)
1045 term->paste (data, len);
1046
1047 term->selection_req = 0;
1048 delete this;
1049 }
1050#if ENABLE_PERL
1051 else
1052 {
1053 stop (); // we do not really trust perl callbacks
1054 rxvt_perl.selection_finish (this, data, len);
1055 }
1056#endif
1057}
1058
1059bool
1060rxvt_selection::request (Atom target, int selnum)
1061{
1062 Atom sel;
1063
1064 selection_type |= selnum;
1065
1066 if (selnum == Sel_Primary)
1067 sel = XA_PRIMARY;
1068 else if (selnum == Sel_Secondary)
1069 sel = XA_SECONDARY;
1070 else
1071 sel = display->xa[XA_CLIPBOARD];
1072
1073 if (XGetSelectionOwner (display->dpy, sel) != None)
1074 {
1075 XConvertSelection (display->dpy, sel, target, request_prop,
1076 request_win, request_time);
1077 x_ev.start (display, request_win);
1078 timer_ev.again ();
1079 return true;
1080 }
1081
899 return res; 1082 return false;
900} 1083}
901 1084
902void trace_XFreePixmap (const char *file, int line, Display *dpy, Pixmap p) 1085void
1086rxvt_selection::handle_selection (Window win, Atom prop, bool delete_prop)
903{ 1087{
904 fprintf (stderr, "%s:%d: XFreePixmap (%p,%lX)\n", file, line, dpy, p); 1088 Display *dpy = display->dpy;
905 XFreePixmap (dpy,p); 1089 char *data = 0;
906} 1090 unsigned int data_len = 0;
1091 unsigned long bytes_after;
1092 XTextProperty ct;
1093
1094 // check for failed XConvertSelection
1095 if (prop == None)
1096 {
1097 bool error = true;
1098 int selnum = selection_type & Sel_whereMask;
1099
1100 if (selection_type & Sel_CompoundText)
1101 {
1102 selection_type = 0;
1103 error = !request (XA_STRING, selnum);
1104 }
1105
1106 if (selection_type & Sel_UTF8String)
1107 {
1108 selection_type = Sel_CompoundText;
1109 error = !request (display->xa[XA_COMPOUND_TEXT], selnum);
1110 }
1111
1112 if (error)
1113 {
1114 ct.value = 0;
1115 goto bailout;
1116 }
1117
1118 return;
1119 }
1120
1121 // length == (2^31 - 1) / 4, as gdk
1122 if (XGetWindowProperty (dpy, win, prop,
1123 0, 0x1fffffff,
1124 delete_prop, AnyPropertyType,
1125 &ct.encoding, &ct.format,
1126 &ct.nitems, &bytes_after,
1127 &ct.value) != Success)
1128 {
1129 ct.value = 0;
1130 goto bailout;
1131 }
1132
1133 if (ct.encoding == None)
1134 goto bailout;
1135
1136 if (ct.value == 0)
1137 goto bailout;
1138
1139 if (ct.encoding == display->xa[XA_INCR])
1140 {
1141 // INCR selection, start handshake
1142 if (!delete_prop)
1143 XDeleteProperty (dpy, win, prop);
1144
1145 selection_wait = Sel_incr;
1146 timer_ev.again ();
1147
1148 goto bailout;
1149 }
1150
1151 if (ct.nitems == 0)
1152 {
1153 if (selection_wait == Sel_incr)
1154 {
1155 XFree (ct.value);
1156
1157 // finally complete, now paste the whole thing
1158 selection_wait = Sel_normal;
1159 ct.value = (unsigned char *)incr_buf;
1160 ct.nitems = incr_buf_fill;
1161 incr_buf = 0;
1162 timer_ev.stop ();
1163 }
1164 else
1165 {
1166 // avoid recursion
1167 if (win != display->root || prop != XA_CUT_BUFFER0)
1168 {
1169 XFree (ct.value);
1170
1171 // fallback to CUT_BUFFER0 if the requested property
1172 // has an owner but is empty
1173 handle_selection (display->root, XA_CUT_BUFFER0, False);
1174 return;
1175 }
1176
1177 goto bailout;
1178 }
1179 }
1180 else if (selection_wait == Sel_incr)
1181 {
1182 timer_ev.again ();
1183
1184 while (incr_buf_fill + ct.nitems > incr_buf_size)
1185 {
1186 incr_buf_size = incr_buf_size ? incr_buf_size * 2 : 128*1024;
1187 incr_buf = (char *)rxvt_realloc (incr_buf, incr_buf_size);
1188 }
1189
1190 memcpy (incr_buf + incr_buf_fill, ct.value, ct.nitems);
1191 incr_buf_fill += ct.nitems;
1192
1193 goto bailout;
1194 }
1195
1196 char **cl;
1197 int cr;
1198
1199 // we honour the first item only
1200
1201#if !ENABLE_MINIMAL
1202 // xlib is horribly broken with respect to UTF8_STRING, and nobody cares to fix it
1203 // so recode it manually
1204 if (ct.encoding == display->xa[XA_UTF8_STRING])
1205 {
1206 wchar_t *w = rxvt_utf8towcs ((const char *)ct.value, ct.nitems);
1207 data = rxvt_wcstombs (w);
1208 free (w);
1209 }
1210 else
907#endif 1211#endif
1212 if (XmbTextPropertyToTextList (dpy, &ct, &cl, &cr) >= 0
1213 && cl)
1214 {
1215 data = strdup (cl[0]);
1216 XFreeStringList (cl);
1217 }
1218 else
1219 {
1220 // paste raw
1221 data = strdup ((const char *)ct.value);
1222 }
1223
1224 data_len = strlen (data);
1225
1226bailout:
1227 XFree (ct.value);
1228
1229 if (selection_wait == Sel_normal)
1230 {
1231 finish (data, data_len);
1232 free (data);
1233 }
1234}
1235
1236void
1237rxvt_selection::timer_cb (ev::timer &w, int revents)
1238{
1239 if (selection_wait == Sel_incr)
1240 rxvt_warn ("data loss: timeout on INCR selection paste, ignoring.\n");
1241
1242 finish ();
1243}
1244
1245void
1246rxvt_selection::x_cb (XEvent &xev)
1247{
1248 switch (xev.type)
1249 {
1250 case PropertyNotify:
1251 if (selection_wait == Sel_incr
1252 && xev.xproperty.atom == request_prop
1253 && xev.xproperty.state == PropertyNewValue)
1254 handle_selection (xev.xproperty.window, xev.xproperty.atom, true);
1255 break;
1256
1257 case SelectionNotify:
1258 if (selection_wait == Sel_normal
1259 && xev.xselection.time == request_time)
1260 {
1261 timer_ev.stop ();
1262 handle_selection (xev.xselection.requestor, xev.xselection.property, true);
1263 }
1264 break;
1265 }
1266}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines