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

Comparing rxvt-unicode/src/rxvtperl.xs (file contents):
Revision 1.44 by root, Sun Jan 8 22:58:13 2006 UTC vs.
Revision 1.49 by root, Mon Jan 9 19:25:57 2006 UTC

431 perl = 0; 431 perl = 0;
432 } 432 }
433 } 433 }
434} 434}
435 435
436static void
437ungrab (rxvt_term *THIS)
438{
439 if (THIS->perl.grabtime)
440 {
441 XUngrabKeyboard (THIS->display->display, THIS->perl.grabtime);
442 XUngrabPointer (THIS->display->display, THIS->perl.grabtime);
443 THIS->perl.grabtime = 0;
444 }
445}
446
436bool 447bool
437rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...) 448rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
438{ 449{
439 if (!perl) 450 if (!perl)
440 return false; 451 return false;
582 PUTBACK; 593 PUTBACK;
583 FREETMPS; 594 FREETMPS;
584 LEAVE; 595 LEAVE;
585 596
586 if (SvTRUE (ERRSV)) 597 if (SvTRUE (ERRSV))
598 {
587 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV)); 599 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
600 ungrab (term); // better lose the grab than the session
601 }
588 602
589 if (htype == HOOK_DESTROY) 603 if (htype == HOOK_DESTROY)
590 { 604 {
591 clearSVptr ((SV *)term->perl.self); 605 clearSVptr ((SV *)term->perl.self);
592 SvREFCNT_dec ((SV *)term->perl.self); 606 SvREFCNT_dec ((SV *)term->perl.self);
693void 707void
694fatal (const char *msg) 708fatal (const char *msg)
695 CODE: 709 CODE:
696 rxvt_fatal ("%s", msg); 710 rxvt_fatal ("%s", msg);
697 711
712SV *
713untaint (SV *sv)
714 CODE:
715 RETVAL = newSVsv (sv);
716 SvTAINTED_off (RETVAL);
717 OUTPUT:
718 RETVAL
719
720bool
721safe ()
722 CODE:
723 RETVAL = !rxvt_tainted ();
724 OUTPUT:
725 RETVAL
726
698NV 727NV
699NOW () 728NOW ()
700 CODE: 729 CODE:
701 RETVAL = NOW; 730 RETVAL = NOW;
702 OUTPUT: 731 OUTPUT:
800 XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime); 829 XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime);
801 830
802void 831void
803rxvt_term::ungrab () 832rxvt_term::ungrab ()
804 CODE: 833 CODE:
805{ 834 ungrab (THIS);
806 if (THIS->perl.grabtime)
807 {
808 XUngrabKeyboard (THIS->display->display, THIS->perl.grabtime);
809 XUngrabPointer (THIS->display->display, THIS->perl.grabtime);
810 THIS->perl.grabtime = 0;
811 }
812}
813 835
814int 836int
815rxvt_term::strwidth (SV *str) 837rxvt_term::strwidth (SV *str)
816 CODE: 838 CODE:
817{ 839{
910 case 2: RETVAL = THIS->ModNumLockMask; break; 932 case 2: RETVAL = THIS->ModNumLockMask; break;
911 } 933 }
912 OUTPUT: 934 OUTPUT:
913 RETVAL 935 RETVAL
914 936
937char *
938rxvt_term::display_id ()
939 ALIAS:
940 display_id = 0
941 locale = 1
942 CODE:
943 switch (ix)
944 {
945 case 0: RETVAL = THIS->display->id; break;
946 case 1: RETVAL = THIS->locale; break;
947 }
948 OUTPUT:
949 RETVAL
950
915U32 951U32
916rxvt_term::parent () 952rxvt_term::parent ()
917 CODE: 953 CODE:
918 RETVAL = (U32)THIS->parent [0]; 954 RETVAL = (U32)THIS->parent [0];
919 OUTPUT: 955 OUTPUT:
1221} 1257}
1222 OUTPUT: 1258 OUTPUT:
1223 RETVAL 1259 RETVAL
1224 1260
1225void 1261void
1226rxvt_term::cur (...) 1262rxvt_term::screen_cur (...)
1227 PROTOTYPE: $;$$ 1263 PROTOTYPE: $;$$
1228 ALIAS: 1264 ALIAS:
1229 screen_cur = 0 1265 screen_cur = 0
1230 selection_beg = 1 1266 selection_beg = 1
1231 selection_end = 2 1267 selection_end = 2
1260void 1296void
1261rxvt_term::selection (SV *newtext = 0) 1297rxvt_term::selection (SV *newtext = 0)
1262 PPCODE: 1298 PPCODE:
1263{ 1299{
1264 if (GIMME_V != G_VOID) 1300 if (GIMME_V != G_VOID)
1301 XPUSHs (THIS->selection.text
1265 XPUSHs (taint (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)))); 1302 ? taint (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)))
1303 : &PL_sv_undef);
1266 1304
1267 if (newtext) 1305 if (newtext)
1268 { 1306 {
1269 free (THIS->selection.text); 1307 free (THIS->selection.text);
1270 1308

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines