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

Comparing rxvt-unicode/src/screen.C (file contents):
Revision 1.377 by root, Mon Mar 21 13:46:17 2011 UTC vs.
Revision 1.383 by sf-exg, Fri Apr 29 13:08:24 2011 UTC

159 * ------------------------------------------------------------------------- */ 159 * ------------------------------------------------------------------------- */
160 160
161void 161void
162rxvt_term::scr_reset () 162rxvt_term::scr_reset ()
163{ 163{
164#if ENABLE_OVERLAY
165 scr_overlay_off ();
166#endif
167
164 view_start = 0; 168 view_start = 0;
165 num_scr = 0; 169 num_scr = 0;
166 170
167 if (ncol == 0) 171 if (ncol == 0)
168 ncol = 80; 172 ncol = 80;
1920 1924
1921# ifndef NO_MAPALERT 1925# ifndef NO_MAPALERT
1922# ifdef MAPALERT_OPTION 1926# ifdef MAPALERT_OPTION
1923 if (option (Opt_mapAlert)) 1927 if (option (Opt_mapAlert))
1924# endif 1928# endif
1925 XMapWindow (dpy, parent[0]); 1929 XMapWindow (dpy, parent);
1926# endif 1930# endif
1927 1931
1928# if ENABLE_FRILLS 1932# if ENABLE_FRILLS
1929 if (option (Opt_urgentOnBell)) 1933 if (option (Opt_urgentOnBell))
1930 set_urgency (1); 1934 set_urgency (1);
1943 HOOK_INVOKE ((this, HOOK_BELL, DT_END)); 1947 HOOK_INVOKE ((this, HOOK_BELL, DT_END));
1944#endif 1948#endif
1945} 1949}
1946 1950
1947/* ------------------------------------------------------------------------- */ 1951/* ------------------------------------------------------------------------- */
1948/* ARGSUSED */
1949void 1952void
1950rxvt_term::scr_printscreen (int fullhist) NOTHROW 1953rxvt_term::scr_printscreen (int fullhist) NOTHROW
1951{ 1954{
1952#ifdef PRINTPIPE 1955#ifdef PRINTPIPE
1953 int nrows, row_start; 1956 int nrows, row_start;
2516 if (bg_pixmap != None) 2519 if (bg_pixmap != None)
2517 { 2520 {
2518# ifdef ENABLE_TRANSPARENCY 2521# ifdef ENABLE_TRANSPARENCY
2519 if (bg_flags & BG_IS_TRANSPARENT) 2522 if (bg_flags & BG_IS_TRANSPARENT)
2520 { 2523 {
2521 XSetWindowBackgroundPixmap (dpy, parent[0], bg_pixmap); 2524 XSetWindowBackgroundPixmap (dpy, parent, bg_pixmap);
2522 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative); 2525 XSetWindowBackgroundPixmap (dpy, vt, ParentRelative);
2523 2526
2524 transparent = true; 2527 transparent = true;
2525 } 2528 }
2526 else 2529 else
2527# endif 2530# endif
2528 { 2531 {
2529 XSetWindowBackground (dpy, parent[0], pix_colors[Color_border]); 2532 XSetWindowBackground (dpy, parent, pix_colors[Color_border]);
2530 XSetWindowBackgroundPixmap (dpy, vt, bg_pixmap); 2533 XSetWindowBackgroundPixmap (dpy, vt, bg_pixmap);
2531 } 2534 }
2532 } 2535 }
2533 else 2536 else
2534#endif 2537#endif
2535 { 2538 {
2536 XSetWindowBackground (dpy, parent[0], pix_colors[Color_border]); 2539 XSetWindowBackground (dpy, parent, pix_colors[Color_border]);
2537 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]); 2540 XSetWindowBackground (dpy, vt, pix_colors[Color_bg]);
2538 } 2541 }
2539 2542
2540 XClearWindow (dpy, parent[0]); 2543 XClearWindow (dpy, parent);
2541 2544
2542 if (scrollBar.win) 2545 if (scrollBar.win)
2543 { 2546 {
2544 if (transparent) 2547 if (transparent)
2545 XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative); 2548 XSetWindowBackgroundPixmap (dpy, scrollBar.win, ParentRelative);
2732 tt_paste (data, len); 2735 tt_paste (data, len);
2733} 2736}
2734 2737
2735/* ------------------------------------------------------------------------- */ 2738/* ------------------------------------------------------------------------- */
2736/* 2739/*
2737 * Request the current selection: 2740 * Request PRIMARY, SECONDARY or CLIPBOARD selection.
2738 * Order: > internal selection if available 2741 * if the requested selection has no owner or is empty CUT_BUFFER0 is used
2739 * > PRIMARY, SECONDARY, CLIPBOARD if ownership is claimed (+) 2742 * as fallback
2740 * > CUT_BUFFER0
2741 * (+) if ownership is claimed but property is empty, rxvt_selection_paste ()
2742 * will auto fallback to CUT_BUFFER0
2743 * EXT: button 2 release 2743 * EXT: button 2 release
2744 */ 2744 */
2745void 2745void
2746rxvt_term::selection_request (Time tm, int selnum) NOTHROW 2746rxvt_term::selection_request (Time tm, int selnum) NOTHROW
2747{ 2747{
2748 if (selection.text && selnum == Sel_Primary)
2749 {
2750 /* internal selection */
2751 char *str = rxvt_wcstombs (selection.text, selection.len);
2752 paste (str, strlen (str));
2753 free (str);
2754 }
2755 else if (!selection_req) 2748 if (!selection_req)
2756 { 2749 {
2757 selection_req = new rxvt_selection (display, selnum, tm, vt, xa[XA_VT_SELECTION], this); 2750 selection_req = new rxvt_selection (display, selnum, tm, vt, xa[XA_VT_SELECTION], this);
2758 selection_req->run (); 2751 selection_req->run ();
2759 } 2752 }
2760} 2753}
3408 * EXT: SelectionRequest 3401 * EXT: SelectionRequest
3409 */ 3402 */
3410void 3403void
3411rxvt_term::selection_send (const XSelectionRequestEvent &rq) NOTHROW 3404rxvt_term::selection_send (const XSelectionRequestEvent &rq) NOTHROW
3412{ 3405{
3406 Atom property = rq.property == None ? rq.target : rq.property;
3413 XSelectionEvent ev; 3407 XSelectionEvent ev;
3414 3408
3415 ev.type = SelectionNotify; 3409 ev.type = SelectionNotify;
3416 ev.property = None; 3410 ev.property = None;
3417 ev.display = rq.display; 3411 ev.display = rq.display;
3432 *target++ = xa[XA_COMPOUND_TEXT]; 3426 *target++ = xa[XA_COMPOUND_TEXT];
3433#if X_HAVE_UTF8_STRING 3427#if X_HAVE_UTF8_STRING
3434 *target++ = xa[XA_UTF8_STRING]; 3428 *target++ = xa[XA_UTF8_STRING];
3435#endif 3429#endif
3436 3430
3437 XChangeProperty (dpy, rq.requestor, rq.property, XA_ATOM, 3431 XChangeProperty (dpy, rq.requestor, property, XA_ATOM,
3438 32, PropModeReplace, 3432 32, PropModeReplace,
3439 (unsigned char *)target_list, target - target_list); 3433 (unsigned char *)target_list, target - target_list);
3440 ev.property = rq.property; 3434 ev.property = property;
3441 } 3435 }
3442#if TODO // TODO 3436#if TODO // TODO
3443 else if (rq.target == xa[XA_MULTIPLE]) 3437 else if (rq.target == xa[XA_MULTIPLE])
3444 { 3438 {
3445 /* TODO: Handle MULTIPLE */ 3439 /* TODO: Handle MULTIPLE */
3446 } 3440 }
3447#endif 3441#endif
3448 else if (rq.target == xa[XA_TIMESTAMP] && rq.selection == XA_PRIMARY && selection.text) 3442 else if (rq.target == xa[XA_TIMESTAMP] && rq.selection == XA_PRIMARY && selection.text)
3449 { 3443 {
3450 XChangeProperty (dpy, rq.requestor, rq.property, rq.target, 3444 XChangeProperty (dpy, rq.requestor, property, rq.target,
3451 32, PropModeReplace, (unsigned char *)&selection_time, 1); 3445 32, PropModeReplace, (unsigned char *)&selection_time, 1);
3452 ev.property = rq.property; 3446 ev.property = property;
3453 } 3447 }
3454 else if (rq.target == xa[XA_TIMESTAMP] && rq.selection == xa[XA_CLIPBOARD] && selection.clip_text) 3448 else if (rq.target == xa[XA_TIMESTAMP] && rq.selection == xa[XA_CLIPBOARD] && selection.clip_text)
3455 { 3449 {
3456 XChangeProperty (dpy, rq.requestor, rq.property, rq.target, 3450 XChangeProperty (dpy, rq.requestor, property, rq.target,
3457 32, PropModeReplace, (unsigned char *)&clipboard_time, 1); 3451 32, PropModeReplace, (unsigned char *)&clipboard_time, 1);
3458 ev.property = rq.property; 3452 ev.property = property;
3459 } 3453 }
3460 else if (rq.target == XA_STRING 3454 else if (rq.target == XA_STRING
3461 || rq.target == xa[XA_TEXT] 3455 || rq.target == xa[XA_TEXT]
3462 || rq.target == xa[XA_COMPOUND_TEXT] 3456 || rq.target == xa[XA_COMPOUND_TEXT]
3463 || rq.target == xa[XA_UTF8_STRING] 3457 || rq.target == xa[XA_UTF8_STRING]
3534 ct.value = (unsigned char *)cl; 3528 ct.value = (unsigned char *)cl;
3535 ct.nitems = selectlen; 3529 ct.nitems = selectlen;
3536 ct.encoding = target; 3530 ct.encoding = target;
3537 } 3531 }
3538 3532
3539 XChangeProperty (dpy, rq.requestor, rq.property, 3533 XChangeProperty (dpy, rq.requestor, property,
3540 ct.encoding, 8, PropModeReplace, 3534 ct.encoding, 8, PropModeReplace,
3541 ct.value, (int)ct.nitems); 3535 ct.value, (int)ct.nitems);
3542 ev.property = rq.property; 3536 ev.property = property;
3543 3537
3544 if (freect) 3538 if (freect)
3545 XFree (ct.value); 3539 XFree (ct.value);
3546 } 3540 }
3547 3541

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines