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.35 by root, Sat Jan 7 04:19:43 2006 UTC vs.
Revision 1.67 by root, Sun Jan 15 06:02:41 2006 UTC

26#include <XSUB.h> 26#include <XSUB.h>
27#undef line_t 27#undef line_t
28 28
29#include "../config.h" 29#include "../config.h"
30 30
31#include <cstddef>
31#include <cstdarg> 32#include <cstdarg>
32 33
34#include "unistd.h"
35
36#include "iom.h"
33#include "rxvt.h" 37#include "rxvt.h"
34#include "iom.h" 38#include "keyboard.h"
35#include "rxvtutil.h" 39#include "rxvtutil.h"
36#include "rxvtperl.h" 40#include "rxvtperl.h"
37 41
38#include "perlxsi.c" 42#include "perlxsi.c"
43
44#if defined(HAVE_SCROLLBARS) || defined(MENUBAR)
45# define GRAB_CURSOR THIS->leftptr_cursor
46#else
47# define GRAB_CURSOR None
48#endif
39 49
40#undef LINENO 50#undef LINENO
41#define LINENO(n) MOD (THIS->term_start + int(n), THIS->total_rows) 51#define LINENO(n) MOD (THIS->term_start + int(n), THIS->total_rows)
42#undef ROW 52#undef ROW
43#define ROW(n) THIS->row_buf [LINENO (n)] 53#define ROW(n) THIS->row_buf [LINENO (n)]
44 54
55#define ENABLE_PERL_FRILLS 1
56
45///////////////////////////////////////////////////////////////////////////// 57/////////////////////////////////////////////////////////////////////////////
58
59static SV *
60taint (SV *sv)
61{
62 SvTAINT (sv);
63 return sv;
64}
65
66static SV *
67taint_if (SV *sv, SV *src)
68{
69 if (SvTAINTED (src))
70 SvTAINT (sv);
71
72 return sv;
73}
46 74
47static wchar_t * 75static wchar_t *
48sv2wcs (SV *sv) 76sv2wcs (SV *sv)
49{ 77{
50 STRLEN len; 78 STRLEN len;
101 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass); 129 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
102 130
103 return (long)mg->mg_ptr; 131 return (long)mg->mg_ptr;
104} 132}
105 133
106#define newSVterm(term) SvREFCNT_inc ((SV *)term->self) 134#define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
107#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term") 135#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term")
108 136
109///////////////////////////////////////////////////////////////////////////// 137/////////////////////////////////////////////////////////////////////////////
110 138
111struct perl_watcher 139struct perl_watcher
290void 318void
291overlay::show () 319overlay::show ()
292{ 320{
293 char key[33]; sprintf (key, "%32lx", (long)this); 321 char key[33]; sprintf (key, "%32lx", (long)this);
294 322
295 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->self), "_overlay", 8, 0)); 323 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0));
296 hv_store (hv, key, 32, newSViv ((long)this), 0); 324 hv_store (hv, key, 32, newSViv ((long)this), 0);
297} 325}
298 326
299void 327void
300overlay::hide () 328overlay::hide ()
301{ 329{
302 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->self), "_overlay", 8, 0); 330 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
303 331
304 if (ovs) 332 if (ovs)
305 { 333 {
306 char key[33]; sprintf (key, "%32lx", (long)this); 334 char key[33]; sprintf (key, "%32lx", (long)this);
307 335
321 for (int y = ov_h; y--; ) 349 for (int y = ov_h; y--; )
322 { 350 {
323 text_t *t1 = text [y]; 351 text_t *t1 = text [y];
324 rend_t *r1 = rend [y]; 352 rend_t *r1 = rend [y];
325 353
326 text_t *t2 = ROW(y + ov_y - THIS->view_start).t + ov_x; 354 text_t *t2 = ROW(y + ov_y + THIS->view_start).t + ov_x;
327 rend_t *r2 = ROW(y + ov_y - THIS->view_start).r + ov_x; 355 rend_t *r2 = ROW(y + ov_y + THIS->view_start).r + ov_x;
328 356
329 for (int x = ov_w; x--; ) 357 for (int x = ov_w; x--; )
330 { 358 {
331 text_t t = *t1; *t1++ = *t2; *t2++ = t; 359 text_t t = *t1; *t1++ = *t2; *t2++ = t;
332 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t)); 360 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t));
369 397
370struct rxvt_perl_interp rxvt_perl; 398struct rxvt_perl_interp rxvt_perl;
371 399
372static PerlInterpreter *perl; 400static PerlInterpreter *perl;
373 401
374rxvt_perl_interp::rxvt_perl_interp ()
375{
376}
377
378rxvt_perl_interp::~rxvt_perl_interp () 402rxvt_perl_interp::~rxvt_perl_interp ()
379{ 403{
380 if (perl) 404 if (perl)
381 { 405 {
382 perl_destruct (perl); 406 perl_destruct (perl);
387void 411void
388rxvt_perl_interp::init () 412rxvt_perl_interp::init ()
389{ 413{
390 if (!perl) 414 if (!perl)
391 { 415 {
416 perl_environ = rxvt_environ;
417 swap (perl_environ, environ);
418
392 char *argv[] = { 419 char *argv[] = {
393 "", 420 "",
421 "-T",
394 "-edo '" LIBDIR "/urxvt.pm' or ($@ and die $@) or exit 1", 422 "-edo '" LIBDIR "/urxvt.pm' or ($@ and die $@) or exit 1",
395 }; 423 };
396 424
397 perl = perl_alloc (); 425 perl = perl_alloc ();
398 perl_construct (perl); 426 perl_construct (perl);
399 427
400 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) 428 if (perl_parse (perl, xs_init, 3, argv, (char **)NULL)
401 || perl_run (perl)) 429 || perl_run (perl))
402 { 430 {
403 rxvt_warn ("unable to initialize perl-interpreter, continuing without.\n"); 431 rxvt_warn ("unable to initialize perl-interpreter, continuing without.\n");
404 432
405 perl_destruct (perl); 433 perl_destruct (perl);
406 perl_free (perl); 434 perl_free (perl);
407 perl = 0; 435 perl = 0;
408 } 436 }
437
438 swap (perl_environ, environ);
439 }
440}
441
442static void
443ungrab (rxvt_term *THIS)
444{
445 if (THIS->perl.grabtime)
446 {
447 XUngrabKeyboard (THIS->display->display, THIS->perl.grabtime);
448 XUngrabPointer (THIS->display->display, THIS->perl.grabtime);
449 THIS->perl.grabtime = 0;
450 }
451}
452
453static void
454swap_overlays (rxvt_term *term)
455{
456 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
457
458 if (HvKEYS (hv))
459 {
460 hv_iterinit (hv);
461
462 while (HE *he = hv_iternext (hv))
463 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
409 } 464 }
410} 465}
411 466
412bool 467bool
413rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...) 468rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
415 if (!perl) 470 if (!perl)
416 return false; 471 return false;
417 472
418 if (htype == HOOK_INIT) // first hook ever called 473 if (htype == HOOK_INIT) // first hook ever called
419 { 474 {
420 term->self = (void *)newSVptr ((void *)term, "urxvt::term"); 475 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
421 hv_store ((HV *)SvRV ((SV *)term->self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0); 476 hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
422 } 477 }
423 else if (!term->self) 478 else if (!term->perl.self)
424 return false; // perl not initialized for this instance 479 return false; // perl not initialized for this instance
425 else if (htype == HOOK_DESTROY) 480 else if (htype == HOOK_DESTROY)
426 { 481 {
427 // handled later 482 // handled later
428 } 483 }
429 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END) 484 else
430 { 485 {
431 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->self), "_overlay", 8, 0)); 486 if (htype == HOOK_REFRESH_END)
487 swap_overlays (term);
432 488
433 if (HvKEYS (hv)) 489 if (!term->perl.should_invoke [htype])
434 { 490 {
435 hv_iterinit (hv); 491 if (htype == HOOK_REFRESH_BEGIN)
492 swap_overlays (term);
436 493
437 while (HE *he = hv_iternext (hv)) 494 return false;
438 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
439 } 495 }
440 } 496 }
441 else if (!should_invoke [htype])
442 return false;
443 497
498 swap (perl_environ, environ);
499
500 try
501 {
444 dSP; 502 dSP;
445 va_list ap; 503 va_list ap;
446 504
447 va_start (ap, htype); 505 va_start (ap, htype);
448 506
449 ENTER; 507 ENTER;
450 SAVETMPS; 508 SAVETMPS;
451 509
452 PUSHMARK (SP); 510 PUSHMARK (SP);
453 511
454 XPUSHs (sv_2mortal (newSVterm (term))); 512 XPUSHs (sv_2mortal (newSVterm (term)));
455 XPUSHs (sv_2mortal (newSViv (htype))); 513 XPUSHs (sv_2mortal (newSViv (htype)));
456 514
457 for (;;) { 515 for (;;) {
458 data_type dt = (data_type)va_arg (ap, int); 516 data_type dt = (data_type)va_arg (ap, int);
459 517
460 switch (dt) 518 switch (dt)
461 {
462 case DT_INT:
463 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int))));
464 break;
465
466 case DT_LONG:
467 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
468 break;
469
470 case DT_STR:
471 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
472 break;
473
474 case DT_STR_LEN:
475 { 519 {
520 case DT_INT:
521 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int))));
522 break;
523
524 case DT_LONG:
525 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
526 break;
527
528 case DT_STR:
529 XPUSHs (taint (sv_2mortal (newSVpv (va_arg (ap, char *), 0))));
530 break;
531
532 case DT_STR_LEN:
533 {
476 char *str = va_arg (ap, char *); 534 char *str = va_arg (ap, char *);
477 int len = va_arg (ap, int); 535 int len = va_arg (ap, int);
478 536
479 XPUSHs (sv_2mortal (newSVpvn (str, len))); 537 XPUSHs (taint (sv_2mortal (newSVpvn (str, len))));
480 } 538 }
481 break; 539 break;
482 540
483 case DT_WCS_LEN: 541 case DT_WCS_LEN:
484 { 542 {
485 wchar_t *wstr = va_arg (ap, wchar_t *); 543 wchar_t *wstr = va_arg (ap, wchar_t *);
486 int wlen = va_arg (ap, int); 544 int wlen = va_arg (ap, int);
487 545
488 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen))); 546 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, wlen))));
489 } 547 }
490 break; 548 break;
491 549
492 case DT_XEVENT: 550 case DT_XEVENT:
493 { 551 {
494 XEvent *xe = va_arg (ap, XEvent *); 552 XEvent *xe = va_arg (ap, XEvent *);
495 HV *hv = newHV (); 553 HV *hv = newHV ();
496 554
497# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0) 555# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0)
498# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0) 556# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0)
499# undef set 557# undef set
500 558
501 setiv (type, xe->type); 559 setiv (type, xe->type);
502 setiv (send_event, xe->xany.send_event); 560 setiv (send_event, xe->xany.send_event);
503 setiv (serial, xe->xany.serial); 561 setiv (serial, xe->xany.serial);
504 562
505 switch (xe->type) 563 switch (xe->type)
564 {
565 case KeyPress:
566 case KeyRelease:
567 case ButtonPress:
568 case ButtonRelease:
569 case MotionNotify:
570 setiv (time, xe->xmotion.time);
571 setiv (x, xe->xmotion.x);
572 setiv (y, xe->xmotion.y);
573 setiv (row, xe->xmotion.y / term->fheight);
574 setiv (col, xe->xmotion.x / term->fwidth);
575 setiv (x_root, xe->xmotion.x_root);
576 setiv (y_root, xe->xmotion.y_root);
577 setiv (state, xe->xmotion.state);
578 break;
579 }
580
581 switch (xe->type)
582 {
583 case KeyPress:
584 case KeyRelease:
585 setiv (keycode, xe->xkey.keycode);
586 break;
587
588 case ButtonPress:
589 case ButtonRelease:
590 setiv (button, xe->xbutton.button);
591 break;
592
593 case MotionNotify:
594 setiv (is_hint, xe->xmotion.is_hint);
595 break;
596 }
597
598 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
599 }
600 break;
601
602 case DT_END:
506 { 603 {
507 case KeyPress: 604 va_end (ap);
508 case KeyRelease: 605
509 case ButtonPress: 606 PUTBACK;
510 case ButtonRelease: 607 int count = call_pv ("urxvt::invoke", G_ARRAY | G_EVAL);
511 case MotionNotify: 608 SPAGAIN;
512 setiv (time, xe->xmotion.time); 609
513 setiv (x, xe->xmotion.x); 610 if (count)
514 setiv (y, xe->xmotion.y);
515 setiv (row, xe->xmotion.y / term->fheight);
516 setiv (col, xe->xmotion.x / term->fwidth);
517 setiv (x_root, xe->xmotion.x_root);
518 setiv (y_root, xe->xmotion.y_root);
519 setiv (state, xe->xmotion.state);
520 break; 611 {
612 SV *status = POPs;
613 count = SvTRUE (status);
614 }
615
616 PUTBACK;
617 FREETMPS;
618 LEAVE;
619
620 if (SvTRUE (ERRSV))
621 {
622 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
623 ungrab (term); // better lose the grab than the session
624 }
625
626 if (htype == HOOK_REFRESH_BEGIN)
627 swap_overlays (term);
628 else if (htype == HOOK_DESTROY)
629 {
630 clearSVptr ((SV *)term->perl.self);
631 SvREFCNT_dec ((SV *)term->perl.self);
632 }
633
634 swap (perl_environ, environ);
635 return count;
521 } 636 }
522 637
523 switch (xe->type) 638 default:
524 { 639 rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
525 case KeyPress:
526 case KeyRelease:
527 setiv (keycode, xe->xkey.keycode);
528 break;
529
530 case ButtonPress:
531 case ButtonRelease:
532 setiv (button, xe->xbutton.button);
533 break;
534
535 case MotionNotify:
536 setiv (is_hint, xe->xmotion.is_hint);
537 break;
538 }
539
540 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
541 } 640 }
542 break;
543
544 case DT_END:
545 {
546 va_end (ap);
547
548 PUTBACK;
549 int count = call_pv ("urxvt::invoke", G_ARRAY | G_EVAL);
550 SPAGAIN;
551
552 if (count)
553 {
554 SV *status = POPs;
555 count = SvTRUE (status);
556 }
557
558 PUTBACK;
559 FREETMPS;
560 LEAVE;
561
562 if (SvTRUE (ERRSV))
563 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
564
565 if (htype == HOOK_DESTROY)
566 {
567 clearSVptr ((SV *)term->self);
568 SvREFCNT_dec ((SV *)term->self);
569 }
570
571 return count;
572 }
573
574 default:
575 rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
576 } 641 }
577 } 642 }
643 catch (...)
644 {
645 swap (perl_environ, environ);
646 throw;
647 }
578} 648}
579 649
580///////////////////////////////////////////////////////////////////////////// 650/////////////////////////////////////////////////////////////////////////////
581 651
582MODULE = urxvt PACKAGE = urxvt 652MODULE = urxvt PACKAGE = urxvt
583 653
584PROTOTYPES: ENABLE 654PROTOTYPES: ENABLE
585 655
586BOOT: 656BOOT:
587{ 657{
588# define export_const(name) newCONSTSUB (gv_stashpv ("urxvt", 1), # name, newSViv (name)); 658 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
659 sv_setsv (get_sv ("urxvt::RESNAME", 1), newSVpvn (RESNAME, sizeof (RESNAME) - 1));
660 sv_setsv (get_sv ("urxvt::RESCLASS", 1), newSVpvn (RESCLASS, sizeof (RESCLASS) - 1));
661 sv_setsv (get_sv ("urxvt::RXVTNAME", 1), newSVpvn (RXVTNAME, sizeof (RXVTNAME) - 1));
662
589 AV *hookname = get_av ("urxvt::HOOKNAME", 1); 663 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
590# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0)); 664# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
591# include "hookinc.h" 665# include "hookinc.h"
592# undef def 666# undef def
593 667
668 HV *option = get_hv ("urxvt::OPTION", 1);
669# define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
670# define nodef(name)
671# include "optinc.h"
672# undef nodef
673# undef def
674
675 HV *stash = gv_stashpv ("urxvt", 1);
676 struct {
677 const char *name;
678 IV iv;
679 } *civ, const_iv[] = {
680# define const_iv(name) { # name, (IV)name }
594 export_const (DEFAULT_RSTYLE); 681 const_iv (DEFAULT_RSTYLE),
595 export_const (OVERLAY_RSTYLE); 682 const_iv (OVERLAY_RSTYLE),
596 export_const (RS_Bold); 683 const_iv (RS_Bold),
597 export_const (RS_Italic); 684 const_iv (RS_Italic),
598 export_const (RS_Blink); 685 const_iv (RS_Blink),
599 export_const (RS_RVid); 686 const_iv (RS_RVid),
600 export_const (RS_Uline); 687 const_iv (RS_Uline),
601 688
602 sv_setpv (get_sv ("urxvt::LIBDIR", 1), LIBDIR); 689 const_iv (CurrentTime),
690 const_iv (ShiftMask),
691 const_iv (LockMask),
692 const_iv (ControlMask),
693 const_iv (Mod1Mask),
694 const_iv (Mod2Mask),
695 const_iv (Mod3Mask),
696 const_iv (Mod4Mask),
697 const_iv (Mod5Mask),
698 const_iv (Button1Mask),
699 const_iv (Button2Mask),
700 const_iv (Button3Mask),
701 const_iv (Button4Mask),
702 const_iv (Button5Mask),
703 const_iv (AnyModifier),
704
705 const_iv (EVENT_NONE),
706 const_iv (EVENT_READ),
707 const_iv (EVENT_WRITE),
708
709 const_iv (NoEventMask),
710 const_iv (KeyPressMask),
711 const_iv (KeyReleaseMask),
712 const_iv (ButtonPressMask),
713 const_iv (ButtonReleaseMask),
714 const_iv (EnterWindowMask),
715 const_iv (LeaveWindowMask),
716 const_iv (PointerMotionMask),
717 const_iv (PointerMotionHintMask),
718 const_iv (Button1MotionMask),
719 const_iv (Button2MotionMask),
720 const_iv (Button3MotionMask),
721 const_iv (Button4MotionMask),
722 const_iv (Button5MotionMask),
723 const_iv (ButtonMotionMask),
724 const_iv (KeymapStateMask),
725 const_iv (ExposureMask),
726 const_iv (VisibilityChangeMask),
727 const_iv (StructureNotifyMask),
728 const_iv (ResizeRedirectMask),
729 const_iv (SubstructureNotifyMask),
730 const_iv (SubstructureRedirectMask),
731 const_iv (FocusChangeMask),
732 const_iv (PropertyChangeMask),
733 const_iv (ColormapChangeMask),
734 const_iv (OwnerGrabButtonMask),
735
736 const_iv (KeyPress),
737 const_iv (KeyRelease),
738 const_iv (ButtonPress),
739 const_iv (ButtonRelease),
740 const_iv (MotionNotify),
741 const_iv (EnterNotify),
742 const_iv (LeaveNotify),
743 const_iv (FocusIn),
744 const_iv (FocusOut),
745 const_iv (KeymapNotify),
746 const_iv (Expose),
747 const_iv (GraphicsExpose),
748 const_iv (NoExpose),
749 const_iv (VisibilityNotify),
750 const_iv (CreateNotify),
751 const_iv (DestroyNotify),
752 const_iv (UnmapNotify),
753 const_iv (MapNotify),
754 const_iv (MapRequest),
755 const_iv (ReparentNotify),
756 const_iv (ConfigureNotify),
757 const_iv (ConfigureRequest),
758 const_iv (GravityNotify),
759 const_iv (ResizeRequest),
760 const_iv (CirculateNotify),
761 const_iv (CirculateRequest),
762 const_iv (PropertyNotify),
763 const_iv (SelectionClear),
764 const_iv (SelectionRequest),
765 const_iv (SelectionNotify),
766 const_iv (ColormapNotify),
767 const_iv (ClientMessage),
768 const_iv (MappingNotify),
769 };
770
771 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]);
772 civ-- > const_iv; )
773 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
603} 774}
775
776void
777warn (const char *msg)
778 CODE:
779 rxvt_warn ("%s", msg);
780
781void
782fatal (const char *msg)
783 CODE:
784 rxvt_fatal ("%s", msg);
604 785
605SV * 786SV *
787untaint (SV *sv)
788 CODE:
789 RETVAL = newSVsv (sv);
790 SvTAINTED_off (RETVAL);
791 OUTPUT:
792 RETVAL
793
794void
795_exit (int status)
796
797bool
798safe ()
799 CODE:
800 RETVAL = !rxvt_tainted ();
801 OUTPUT:
802 RETVAL
803
804NV
805NOW ()
806 CODE:
807 RETVAL = NOW;
808 OUTPUT:
809 RETVAL
810
811int
812GET_BASEFG (int rend)
813 CODE:
814 RETVAL = GET_BASEFG (rend);
815 OUTPUT:
816 RETVAL
817
818int
819GET_BASEBG (int rend)
820 CODE:
821 RETVAL = GET_BASEBG (rend);
822 OUTPUT:
823 RETVAL
824
825int
826SET_FGCOLOR (int rend, int new_color)
827 CODE:
828 RETVAL = SET_FGCOLOR (rend, new_color);
829 OUTPUT:
830 RETVAL
831
832int
833SET_BGCOLOR (int rend, int new_color)
834 CODE:
835 RETVAL = SET_BGCOLOR (rend, new_color);
836 OUTPUT:
837 RETVAL
838
839int
840GET_CUSTOM (int rend)
841 CODE:
842 RETVAL = (rend && RS_customMask) >> RS_customShift;
843 OUTPUT:
844 RETVAL
845
846int
847SET_CUSTOM (int rend, int new_value)
848 CODE:
849{
850 if (!IN_RANGE_EXC (new_value, 0, RS_customCount))
851 croak ("custom value out of range, must be 0..%d", RS_customCount - 1);
852
853 RETVAL = (rend & ~RS_customMask)
854 | ((new_value << RS_customShift) & RS_customMask);
855}
856 OUTPUT:
857 RETVAL
858
859MODULE = urxvt PACKAGE = urxvt::term
860
861SV *
606new (...) 862_new (...)
607 CODE: 863 CODE:
608{ 864{
865 if (items < 1 || !SvROK (ST (0)) || SvTYPE (SvRV (ST (0))) != SVt_PVAV)
866 croak ("first argument to urxvt::term->_new must be arrayref");
867
868 rxvt_term *term = new rxvt_term;
869
609 stringvec *argv = new stringvec; 870 term->argv = new stringvec;
871 term->envv = new stringvec;
872
873 for (int i = 1; i < items; i++)
874 term->argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
875
876 AV *envv = (AV *)SvRV (ST (0));
877 for (int i = av_len (envv) + 1; i--; )
878 term->envv->push_back (strdup (SvPVbyte_nolen (*av_fetch (envv, i, 1))));
879
880 term->envv->push_back (0);
881
610 bool success; 882 bool success;
611
612 for (int i = 0; i < items ;i++)
613 argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
614
615 rxvt_term *term = new rxvt_term;
616
617 term->argv = argv;
618 883
619 try 884 try
620 { 885 {
621 if (!term->init (argv->size (), argv->begin ())) 886 success = term->init (term->argv->size (), term->argv->begin ());
622 term = 0;
623 } 887 }
624 catch (const class rxvt_failure_exception &e) 888 catch (const class rxvt_failure_exception &e)
625 { 889 {
890 success = false;
891 }
892
893 if (!success)
894 {
626 term->destroy (); 895 term->destroy ();
627 croak ("exception caught while initializing new terminal instance"); 896 croak ("error while initializing new terminal instance");
628 } 897 }
629 898
630 RETVAL = term && term->self ? newSVterm (term) : &PL_sv_undef; 899 RETVAL = term && term->perl.self
900 ? newSVterm (term) : &PL_sv_undef;
631} 901}
632 OUTPUT: 902 OUTPUT:
633 RETVAL 903 RETVAL
634 904
635void 905void
636set_should_invoke (int htype, int value) 906rxvt_term::destroy ()
907
908#if ENABLE_PERL_FRILLS
909
910void
911rxvt_term::XListProperties (U32 window)
637 CODE: 912 PPCODE:
638 rxvt_perl.should_invoke [htype] = value; 913{
914 int count;
915 Atom *props = XListProperties (THIS->display->display, (Window)window, &count);
639 916
917 EXTEND (SP, count);
918 while (count--)
919 PUSHs (newSVuv ((U32)props [count]));
920
921 XFree (props);
922}
923
640void 924void
641warn (const char *msg) 925rxvt_term::XGetWindowProperty (U32 window, U32 property)
642 CODE: 926 PPCODE:
643 rxvt_warn ("%s", msg); 927{
928 Atom type;
929 int format;
930 unsigned long nitems;
931 unsigned long bytes_after;
932 unsigned char *prop;
933 XGetWindowProperty (THIS->display->display, (Window)window, (Atom)property,
934 0, 1<<30, 0, AnyPropertyType,
935 &type, &format, &nitems, &bytes_after, &prop);
936 if (type != None)
937 {
938 EXTEND (SP, 3);
939 PUSHs (newSVuv ((U32)type));
940 PUSHs (newSViv (format));
941 PUSHs (newSVpvn ((char *)prop, nitems * format / 8));
942 XFree (prop);
943 }
944}
644 945
645void 946void
646fatal (const char *msg) 947rxvt_term::XChangeWindowProperty (U32 window, U32 property, U32 type, int format, SV *data)
647 CODE: 948 CODE:
648 rxvt_fatal ("%s", msg); 949{
950 STRLEN len;
951 char *data_ = SvPVbyte (data, len);
649 952
650NV 953 XChangeProperty (THIS->display->display, (Window)window, (Atom)property,
651NOW () 954 type, format, PropModeReplace,
955 (unsigned char *)data, len * 8 / format);
956}
957
958void
959rxvt_term::XDeleteProperty (U32 window, U32 property)
652 CODE: 960 CODE:
961 XDeleteProperty (THIS->display->display, (Window)window, (Atom)property);
962
963U32
964rxvt_term::DefaultRootWindow ()
965 CODE:
966 RETVAL = (U32)THIS->display->root;
967 OUTPUT:
653 RETVAL = NOW; 968 RETVAL
654 OUTPUT:
655 RETVAL
656 969
657int 970U32
658GET_BASEFG (int rend) 971rxvt_term::XCreateSimpleWindow (U32 parent, int x, int y, unsigned int width, unsigned int height)
659 CODE: 972 CODE:
660 RETVAL = GET_BASEFG (rend); 973 RETVAL = XCreateSimpleWindow (THIS->display->display, (Window)parent,
974 x, y, width, height, 0,
975 THIS->pix_colors_focused[Color_border],
976 THIS->pix_colors_focused[Color_border]);
661 OUTPUT: 977 OUTPUT:
662 RETVAL 978 RETVAL
663 979
664int 980void
665GET_BASEBG (int rend) 981rxvt_term::XReparentWindow (U32 window, U32 parent, int x = 0, int y = 0)
666 CODE: 982 CODE:
667 RETVAL = GET_BASEBG (rend); 983 XReparentWindow (THIS->display->display, (Window)window, (Window)parent, x, y);
984
985void
986rxvt_term::XMapWindow (U32 window)
987 CODE:
988 XMapWindow (THIS->display->display, (Window)window);
989
990void
991rxvt_term::XUnmapWindow (U32 window)
992 CODE:
993 XUnmapWindow (THIS->display->display, (Window)window);
994
995#endif
996
997void
998rxvt_term::set_should_invoke (int htype, int inc)
999 CODE:
1000 THIS->perl.should_invoke [htype] += inc;
1001
1002void
1003rxvt_term::grab_button (int button, U32 modifiers)
1004 CODE:
1005 XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
1006 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
1007 GrabModeSync, GrabModeSync, None, GRAB_CURSOR);
1008
1009bool
1010rxvt_term::grab (U32 eventtime, int sync = 0)
1011 CODE:
1012{
1013 int mode = sync ? GrabModeSync : GrabModeAsync;
1014
1015 THIS->perl.grabtime = 0;
1016
1017 if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
1018 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
1019 mode, mode, None, GRAB_CURSOR, eventtime))
1020 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
1021 THIS->perl.grabtime = eventtime;
1022 else
1023 XUngrabPointer (THIS->display->display, eventtime);
1024
1025 RETVAL = !!THIS->perl.grabtime;
1026}
668 OUTPUT: 1027 OUTPUT:
669 RETVAL 1028 RETVAL
670 1029
671int
672SET_FGCOLOR (int rend, int new_color)
673 CODE:
674 RETVAL = SET_FGCOLOR (rend, new_color);
675 OUTPUT:
676 RETVAL
677
678int
679SET_BGCOLOR (int rend, int new_color)
680 CODE:
681 RETVAL = SET_BGCOLOR (rend, new_color);
682 OUTPUT:
683 RETVAL
684
685int
686GET_CUSTOM (int rend)
687 CODE:
688 RETVAL = (rend && RS_customMask) >> RS_customShift;
689 OUTPUT:
690 RETVAL
691
692int
693SET_CUSTOM (int rend, int new_value)
694 CODE:
695{
696 if (!IN_RANGE_EXC (new_value, 0, RS_customCount))
697 croak ("custom value out of range, must be 0..%d", RS_customCount - 1);
698
699 RETVAL = (rend & ~RS_customMask)
700 | ((new_value << RS_customShift) & RS_customMask);
701}
702 OUTPUT:
703 RETVAL
704
705MODULE = urxvt PACKAGE = urxvt::term
706
707void 1030void
708rxvt_term::destroy () 1031rxvt_term::allow_events_async ()
709
710void
711rxvt_term::grab (int eventtime)
712 CODE: 1032 CODE:
713{ 1033 XAllowEvents (THIS->display->display, AsyncBoth, THIS->perl.grabtime);
714return; 1034
715 XGrabPointer (THIS->display->display, THIS->vt, 0, 1035void
716 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask, 1036rxvt_term::allow_events_sync ()
717 GrabModeAsync, GrabModeAsync, None, None, eventtime); 1037 CODE:
718 XGrabKeyboard (THIS->display->display, THIS->vt, 0, GrabModeAsync, GrabModeAsync, eventtime); 1038 XAllowEvents (THIS->display->display, SyncBoth, THIS->perl.grabtime);
719} 1039
1040void
1041rxvt_term::allow_events_replay ()
1042 CODE:
1043 XAllowEvents (THIS->display->display, ReplayPointer, THIS->perl.grabtime);
1044 XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime);
1045
1046void
1047rxvt_term::ungrab ()
1048 CODE:
1049 ungrab (THIS);
720 1050
721int 1051int
722rxvt_term::strwidth (SV *str) 1052rxvt_term::strwidth (SV *str)
723 CODE: 1053 CODE:
724{ 1054{
743 char *mbstr = rxvt_wcstombs (wstr); 1073 char *mbstr = rxvt_wcstombs (wstr);
744 rxvt_pop_locale (); 1074 rxvt_pop_locale ();
745 1075
746 free (wstr); 1076 free (wstr);
747 1077
748 RETVAL = newSVpv (mbstr, 0); 1078 RETVAL = taint_if (newSVpv (mbstr, 0), str);
749 free (mbstr); 1079 free (mbstr);
750} 1080}
751 OUTPUT: 1081 OUTPUT:
752 RETVAL 1082 RETVAL
753 1083
760 1090
761 rxvt_push_locale (THIS->locale); 1091 rxvt_push_locale (THIS->locale);
762 wchar_t *wstr = rxvt_mbstowcs (data, len); 1092 wchar_t *wstr = rxvt_mbstowcs (data, len);
763 rxvt_pop_locale (); 1093 rxvt_pop_locale ();
764 1094
765 RETVAL = wcs2sv (wstr); 1095 RETVAL = taint_if (wcs2sv (wstr), octets);
766 free (wstr); 1096 free (wstr);
767} 1097}
768 OUTPUT: 1098 OUTPUT:
769 RETVAL 1099 RETVAL
770 1100
771# very portable, especially on objects as opposed to pods 1101#define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
772#define TERM_OFFSET(sym) (((char *)&((TermWin_t *)0)->sym) - (char *)(TermWin_t *)0)
773 1102
774#define TERM_OFFSET_width TERM_OFFSET(width) 1103#define TERM_OFFSET_width TERM_OFFSET(width)
775#define TERM_OFFSET_height TERM_OFFSET(height) 1104#define TERM_OFFSET_height TERM_OFFSET(height)
776#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth) 1105#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
777#define TERM_OFFSET_fheight TERM_OFFSET(fheight) 1106#define TERM_OFFSET_fheight TERM_OFFSET(fheight)
780#define TERM_OFFSET_ncol TERM_OFFSET(ncol) 1109#define TERM_OFFSET_ncol TERM_OFFSET(ncol)
781#define TERM_OFFSET_focus TERM_OFFSET(focus) 1110#define TERM_OFFSET_focus TERM_OFFSET(focus)
782#define TERM_OFFSET_mapped TERM_OFFSET(mapped) 1111#define TERM_OFFSET_mapped TERM_OFFSET(mapped)
783#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines) 1112#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines)
784#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows) 1113#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
785#define TERM_OFFSET_nsaved TERM_OFFSET(nsaved) 1114#define TERM_OFFSET_top_row TERM_OFFSET(top_row)
786 1115
787int 1116int
788rxvt_term::width () 1117rxvt_term::width ()
789 ALIAS: 1118 ALIAS:
790 width = TERM_OFFSET_width 1119 width = TERM_OFFSET_width
796 ncol = TERM_OFFSET_ncol 1125 ncol = TERM_OFFSET_ncol
797 focus = TERM_OFFSET_focus 1126 focus = TERM_OFFSET_focus
798 mapped = TERM_OFFSET_mapped 1127 mapped = TERM_OFFSET_mapped
799 saveLines = TERM_OFFSET_saveLines 1128 saveLines = TERM_OFFSET_saveLines
800 total_rows = TERM_OFFSET_total_rows 1129 total_rows = TERM_OFFSET_total_rows
801 nsaved = TERM_OFFSET_nsaved 1130 top_row = TERM_OFFSET_top_row
802 CODE: 1131 CODE:
803 RETVAL = *(int *)((char *)THIS + ix); 1132 RETVAL = *(int *)((char *)THIS + ix);
804 OUTPUT: 1133 OUTPUT:
1134 RETVAL
1135
1136unsigned int
1137rxvt_term::ModLevel3Mask ()
1138 ALIAS:
1139 ModLevel3Mask = 0
1140 ModMetaMask = 1
1141 ModNumLockMask = 2
1142 CODE:
1143 switch (ix)
1144 {
1145 case 0: RETVAL = THIS->ModLevel3Mask; break;
1146 case 1: RETVAL = THIS->ModMetaMask; break;
1147 case 2: RETVAL = THIS->ModNumLockMask; break;
1148 }
1149 OUTPUT:
1150 RETVAL
1151
1152char *
1153rxvt_term::display_id ()
1154 ALIAS:
1155 display_id = 0
1156 locale = 1
1157 CODE:
1158 switch (ix)
1159 {
1160 case 0: RETVAL = THIS->display->id; break;
1161 case 1: RETVAL = THIS->locale; break;
1162 }
1163 OUTPUT:
1164 RETVAL
1165
1166SV *
1167rxvt_term::_env ()
1168 CODE:
1169{
1170 if (THIS->envv)
1171 {
1172 AV *av = newAV ();
1173
1174 for (char **i = THIS->envv->begin (); i != THIS->envv->end (); ++i)
1175 if (*i)
1176 av_push (av, newSVpv (*i, 0));
1177
1178 RETVAL = newRV_noinc ((SV *)av);
1179 }
1180 else
1181 RETVAL = &PL_sv_undef;
1182}
1183 OUTPUT:
1184 RETVAL
1185
1186int
1187rxvt_term::pty_ev_events (int events = EVENT_UNDEF)
1188 CODE:
1189 RETVAL = THIS->pty_ev.events;
1190 if (events != EVENT_UNDEF)
1191 THIS->pty_ev.set (events);
1192 OUTPUT:
805 RETVAL 1193 RETVAL
806 1194
807U32 1195U32
808rxvt_term::parent () 1196rxvt_term::parent ()
809 CODE: 1197 CODE:
816 CODE: 1204 CODE:
817 RETVAL = (U32)THIS->vt; 1205 RETVAL = (U32)THIS->vt;
818 OUTPUT: 1206 OUTPUT:
819 RETVAL 1207 RETVAL
820 1208
1209void
1210rxvt_term::vt_emask_add (U32 emask)
1211 CODE:
1212 THIS->vt_emask_perl |= emask;
1213 THIS->vt_select_input ();
1214
821U32 1215U32
822rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle) 1216rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
823 CODE: 1217 CODE:
824{
825 RETVAL = THIS->rstyle; 1218 RETVAL = THIS->rstyle;
826 THIS->rstyle = new_rstyle; 1219 THIS->rstyle = new_rstyle;
827}
828 OUTPUT: 1220 OUTPUT:
829 RETVAL 1221 RETVAL
830 1222
831int 1223int
832rxvt_term::view_start (int newval = -1) 1224rxvt_term::view_start (int newval = 1)
1225 PROTOTYPE: $;$
833 CODE: 1226 CODE:
834{ 1227{
835 RETVAL = THIS->view_start; 1228 RETVAL = THIS->view_start;
836 1229
837 if (newval >= 0) 1230 if (newval <= 0)
838 { 1231 THIS->scr_changeview (max (newval, THIS->top_row));
839 THIS->view_start = min (newval, THIS->nsaved);
840 THIS->scr_changeview (RETVAL);
841 }
842} 1232}
843 OUTPUT: 1233 OUTPUT:
844 RETVAL 1234 RETVAL
845 1235
846void 1236void
850 1240
851void 1241void
852rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS) 1242rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
853 PPCODE: 1243 PPCODE:
854{ 1244{
855 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1245 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
856 XSRETURN_EMPTY; 1246 XSRETURN_EMPTY;
857 1247
858 line_t &l = ROW(row_number); 1248 line_t &l = ROW(row_number);
859 1249
860 if (GIMME_V != G_VOID) 1250 if (GIMME_V != G_VOID)
862 wchar_t *wstr = new wchar_t [THIS->ncol]; 1252 wchar_t *wstr = new wchar_t [THIS->ncol];
863 1253
864 for (int col = 0; col < THIS->ncol; col++) 1254 for (int col = 0; col < THIS->ncol; col++)
865 wstr [col] = l.t [col]; 1255 wstr [col] = l.t [col];
866 1256
867 XPUSHs (sv_2mortal (wcs2sv (wstr, THIS->ncol))); 1257 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, THIS->ncol))));
868 1258
869 delete [] wstr; 1259 delete [] wstr;
870 } 1260 }
871 1261
872 if (new_text) 1262 if (new_text)
893 1283
894void 1284void
895rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS) 1285rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
896 PPCODE: 1286 PPCODE:
897{ 1287{
898 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1288 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
899 XSRETURN_EMPTY; 1289 XSRETURN_EMPTY;
900 1290
901 line_t &l = ROW(row_number); 1291 line_t &l = ROW(row_number);
902 1292
903 if (GIMME_V != G_VOID) 1293 if (GIMME_V != G_VOID)
933 1323
934int 1324int
935rxvt_term::ROW_l (int row_number, int new_length = -1) 1325rxvt_term::ROW_l (int row_number, int new_length = -1)
936 CODE: 1326 CODE:
937{ 1327{
938 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1328 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
939 XSRETURN_EMPTY; 1329 XSRETURN_EMPTY;
940 1330
941 line_t &l = ROW(row_number); 1331 line_t &l = ROW(row_number);
942 RETVAL = l.l; 1332 RETVAL = l.l;
943 1333
949 1339
950bool 1340bool
951rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1) 1341rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
952 CODE: 1342 CODE:
953{ 1343{
954 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1344 if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
955 XSRETURN_EMPTY; 1345 XSRETURN_EMPTY;
956 1346
957 line_t &l = ROW(row_number); 1347 line_t &l = ROW(row_number);
958 RETVAL = l.is_longer (); 1348 RETVAL = l.is_longer ();
959 1349
993 else 1383 else
994 *r++ = *s; 1384 *r++ = *s;
995 1385
996 rxvt_pop_locale (); 1386 rxvt_pop_locale ();
997 1387
998 RETVAL = wcs2sv (rstr, r - rstr); 1388 RETVAL = taint_if (wcs2sv (rstr, r - rstr), string);
999 1389
1000 delete [] rstr; 1390 delete [] rstr;
1001} 1391}
1002 OUTPUT: 1392 OUTPUT:
1003 RETVAL 1393 RETVAL
1029 else if (IS_COMPOSE (*s)) 1419 else if (IS_COMPOSE (*s))
1030 r += rxvt_composite.expand (*s, r); 1420 r += rxvt_composite.expand (*s, r);
1031 else 1421 else
1032 *r++ = *s; 1422 *r++ = *s;
1033 1423
1034 RETVAL = wcs2sv (rstr, r - rstr); 1424 RETVAL = taint_if (wcs2sv (rstr, r - rstr), text);
1035 1425
1036 delete [] rstr; 1426 delete [] rstr;
1037} 1427}
1038 OUTPUT: 1428 OUTPUT:
1039 RETVAL 1429 RETVAL
1061 1451
1062 if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES)) 1452 if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES))
1063 croak ("requested out-of-bound resource %s+%d,", name, index - rs->value); 1453 croak ("requested out-of-bound resource %s+%d,", name, index - rs->value);
1064 1454
1065 if (GIMME_V != G_VOID) 1455 if (GIMME_V != G_VOID)
1066 XPUSHs (THIS->rs [index] ? sv_2mortal (newSVpv (THIS->rs [index], 0)) : &PL_sv_undef); 1456 XPUSHs (THIS->rs [index] ? sv_2mortal (taint (newSVpv (THIS->rs [index], 0))) : &PL_sv_undef);
1067 1457
1068 if (newval) 1458 if (newval)
1069 { 1459 {
1070 if (SvOK (newval)) 1460 if (SvOK (newval))
1071 { 1461 {
1076 else 1466 else
1077 THIS->rs [index] = 0; 1467 THIS->rs [index] = 0;
1078 } 1468 }
1079} 1469}
1080 1470
1471const char *
1472rxvt_term::x_resource (const char *name)
1473 CLEANUP:
1474 SvTAINTED_on (ST (0));
1475
1476bool
1477rxvt_term::option (U32 optval, int set = -1)
1478 CODE:
1479{
1480 RETVAL = THIS->options & optval;
1481
1482 if (set >= 0)
1483 {
1484 if (set)
1485 THIS->options |= optval;
1486 else
1487 THIS->options &= ~optval;
1488
1489 switch (optval)
1490 {
1491 case Opt_skipBuiltinGlyphs:
1492 THIS->set_fonts ();
1493 THIS->scr_remap_chars ();
1494 THIS->scr_touch (true);
1495 THIS->want_refresh = 1;
1496 break;
1497
1498 case Opt_cursorUnderline:
1499 THIS->want_refresh = 1;
1500 break;
1501
1502# case Opt_scrollBar_floating:
1503# case Opt_scrollBar_right:
1504# THIS->resize_all_windows (THIS->width, THIS->height, 1);
1505# break;
1506 }
1507 }
1508}
1509 OUTPUT:
1510 RETVAL
1511
1512bool
1513rxvt_term::parse_keysym (char *keysym, char *str)
1514 CODE:
1515 RETVAL = 0 < THIS->parse_keysym (keysym, str);
1516 THIS->keyboard->register_done ();
1517 OUTPUT:
1518 RETVAL
1519
1081void 1520void
1082rxvt_term::cur (...) 1521rxvt_term::screen_cur (...)
1083 PROTOTYPE: $;$$ 1522 PROTOTYPE: $;$$
1084 ALIAS: 1523 ALIAS:
1085 screen_cur = 0 1524 screen_cur = 0
1086 selection_beg = 1 1525 selection_beg = 1
1087 selection_end = 2 1526 selection_end = 2
1100 PUSHs (sv_2mortal (newSViv (rc.col))); 1539 PUSHs (sv_2mortal (newSViv (rc.col)));
1101 } 1540 }
1102 1541
1103 if (items == 3) 1542 if (items == 3)
1104 { 1543 {
1105 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1); 1544 rc.row = clamp (SvIV (ST (1)), THIS->top_row, THIS->nrow - 1);
1106 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1); 1545 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
1107 1546
1108 if (ix) 1547 if (ix)
1109 THIS->want_refresh = 1; 1548 THIS->want_refresh = 1;
1110 } 1549 }
1111} 1550}
1112 1551
1552char
1553rxvt_term::cur_charset ()
1554 CODE:
1555 RETVAL = THIS->charsets [THIS->screen.charset];
1556 OUTPUT:
1557 RETVAL
1558
1559#void
1560#rxvt_term::selection_clear ()
1561
1562void
1563rxvt_term::selection_make (U32 eventtime, bool rect = false)
1564 CODE:
1565 THIS->selection.op = SELECTION_CONT;
1566 THIS->selection.rect = rect;
1567 THIS->selection_make (eventtime);
1568
1113int 1569int
1114rxvt_term::selection_grab (int eventtime = CurrentTime) 1570rxvt_term::selection_grab (U32 eventtime)
1115 1571
1116void 1572void
1117rxvt_term::selection (SV *newtext = 0) 1573rxvt_term::selection (SV *newtext = 0)
1118 PPCODE: 1574 PPCODE:
1119{ 1575{
1120 if (GIMME_V != G_VOID) 1576 if (GIMME_V != G_VOID)
1577 XPUSHs (THIS->selection.text
1121 XPUSHs (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len))); 1578 ? taint (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)))
1579 : &PL_sv_undef);
1122 1580
1123 if (newtext) 1581 if (newtext)
1124 { 1582 {
1125 free (THIS->selection.text); 1583 free (THIS->selection.text);
1126 1584
1127 THIS->selection.text = sv2wcs (newtext); 1585 THIS->selection.text = sv2wcs (newtext);
1128 THIS->selection.len = wcslen (THIS->selection.text); 1586 THIS->selection.len = wcslen (THIS->selection.text);
1129 } 1587 }
1130} 1588}
1589
1590void
1591rxvt_term::scr_xor_rect (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle1 = RS_RVid, U32 rstyle2 = RS_RVid | RS_Uline)
1592
1593void
1594rxvt_term::scr_xor_span (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle = RS_RVid)
1595
1596void
1597rxvt_term::scr_bell ()
1131 1598
1132void 1599void
1133rxvt_term::scr_add_lines (SV *string) 1600rxvt_term::scr_add_lines (SV *string)
1134 CODE: 1601 CODE:
1135{ 1602{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines