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.116 by sf-exg, Fri Feb 11 11:26:30 2011 UTC vs.
Revision 1.132 by sf-exg, Sun Jun 3 15:50:22 2012 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvttoolkit.C 2 * File: rxvttoolkit.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2003-2007 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2003-2011 Marc Lehmann <schmorp@schmorp.de>
7 * Copyright (c) 2011 Emanuele Giaquinta <e.giaquinta@glauco.it> 7 * Copyright (c) 2011 Emanuele Giaquinta <e.giaquinta@glauco.it>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by 10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 2 of the License, or
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
465 blank_cursor = XCreateGlyphCursor (dpy, f, f, ' ', ' ', 466 blank_cursor = XCreateGlyphCursor (dpy, f, f, ' ', ' ',
466 &blackcolour, &blackcolour); 467 &blackcolour, &blackcolour);
467 XUnloadFont (dpy, f); 468 XUnloadFont (dpy, f);
468#endif 469#endif
469 470
471 flags = 0;
472#if XRENDER
473 int major, minor;
474 if (XRenderQueryVersion (dpy, &major, &minor))
475 {
476 flags |= DISPLAY_HAS_RENDER;
477
478 if (major > 0 || (major == 0 && minor >= 11))
479 flags |= DISPLAY_HAS_RENDER_MUL;
480
481 XFilters *filters = XRenderQueryFilters (dpy, root);
482 if (filters)
483 {
484 for (int i = 0; i < filters->nfilter; i++)
485 if (!strcmp (filters->filter[i], FilterConvolution))
486 flags |= DISPLAY_HAS_RENDER_CONV;
487
488 XFree (filters);
489 }
490 }
491#endif
492
470 int fd = XConnectionNumber (dpy); 493 int fd = XConnectionNumber (dpy);
471 494
472 // try to detect whether we have a local connection. 495 // try to detect whether we have a local connection.
473 // assume unix domain socket == local, everything else not 496 // assume unix domain socket == local, everything else not
474 // TODO: might want to check for inet/127.0.0.1 497 // TODO: might want to check for inet/127.0.0.1
686 709
687bool 710bool
688rxvt_color::alloc (rxvt_screen *screen, const rgba &color) 711rxvt_color::alloc (rxvt_screen *screen, const rgba &color)
689{ 712{
690 //TODO: only supports 24 bit 713 //TODO: only supports 24 bit
691 int alpha = color.a >= 0xff00 ? 0xffff : color.a; 714 unsigned int alpha = color.a >= 0xff00 ? 0xffff : color.a;
692 715
693#if XFT 716#if XFT
694 XRenderPictFormat *format; 717 XRenderPictFormat *format;
695 718
696 // FUCKING Xft gets it wrong, of course, so work around it. 719 // FUCKING Xft gets it wrong, of course, so work around it.
703 c.color.red = color.r; 726 c.color.red = color.r;
704 c.color.green = color.g; 727 c.color.green = color.g;
705 c.color.blue = color.b; 728 c.color.blue = color.b;
706 c.color.alpha = alpha; 729 c.color.alpha = alpha;
707 730
731 // Xft wants premultiplied alpha, but abuses the alpha channel
732 // as blend factor, and doesn't allow us to set the alpha channel
733 c.color.red = c.color.red * alpha / 0xffff;
734 c.color.green = c.color.green * alpha / 0xffff;
735 c.color.blue = c.color.blue * alpha / 0xffff;
736
708 c.pixel = insert_component (color.r, format->direct.redMask , format->direct.red ) 737 c.pixel = insert_component (c.color.red , format->direct.redMask , format->direct.red )
709 | insert_component (color.g, format->direct.greenMask, format->direct.green) 738 | insert_component (c.color.green, format->direct.greenMask, format->direct.green)
710 | insert_component (color.b, format->direct.blueMask , format->direct.blue ) 739 | insert_component (c.color.blue , format->direct.blueMask , format->direct.blue )
711 | insert_component (alpha , format->direct.alphaMask, format->direct.alpha); 740 | insert_component (alpha , format->direct.alphaMask, format->direct.alpha);
712 741
713 return true; 742 return true;
714 } 743 }
715 else 744 else
716 { 745 {
719 d.red = color.r; 748 d.red = color.r;
720 d.green = color.g; 749 d.green = color.g;
721 d.blue = color.b; 750 d.blue = color.b;
722 d.alpha = alpha; 751 d.alpha = alpha;
723 752
724 return XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c); 753 if (XftColorAllocValue (screen->dpy, screen->visual, screen->cmap, &d, &c))
754 return true;
725 } 755 }
726#else 756#else
727 c.red = color.r; 757 c.red = color.r;
728 c.green = color.g; 758 c.green = color.g;
729 c.blue = color.b; 759 c.blue = color.b;
730 760
731 if (screen->visual->c_class == TrueColor) 761 if (screen->visual->c_class == TrueColor)
732 { 762 {
733 c.pixel = (color.r >> (16 - rxvt_popcount (screen->visual->red_mask )) << rxvt_ctz (screen->visual->red_mask )) 763 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)) 764 | (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 )); 765 | (color.b >> (16 - ecb_popcount32 (screen->visual->blue_mask )) << ecb_ctz32 (screen->visual->blue_mask ));
736 766
737 return true; 767 return true;
738 } 768 }
739 else if (XAllocColor (screen->dpy, screen->cmap, &c)) 769 else if (XAllocColor (screen->dpy, screen->cmap, &c))
740 return true; 770 return true;
741 else 771#endif
772
742 c.pixel = (color.r + color.g + color.b) > 128*3 773 c.pixel = (color.r + color.g + color.b) > 128*3
743 ? WhitePixelOfScreen (DefaultScreenOfDisplay (screen->dpy)) 774 ? WhitePixelOfScreen (DefaultScreenOfDisplay (screen->dpy))
744 : BlackPixelOfScreen (DefaultScreenOfDisplay (screen->dpy)); 775 : BlackPixelOfScreen (DefaultScreenOfDisplay (screen->dpy));
745#endif
746 776
747 return false; 777 return false;
748} 778}
749 779
750bool 780bool
892 lerp (c.a, to.a, percent) 922 lerp (c.a, to.a, percent)
893 ) 923 )
894 ); 924 );
895} 925}
896 926
897rxvt_selection::rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, sel_cb cb, void *ptr) 927rxvt_selection::rxvt_selection (rxvt_display *disp, int selnum, Time tm, Window win, Atom prop, rxvt_term *term)
898: display (disp), request_time (tm), request_win (win), request_prop (prop), request_cb (cb), user_data (ptr) 928: display (disp), request_time (tm), request_win (win), request_prop (prop), term (term)
899{ 929{
900 assert (selnum >= Sel_Primary && selnum <= Sel_Clipboard); 930 assert (selnum >= Sel_Primary && selnum <= Sel_Clipboard);
901 931
902 timer_ev.set<rxvt_selection, &rxvt_selection::timer_cb> (this); 932 timer_ev.set<rxvt_selection, &rxvt_selection::timer_cb> (this);
903 timer_ev.repeat = 10.; 933 timer_ev.repeat = 10.;
904 x_ev.set<rxvt_selection, &rxvt_selection::x_cb> (this); 934 x_ev.set<rxvt_selection, &rxvt_selection::x_cb> (this);
905 935
906 incr_buf = 0; 936 incr_buf = 0;
907 incr_buf_size = incr_buf_fill = 0; 937 incr_buf_size = incr_buf_fill = 0;
908 selection_wait = Sel_normal; 938 selection_wait = Sel_normal;
939 selection_type = selnum;
940 cb_sv = 0;
941}
942
943void
944rxvt_selection::stop ()
945{
946 free (incr_buf);
947 incr_buf = 0;
948 timer_ev.stop ();
949 x_ev.stop (display);
950}
951
952rxvt_selection::~rxvt_selection ()
953{
954 stop ();
955}
956
957void
958rxvt_selection::run ()
959{
960 int selnum = selection_type;
961
962#if ENABLE_FRILLS
963 if (selnum == Sel_Primary && display->selection_owner)
964 {
965 /* internal selection */
966 char *str = rxvt_wcstombs (display->selection_owner->selection.text, display->selection_owner->selection.len);
967 finish (str, strlen (str));
968 free (str);
969 return;
970 }
971#endif
909 972
910#if X_HAVE_UTF8_STRING 973#if X_HAVE_UTF8_STRING
911 selection_type = Sel_UTF8String; 974 selection_type = Sel_UTF8String;
912 if (request (display->xa[XA_UTF8_STRING], selnum)) 975 if (request (display->xa[XA_UTF8_STRING], selnum))
913 return; 976 return;
919 982
920 // fallback to CUT_BUFFER0 if the requested property has no owner 983 // fallback to CUT_BUFFER0 if the requested property has no owner
921 handle_selection (display->root, XA_CUT_BUFFER0, false); 984 handle_selection (display->root, XA_CUT_BUFFER0, false);
922} 985}
923 986
924rxvt_selection::~rxvt_selection ()
925{
926 stop ();
927}
928
929void 987void
930rxvt_selection::stop () 988rxvt_selection::finish (char *data, unsigned int len)
931{ 989{
932 free (incr_buf); 990 if (!cb_sv)
933 incr_buf = 0; 991 {
934 timer_ev.stop (); 992 if (data)
935 x_ev.stop (display); 993 term->paste (data, len);
994
995 term->selection_req = 0;
996 delete this;
997 }
998#if ENABLE_PERL
999 else
1000 {
1001 stop (); // we do not really trust perl callbacks
1002 rxvt_perl.selection_finish (this, data, len);
1003 }
1004#endif
936} 1005}
937 1006
938bool 1007bool
939rxvt_selection::request (Atom target, int selnum) 1008rxvt_selection::request (Atom target, int selnum)
940{ 1009{
1105bailout: 1174bailout:
1106 XFree (ct.value); 1175 XFree (ct.value);
1107 1176
1108 if (selection_wait == Sel_normal) 1177 if (selection_wait == Sel_normal)
1109 { 1178 {
1110 stop (); 1179 finish (data, data_len);
1111 request_cb (data, data_len, this, user_data);
1112 free (data); 1180 free (data);
1113 } 1181 }
1114} 1182}
1115 1183
1116void 1184void
1117rxvt_selection::timer_cb (ev::timer &w, int revents) 1185rxvt_selection::timer_cb (ev::timer &w, int revents)
1118{ 1186{
1119 if (selection_wait == Sel_incr) 1187 if (selection_wait == Sel_incr)
1120 rxvt_warn ("data loss: timeout on INCR selection paste, ignoring.\n"); 1188 rxvt_warn ("data loss: timeout on INCR selection paste, ignoring.\n");
1121 1189
1122 stop (); 1190 finish ();
1123 request_cb (NULL, 0, this, user_data);
1124} 1191}
1125 1192
1126void 1193void
1127rxvt_selection::x_cb (XEvent &xev) 1194rxvt_selection::x_cb (XEvent &xev)
1128{ 1195{
1135 handle_selection (xev.xproperty.window, xev.xproperty.atom, true); 1202 handle_selection (xev.xproperty.window, xev.xproperty.atom, true);
1136 break; 1203 break;
1137 1204
1138 case SelectionNotify: 1205 case SelectionNotify:
1139 if (selection_wait == Sel_normal 1206 if (selection_wait == Sel_normal
1140 && xev.xselection.time == request_time 1207 && xev.xselection.time == request_time)
1141 && xev.xselection.property == request_prop)
1142 { 1208 {
1143 timer_ev.stop (); 1209 timer_ev.stop ();
1144 handle_selection (xev.xselection.requestor, xev.xselection.property, true); 1210 handle_selection (xev.xselection.requestor, xev.xselection.property, true);
1145 } 1211 }
1146 break; 1212 break;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines