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.87 by root, Mon Dec 24 08:21:39 2007 UTC vs.
Revision 1.104 by sf-exg, Sun Jan 24 21:53:13 2010 UTC

59#if ENABLE_EWMH 59#if ENABLE_EWMH
60 "_NET_WM_PID", 60 "_NET_WM_PID",
61 "_NET_WM_NAME", 61 "_NET_WM_NAME",
62 "_NET_WM_ICON_NAME", 62 "_NET_WM_ICON_NAME",
63 "_NET_WM_PING", 63 "_NET_WM_PING",
64 "_NET_WM_ICON",
64#endif 65#endif
65#if USE_XIM 66#if USE_XIM
66 "WM_LOCALE_NAME", 67 "WM_LOCALE_NAME",
67 "XIM_SERVERS", 68 "XIM_SERVERS",
68#endif 69#endif
296///////////////////////////////////////////////////////////////////////////// 297/////////////////////////////////////////////////////////////////////////////
297 298
298rxvt_display::rxvt_display (const char *id) 299rxvt_display::rxvt_display (const char *id)
299: refcounted (id) 300: refcounted (id)
300, selection_owner (0) 301, selection_owner (0)
302, clipboard_owner (0)
301{ 303{
302 x_ev .set<rxvt_display, &rxvt_display::x_cb > (this); 304 x_ev .set<rxvt_display, &rxvt_display::x_cb > (this);
303 flush_ev.set<rxvt_display, &rxvt_display::flush_cb> (this); 305 flush_ev.set<rxvt_display, &rxvt_display::flush_cb> (this);
304} 306}
305 307
543} 545}
544#endif 546#endif
545 547
546void rxvt_display::x_cb (ev::io &w, int revents) 548void rxvt_display::x_cb (ev::io &w, int revents)
547{ 549{
550 flush_ev.start ();
551}
552
553void rxvt_display::flush_cb (ev::prepare &w, int revents)
554{
548 while (XEventsQueued (dpy, QueuedAfterReading)) 555 while (XEventsQueued (dpy, QueuedAfterFlush))
556 do
549 { 557 {
550 XEvent xev; 558 XEvent xev;
551 XNextEvent (dpy, &xev); 559 XNextEvent (dpy, &xev);
552 560
553#ifdef USE_XIM 561#ifdef USE_XIM
554 if (!XFilterEvent (&xev, None)) 562 if (!XFilterEvent (&xev, None))
555 { 563 {
556 if (xev.type == PropertyNotify 564 if (xev.type == PropertyNotify
557 && xev.xany.window == root 565 && xev.xany.window == root
558 && xev.xproperty.atom == xa[XA_XIM_SERVERS]) 566 && xev.xproperty.atom == xa[XA_XIM_SERVERS])
559 im_change_check (); 567 im_change_check ();
560#endif 568#endif
561 if (xev.type == MappingNotify) 569 if (xev.type == MappingNotify)
562 XRefreshKeyboardMapping (&xev.xmapping); 570 XRefreshKeyboardMapping (&xev.xmapping);
563 571
564 for (int i = xw.size (); i--; ) 572 for (int i = xw.size (); i--; )
565 { 573 {
566 if (!xw[i]) 574 if (!xw[i])
567 xw.erase_unordered (i); 575 xw.erase_unordered (i);
568 else if (xw[i]->window == xev.xany.window) 576 else if (xw[i]->window == xev.xany.window)
569 xw[i]->call (xev); 577 xw[i]->call (xev);
570 } 578 }
571#ifdef USE_XIM 579#ifdef USE_XIM
572 } 580 }
573#endif 581#endif
574 } 582 }
575} 583 while (XEventsQueued (dpy, QueuedAlready));
576 584
577void rxvt_display::flush_cb (ev::prepare &w, int revents)
578{
579 w.stop (); 585 w.stop ();
580 XFlush (dpy);
581} 586}
582 587
583void rxvt_display::reg (xevent_watcher *w) 588void rxvt_display::reg (xevent_watcher *w)
584{ 589{
585 if (!w->active) 590 if (!w->active)
596 xw[w->active - 1] = 0; 601 xw[w->active - 1] = 0;
597 w->active = 0; 602 w->active = 0;
598 } 603 }
599} 604}
600 605
601void rxvt_display::set_selection_owner (rxvt_term *owner) 606void rxvt_display::set_selection_owner (rxvt_term *owner, bool clipboard)
602{ 607{
608 rxvt_term * &cur_owner = !clipboard ? selection_owner : clipboard_owner;
609
603 if (selection_owner && selection_owner != owner) 610 if (cur_owner && cur_owner != owner)
604 { 611 {
605 rxvt_term *owner = selection_owner;
606
607 owner->selection_clear (); 612 cur_owner->selection_clear (clipboard);
608 owner->flush (); 613 cur_owner->flush ();
609 } 614 }
610 615
611 selection_owner = owner; 616 cur_owner = owner;
612} 617}
613 618
614#ifdef USE_XIM 619#ifdef USE_XIM
615 620
616void rxvt_display::reg (im_watcher *w) 621void rxvt_display::reg (im_watcher *w)
673} 678}
674 679
675bool 680bool
676rxvt_color::alloc (rxvt_screen *screen, const rgba &color) 681rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
677{ 682{
683 //TODO: only supports 24 bit
684 int alpha = color.a >= 0xff00 ? 0xffff : color.a;
685
678#if XFT 686#if XFT
679 XRenderPictFormat *format; 687 XRenderPictFormat *format;
680 688
681 // FUCKING Xft gets it wrong, of course, so work around it. 689 // FUCKING Xft gets it wrong, of course, so work around it.
682 // Transparency users should eat shit and die, and then 690 // Transparency users should eat shit and die, and then
686 { 694 {
687 // the fun lies in doing everything manually... 695 // the fun lies in doing everything manually...
688 c.color.red = color.r; 696 c.color.red = color.r;
689 c.color.green = color.g; 697 c.color.green = color.g;
690 c.color.blue = color.b; 698 c.color.blue = color.b;
691 c.color.alpha = color.a; 699 c.color.alpha = alpha;
692 700
693 c.pixel = insert_component (color.r, format->direct.redMask , format->direct.red ) 701 c.pixel = insert_component (color.r, format->direct.redMask , format->direct.red )
694 | insert_component (color.g, format->direct.greenMask, format->direct.green) 702 | insert_component (color.g, format->direct.greenMask, format->direct.green)
695 | insert_component (color.b, format->direct.blueMask , format->direct.blue ) 703 | insert_component (color.b, format->direct.blueMask , format->direct.blue )
696 | insert_component (color.a, format->direct.alphaMask, format->direct.alpha); 704 | insert_component (alpha , format->direct.alphaMask, format->direct.alpha);
697 705
698 return true; 706 return true;
699 } 707 }
700 else 708 else
701 { 709 {
702 XRenderColor d; 710 XRenderColor d;
703 711
704 d.red = color.r; 712 d.red = color.r;
705 d.green = color.g; 713 d.green = color.g;
706 d.blue = color.b; 714 d.blue = color.b;
707 d.alpha = color.a; 715 d.alpha = alpha;
708 716
709 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c); 717 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c);
710 } 718 }
711#else 719#else
712 c.red = color.r; 720 c.red = color.r;
713 c.green = color.g; 721 c.green = color.g;
714 c.blue = color.b; 722 c.blue = color.b;
715 723
716 if (screen->visual->c_class == TrueColor) 724 if (screen->visual->c_class == TrueColor)
717 { 725 {
718 c.pixel = (color.r >> (16 - popcount (screen->visual->red_mask )) << ctz (screen->visual->red_mask )) 726 c.pixel = (color.r >> (16 - rxvt_popcount (screen->visual->red_mask )) << rxvt_ctz (screen->visual->red_mask ))
719 | (color.g >> (16 - popcount (screen->visual->green_mask)) << ctz (screen->visual->green_mask)) 727 | (color.g >> (16 - rxvt_popcount (screen->visual->green_mask)) << rxvt_ctz (screen->visual->green_mask))
720 | (color.b >> (16 - popcount (screen->visual->blue_mask )) << ctz (screen->visual->blue_mask )); 728 | (color.b >> (16 - rxvt_popcount (screen->visual->blue_mask )) << rxvt_ctz (screen->visual->blue_mask ));
721 729
722 return true; 730 return true;
723 } 731 }
724 else if (XAllocColor (screen->dpy, screen->cmap, &c)) 732 else if (XAllocColor (screen->dpy, screen->cmap, &c))
725 return true; 733 return true;
737{ 745{
738 rgba c; 746 rgba c;
739 char eos; 747 char eos;
740 int skip; 748 int skip;
741 749
750 c.a = rgba::MAX_CC;
751
742 // parse the nonstandard "[alphapercent]" prefix 752 // parse the nonstandard "[alphapercent]" prefix
743 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip)) 753 if (1 <= sscanf (name, "[%hd]%n", &c.a, &skip))
744 { 754 {
745 c.a = lerp<int, int, int> (0, rgba::MAX_CC, c.a); 755 c.a = lerp<int, int, int> (0, rgba::MAX_CC, c.a);
746 name += skip; 756 name += skip;
747 } 757 }
748 else
749 c.a = rgba::MAX_CC;
750 758
751 // parse the non-standard "#aarrggbb" format
752 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))
753 {
754 if (c.r)
755 c.r = (c.r << 8) | 0x0ff;
756 if (c.g)
757 c.g = (c.g << 8) | 0x0ff;
758 if (c.b)
759 c.b = (c.b << 8) | 0x0ff;
760 if (c.a)
761 c.a = (c.a << 8) | 0x0ff;
762 }
763 // parse the non-standard "rgba:rrrr/gggg/bbbb/aaaa" format 759 // parse the non-standard "rgba:rrrr/gggg/bbbb/aaaa" format
764 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)) 760 if (strlen (name) != 4+5*4 || 4 != sscanf (name, "rgba:%4hx/%4hx/%4hx/%4hx%c", &c.r, &c.g, &c.b, &c.a, &eos))
765 { 761 {
766 XColor xc; 762 XColor xc;
767 763
768 if (XParseColor (screen->dpy, screen->cmap, name, &xc)) 764 if (XParseColor (screen->dpy, screen->cmap, name, &xc))
769 { 765 {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines