ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/command.C
(Generate patch)

Comparing rxvt-unicode/src/command.C (file contents):
Revision 1.313 by root, Wed Jul 5 22:46:14 2006 UTC vs.
Revision 1.327 by ayin, Mon Jun 11 13:33:34 2007 UTC

497 { 497 {
498 commit_iso14755 (); 498 commit_iso14755 ();
499 iso14755buf = ISO_14755_51; 499 iso14755buf = ISO_14755_51;
500# if ISO_14755 500# if ISO_14755
501 iso14755_51 (0); 501 iso14755_51 (0);
502# endif
503 return;
504 }
505 else if (keysym == XK_BackSpace)
506 {
507 iso14755buf = ((iso14755buf & ISO_14755_MASK) >> 4) | ISO_14755_51;
508# if ISO_14755
509 iso14755_51 (iso14755buf & ISO_14755_MASK);
502# endif 510# endif
503 return; 511 return;
504 } 512 }
505 else if ((hv = hex_keyval (ev)) >= 0) 513 else if ((hv = hex_keyval (ev)) >= 0)
506 { 514 {
877 return; 885 return;
878 886
879 if (len <= 0) 887 if (len <= 0)
880 return; /* not mapped */ 888 return; /* not mapped */
881 889
882 if (OPTION (Opt_scrollTtyKeypress)) 890 if (option (Opt_scrollTtyKeypress))
883 if (view_start) 891 if (view_start)
884 { 892 {
885 view_start = 0; 893 view_start = 0;
886 want_refresh = 1; 894 want_refresh = 1;
887 } 895 }
965 scr_overlay_off (); 973 scr_overlay_off ();
966# endif 974# endif
967 if (iso14755buf & ISO_14755_51) 975 if (iso14755buf & ISO_14755_51)
968 commit_iso14755 (); 976 commit_iso14755 ();
969#if ISO_14755 977#if ISO_14755
970 else if (iso14755buf & ISO_14755_STARTED) 978 else if (option (Opt_iso14755_52) && iso14755buf & ISO_14755_STARTED)
971 { 979 {
972 iso14755buf = ISO_14755_52; // iso14755 part 5.2: remember empty begin/end pair 980 iso14755buf = ISO_14755_52; // iso14755 part 5.2: remember empty begin/end pair
973 981
974 scr_overlay_new (0, -1, sizeof ("KEYCAP PICTURE INSERT MODE") - 1, 1); 982 scr_overlay_new (0, -1, sizeof ("KEYCAP PICTURE INSERT MODE") - 1, 1);
975 scr_overlay_set (0, 0, "KEYCAP PICTURE INSERT MODE"); 983 scr_overlay_set (0, 0, "KEYCAP PICTURE INSERT MODE");
1232 } 1240 }
1233 else 1241 else
1234 { 1242 {
1235 pty_ev.stop (); 1243 pty_ev.stop ();
1236 1244
1237 if (!OPTION (Opt_hold)) 1245 if (!option (Opt_hold))
1238 destroy (); 1246 destroy ();
1239 } 1247 }
1240 1248
1241 return false; 1249 return false;
1242} 1250}
1263 recolour_cursor (); 1271 recolour_cursor ();
1264 1272
1265#ifdef POINTER_BLANK 1273#ifdef POINTER_BLANK
1266 hidden_pointer = 0; 1274 hidden_pointer = 0;
1267 1275
1268 if (OPTION (Opt_pointerBlank)) 1276 if (option (Opt_pointerBlank))
1269 pointer_ev.start (NOW + pointerBlankDelay); 1277 pointer_ev.start (NOW + pointerBlankDelay);
1270#endif 1278#endif
1271} 1279}
1272 1280
1273#ifdef POINTER_BLANK 1281#ifdef POINTER_BLANK
1274void 1282void
1275rxvt_term::pointer_blank () 1283rxvt_term::pointer_blank ()
1276{ 1284{
1277 if (!OPTION (Opt_pointerBlank)) 1285 if (!option (Opt_pointerBlank))
1278 return; 1286 return;
1279 1287
1280 XDefineCursor (dpy, vt, display->blank_cursor); 1288 XDefineCursor (dpy, vt, display->blank_cursor);
1281 XFlush (dpy); 1289 XFlush (dpy);
1282 1290
1458 break; 1466 break;
1459 } 1467 }
1460 break; 1468 break;
1461 1469
1462 case FocusIn: 1470 case FocusIn:
1471 if (ev.xfocus.detail != NotifyInferior
1472 && ev.xfocus.detail != NotifyPointer
1473 && ev.xfocus.mode != NotifyGrab)
1463 focus_in (); 1474 focus_in ();
1464 break; 1475 break;
1465 1476
1466 case FocusOut: 1477 case FocusOut:
1478 if (ev.xfocus.detail != NotifyInferior
1479 && ev.xfocus.detail != NotifyPointer
1480 && ev.xfocus.mode != NotifyGrab)
1467 focus_out (); 1481 focus_out ();
1468 break; 1482 break;
1469 1483
1470 case ConfigureNotify: 1484 case ConfigureNotify:
1471 if (ev.xconfigure.window == parent[0]) 1485 if (ev.xconfigure.window == parent[0])
1472 { 1486 {
1475 1489
1476 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height) 1490 if (szHint.width != ev.xconfigure.width || szHint.height != ev.xconfigure.height)
1477 { 1491 {
1478 seen_resize = 1; 1492 seen_resize = 1;
1479 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1); 1493 resize_all_windows (ev.xconfigure.width, ev.xconfigure.height, 1);
1494#ifdef XPM_BACKGROUND
1495 if (!option(Opt_transparent) && bgPixmap.auto_resize)
1496 {
1497 resize_pixmap ();
1498 scr_touch (true);
1499 }
1500#endif
1480 } 1501 }
1481 1502
1482 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END)); 1503 HOOK_INVOKE ((this, HOOK_CONFIGURE_NOTIFY, DT_XEVENT, &ev, DT_END));
1483 1504
1484#ifdef TRANSPARENT /* XXX: maybe not needed - leave in for now */ 1505#ifdef TRANSPARENT
1485 if (OPTION (Opt_transparent)) 1506 if (option (Opt_transparent))
1486 check_our_parents (); 1507 check_our_parents ();
1487#endif 1508#endif
1488 } 1509 }
1489 break; 1510 break;
1490 1511
1679 } 1700 }
1680 break; 1701 break;
1681 } 1702 }
1682 1703
1683#if defined(CURSOR_BLINK) 1704#if defined(CURSOR_BLINK)
1684 if (OPTION (Opt_cursorBlink) && ev.type == KeyPress) 1705 if (option (Opt_cursorBlink) && ev.type == KeyPress)
1685 { 1706 {
1686 if (hidden_cursor) 1707 if (hidden_cursor)
1687 { 1708 {
1688 hidden_cursor = 0; 1709 hidden_cursor = 0;
1689 want_refresh = 1; 1710 want_refresh = 1;
1692 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1713 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL);
1693 } 1714 }
1694#endif 1715#endif
1695 1716
1696#if defined(POINTER_BLANK) 1717#if defined(POINTER_BLANK)
1697 if (OPTION (Opt_pointerBlank) && pointerBlankDelay > 0) 1718 if (option (Opt_pointerBlank) && pointerBlankDelay > 0)
1698 { 1719 {
1699 if (ev.type == MotionNotify 1720 if (ev.type == MotionNotify
1700 || ev.type == ButtonPress 1721 || ev.type == ButtonPress
1701 || ev.type == ButtonRelease) 1722 || ev.type == ButtonRelease)
1702 if (hidden_pointer) 1723 if (hidden_pointer)
1724 IMSetPosition (); 1745 IMSetPosition ();
1725 XSetICFocus (Input_Context); 1746 XSetICFocus (Input_Context);
1726 } 1747 }
1727#endif 1748#endif
1728#if CURSOR_BLINK 1749#if CURSOR_BLINK
1729 if (OPTION (Opt_cursorBlink)) 1750 if (option (Opt_cursorBlink))
1730 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL); 1751 cursor_blink_ev.start (NOW + CURSOR_BLINK_INTERVAL);
1731#endif 1752#endif
1732#if OFF_FOCUS_FADING 1753#if OFF_FOCUS_FADING
1733 if (rs[Rs_fade]) 1754 if (rs[Rs_fade])
1734 { 1755 {
1735 pix_colors = pix_colors_focused; 1756 pix_colors = pix_colors_focused;
1736 scr_recolour (); 1757 scr_recolour ();
1758 }
1759#endif
1760#if ENABLE_FRILLS
1761 if (option (Opt_urgentOnBell))
1762 {
1763 XWMHints *h;
1764
1765 h = XGetWMHints(dpy, parent[0]);
1766 if (h != NULL)
1767 {
1768 h->flags &= ~XUrgencyHint;
1769 XSetWMHints(dpy, parent[0], h);
1770 }
1737 } 1771 }
1738#endif 1772#endif
1739 } 1773 }
1740} 1774}
1741 1775
1761#if USE_XIM 1795#if USE_XIM
1762 if (Input_Context != NULL) 1796 if (Input_Context != NULL)
1763 XUnsetICFocus (Input_Context); 1797 XUnsetICFocus (Input_Context);
1764#endif 1798#endif
1765#if CURSOR_BLINK 1799#if CURSOR_BLINK
1766 if (OPTION (Opt_cursorBlink)) 1800 if (option (Opt_cursorBlink))
1767 cursor_blink_ev.stop (); 1801 cursor_blink_ev.stop ();
1768 hidden_cursor = 0; 1802 hidden_cursor = 0;
1769#endif 1803#endif
1770#if OFF_FOCUS_FADING 1804#if OFF_FOCUS_FADING
1771 if (rs[Rs_fade]) 1805 if (rs[Rs_fade])
1788 pix_colors_focused [idx].fade (this, atoi (rs[Rs_fade]), pix_colors_unfocused [idx], c); 1822 pix_colors_focused [idx].fade (this, atoi (rs[Rs_fade]), pix_colors_unfocused [idx], c);
1789 } 1823 }
1790#endif 1824#endif
1791} 1825}
1792 1826
1793#if TRANSPARENT 1827#if TRANSPARENT || ENABLE_PERL
1794void 1828void
1795rxvt_term::rootwin_cb (XEvent &ev) 1829rxvt_term::rootwin_cb (XEvent &ev)
1796{ 1830{
1797 make_current (); 1831 make_current ();
1798 1832
1833 if (SHOULD_INVOKE (HOOK_ROOT_EVENT)
1834 && HOOK_INVOKE ((this, HOOK_ROOT_EVENT, DT_XEVENT, &ev, DT_END)))
1835 return;
1836
1837# if TRANSPARENT
1799 switch (ev.type) 1838 switch (ev.type)
1800 { 1839 {
1801 case PropertyNotify: 1840 case PropertyNotify:
1802 /* 1841 /*
1803 * if user used some Esetroot compatible prog to set the root bg, 1842 * if user used some Esetroot compatible prog to set the root bg,
1807 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID]) 1846 && ev.xproperty.atom != xa[XA_ESETROOT_PMAP_ID])
1808 return; 1847 return;
1809 1848
1810 /* FALLTHROUGH */ 1849 /* FALLTHROUGH */
1811 case ReparentNotify: 1850 case ReparentNotify:
1812 if (OPTION (Opt_transparent) && check_our_parents () && am_transparent) 1851 if (option (Opt_transparent))
1813 want_refresh = want_full_refresh = 1; 1852 check_our_parents ();
1814 break; 1853 break;
1815 } 1854 }
1855# endif
1816} 1856}
1817#endif 1857#endif
1818 1858
1819void 1859void
1820rxvt_term::button_press (XButtonEvent &ev) 1860rxvt_term::button_press (XButtonEvent &ev)
2148 selection_make (ev.time); 2188 selection_make (ev.time);
2149 break; 2189 break;
2150 2190
2151 case Button2: 2191 case Button2:
2152 if (IN_RANGE_EXC (ev.x, 0, width) && IN_RANGE_EXC (ev.y, 0, height)) // inside window? 2192 if (IN_RANGE_EXC (ev.x, 0, width) && IN_RANGE_EXC (ev.y, 0, height)) // inside window?
2153 selection_request (ev.time, ev.state & ModMetaMask ? Sel_Primary : Sel_Primary); 2193 selection_request (ev.time, ev.state & ModMetaMask ? Sel_Clipboard : Sel_Primary);
2154 break; 2194 break;
2155 2195
2156#ifdef MOUSE_WHEEL 2196#ifdef MOUSE_WHEEL
2157 case Button4: 2197 case Button4:
2158 case Button5: 2198 case Button5:
2162 2202
2163 v = ev.button == Button4 ? UP : DN; 2203 v = ev.button == Button4 ? UP : DN;
2164 2204
2165 if (ev.state & ShiftMask) 2205 if (ev.state & ShiftMask)
2166 i = 1; 2206 i = 1;
2167 else if (OPTION (Opt_mouseWheelScrollPage)) 2207 else if (option (Opt_mouseWheelScrollPage))
2168 i = nrow - 1; 2208 i = nrow - 1;
2169 else 2209 else
2170 i = 5; 2210 i = 5;
2171 2211
2172# ifdef MOUSE_SLIP_WHEELING 2212# ifdef MOUSE_SLIP_WHEELING
2195 } 2235 }
2196 } 2236 }
2197} 2237}
2198 2238
2199#ifdef TRANSPARENT 2239#ifdef TRANSPARENT
2200#if TINTING 2240#if TINTING && !defined(HAVE_AFTERIMAGE)
2201/* taken from aterm-0.4.2 */ 2241/* taken from aterm-0.4.2 */
2202 2242
2203typedef uint32_t RUINT32T; 2243typedef uint32_t RUINT32T;
2204 2244
2205void ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm) 2245void ShadeXImage(rxvt_term *term, XImage* srcImage, int shade, int rm, int gm, int bm)
2433 * Do transparency updates if required 2473 * Do transparency updates if required
2434 */ 2474 */
2435int 2475int
2436rxvt_term::check_our_parents () 2476rxvt_term::check_our_parents ()
2437{ 2477{
2478 check_our_parents_ev.stop ();
2479 check_our_parents_ev.start (NOW + .1);
2480 return 0;
2481}
2482
2483void
2484rxvt_term::check_our_parents_cb (time_watcher &w)
2485{
2438 int i, pchanged, aformat, have_pixmap, rootdepth; 2486 int i, pchanged, aformat, have_pixmap, rootdepth;
2439 unsigned long nitems, bytes_after; 2487 unsigned long nitems, bytes_after;
2440 Atom atype; 2488 Atom atype;
2441 unsigned char *prop = NULL; 2489 unsigned char *prop = NULL;
2442 Window root, oldp, *list; 2490 Window root, oldp, *list;
2443 Pixmap rootpixmap = None; 2491 Pixmap rootpixmap = None;
2444 XWindowAttributes wattr, wrootattr; 2492 XWindowAttributes wattr, wrootattr;
2493 int sx, sy;
2494 Window cr;
2445 2495
2446 pchanged = 0; 2496 pchanged = 0;
2447 2497
2448 if (!OPTION (Opt_transparent)) 2498 if (!option (Opt_transparent))
2449 return pchanged; /* Don't try any more */ 2499 return /*pchanged*/; /* Don't try any more */
2450 2500
2451 XGetWindowAttributes (dpy, display->root, &wrootattr); 2501 XGetWindowAttributes (dpy, display->root, &wrootattr);
2452 rootdepth = wrootattr.depth; 2502 rootdepth = wrootattr.depth;
2453 2503
2454 XGetWindowAttributes (dpy, parent[0], &wattr); 2504 XGetWindowAttributes (dpy, parent[0], &wattr);
2460 pchanged = 1; 2510 pchanged = 1;
2461 XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]); 2511 XSetWindowBackground (dpy, vt, pix_colors_focused[Color_bg]);
2462 am_transparent = am_pixmap_trans = 0; 2512 am_transparent = am_pixmap_trans = 0;
2463 } 2513 }
2464 2514
2465 return pchanged; /* Don't try any more */ 2515 return /*pchanged*/; /* Don't try any more */
2466 } 2516 }
2467 2517
2468 /* Get all X ops out of the queue so that our information is up-to-date. */ 2518 /* Get all X ops out of the queue so that our information is up-to-date. */
2469 XSync (dpy, False); 2519 XSync (dpy, False);
2470 2520
2521 XTranslateCoordinates (dpy, parent[0], display->root,
2522 0, 0, &sx, &sy, &cr);
2523
2524 /* check if we are outside of the visible part of the virtual screen : */
2525 if( sx + (int)szHint.width <= 0 || sy + (int)szHint.height <= 0
2526 || sx >= wrootattr.width || sy >= wrootattr.height )
2527 return /* 0 */ ;
2471 /* 2528 /*
2472 * Make the frame window set by the window manager have 2529 * Make the frame window set by the window manager have
2473 * the root background. Some window managers put multiple nested frame 2530 * the root background. Some window managers put multiple nested frame
2474 * windows for each client, so we have to take care about that. 2531 * windows for each client, so we have to take care about that.
2475 */ 2532 */
2484 0L, 1L, False, XA_PIXMAP, &atype, &aformat, 2541 0L, 1L, False, XA_PIXMAP, &atype, &aformat,
2485 &nitems, &bytes_after, &prop) == Success); 2542 &nitems, &bytes_after, &prop) == Success);
2486 2543
2487 if (!i || prop == NULL 2544 if (!i || prop == NULL
2488#if TINTING 2545#if TINTING
2489 || !ISSET_PIXCOLOR (Color_tint) 2546 || (!ISSET_PIXCOLOR (Color_tint) && rs[Rs_shade] == NULL
2547#ifdef HAVE_AFTERIMAGE
2548 && original_asim == NULL && rs[Rs_blurradius] == NULL
2549#endif
2550 )
2490#endif 2551#endif
2491 ) 2552 )
2492 have_pixmap = 0; 2553 have_pixmap = 0;
2493 else 2554 else
2494 { 2555 {
2497 XFree (prop); 2558 XFree (prop);
2498 } 2559 }
2499 2560
2500 if (have_pixmap) 2561 if (have_pixmap)
2501 { 2562 {
2563 Bool success = False ;
2564 GC gc;
2565 XGCValues gcvalue;
2566#ifdef HAVE_AFTERIMAGE
2567 {
2568 Pixmap tmp_pmap = None ;
2569 ShadingInfo shade;
2570 ARGB32 tint ;
2571 unsigned int pmap_w = 0, pmap_h = 0;
2572
2573 if (get_drawable_size( rootpixmap, &pmap_w, &pmap_h ))
2574 {
2575 int root_x = 0, root_y = 0;
2576
2577 shade.shading = rs[Rs_shade] ? atoi (rs[Rs_shade]) : 100;
2578 if (ISSET_PIXCOLOR (Color_tint))
2579 {
2580 rgba c;
2581 pix_colors_focused [Color_tint].get (c);
2582 shade.tintColor.red = c.r;
2583 shade.tintColor.green = c.g;
2584 shade.tintColor.blue = c.b;
2585 }
2586 else
2587 shade.tintColor.red = shade.tintColor.green = shade.tintColor.blue = 0xFFFF;
2588 tint = shading2tint32( &shade );
2589 gc = XCreateGC (dpy, vt, 0UL, &gcvalue);
2590 if (GetWinPosition (parent[0], &root_x, &root_y) )
2591 {
2592 ASImageLayer *layers = create_image_layers( 2 );
2593 ASImage *merged_im = NULL;
2594 int back_x, back_y, back_w, back_h;
2595 /* merge_layers does good job at tiling background appropriately,
2596 so all we need is to cut out smallest possible piece : */
2597#define MAKE_ROOTPMAP_GEOM(xy,wh,widthheight) \
2598 do{ while( root_##xy < 0 ) root_##xy += (int)wrootattr.widthheight; \
2599 back_##xy = root_##xy % pmap_##wh; /* that gives us left side of the closest tile : */ \
2600 if( pmap_##wh >= back_##xy + szHint.widthheight ) \
2601 back_##wh = szHint.widthheight;/* background is large - limit it by our size */ \
2602 else \
2603 { /* small background - need the whole of it for successfull tiling :*/ \
2604 back_##xy = 0; \
2605 back_##wh = pmap_##wh; \
2606 }}while(0)
2607
2608 MAKE_ROOTPMAP_GEOM(x,w,width);
2609 MAKE_ROOTPMAP_GEOM(y,h,height);
2610
2611 layers[0].im = pixmap2asimage (display->asv, rootpixmap, back_x, back_y, back_w, back_h, AllPlanes, ASA_ASImage, 100);
2612 layers[0].clip_x = (back_w == pmap_w)?root_x:0;
2613 layers[0].clip_y = (back_h == pmap_h)?root_y:0;
2614 layers[0].clip_width = szHint.width;
2615 layers[0].clip_height = szHint.height;
2616 layers[0].tint = tint;
2617 if (rs[Rs_blurradius] && layers[0].im)
2618 {
2619 double r = atof(rs[Rs_blurradius]);
2620 ASImage* tmp = blur_asimage_gauss(display->asv, layers[0].im, r, r, 0xFFFFFFFF, ASA_ASImage, 100, ASIMAGE_QUALITY_DEFAULT );
2621 if( tmp )
2622 {
2623 destroy_asimage( &layers[0].im );
2624 layers[0].im = tmp;
2625 }
2626 }
2627 if (original_asim != NULL)
2628 {
2629 int fore_w, fore_h;
2630 layers[1].im = original_asim;
2631 if( bgPixmap.auto_resize )
2632 {
2633 fore_w = szHint.width;
2634 fore_h = szHint.height;
2635 }
2636 else
2637 {
2638 fore_w = bgPixmap.w;
2639 fore_h = bgPixmap.h;
2640 }
2641 if (fore_w != original_asim->width
2642 || fore_h != original_asim->height)
2643 {
2644 layers[1].im = scale_asimage( display->asv,
2645 original_asim,
2646 fore_w, fore_h,
2647 ASA_ASImage, 100,
2648 ASIMAGE_QUALITY_DEFAULT );
2649 }
2650
2651 layers[1].clip_width = szHint.width;
2652 layers[1].clip_height = szHint.height;
2653
2654 if (rs[Rs_blendtype])
2655 {
2656 layers[1].merge_scanlines = blend_scanlines_name2func(rs[Rs_blendtype]);
2657 if( layers[1].merge_scanlines == NULL )
2658 layers[1].merge_scanlines = alphablend_scanlines;
2659 }
2660 }
2661 merged_im = merge_layers( display->asv, layers, layers[1].im?2:1,
2662 szHint.width, szHint.height,
2663 ASA_XImage, 0, ASIMAGE_QUALITY_DEFAULT );
2664 if (layers[1].im != original_asim)
2665 destroy_asimage( &(layers[1].im) );
2666 destroy_asimage( &(layers[0].im) );
2667 if (merged_im != NULL)
2668 {
2669 tmp_pmap = asimage2pixmap( display->asv, DefaultRootWindow(dpy), merged_im, gc, True );
2670 destroy_asimage( &merged_im );
2671 }
2672 free( layers );
2673 }
2674 }
2675 if (tmp_pmap != None)
2676 {
2677 success = True;
2678 if (pixmap != None)
2679 XFreePixmap (dpy, pixmap);
2680 pixmap = tmp_pmap;
2681 }
2682 }
2683#else /* HAVE_AFTERIMAGE */
2684 {
2502 /* 2685 /*
2503 * Copy display->root pixmap transparency 2686 * Copy display->root pixmap transparency
2504 */ 2687 */
2505 int sx, sy, nx, ny; 2688 int nx, ny;
2506 unsigned int nw, nh; 2689 unsigned int nw, nh;
2507 Window cr;
2508 XImage *image; 2690 XImage *image;
2509 GC gc;
2510 XGCValues gcvalue;
2511 2691
2512 XTranslateCoordinates (dpy, parent[0], display->root,
2513 0, 0, &sx, &sy, &cr);
2514 nw = (unsigned int)szHint.width; 2692 nw = (unsigned int)szHint.width;
2515 nh = (unsigned int)szHint.height; 2693 nh = (unsigned int)szHint.height;
2516 nx = ny = 0; 2694 nx = ny = 0;
2517 2695
2518 if (sx < 0) 2696 if (sx < 0)
2519 { 2697 {
2520 nw += sx; 2698 nw += sx;
2521 nx = -sx; 2699 nx = -sx;
2522 sx = 0; 2700 sx = 0;
2523 } 2701 }
2524 2702
2525 if (sy < 0) 2703 if (sy < 0)
2526 { 2704 {
2527 nh += sy; 2705 nh += sy;
2528 ny = -sy; 2706 ny = -sy;
2529 sy = 0; 2707 sy = 0;
2530 } 2708 }
2531 2709
2532 min_it (nw, (unsigned int) (wrootattr.width - sx)); 2710 min_it (nw, (unsigned int) (wrootattr.width - sx));
2533 min_it (nh, (unsigned int) (wrootattr.height - sy)); 2711 min_it (nh, (unsigned int) (wrootattr.height - sy));
2534 2712
2535 XSync (dpy, False); 2713 XSync (dpy, False);
2536 allowedxerror = -1; 2714 allowedxerror = -1;
2537 image = XGetImage (dpy, rootpixmap, sx, sy, nw, nh, AllPlanes, ZPixmap); 2715 image = XGetImage (dpy, rootpixmap, sx, sy, nw, nh, AllPlanes, ZPixmap);
2538 2716
2539 /* XXX: handle BadMatch - usually because we're outside the pixmap */ 2717 /* XXX: handle BadMatch - usually because we're outside the pixmap */
2540 /* XXX: may need a delay here? */ 2718 /* XXX: may need a delay here? */
2541 allowedxerror = 0; 2719 allowedxerror = 0;
2542
2543 if (image == NULL) 2720 if (image != NULL)
2721 {
2722 if (pixmap != None)
2723 XFreePixmap (dpy, pixmap);
2724
2725#if TINTING
2726 if (ISSET_PIXCOLOR (Color_tint))
2727 {
2728 int shade = rs[Rs_shade] ? atoi (rs[Rs_shade]) : 100;
2729
2730 rgba c;
2731 pix_colors_focused [Color_tint].get (c);
2732 ShadeXImage (this, image, shade, c.r, c.g, c.b);
2733 }
2734#endif
2735
2736 pixmap = XCreatePixmap (dpy, vt, szHint.width, szHint.height, image->depth);
2737 gc = XCreateGC (dpy, vt, 0UL, &gcvalue);
2738 XPutImage (dpy, pixmap, gc, image, 0, 0,
2739 nx, ny, image->width, image->height);
2740 XDestroyImage (image);
2741 success = True ;
2742 }
2743 }
2744#endif /* HAVE_AFTERIMAGE */
2745 if (gc != NULL)
2746 XFreeGC (dpy, gc);
2747
2748 if (!success)
2544 { 2749 {
2545 if (am_transparent && am_pixmap_trans) 2750 if (am_transparent && am_pixmap_trans)
2546 { 2751 {
2547 pchanged = 1; 2752 pchanged = 1;
2548 if (pixmap != None) 2753 if (pixmap != None)
2554 2759
2555 am_pixmap_trans = 0; 2760 am_pixmap_trans = 0;
2556 } 2761 }
2557 else 2762 else
2558 { 2763 {
2559 if (pixmap != None)
2560 XFreePixmap (dpy, pixmap);
2561
2562#if TINTING
2563 if (ISSET_PIXCOLOR (Color_tint))
2564 {
2565 int shade = rs[Rs_shade] ? atoi (rs[Rs_shade]) : 100;
2566
2567 rgba c;
2568 pix_colors_focused [Color_tint].get (c);
2569
2570 ShadeXImage (this, image, shade, c.r, c.g, c.b);
2571 }
2572#endif
2573
2574 pixmap = XCreatePixmap (dpy, vt, szHint.width, szHint.height, image->depth);
2575 gc = XCreateGC (dpy, vt, 0UL, &gcvalue);
2576 XPutImage (dpy, pixmap, gc, image, 0, 0,
2577 nx, ny, image->width, image->height);
2578 XFreeGC (dpy, gc);
2579 XDestroyImage (image);
2580 XSetWindowBackgroundPixmap (dpy, parent[0], pixmap); 2764 XSetWindowBackgroundPixmap (dpy, parent[0], pixmap);
2581 XClearWindow (dpy, parent[0]); 2765 XClearWindow (dpy, parent[0]);
2582 2766
2583 if (!am_transparent || !am_pixmap_trans) 2767 if (!am_transparent || !am_pixmap_trans)
2584 pchanged = 1; 2768 pchanged = 1;
2662 want_refresh = want_full_refresh = 1; 2846 want_refresh = want_full_refresh = 1;
2663 if (am_pixmap_trans) 2847 if (am_pixmap_trans)
2664 flush (); 2848 flush ();
2665 } 2849 }
2666 2850
2667 return pchanged; 2851// return pchanged;
2668} 2852}
2669#endif 2853#endif
2670 2854
2671/*}}} */ 2855/*}}} */
2672 2856
2723 if (ch == C0_LF) 2907 if (ch == C0_LF)
2724 nlines++; 2908 nlines++;
2725 2909
2726 refresh_count++; 2910 refresh_count++;
2727 2911
2728 if (!OPTION (Opt_jumpScroll) 2912 if (!option (Opt_jumpScroll)
2729 || (refresh_count >= refresh_limit * (nrow - 1))) 2913 || (refresh_count >= refresh_limit * (nrow - 1)))
2730 { 2914 {
2731 refreshnow = true; 2915 refreshnow = true;
2732 refresh_count = 0; 2916 refresh_count = 0;
2733 ch = NOCHAR; 2917 ch = NOCHAR;
2773 * the number of pages between refreshes is refresh_limit, which 2957 * the number of pages between refreshes is refresh_limit, which
2774 * is incremented here because we must be doing flat-out scrolling. 2958 * is incremented here because we must be doing flat-out scrolling.
2775 */ 2959 */
2776 if (refreshnow) 2960 if (refreshnow)
2777 { 2961 {
2778 if (OPTION (Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD) 2962 if (option (Opt_jumpScroll) && refresh_limit < REFRESH_PERIOD)
2779 refresh_limit++; 2963 refresh_limit++;
2780 else 2964 else
2781 { 2965 {
2782 flag = true; 2966 flag = true;
2783 //TODO: due to popular request, implement "skipscroll" option here 2967 //TODO: due to popular request, implement "skipscroll" option here
3449 break; 3633 break;
3450 case 6: /* CPR requested */ 3634 case 6: /* CPR requested */
3451 scr_report_position (); 3635 scr_report_position ();
3452 break; 3636 break;
3453 case 7: /* unofficial extension */ 3637 case 7: /* unofficial extension */
3454 if (OPTION (Opt_insecure)) 3638 if (option (Opt_insecure))
3455 tt_printf ("%-.250s\012", rs[Rs_display_name]); 3639 tt_printf ("%-.250s\012", rs[Rs_display_name]);
3456 break; 3640 break;
3457 case 8: /* unofficial extension */ 3641 case 8: /* unofficial extension */
3458 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST); 3642 process_xterm_seq (XTerm_title, RESNAME "-" VERSION, CHAR_ST);
3459 break; 3643 break;
3623 break; 3807 break;
3624 case 20: /* report icon label */ 3808 case 20: /* report icon label */
3625 { 3809 {
3626 char *s; 3810 char *s;
3627 XGetIconName (dpy, parent[0], &s); 3811 XGetIconName (dpy, parent[0], &s);
3628 tt_printf ("\033]L%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */ 3812 tt_printf ("\033]L%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */
3629 XFree (s); 3813 XFree (s);
3630 } 3814 }
3631 break; 3815 break;
3632 case 21: /* report window title */ 3816 case 21: /* report window title */
3633 { 3817 {
3634 char *s; 3818 char *s;
3635 XFetchName (dpy, parent[0], &s); 3819 XFetchName (dpy, parent[0], &s);
3636 tt_printf ("\033]l%-.250s\234", OPTION (Opt_insecure) && s ? s : ""); /* 8bit ST */ 3820 tt_printf ("\033]l%-.250s\234", option (Opt_insecure) && s ? s : ""); /* 8bit ST */
3637 XFree (s); 3821 XFree (s);
3638 } 3822 }
3639 break; 3823 break;
3640 } 3824 }
3641} 3825}
3668 seen_esc = true; 3852 seen_esc = true;
3669 continue; 3853 continue;
3670 } 3854 }
3671 else if (ch == C0_BEL || ch == CHAR_ST) 3855 else if (ch == C0_BEL || ch == CHAR_ST)
3672 break; 3856 break;
3857 else if (ch == C0_SYN)
3858 ch = cmd_get8 ();
3673 else if (ch < 0x20) 3859 else if (ch < 0x20)
3674 return NULL; /* other control character - exit */ 3860 return NULL; /* other control character - exit */
3675 3861
3676 seen_esc = false; 3862 seen_esc = false;
3677 3863
3678 if (n >= STRING_MAX - 1) 3864 if (n >= STRING_MAX - 1)
3679 // stop at some sane length 3865 // stop at some sane length
3680 return NULL; 3866 return NULL;
3681 3867
3682 if (ch == C0_SYN)
3683 string[n++] = cmd_get8 ();
3684 else
3685 string[n++] = ch; 3868 string[n++] = ch;
3686 } 3869 }
3687 3870
3688 string[n++] = '\0'; 3871 string[n++] = '\0';
3689 3872
3690 ends_how = (ch == 0x5c ? C0_ESC : ch); 3873 ends_how = (ch == 0x5c ? C0_ESC : ch);
3914#ifdef XPM_BACKGROUND 4097#ifdef XPM_BACKGROUND
3915 resize_pixmap (); 4098 resize_pixmap ();
3916 scr_touch (true); 4099 scr_touch (true);
3917#endif 4100#endif
3918 } 4101 }
4102#if TRANSPARENT && defined(HAVE_AFTERIMAGE)
4103 if (option(Opt_transparent))
4104 check_our_parents ();
4105#endif
4106
3919 } 4107 }
3920 break; 4108 break;
3921 4109
3922 case Rxvt_restoreFG: 4110 case Rxvt_restoreFG:
3923 set_window_color (Color_fg, str); 4111 set_window_color (Color_fg, str);
3950 case URxvt_italicFont: 4138 case URxvt_italicFont:
3951 case URxvt_boldItalicFont: 4139 case URxvt_boldItalicFont:
3952#endif 4140#endif
3953 if (query) 4141 if (query)
3954 tt_printf ("\33]%d;%-.250s%c", saveop, 4142 tt_printf ("\33]%d;%-.250s%c", saveop,
3955 OPTION (Opt_insecure) && fontset[op - URxvt_font]->fontdesc 4143 option (Opt_insecure) && fontset[op - URxvt_font]->fontdesc
3956 ? fontset[op - URxvt_font]->fontdesc : "", 4144 ? fontset[op - URxvt_font]->fontdesc : "",
3957 resp); 4145 resp);
3958 else 4146 else
3959 { 4147 {
3960 const char *&res = rs[Rs_font + (op - URxvt_font)]; 4148 const char *&res = rs[Rs_font + (op - URxvt_font)];
3974 break; 4162 break;
3975 4163
3976#if !ENABLE_MINIMAL 4164#if !ENABLE_MINIMAL
3977 case URxvt_locale: 4165 case URxvt_locale:
3978 if (query) 4166 if (query)
3979 tt_printf ("\33]%d;%-.250s%c", op, OPTION (Opt_insecure) ? locale : "", resp); 4167 tt_printf ("\33]%d;%-.250s%c", op, option (Opt_insecure) ? locale : "", resp);
3980 else 4168 else
3981 { 4169 {
3982 set_locale (str); 4170 set_locale (str);
3983 pty->set_utf8_mode (enc_utf8); 4171 pty->set_utf8_mode (enc_utf8);
3984 init_xlocale (); 4172 init_xlocale ();
4125 scr_touch (true); 4313 scr_touch (true);
4126 break; 4314 break;
4127#endif 4315#endif
4128 case 1048: /* alternative cursor save */ 4316 case 1048: /* alternative cursor save */
4129 case 1049: 4317 case 1049:
4130 if (OPTION (Opt_secondaryScreen)) 4318 if (option (Opt_secondaryScreen))
4131 if (mode == 0) 4319 if (mode == 0)
4132 scr_cursor (RESTORE); 4320 scr_cursor (RESTORE);
4133 else if (mode == 1) 4321 else if (mode == 1)
4134 scr_cursor (SAVE); 4322 scr_cursor (SAVE);
4135 break; 4323 break;
4200 break; 4388 break;
4201 case 1011: /* scroll to bottom on key press */ 4389 case 1011: /* scroll to bottom on key press */
4202 set_option (Opt_scrollTtyKeypress, state); 4390 set_option (Opt_scrollTtyKeypress, state);
4203 break; 4391 break;
4204 case 1047: /* secondary screen w/ clearing last */ 4392 case 1047: /* secondary screen w/ clearing last */
4205 if (OPTION (Opt_secondaryScreen)) 4393 if (option (Opt_secondaryScreen))
4206 if (current_screen != PRIMARY) 4394 if (current_screen != PRIMARY)
4207 scr_erase_screen (2); 4395 scr_erase_screen (2);
4208 scr_change_screen (state); 4396 scr_change_screen (state);
4209 break; 4397 break;
4210 case 1049: /* secondary screen w/ clearing first */ 4398 case 1049: /* secondary screen w/ clearing first */
4211 scr_change_screen (state); 4399 scr_change_screen (state);
4212 if (OPTION (Opt_secondaryScreen)) 4400 if (option (Opt_secondaryScreen))
4213 if (current_screen != PRIMARY) 4401 if (current_screen != PRIMARY)
4214 scr_erase_screen (2); 4402 scr_erase_screen (2);
4215 break; 4403 break;
4216 default: 4404 default:
4217 break; 4405 break;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines