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.122 by root, Mon Feb 21 08:10:10 2011 UTC vs.
Revision 1.131 by root, Fri Feb 24 07:10:54 2012 UTC

430bool rxvt_display::ref_init () 430bool rxvt_display::ref_init ()
431{ 431{
432#ifdef LOCAL_X_IS_UNIX 432#ifdef LOCAL_X_IS_UNIX
433 if (id[0] == ':') 433 if (id[0] == ':')
434 { 434 {
435 if (!(val = rxvt_temp_buf<char> (5 + strlen (id) + 1))) 435 char *val = rxvt_temp_buf<char> (5 + strlen (id) + 1);
436 return false; 436
437 strcpy (val, "unix/"); 437 strcpy (val, "unix/");
438 strcat (val, id); 438 strcat (val, id);
439
439 dpy = XOpenDisplay (val); 440 dpy = XOpenDisplay (val);
440 } 441 }
441 else 442 else
442#endif 443#endif
443 dpy = 0; 444 dpy = 0;
449 return false; 450 return false;
450 451
451 screen = DefaultScreen (dpy); 452 screen = DefaultScreen (dpy);
452 root = DefaultRootWindow (dpy); 453 root = DefaultRootWindow (dpy);
453 454
454 assert (ARRAY_LENGTH(xa_names) == NUM_XA); 455 assert (ecb_array_length (xa_names) == NUM_XA);
455 XInternAtoms (dpy, (char **)xa_names, NUM_XA, False, xa); 456 XInternAtoms (dpy, (char **)xa_names, NUM_XA, False, xa);
456 457
457 XrmSetDatabase (dpy, get_resources (false)); 458 XrmSetDatabase (dpy, get_resources (false));
458 459
459#ifdef POINTER_BLANK 460#ifdef POINTER_BLANK
686 687
687bool 688bool
688rxvt_color::alloc (rxvt_screen *screen, const rgba &color) 689rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
689{ 690{
690 //TODO: only supports 24 bit 691 //TODO: only supports 24 bit
691 int alpha = color.a >= 0xff00 ? 0xffff : color.a; 692 unsigned int alpha = color.a >= 0xff00 ? 0xffff : color.a;
692 693
693#if XFT 694#if XFT
694 XRenderPictFormat *format; 695 XRenderPictFormat *format;
695 696
696 // FUCKING Xft gets it wrong, of course, so work around it. 697 // FUCKING Xft gets it wrong, of course, so work around it.
703 c.color.red = color.r; 704 c.color.red = color.r;
704 c.color.green = color.g; 705 c.color.green = color.g;
705 c.color.blue = color.b; 706 c.color.blue = color.b;
706 c.color.alpha = alpha; 707 c.color.alpha = alpha;
707 708
709 // Xft wants premultiplied alpha, but abuses the alpha channel
710 // as blend factor, and doesn't allow us to set the alpha channel
711 c.color.red = c.color.red * alpha / 0xffff;
712 c.color.green = c.color.green * alpha / 0xffff;
713 c.color.blue = c.color.blue * alpha / 0xffff;
714
708 c.pixel = insert_component (color.r, format->direct.redMask , format->direct.red ) 715 c.pixel = insert_component (c.color.red , format->direct.redMask , format->direct.red )
709 | insert_component (color.g, format->direct.greenMask, format->direct.green) 716 | insert_component (c.color.green, format->direct.greenMask, format->direct.green)
710 | insert_component (color.b, format->direct.blueMask , format->direct.blue ) 717 | insert_component (c.color.blue , format->direct.blueMask , format->direct.blue )
711 | insert_component (alpha , format->direct.alphaMask, format->direct.alpha); 718 | insert_component (alpha , format->direct.alphaMask, format->direct.alpha);
712 719
713 return true; 720 return true;
714 } 721 }
715 else 722 else
716 { 723 {
719 d.red = color.r; 726 d.red = color.r;
720 d.green = color.g; 727 d.green = color.g;
721 d.blue = color.b; 728 d.blue = color.b;
722 d.alpha = alpha; 729 d.alpha = alpha;
723 730
724 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c); 731 if (XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c))
732 return true;
725 } 733 }
726#else 734#else
727 c.red = color.r; 735 c.red = color.r;
728 c.green = color.g; 736 c.green = color.g;
729 c.blue = color.b; 737 c.blue = color.b;
730 738
731 if (screen->visual->c_class == TrueColor) 739 if (screen->visual->c_class == TrueColor)
732 { 740 {
733 c.pixel = (color.r >> (16 - rxvt_popcount (screen->visual->red_mask )) << rxvt_ctz (screen->visual->red_mask )) 741 c.pixel = (color.r >> (16 - ecb_popcount32 (screen->visual->red_mask )) << ecb_ctz32 (screen->visual->red_mask ))
734 | (color.g >> (16 - rxvt_popcount (screen->visual->green_mask)) << rxvt_ctz (screen->visual->green_mask)) 742 | (color.g >> (16 - ecb_popcount32 (screen->visual->green_mask)) << ecb_ctz32 (screen->visual->green_mask))
735 | (color.b >> (16 - rxvt_popcount (screen->visual->blue_mask )) << rxvt_ctz (screen->visual->blue_mask )); 743 | (color.b >> (16 - ecb_popcount32 (screen->visual->blue_mask )) << ecb_ctz32 (screen->visual->blue_mask ));
736 744
737 return true; 745 return true;
738 } 746 }
739 else if (XAllocColor (screen->dpy, screen->cmap, &c)) 747 else if (XAllocColor (screen->dpy, screen->cmap, &c))
740 return true; 748 return true;
741 else 749#endif
750
742 c.pixel = (color.r + color.g + color.b) > 128*3 751 c.pixel = (color.r + color.g + color.b) > 128*3
743 ? WhitePixelOfScreen (DefaultScreenOfDisplay (screen->dpy)) 752 ? WhitePixelOfScreen (DefaultScreenOfDisplay (screen->dpy))
744 : BlackPixelOfScreen (DefaultScreenOfDisplay (screen->dpy)); 753 : BlackPixelOfScreen (DefaultScreenOfDisplay (screen->dpy));
745#endif
746 754
747 return false; 755 return false;
748} 756}
749 757
750bool 758bool
905 913
906 incr_buf = 0; 914 incr_buf = 0;
907 incr_buf_size = incr_buf_fill = 0; 915 incr_buf_size = incr_buf_fill = 0;
908 selection_wait = Sel_normal; 916 selection_wait = Sel_normal;
909 selection_type = selnum; 917 selection_type = selnum;
918 cb_sv = 0;
910} 919}
911 920
912void 921void
913rxvt_selection::stop () 922rxvt_selection::stop ()
914{ 923{
925 934
926void 935void
927rxvt_selection::run () 936rxvt_selection::run ()
928{ 937{
929 int selnum = selection_type; 938 int selnum = selection_type;
939
940#if ENABLE_FRILLS
941 if (selnum == Sel_Primary && display->selection_owner)
942 {
943 /* internal selection */
944 char *str = rxvt_wcstombs (display->selection_owner->selection.text, display->selection_owner->selection.len);
945 finish (str, strlen (str));
946 free (str);
947 return;
948 }
949#endif
930 950
931#if X_HAVE_UTF8_STRING 951#if X_HAVE_UTF8_STRING
932 selection_type = Sel_UTF8String; 952 selection_type = Sel_UTF8String;
933 if (request (display->xa[XA_UTF8_STRING], selnum)) 953 if (request (display->xa[XA_UTF8_STRING], selnum))
934 return; 954 return;
943} 963}
944 964
945void 965void
946rxvt_selection::finish (char *data, unsigned int len) 966rxvt_selection::finish (char *data, unsigned int len)
947{ 967{
948 if (term) 968 if (!cb_sv)
949 { 969 {
950 if (data) 970 if (data)
951 term->paste (data, len); 971 term->paste (data, len);
952 972
953 term->selection_req = 0; 973 term->selection_req = 0;
1160 handle_selection (xev.xproperty.window, xev.xproperty.atom, true); 1180 handle_selection (xev.xproperty.window, xev.xproperty.atom, true);
1161 break; 1181 break;
1162 1182
1163 case SelectionNotify: 1183 case SelectionNotify:
1164 if (selection_wait == Sel_normal 1184 if (selection_wait == Sel_normal
1165 && xev.xselection.time == request_time 1185 && xev.xselection.time == request_time)
1166 && xev.xselection.property == request_prop)
1167 { 1186 {
1168 timer_ev.stop (); 1187 timer_ev.stop ();
1169 handle_selection (xev.xselection.requestor, xev.xselection.property, true); 1188 handle_selection (xev.xselection.requestor, xev.xselection.property, true);
1170 } 1189 }
1171 break; 1190 break;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines