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.85 by root, Sun Dec 16 19:44:48 2007 UTC vs.
Revision 1.94 by root, Sat Jan 26 11:37:51 2008 UTC

550 XEvent xev; 550 XEvent xev;
551 XNextEvent (dpy, &xev); 551 XNextEvent (dpy, &xev);
552 552
553#ifdef USE_XIM 553#ifdef USE_XIM
554 if (!XFilterEvent (&xev, None)) 554 if (!XFilterEvent (&xev, None))
555#endif
555 { 556 {
556 if (xev.type == PropertyNotify 557 if (xev.type == PropertyNotify
557 && xev.xany.window == root 558 && xev.xany.window == root
558 && xev.xproperty.atom == xa[XA_XIM_SERVERS]) 559 && xev.xproperty.atom == xa[XA_XIM_SERVERS])
559 im_change_check (); 560 im_change_check ();
560#endif 561
561 if (xev.type == MappingNotify) 562 if (xev.type == MappingNotify)
562 XRefreshKeyboardMapping (&xev.xmapping); 563 XRefreshKeyboardMapping (&xev.xmapping);
563 564
564 for (int i = xw.size (); i--; ) 565 for (int i = xw.size (); i--; )
565 { 566 {
566 if (!xw[i]) 567 if (!xw[i])
567 xw.erase_unordered (i); 568 xw.erase_unordered (i);
568 else if (xw[i]->window == xev.xany.window) 569 else if (xw[i]->window == xev.xany.window)
569 xw[i]->call (xev); 570 xw[i]->call (xev);
570 } 571 }
571#ifdef USE_XIM
572 } 572 }
573#endif
574 } 573 }
575} 574}
576 575
577void rxvt_display::flush_cb (ev::prepare &w, int revents) 576void rxvt_display::flush_cb (ev::prepare &w, int revents)
578{ 577{
599} 598}
600 599
601void rxvt_display::set_selection_owner (rxvt_term *owner) 600void rxvt_display::set_selection_owner (rxvt_term *owner)
602{ 601{
603 if (selection_owner && selection_owner != owner) 602 if (selection_owner && selection_owner != owner)
603 {
604 rxvt_term *owner = selection_owner;
605
604 selection_owner->selection_clear (); 606 owner->selection_clear ();
607 owner->flush ();
608 }
605 609
606 selection_owner = owner; 610 selection_owner = owner;
607} 611}
608 612
609#ifdef USE_XIM 613#ifdef USE_XIM
668} 672}
669 673
670bool 674bool
671rxvt_color::alloc (rxvt_screen *screen, const rgba &color) 675rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
672{ 676{
677 //TODO: only supports 24 bit
678 int alpha = color.a >= 0xff00 ? 0xffff : color.a;
679
673#if XFT 680#if XFT
674 XRenderPictFormat *format; 681 XRenderPictFormat *format;
675 682
676 // FUCKING Xft gets it wrong, of course, so work around it. 683 // FUCKING Xft gets it wrong, of course, so work around it.
677 // Transparency users should eat shit and die, and then 684 // Transparency users should eat shit and die, and then
681 { 688 {
682 // the fun lies in doing everything manually... 689 // the fun lies in doing everything manually...
683 c.color.red = color.r; 690 c.color.red = color.r;
684 c.color.green = color.g; 691 c.color.green = color.g;
685 c.color.blue = color.b; 692 c.color.blue = color.b;
686 c.color.alpha = color.a; 693 c.color.alpha = alpha;
687 694
688 c.pixel = insert_component (color.r, format->direct.redMask , format->direct.red ) 695 c.pixel = insert_component (color.r, format->direct.redMask , format->direct.red )
689 | insert_component (color.g, format->direct.greenMask, format->direct.green) 696 | insert_component (color.g, format->direct.greenMask, format->direct.green)
690 | insert_component (color.b, format->direct.blueMask , format->direct.blue ) 697 | insert_component (color.b, format->direct.blueMask , format->direct.blue )
691 | insert_component (color.a, format->direct.alphaMask, format->direct.alpha); 698 | insert_component (alpha , format->direct.alphaMask, format->direct.alpha);
692 699
693 return true; 700 return true;
694 } 701 }
695 else 702 else
696 { 703 {
697 XRenderColor d; 704 XRenderColor d;
698 705
699 d.red = color.r; 706 d.red = color.r;
700 d.green = color.g; 707 d.green = color.g;
701 d.blue = color.b; 708 d.blue = color.b;
702 d.alpha = color.a; 709 d.alpha = alpha;
703 710
704 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c); 711 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c);
705 } 712 }
706#else 713#else
707 c.red = color.r; 714 c.red = color.r;
732{ 739{
733 rgba c; 740 rgba c;
734 char eos; 741 char eos;
735 int skip; 742 int skip;
736 743
744 c.a = rgba::MAX_CC;
745
737 // parse the nonstandard "[alphapercent]" prefix 746 // parse the nonstandard "[alphapercent]" prefix
738 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip)) 747 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip))
739 { 748 {
740 c.a = lerp<int, int, int> (0, rgba::MAX_CC, c.a); 749 c.a = lerp<int, int, int> (0, rgba::MAX_CC, c.a);
741 name += skip; 750 name += skip;
742 } 751 }
743 else
744 c.a = rgba::MAX_CC;
745 752
746 // parse the non-standard "#aarrggbb" format
747 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))
748 {
749 if (c.r)
750 c.r = (c.r << 8) | 0x0ff;
751 if (c.g)
752 c.g = (c.g << 8) | 0x0ff;
753 if (c.b)
754 c.b = (c.b << 8) | 0x0ff;
755 if (c.a)
756 c.a = (c.a << 8) | 0x0ff;
757 }
758 // parse the non-standard "rgba:rrrr/gggg/bbbb/aaaa" format 753 // parse the non-standard "rgba:rrrr/gggg/bbbb/aaaa" format
759 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)) 754 if (strlen (name) != 4+5*4 || 4 != sscanf (name, "rgba:%4hx/%4hx/%4hx/%4hx%c", &c.r, &c.g, &c.b, &c.a, &eos))
760 { 755 {
761 XColor xc; 756 XColor xc;
762 757
763 if (XParseColor (screen->dpy, screen->cmap, name, &xc)) 758 if (XParseColor (screen->dpy, screen->cmap, name, &xc))
764 { 759 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines