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.24 by root, Wed Jan 4 21:37:55 2006 UTC vs.
Revision 1.40 by root, Sun Jan 8 00:07:18 2006 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvtperl.xs 2 * File: rxvtperl.xs
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) 2005-2005 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
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
33#include "rxvt.h" 34#include "rxvt.h"
34#include "iom.h" 35#include "iom.h"
35#include "rxvtutil.h" 36#include "rxvtutil.h"
51 char *str = SvPVutf8 (sv, len); 52 char *str = SvPVutf8 (sv, len);
52 return rxvt_utf8towcs (str, len); 53 return rxvt_utf8towcs (str, len);
53} 54}
54 55
55static SV * 56static SV *
57wcs2sv (wchar_t *wstr, int len = -1)
58{
59 char *str = rxvt_wcstoutf8 (wstr, len);
60
61 SV *sv = newSVpv (str, 0);
62 SvUTF8_on (sv);
63 free (str);
64
65 return sv;
66}
67
68static SV *
56new_ref (HV *hv, const char *klass) 69new_ref (HV *hv, const char *klass)
57{ 70{
58 return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1)); 71 return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1));
59} 72}
60 73
89 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass); 102 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
90 103
91 return (long)mg->mg_ptr; 104 return (long)mg->mg_ptr;
92} 105}
93 106
94#define newSVterm(term) SvREFCNT_inc ((SV *)term->self) 107#define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
95#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term") 108#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term")
96 109
97///////////////////////////////////////////////////////////////////////////// 110/////////////////////////////////////////////////////////////////////////////
98 111
99struct perl_watcher 112struct perl_watcher
278void 291void
279overlay::show () 292overlay::show ()
280{ 293{
281 char key[33]; sprintf (key, "%32lx", (long)this); 294 char key[33]; sprintf (key, "%32lx", (long)this);
282 295
283 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->self), "_overlay", 8, 0)); 296 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0));
284 hv_store (hv, key, 32, newSViv ((long)this), 0); 297 hv_store (hv, key, 32, newSViv ((long)this), 0);
285} 298}
286 299
287void 300void
288overlay::hide () 301overlay::hide ()
289{ 302{
290 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->self), "_overlay", 8, 0); 303 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
291 304
292 if (ovs) 305 if (ovs)
293 { 306 {
294 char key[33]; sprintf (key, "%32lx", (long)this); 307 char key[33]; sprintf (key, "%32lx", (long)this);
295 308
403 if (!perl) 416 if (!perl)
404 return false; 417 return false;
405 418
406 if (htype == HOOK_INIT) // first hook ever called 419 if (htype == HOOK_INIT) // first hook ever called
407 { 420 {
408 term->self = (void *)newSVptr ((void *)term, "urxvt::term"); 421 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
409 hv_store ((HV *)SvRV ((SV *)term->self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0); 422 hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
410 } 423 }
411 else if (!term->self) 424 else if (!term->perl.self)
412 return false; // perl not initialized for this instance 425 return false; // perl not initialized for this instance
413 else if (htype == HOOK_DESTROY) 426 else if (htype == HOOK_DESTROY)
414 { 427 {
415 // handled later 428 // handled later
416 } 429 }
417 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END) 430 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END)
418 { 431 {
419 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->self), "_overlay", 8, 0)); 432 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
420 433
421 if (HvKEYS (hv)) 434 if (HvKEYS (hv))
422 { 435 {
423 hv_iterinit (hv); 436 hv_iterinit (hv);
424 437
453 466
454 case DT_LONG: 467 case DT_LONG:
455 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long)))); 468 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
456 break; 469 break;
457 470
458 case DT_STRING: 471 case DT_STR:
459 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0))); 472 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
473 break;
474
475 case DT_STR_LEN:
476 {
477 char *str = va_arg (ap, char *);
478 int len = va_arg (ap, int);
479
480 XPUSHs (sv_2mortal (newSVpvn (str, len)));
481 }
482 break;
483
484 case DT_WCS_LEN:
485 {
486 wchar_t *wstr = va_arg (ap, wchar_t *);
487 int wlen = va_arg (ap, int);
488
489 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen)));
490 }
491 break;
492
493 case DT_XEVENT:
494 {
495 XEvent *xe = va_arg (ap, XEvent *);
496 HV *hv = newHV ();
497
498# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0)
499# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0)
500# undef set
501
502 setiv (type, xe->type);
503 setiv (send_event, xe->xany.send_event);
504 setiv (serial, xe->xany.serial);
505
506 switch (xe->type)
507 {
508 case KeyPress:
509 case KeyRelease:
510 case ButtonPress:
511 case ButtonRelease:
512 case MotionNotify:
513 setiv (time, xe->xmotion.time);
514 setiv (x, xe->xmotion.x);
515 setiv (y, xe->xmotion.y);
516 setiv (row, xe->xmotion.y / term->fheight);
517 setiv (col, xe->xmotion.x / term->fwidth);
518 setiv (x_root, xe->xmotion.x_root);
519 setiv (y_root, xe->xmotion.y_root);
520 setiv (state, xe->xmotion.state);
521 break;
522 }
523
524 switch (xe->type)
525 {
526 case KeyPress:
527 case KeyRelease:
528 setiv (keycode, xe->xkey.keycode);
529 break;
530
531 case ButtonPress:
532 case ButtonRelease:
533 setiv (button, xe->xbutton.button);
534 break;
535
536 case MotionNotify:
537 setiv (is_hint, xe->xmotion.is_hint);
538 break;
539 }
540
541 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
542 }
460 break; 543 break;
461 544
462 case DT_END: 545 case DT_END:
463 { 546 {
464 va_end (ap); 547 va_end (ap);
480 if (SvTRUE (ERRSV)) 563 if (SvTRUE (ERRSV))
481 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV)); 564 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
482 565
483 if (htype == HOOK_DESTROY) 566 if (htype == HOOK_DESTROY)
484 { 567 {
485 clearSVptr ((SV *)term->self); 568 clearSVptr ((SV *)term->perl.self);
486 SvREFCNT_dec ((SV *)term->self); 569 SvREFCNT_dec ((SV *)term->perl.self);
487 } 570 }
488 571
489 return count; 572 return count;
490 } 573 }
491 574
501 584
502PROTOTYPES: ENABLE 585PROTOTYPES: ENABLE
503 586
504BOOT: 587BOOT:
505{ 588{
506# define export_const(name) newCONSTSUB (gv_stashpv ("urxvt", 1), # name, newSViv (name)); 589 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
590
507 AV *hookname = get_av ("urxvt::HOOKNAME", 1); 591 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
508# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0)); 592# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
509# include "hookinc.h" 593# include "hookinc.h"
510# undef def 594# undef def
511 595
596 HV *option = get_hv ("urxvt::OPTION", 1);
597# define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
598# define nodef(name)
599# include "optinc.h"
600# undef nodef
601# undef def
602
603 HV *stash = gv_stashpv ("urxvt", 1);
604# define export_const_iv(name) newCONSTSUB (stash, # name, newSViv (name));
512 export_const (DEFAULT_RSTYLE); 605 export_const_iv (DEFAULT_RSTYLE);
513 export_const (OVERLAY_RSTYLE); 606 export_const_iv (OVERLAY_RSTYLE);
514 export_const (RS_Bold); 607 export_const_iv (RS_Bold);
515 export_const (RS_Italic); 608 export_const_iv (RS_Italic);
516 export_const (RS_Blink); 609 export_const_iv (RS_Blink);
517 export_const (RS_RVid); 610 export_const_iv (RS_RVid);
518 export_const (RS_Uline); 611 export_const_iv (RS_Uline);
519 612
520 sv_setpv (get_sv ("urxvt::LIBDIR", 1), LIBDIR); 613 export_const_iv (CurrentTime);
614 export_const_iv (ShiftMask);
615 export_const_iv (LockMask);
616 export_const_iv (ControlMask);
617 export_const_iv (Mod1Mask);
618 export_const_iv (Mod2Mask);
619 export_const_iv (Mod3Mask);
620 export_const_iv (Mod4Mask);
621 export_const_iv (Mod5Mask);
622 export_const_iv (Button1Mask);
623 export_const_iv (Button2Mask);
624 export_const_iv (Button3Mask);
625 export_const_iv (Button4Mask);
626 export_const_iv (Button5Mask);
627 export_const_iv (AnyModifier);
521} 628}
629
630SV *
631new (...)
632 CODE:
633{
634 stringvec *argv = new stringvec;
635 bool success;
636
637 for (int i = 0; i < items ;i++)
638 argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
639
640 rxvt_term *term = new rxvt_term;
641
642 term->argv = argv;
643
644 try
645 {
646 if (!term->init (argv->size (), argv->begin ()))
647 term = 0;
648 }
649 catch (const class rxvt_failure_exception &e)
650 {
651 term->destroy ();
652 croak ("exception caught while initializing new terminal instance");
653 }
654
655 RETVAL = term && term->perl.self ? newSVterm (term) : &PL_sv_undef;
656}
657 OUTPUT:
658 RETVAL
522 659
523void 660void
524set_should_invoke (int htype, int value) 661set_should_invoke (int htype, int value)
525 CODE: 662 CODE:
526 rxvt_perl.should_invoke [htype] = value; 663 rxvt_perl.should_invoke [htype] = value;
589} 726}
590 OUTPUT: 727 OUTPUT:
591 RETVAL 728 RETVAL
592 729
593MODULE = urxvt PACKAGE = urxvt::term 730MODULE = urxvt PACKAGE = urxvt::term
731
732void
733rxvt_term::destroy ()
734
735void
736rxvt_term::grab_button (int button, U32 modifiers)
737 CODE:
738 XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
739 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
740 GrabModeSync, GrabModeSync, None, None);
741
742bool
743rxvt_term::grab (U32 eventtime, int sync = 0)
744 CODE:
745{
746 int mode = sync ? GrabModeSync : GrabModeAsync;
747
748 THIS->perl.grabtime = 0;
749
750 if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
751 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
752 mode, mode, None, None, eventtime))
753 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
754 THIS->perl.grabtime = eventtime;
755 else
756 XUngrabPointer (THIS->display->display, eventtime);
757
758 RETVAL = !!THIS->perl.grabtime;
759}
760 OUTPUT:
761 RETVAL
762
763void
764rxvt_term::allow_events_async (U32 eventtime = THIS->perl.grabtime)
765 CODE:
766 XAllowEvents (THIS->display->display, AsyncBoth, eventtime);
767
768void
769rxvt_term::allow_events_sync (U32 eventtime = THIS->perl.grabtime)
770 CODE:
771 XAllowEvents (THIS->display->display, SyncBoth, eventtime);
772
773void
774rxvt_term::allow_events_replay (U32 eventtime = THIS->perl.grabtime)
775 CODE:
776 XAllowEvents (THIS->display->display, ReplayPointer, eventtime);
777 XAllowEvents (THIS->display->display, ReplayKeyboard, eventtime);
778
779void
780rxvt_term::ungrab (U32 eventtime = THIS->perl.grabtime)
781 CODE:
782 THIS->perl.grabtime = 0;
783 XUngrabKeyboard (THIS->display->display, eventtime);
784 XUngrabPointer (THIS->display->display, eventtime);
594 785
595int 786int
596rxvt_term::strwidth (SV *str) 787rxvt_term::strwidth (SV *str)
597 CODE: 788 CODE:
598{ 789{
634 825
635 rxvt_push_locale (THIS->locale); 826 rxvt_push_locale (THIS->locale);
636 wchar_t *wstr = rxvt_mbstowcs (data, len); 827 wchar_t *wstr = rxvt_mbstowcs (data, len);
637 rxvt_pop_locale (); 828 rxvt_pop_locale ();
638 829
639 char *str = rxvt_wcstoutf8 (wstr); 830 RETVAL = wcs2sv (wstr);
640 free (wstr); 831 free (wstr);
641
642 RETVAL = newSVpv (str, 0);
643 SvUTF8_on (RETVAL);
644 free (str);
645} 832}
646 OUTPUT: 833 OUTPUT:
647 RETVAL 834 RETVAL
648 835
649# very portable, especially on objects as opposed to pods 836#define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
650#define TERM_OFFSET(sym) (((char *)&((TermWin_t *)0)->sym) - (char *)(TermWin_t *)0)
651 837
652#define TERM_OFFSET_width TERM_OFFSET(width) 838#define TERM_OFFSET_width TERM_OFFSET(width)
653#define TERM_OFFSET_height TERM_OFFSET(height) 839#define TERM_OFFSET_height TERM_OFFSET(height)
654#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth) 840#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
655#define TERM_OFFSET_fheight TERM_OFFSET(fheight) 841#define TERM_OFFSET_fheight TERM_OFFSET(fheight)
680 CODE: 866 CODE:
681 RETVAL = *(int *)((char *)THIS + ix); 867 RETVAL = *(int *)((char *)THIS + ix);
682 OUTPUT: 868 OUTPUT:
683 RETVAL 869 RETVAL
684 870
871unsigned int
872rxvt_term::ModLevel3Mask ()
873 ALIAS:
874 ModLevel3Mask = 0
875 ModMetaMask = 1
876 ModNumLockMask = 2
877 CODE:
878 switch (ix)
879 {
880 case 0: RETVAL = THIS->ModLevel3Mask; break;
881 case 1: RETVAL = THIS->ModMetaMask; break;
882 case 2: RETVAL = THIS->ModNumLockMask; break;
883 }
884 OUTPUT:
885 RETVAL
886
685U32 887U32
888rxvt_term::parent ()
889 CODE:
890 RETVAL = (U32)THIS->parent [0];
891 OUTPUT:
892 RETVAL
893
894U32
895rxvt_term::vt ()
896 CODE:
897 RETVAL = (U32)THIS->vt;
898 OUTPUT:
899 RETVAL
900
901U32
686rxvt_term::screen_rstyle (U32 new_rstyle = THIS->screen.s_rstyle) 902rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
687 CODE: 903 CODE:
688{ 904{
689 RETVAL = THIS->screen.s_rstyle; 905 RETVAL = THIS->rstyle;
690 THIS->screen.s_rstyle = new_rstyle; 906 THIS->rstyle = new_rstyle;
691} 907}
692 OUTPUT: 908 OUTPUT:
693 RETVAL 909 RETVAL
694 910
695int 911int
711rxvt_term::want_refresh () 927rxvt_term::want_refresh ()
712 CODE: 928 CODE:
713 THIS->want_refresh = 1; 929 THIS->want_refresh = 1;
714 930
715void 931void
716rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0) 932rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
717 PPCODE: 933 PPCODE:
718{ 934{
719 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 935 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
720 XSRETURN_EMPTY; 936 XSRETURN_EMPTY;
721 937
723 939
724 if (GIMME_V != G_VOID) 940 if (GIMME_V != G_VOID)
725 { 941 {
726 wchar_t *wstr = new wchar_t [THIS->ncol]; 942 wchar_t *wstr = new wchar_t [THIS->ncol];
727 943
728 for (int col = 0; col <THIS->ncol; col++) 944 for (int col = 0; col < THIS->ncol; col++)
729 wstr [col] = l.t [col]; 945 wstr [col] = l.t [col];
730 946
731 char *str = rxvt_wcstoutf8 (wstr, THIS->ncol);
732 free (wstr);
733
734 SV *sv = newSVpv (str, 0);
735 SvUTF8_on (sv);
736 XPUSHs (sv_2mortal (sv)); 947 XPUSHs (sv_2mortal (wcs2sv (wstr, THIS->ncol)));
737 free (str); 948
949 delete [] wstr;
738 } 950 }
739 951
740 if (new_text) 952 if (new_text)
741 { 953 {
742 wchar_t *wstr = sv2wcs (new_text); 954 wchar_t *wstr = sv2wcs (new_text);
743 955
744 int len = wcslen (wstr); 956 int len = min (wcslen (wstr) - start_ofs, max_len);
745 957
746 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len)) 958 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
747 { 959 {
748 free (wstr); 960 free (wstr);
749 croak ("new_text extends beyond horizontal margins"); 961 croak ("new_text extends beyond horizontal margins");
750 } 962 }
751 963
752 for (int col = start_col; col < start_col + len; col++) 964 for (int col = start_col; col < start_col + len; col++)
753 { 965 {
754 l.t [col] = wstr [col - start_col]; 966 l.t [col] = wstr [start_ofs + col - start_col];
755 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col])); 967 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col]));
756 } 968 }
757 969
758 free (wstr); 970 free (wstr);
759 } 971 }
760} 972}
761 973
762void 974void
763rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0) 975rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
764 PPCODE: 976 PPCODE:
765{ 977{
766 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 978 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
767 XSRETURN_EMPTY; 979 XSRETURN_EMPTY;
768 980
783 { 995 {
784 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV) 996 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV)
785 croak ("new_rend must be arrayref"); 997 croak ("new_rend must be arrayref");
786 998
787 AV *av = (AV *)SvRV (new_rend); 999 AV *av = (AV *)SvRV (new_rend);
788 int len = av_len (av) + 1; 1000 int len = min (av_len (av) + 1 - start_ofs, max_len);
789 1001
790 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len)) 1002 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
791 croak ("new_rend array extends beyond horizontal margins"); 1003 croak ("new_rend array extends beyond horizontal margins");
792 1004
793 for (int col = start_col; col < start_col + len; col++) 1005 for (int col = start_col; col < start_col + len; col++)
794 { 1006 {
795 rend_t r = SvIV (*av_fetch (av, col - start_col, 1)) & ~RS_fontMask; 1007 rend_t r = SvIV (*av_fetch (av, start_ofs + col - start_col, 1)) & ~RS_fontMask;
796 1008
797 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col])); 1009 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col]));
798 } 1010 }
799 } 1011 }
800} 1012}
801 1013
802int 1014int
803rxvt_term::ROW_l (int row_number, int new_length = -2) 1015rxvt_term::ROW_l (int row_number, int new_length = -1)
804 CODE: 1016 CODE:
805{ 1017{
806 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1018 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
807 XSRETURN_EMPTY; 1019 XSRETURN_EMPTY;
808 1020
809 line_t &l = ROW(row_number); 1021 line_t &l = ROW(row_number);
810 RETVAL = l.l < 0 ? THIS->ncol : l.l; 1022 RETVAL = l.l;
811 1023
812 if (new_length >= -1) 1024 if (new_length >= 0)
813 l.l = new_length; 1025 l.l = new_length;
814} 1026}
815 OUTPUT: 1027 OUTPUT:
816 RETVAL 1028 RETVAL
817 1029
818bool 1030bool
819rxvt_term::ROW_is_longer (int row_number) 1031rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
820 CODE: 1032 CODE:
821{ 1033{
822 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1034 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
823 XSRETURN_EMPTY; 1035 XSRETURN_EMPTY;
824 1036
825 line_t &l = ROW(row_number); 1037 line_t &l = ROW(row_number);
826 RETVAL = l.l < 0; 1038 RETVAL = l.is_longer ();
1039
1040 if (new_is_longer >= 0)
1041 l.is_longer (new_is_longer);
827} 1042}
828 OUTPUT: 1043 OUTPUT:
829 RETVAL 1044 RETVAL
830 1045
831SV * 1046SV *
832rxvt_term::special_encode (SV *str) 1047rxvt_term::special_encode (SV *string)
833 CODE: 1048 CODE:
834 abort ();//TODO 1049{
1050 wchar_t *wstr = sv2wcs (string);
1051 int wlen = wcslen (wstr);
1052 wchar_t *rstr = new wchar_t [wlen]; // cannot become longer
1053
1054 rxvt_push_locale (THIS->locale);
1055
1056 wchar_t *r = rstr;
1057 for (wchar_t *s = wstr; *s; s++)
1058 if (wcwidth (*s) == 0)
1059 {
1060 if (r == rstr)
1061 croak ("leading combining character unencodable");
1062
1063 unicode_t n = rxvt_compose (r[-1], *s);
1064 if (n == NOCHAR)
1065 n = rxvt_composite.compose (r[-1], *s);
1066
1067 r[-1] = n;
1068 }
1069#if !UNICODE_3
1070 else if (*s >= 0x10000)
1071 *r++ = rxvt_composite.compose (*s);
1072#endif
1073 else
1074 *r++ = *s;
1075
1076 rxvt_pop_locale ();
1077
1078 RETVAL = wcs2sv (rstr, r - rstr);
1079
1080 delete [] rstr;
1081}
1082 OUTPUT:
1083 RETVAL
835 1084
836SV * 1085SV *
837rxvt_term::special_decode (SV *str) 1086rxvt_term::special_decode (SV *text)
838 CODE: 1087 CODE:
839 abort ();//TODO 1088{
1089 wchar_t *wstr = sv2wcs (text);
1090 int wlen = wcslen (wstr);
1091 int dlen = 0;
1092
1093 // find length
1094 for (wchar_t *s = wstr; *s; s++)
1095 if (*s == NOCHAR)
1096 ;
1097 else if (IS_COMPOSE (*s))
1098 dlen += rxvt_composite.expand (*s, 0);
1099 else
1100 dlen++;
1101
1102 wchar_t *rstr = new wchar_t [dlen];
1103
1104 // decode
1105 wchar_t *r = rstr;
1106 for (wchar_t *s = wstr; *s; s++)
1107 if (*s == NOCHAR)
1108 ;
1109 else if (IS_COMPOSE (*s))
1110 r += rxvt_composite.expand (*s, r);
1111 else
1112 *r++ = *s;
1113
1114 RETVAL = wcs2sv (rstr, r - rstr);
1115
1116 delete [] rstr;
1117}
1118 OUTPUT:
1119 RETVAL
840 1120
841void 1121void
842rxvt_term::_resource (char *name, int index, SV *newval = 0) 1122rxvt_term::_resource (char *name, int index, SV *newval = 0)
843 PPCODE: 1123 PPCODE:
844{ 1124{
876 else 1156 else
877 THIS->rs [index] = 0; 1157 THIS->rs [index] = 0;
878 } 1158 }
879} 1159}
880 1160
1161bool
1162rxvt_term::option (U32 optval, int set = -1)
1163 CODE:
1164{
1165 RETVAL = THIS->options & optval;
1166
1167 if (set >= 0)
1168 {
1169 if (set)
1170 THIS->options |= optval;
1171 else
1172 THIS->options &= ~optval;
1173
1174 switch (optval)
1175 {
1176 case Opt_skipBuiltinGlyphs:
1177 THIS->set_fonts ();
1178 THIS->scr_remap_chars ();
1179 THIS->scr_touch (true);
1180 THIS->want_refresh = 1;
1181 break;
1182
1183 case Opt_cursorUnderline:
1184 THIS->want_refresh = 1;
1185 break;
1186
1187# case Opt_scrollBar_floating:
1188# case Opt_scrollBar_right:
1189# THIS->resize_all_windows (THIS->width, THIS->height, 1);
1190# break;
1191 }
1192 }
1193}
1194 OUTPUT:
1195 RETVAL
1196
881void 1197void
882rxvt_term::cur (...) 1198rxvt_term::cur (...)
883 PROTOTYPE: $;$$ 1199 PROTOTYPE: $;$$
884 ALIAS: 1200 ALIAS:
885 screen_cur = 0 1201 screen_cur = 0
909 THIS->want_refresh = 1; 1225 THIS->want_refresh = 1;
910 } 1226 }
911} 1227}
912 1228
913int 1229int
914rxvt_term::selection_grab (int eventtime = CurrentTime) 1230rxvt_term::selection_grab (U32 eventtime)
915 1231
916void 1232void
917rxvt_term::selection (SV *newtext = 0) 1233rxvt_term::selection (SV *newtext = 0)
918 PPCODE: 1234 PPCODE:
919{ 1235{
920 if (GIMME_V != G_VOID) 1236 if (GIMME_V != G_VOID)
921 { 1237 XPUSHs (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)));
922 char *sel = rxvt_wcstoutf8 (THIS->selection.text, THIS->selection.len);
923 SV *sv = newSVpv (sel, 0);
924 SvUTF8_on (sv);
925 free (sel);
926 XPUSHs (sv_2mortal (sv));
927 }
928 1238
929 if (newtext) 1239 if (newtext)
930 { 1240 {
931 free (THIS->selection.text); 1241 free (THIS->selection.text);
932 1242
933 THIS->selection.text = sv2wcs (newtext); 1243 THIS->selection.text = sv2wcs (newtext);
934 THIS->selection.len = wcslen (THIS->selection.text); 1244 THIS->selection.len = wcslen (THIS->selection.text);
935 } 1245 }
1246}
1247
1248void
1249rxvt_term::scr_add_lines (SV *string)
1250 CODE:
1251{
1252 wchar_t *wstr = sv2wcs (string);
1253 THIS->scr_add_lines (wstr, wcslen (wstr));
1254 free (wstr);
936} 1255}
937 1256
938void 1257void
939rxvt_term::tt_write (SV *octets) 1258rxvt_term::tt_write (SV *octets)
940 INIT: 1259 INIT:
941 STRLEN len; 1260 STRLEN len;
942 char *str = SvPVbyte (octets, len); 1261 char *str = SvPVbyte (octets, len);
943 C_ARGS: 1262 C_ARGS:
944 str, len 1263 str, len
945 1264
1265void
1266rxvt_term::cmd_parse (SV *octets)
1267 CODE:
1268{
1269 STRLEN len;
1270 char *str = SvPVbyte (octets, len);
1271
1272 char *old_cmdbuf_ptr = THIS->cmdbuf_ptr;
1273 char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1274
1275 THIS->cmdbuf_ptr = str;
1276 THIS->cmdbuf_endp = str + len;
1277
1278 rxvt_push_locale (THIS->locale);
1279 THIS->cmd_parse ();
1280 rxvt_pop_locale ();
1281
1282 THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1283 THIS->cmdbuf_endp = old_cmdbuf_endp;
1284}
1285
946SV * 1286SV *
947rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2) 1287rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2)
948 CODE: 1288 CODE:
949{ 1289{
950 overlay *o = new overlay (THIS, x, y, w, h, rstyle, border); 1290 overlay *o = new overlay (THIS, x, y, w, h, rstyle, border);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines