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.92 by root, Sat Jan 26 10:15:20 2008 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines