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.51 by root, Sat Feb 18 14:14:43 2006 UTC vs.
Revision 1.58 by root, Wed Jul 5 19:22:15 2006 UTC

1/*--------------------------------*-C-*---------------------------------* 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-2004 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * 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 9 * 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 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
26 26
27#include <unistd.h> 27#include <unistd.h>
28#include <fcntl.h> 28#include <fcntl.h>
29 29
30#include <sys/utsname.h> 30#include <sys/utsname.h>
31
32#ifndef NO_SLOW_LINK_SUPPORT
33# include <sys/socket.h> 31#include <sys/socket.h>
34# include <sys/un.h> 32#include <sys/un.h>
35#endif
36 33
37#if XFT 34#if XFT
38# include <X11/extensions/Xrender.h> 35# include <X11/extensions/Xrender.h>
39#endif 36#endif
40 37
348#if XLIB_ILLEGAL_ACCESS 345#if XLIB_ILLEGAL_ACCESS
349 if (dpy->xdefaults) 346 if (dpy->xdefaults)
350 XFree (dpy->xdefaults); 347 XFree (dpy->xdefaults);
351#endif 348#endif
352 349
353 if (XGetWindowProperty (dpy, root, XA_RESOURCE_MANAGER, 350 if (XGetWindowProperty (dpy, RootWindow (dpy, 0), XA_RESOURCE_MANAGER,
354 0L, 100000000L, False, 351 0L, 100000000L, False,
355 XA_STRING, &actual_type, &actual_format, 352 XA_STRING, &actual_type, &actual_format,
356 &nitems, &nremaining, 353 &nitems, &nremaining,
357 (unsigned char **)&val) == Success 354 (unsigned char **)&val) == Success
358 && actual_type == XA_STRING 355 && actual_type == XA_STRING
463 XUnloadFont (dpy, f); 460 XUnloadFont (dpy, f);
464#endif 461#endif
465 462
466 int fd = XConnectionNumber (dpy); 463 int fd = XConnectionNumber (dpy);
467 464
468#ifndef NO_SLOW_LINK_SUPPORT
469 // try to detect wether we have a local connection. 465 // try to detect wether we have a local connection.
470 // assume unix domains socket == local, everything else not 466 // assume unix domains socket == local, everything else not
471 // TODO: might want to check for inet/127.0.0.1 467 // TODO: might want to check for inet/127.0.0.1
472 is_local = 0; 468 is_local = 0;
473 sockaddr_un sa; 469 sockaddr_un sa;
474 socklen_t sl = sizeof (sa); 470 socklen_t sl = sizeof (sa);
475 471
476 if (!getsockname (fd, (sockaddr *)&sa, &sl)) 472 if (!getsockname (fd, (sockaddr *)&sa, &sl))
477 is_local = sa.sun_family == AF_LOCAL; 473 is_local = sa.sun_family == AF_LOCAL;
478#endif
479 474
480 x_ev.start (fd, EVENT_READ); 475 x_ev.start (fd, EVENT_READ);
481 fcntl (fd, F_SETFD, FD_CLOEXEC); 476 fcntl (fd, F_SETFD, FD_CLOEXEC);
482 477
483 XSelectInput (dpy, root, PropertyChangeMask); 478 XSelectInput (dpy, root, PropertyChangeMask);
654 649
655template class refcache<rxvt_display>; 650template class refcache<rxvt_display>;
656refcache<rxvt_display> displays; 651refcache<rxvt_display> displays;
657 652
658///////////////////////////////////////////////////////////////////////////// 653/////////////////////////////////////////////////////////////////////////////
654//
655
656static unsigned int
657insert_component (unsigned int value, unsigned int mask, unsigned int shift)
658{
659 return (value * (mask + 1) >> 16) << shift;
660}
659 661
660bool 662bool
661rxvt_color::alloc (rxvt_screen *screen, const rgba &color) 663rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
662{ 664{
663#if XFT 665#if XFT
673 c.color.red = color.r; 675 c.color.red = color.r;
674 c.color.green = color.g; 676 c.color.green = color.g;
675 c.color.blue = color.b; 677 c.color.blue = color.b;
676 c.color.alpha = color.a; 678 c.color.alpha = color.a;
677 679
678 c.pixel = ((color.r * format->direct.redMask / rgba::MAX_CC) << format->direct.red ) 680 c.pixel = insert_component (color.r, format->direct.redMask , format->direct.red )
679 | ((color.g * format->direct.greenMask / rgba::MAX_CC) << format->direct.green) 681 | insert_component (color.g, format->direct.greenMask, format->direct.green)
680 | ((color.b * format->direct.blueMask / rgba::MAX_CC) << format->direct.blue ) 682 | insert_component (color.b, format->direct.blueMask , format->direct.blue )
681 | ((color.a * format->direct.alphaMask / rgba::MAX_CC) << format->direct.alpha); 683 | insert_component (color.a, format->direct.alphaMask, format->direct.alpha);
682 684
683 return true; 685 return true;
684 } 686 }
685 else 687 else
686 { 688 {
838} 840}
839 841
840void 842void
841rxvt_color::free (rxvt_screen *screen) 843rxvt_color::free (rxvt_screen *screen)
842{ 844{
845 if (screen->visual->c_class == TrueColor)
846 return; // nothing to do
847
843#if XFT 848#if XFT
844 XftColorFree (screen->dpy, screen->visual, screen->cmap, &c); 849 XftColorFree (screen->dpy, screen->visual, screen->cmap, &c);
845#else 850#else
846 XFreeColors (screen->dpy, screen->cmap, &c.pixel, 1, AllPlanes); 851 XFreeColors (screen->dpy, screen->cmap, &c.pixel, 1, AllPlanes);
847#endif 852#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines