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.95 by root, Sat Jan 26 12:03:36 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 }
574
575 flush_ev.start ();
575} 576}
576 577
577void rxvt_display::flush_cb (ev::prepare &w, int revents) 578void rxvt_display::flush_cb (ev::prepare &w, int revents)
578{ 579{
580 x_cb(x_ev,0);//D
581 XFlush (dpy);
579 w.stop (); 582 w.stop ();
580 XFlush (dpy);
581} 583}
582 584
583void rxvt_display::reg (xevent_watcher *w) 585void rxvt_display::reg (xevent_watcher *w)
584{ 586{
585 if (!w->active) 587 if (!w->active)
599} 601}
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)
606 {
607 rxvt_term *owner = selection_owner;
608
604 selection_owner->selection_clear (); 609 owner->selection_clear ();
610 owner->flush ();
611 }
605 612
606 selection_owner = owner; 613 selection_owner = owner;
607} 614}
608 615
609#ifdef USE_XIM 616#ifdef USE_XIM
668} 675}
669 676
670bool 677bool
671rxvt_color::alloc (rxvt_screen *screen, const rgba &color) 678rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
672{ 679{
680 //TODO: only supports 24 bit
681 int alpha = color.a >= 0xff00 ? 0xffff : color.a;
682
673#if XFT 683#if XFT
674 XRenderPictFormat *format; 684 XRenderPictFormat *format;
675 685
676 // FUCKING Xft gets it wrong, of course, so work around it. 686 // FUCKING Xft gets it wrong, of course, so work around it.
677 // Transparency users should eat shit and die, and then 687 // Transparency users should eat shit and die, and then
681 { 691 {
682 // the fun lies in doing everything manually... 692 // the fun lies in doing everything manually...
683 c.color.red = color.r; 693 c.color.red = color.r;
684 c.color.green = color.g; 694 c.color.green = color.g;
685 c.color.blue = color.b; 695 c.color.blue = color.b;
686 c.color.alpha = color.a; 696 c.color.alpha = alpha;
687 697
688 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 )
689 | insert_component (color.g, format->direct.greenMask, format->direct.green) 699 | insert_component (color.g, format->direct.greenMask, format->direct.green)
690 | insert_component (color.b, format->direct.blueMask , format->direct.blue ) 700 | insert_component (color.b, format->direct.blueMask , format->direct.blue )
691 | insert_component (color.a, format->direct.alphaMask, format->direct.alpha); 701 | insert_component (alpha , format->direct.alphaMask, format->direct.alpha);
692 702
693 return true; 703 return true;
694 } 704 }
695 else 705 else
696 { 706 {
697 XRenderColor d; 707 XRenderColor d;
698 708
699 d.red = color.r; 709 d.red = color.r;
700 d.green = color.g; 710 d.green = color.g;
701 d.blue = color.b; 711 d.blue = color.b;
702 d.alpha = color.a; 712 d.alpha = alpha;
703 713
704 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c); 714 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c);
705 } 715 }
706#else 716#else
707 c.red = color.r; 717 c.red = color.r;
732{ 742{
733 rgba c; 743 rgba c;
734 char eos; 744 char eos;
735 int skip; 745 int skip;
736 746
747 c.a = rgba::MAX_CC;
748
737 // parse the nonstandard "[alphapercent]" prefix 749 // parse the nonstandard "[alphapercent]" prefix
738 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip)) 750 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip))
739 { 751 {
740 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);
741 name += skip; 753 name += skip;
742 } 754 }
743 else
744 c.a = rgba::MAX_CC;
745 755
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 756 // 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)) 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))
760 { 758 {
761 XColor xc; 759 XColor xc;
762 760
763 if (XParseColor (screen->dpy, screen->cmap, name, &xc)) 761 if (XParseColor (screen->dpy, screen->cmap, name, &xc))
764 { 762 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines