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.9 by root, Tue Jan 3 01:15:00 2006 UTC vs.
Revision 1.44 by root, Sun Jan 8 22:58:13 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"
36#include "rxvtperl.h" 37#include "rxvtperl.h"
37 38
38#include "perlxsi.c" 39#include "perlxsi.c"
39 40
41#if defined(HAVE_SCROLLBARS) || defined(MENUBAR)
42# define GRAB_CURSOR THIS->leftptr_cursor
43#else
44# define GRAB_CURSOR None
45#endif
46
40#undef LINENO 47#undef LINENO
41#define LINENO(n) MOD (THIS->term_start + int(n), THIS->total_rows) 48#define LINENO(n) MOD (THIS->term_start + int(n), THIS->total_rows)
42#undef ROW 49#undef ROW
43#define ROW(n) THIS->row_buf [LINENO (n)] 50#define ROW(n) THIS->row_buf [LINENO (n)]
44 51
45///////////////////////////////////////////////////////////////////////////// 52/////////////////////////////////////////////////////////////////////////////
46 53
54static SV *
55taint (SV *sv)
56{
57 SvTAINT (sv);
58 return sv;
59}
60
61static SV *
62taint_if (SV *sv, SV *src)
63{
64 if (SvTAINTED (src))
65 SvTAINT (sv);
66
67 return sv;
68}
69
47static wchar_t * 70static wchar_t *
48sv2wcs (SV *sv) 71sv2wcs (SV *sv)
49{ 72{
50 STRLEN len; 73 STRLEN len;
51 char *str = SvPVutf8 (sv, len); 74 char *str = SvPVutf8 (sv, len);
52 return rxvt_utf8towcs (str, len); 75 return rxvt_utf8towcs (str, len);
53} 76}
54 77
55static SV * 78static SV *
79wcs2sv (wchar_t *wstr, int len = -1)
80{
81 char *str = rxvt_wcstoutf8 (wstr, len);
82
83 SV *sv = newSVpv (str, 0);
84 SvUTF8_on (sv);
85 free (str);
86
87 return sv;
88}
89
90static SV *
56new_ref (HV *hv, const char *klass) 91new_ref (HV *hv, const char *klass)
57{ 92{
58 return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1)); 93 return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1));
59} 94}
60 95
61//TODO: use magic 96//TODO: use magic
62static SV * 97static SV *
63newSVptr (void *ptr, const char *klass) 98newSVptr (void *ptr, const char *klass)
64{ 99{
65 HV *hv = newHV (); 100 HV *hv = newHV ();
66 hv_store (hv, "_ptr", 4, newSViv ((long)ptr), 0); 101 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
67 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1)); 102 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
103}
104
105static void
106clearSVptr (SV *sv)
107{
108 if (SvROK (sv))
109 sv = SvRV (sv);
110
111 hv_clear ((HV *)sv);
112 sv_unmagic (sv, PERL_MAGIC_ext);
68} 113}
69 114
70static long 115static long
71SvPTR (SV *sv, const char *klass) 116SvPTR (SV *sv, const char *klass)
72{ 117{
73 if (!sv_derived_from (sv, klass)) 118 if (!sv_derived_from (sv, klass))
74 croak ("object of type %s expected", klass); 119 croak ("object of type %s expected", klass);
75 120
76 IV iv = SvIV (*hv_fetch ((HV *)SvRV (sv), "_ptr", 4, 1)); 121 MAGIC *mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
77 122
78 if (!iv) 123 if (!mg)
79 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass); 124 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
80 125
81 return (long)iv; 126 return (long)mg->mg_ptr;
82} 127}
83 128
84#define newSVterm(term) SvREFCNT_inc ((SV *)term->self) 129#define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
85#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term") 130#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term")
86 131
87///////////////////////////////////////////////////////////////////////////// 132/////////////////////////////////////////////////////////////////////////////
88 133
89struct perl_watcher 134struct perl_watcher
139#define newSVtimer(timer) new_ref (timer->self, "urxvt::timer") 184#define newSVtimer(timer) new_ref (timer->self, "urxvt::timer")
140#define SvTIMER(sv) (timer *)SvPTR (sv, "urxvt::timer") 185#define SvTIMER(sv) (timer *)SvPTR (sv, "urxvt::timer")
141 186
142struct timer : time_watcher, perl_watcher 187struct timer : time_watcher, perl_watcher
143{ 188{
189 tstamp interval;
190
144 timer () 191 timer ()
145 : time_watcher (this, &timer::execute) 192 : time_watcher (this, &timer::execute)
146 { 193 {
147 } 194 }
148 195
149 void execute (time_watcher &w) 196 void execute (time_watcher &w)
150 { 197 {
198 if (interval)
199 start (at + interval);
200
151 invoke ("urxvt::timer", newSVtimer (this)); 201 invoke ("urxvt::timer", newSVtimer (this));
152 } 202 }
153}; 203};
154 204
155#define newSViow(iow) new_ref (iow->self, "urxvt::iow") 205#define newSViow(iow) new_ref (iow->self, "urxvt::iow")
168 } 218 }
169}; 219};
170 220
171///////////////////////////////////////////////////////////////////////////// 221/////////////////////////////////////////////////////////////////////////////
172 222
223#define SvOVERLAY(sv) (overlay *)SvPTR (sv, "urxvt::overlay")
224
225struct overlay {
226 HV *self;
227 rxvt_term *THIS;
228 int x, y, w, h;
229 int border;
230 text_t **text;
231 rend_t **rend;
232
233 overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border);
234 ~overlay ();
235
236 void show ();
237 void hide ();
238
239 void swap ();
240
241 void set (int x, int y, SV *str, SV *rend);
242};
243
244overlay::overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border)
245: THIS(THIS), x(x_), y(y_), w(w_), h(h_), border(border == 2)
246{
247 if (border == 2)
248 {
249 w += 2;
250 h += 2;
251 }
252
253 text = new text_t *[h];
254 rend = new rend_t *[h];
255
256 for (int y = 0; y < h; y++)
257 {
258 text_t *tp = text[y] = new text_t[w];
259 rend_t *rp = rend[y] = new rend_t[w];
260
261 text_t t0, t1, t2;
262 rend_t r = rstyle;
263
264 if (border == 2)
265 {
266 if (y == 0)
267 t0 = 0x2554, t1 = 0x2550, t2 = 0x2557;
268 else if (y < h - 1)
269 t0 = 0x2551, t1 = 0x0020, t2 = 0x2551;
270 else
271 t0 = 0x255a, t1 = 0x2550, t2 = 0x255d;
272
273 *tp++ = t0;
274 *rp++ = r;
275
276 for (int x = w - 2; x-- > 0; )
277 {
278 *tp++ = t1;
279 *rp++ = r;
280 }
281
282 *tp = t2;
283 *rp = r;
284 }
285 else
286 for (int x = w; x-- > 0; )
287 {
288 *tp++ = 0x0020;
289 *rp++ = r;
290 }
291 }
292
293 show ();
294 THIS->want_refresh = 1;
295}
296
297overlay::~overlay ()
298{
299 hide ();
300
301 for (int y = h; y--; )
302 {
303 delete [] text[y];
304 delete [] rend[y];
305 }
306
307 delete [] text;
308 delete [] rend;
309
310 THIS->want_refresh = 1;
311}
312
313void
314overlay::show ()
315{
316 char key[33]; sprintf (key, "%32lx", (long)this);
317
318 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0));
319 hv_store (hv, key, 32, newSViv ((long)this), 0);
320}
321
322void
323overlay::hide ()
324{
325 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
326
327 if (ovs)
328 {
329 char key[33]; sprintf (key, "%32lx", (long)this);
330
331 HV *hv = (HV *)SvRV (*ovs);
332 hv_delete (hv, key, 32, G_DISCARD);
333 }
334}
335
336void overlay::swap ()
337{
338 int ov_x = max (0, min (MOD (x, THIS->ncol), THIS->ncol - w));
339 int ov_y = max (0, min (MOD (y, THIS->nrow), THIS->nrow - h));
340
341 int ov_w = min (w, THIS->ncol - ov_x);
342 int ov_h = min (h, THIS->nrow - ov_y);
343
344 for (int y = ov_h; y--; )
345 {
346 text_t *t1 = text [y];
347 rend_t *r1 = rend [y];
348
349 text_t *t2 = ROW(y + ov_y - THIS->view_start).t + ov_x;
350 rend_t *r2 = ROW(y + ov_y - THIS->view_start).r + ov_x;
351
352 for (int x = ov_w; x--; )
353 {
354 text_t t = *t1; *t1++ = *t2; *t2++ = t;
355 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t));
356 }
357 }
358
359}
360
361void overlay::set (int x, int y, SV *text, SV *rend)
362{
363 x += border;
364 y += border;
365
366 if (!IN_RANGE_EXC (y, 0, h - border))
367 return;
368
369 wchar_t *wtext = sv2wcs (text);
370
371 for (int col = min (wcslen (wtext), w - x - border); col--; )
372 this->text [y][x + col] = wtext [col];
373
374 free (wtext);
375
376 if (rend)
377 {
378 if (!SvROK (rend) || SvTYPE (SvRV (rend)) != SVt_PVAV)
379 croak ("rend must be arrayref");
380
381 AV *av = (AV *)SvRV (rend);
382
383 for (int col = min (av_len (av) + 1, w - x - border); col--; )
384 this->rend [y][x + col] = SvIV (*av_fetch (av, col, 1));
385 }
386
387 THIS->want_refresh = 1;
388}
389
390
391/////////////////////////////////////////////////////////////////////////////
392
173struct rxvt_perl_interp rxvt_perl; 393struct rxvt_perl_interp rxvt_perl;
174 394
175static PerlInterpreter *perl; 395static PerlInterpreter *perl;
176 396
177rxvt_perl_interp::rxvt_perl_interp () 397rxvt_perl_interp::rxvt_perl_interp ()
192{ 412{
193 if (!perl) 413 if (!perl)
194 { 414 {
195 char *argv[] = { 415 char *argv[] = {
196 "", 416 "",
417 "-T",
197 "-edo '" LIBDIR "/urxvt.pm' or ($@ and die $@) or exit 1", 418 "-edo '" LIBDIR "/urxvt.pm' or ($@ and die $@) or exit 1",
198 }; 419 };
199 420
200 perl = perl_alloc (); 421 perl = perl_alloc ();
201 perl_construct (perl); 422 perl_construct (perl);
202 423
203 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) 424 if (perl_parse (perl, xs_init, 3, argv, (char **)NULL)
204 || perl_run (perl)) 425 || perl_run (perl))
205 { 426 {
206 rxvt_warn ("unable to initialize perl-interpreter, continuing without.\n"); 427 rxvt_warn ("unable to initialize perl-interpreter, continuing without.\n");
207 428
208 perl_destruct (perl); 429 perl_destruct (perl);
213} 434}
214 435
215bool 436bool
216rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...) 437rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
217{ 438{
218 if (!perl 439 if (!perl)
219 || (!should_invoke [htype] && htype != HOOK_INIT && htype != HOOK_DESTROY))
220 return false; 440 return false;
221 441
222 if (htype == HOOK_INIT) // first hook ever called 442 if (htype == HOOK_INIT) // first hook ever called
443 {
223 term->self = (void *)newSVptr ((void *)term, "urxvt::term"); 444 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
445 hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
446 }
447 else if (!term->perl.self)
448 return false; // perl not initialized for this instance
449 else if (htype == HOOK_DESTROY)
450 {
451 // handled later
452 }
453 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END)
454 {
455 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
456
457 if (HvKEYS (hv))
458 {
459 hv_iterinit (hv);
460
461 while (HE *he = hv_iternext (hv))
462 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
463 }
464 }
465 else if (!should_invoke [htype])
466 return false;
224 467
225 dSP; 468 dSP;
226 va_list ap; 469 va_list ap;
227 470
228 va_start (ap, htype); 471 va_start (ap, htype);
246 489
247 case DT_LONG: 490 case DT_LONG:
248 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long)))); 491 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
249 break; 492 break;
250 493
251 case DT_STRING: 494 case DT_STR:
252 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0))); 495 XPUSHs (taint (sv_2mortal (newSVpv (va_arg (ap, char *), 0))));
496 break;
497
498 case DT_STR_LEN:
499 {
500 char *str = va_arg (ap, char *);
501 int len = va_arg (ap, int);
502
503 XPUSHs (taint (sv_2mortal (newSVpvn (str, len))));
504 }
505 break;
506
507 case DT_WCS_LEN:
508 {
509 wchar_t *wstr = va_arg (ap, wchar_t *);
510 int wlen = va_arg (ap, int);
511
512 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, wlen))));
513 }
514 break;
515
516 case DT_XEVENT:
517 {
518 XEvent *xe = va_arg (ap, XEvent *);
519 HV *hv = newHV ();
520
521# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0)
522# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0)
523# undef set
524
525 setiv (type, xe->type);
526 setiv (send_event, xe->xany.send_event);
527 setiv (serial, xe->xany.serial);
528
529 switch (xe->type)
530 {
531 case KeyPress:
532 case KeyRelease:
533 case ButtonPress:
534 case ButtonRelease:
535 case MotionNotify:
536 setiv (time, xe->xmotion.time);
537 setiv (x, xe->xmotion.x);
538 setiv (y, xe->xmotion.y);
539 setiv (row, xe->xmotion.y / term->fheight);
540 setiv (col, xe->xmotion.x / term->fwidth);
541 setiv (x_root, xe->xmotion.x_root);
542 setiv (y_root, xe->xmotion.y_root);
543 setiv (state, xe->xmotion.state);
544 break;
545 }
546
547 switch (xe->type)
548 {
549 case KeyPress:
550 case KeyRelease:
551 setiv (keycode, xe->xkey.keycode);
552 break;
553
554 case ButtonPress:
555 case ButtonRelease:
556 setiv (button, xe->xbutton.button);
557 break;
558
559 case MotionNotify:
560 setiv (is_hint, xe->xmotion.is_hint);
561 break;
562 }
563
564 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
565 }
253 break; 566 break;
254 567
255 case DT_END: 568 case DT_END:
256 { 569 {
257 va_end (ap); 570 va_end (ap);
273 if (SvTRUE (ERRSV)) 586 if (SvTRUE (ERRSV))
274 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV)); 587 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
275 588
276 if (htype == HOOK_DESTROY) 589 if (htype == HOOK_DESTROY)
277 { 590 {
278 // TODO: clear magic
279 hv_clear ((HV *)SvRV ((SV *)term->self)); 591 clearSVptr ((SV *)term->perl.self);
280 SvREFCNT_dec ((SV *)term->self); 592 SvREFCNT_dec ((SV *)term->perl.self);
281 } 593 }
282 594
283 return count; 595 return count;
284 } 596 }
285 597
295 607
296PROTOTYPES: ENABLE 608PROTOTYPES: ENABLE
297 609
298BOOT: 610BOOT:
299{ 611{
300# define set_hookname(sym) av_store (hookname, PP_CONCAT(HOOK_, sym), newSVpv (PP_STRINGIFY(sym), 0)) 612 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
613
301 AV *hookname = get_av ("urxvt::HOOKNAME", 1); 614 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
302 set_hookname (INIT); 615# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
303 set_hookname (RESET); 616# include "hookinc.h"
304 set_hookname (START); 617# undef def
305 set_hookname (DESTROY);
306 set_hookname (SEL_BEGIN);
307 set_hookname (SEL_EXTEND);
308 set_hookname (SEL_MAKE);
309 set_hookname (SEL_GRAB);
310 set_hookname (FOCUS_IN);
311 set_hookname (FOCUS_OUT);
312 set_hookname (VIEW_CHANGE);
313 set_hookname (SCROLL_BACK);
314 set_hookname (TTY_ACTIVITY);
315 set_hookname (REFRESH_BEGIN);
316 set_hookname (REFRESH_END);
317 set_hookname (KEYBOARD_COMMAND);
318 618
319 newCONSTSUB (gv_stashpv ("urxvt", 1), "DEFAULT_RSTYLE", newSViv (DEFAULT_RSTYLE)); 619 HV *option = get_hv ("urxvt::OPTION", 1);
620# define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
621# define nodef(name)
622# include "optinc.h"
623# undef nodef
624# undef def
320 625
321 sv_setpv (get_sv ("urxvt::LIBDIR", 1), LIBDIR); 626 HV *stash = gv_stashpv ("urxvt", 1);
627# define export_const_iv(name) newCONSTSUB (stash, # name, newSViv (name));
628 export_const_iv (DEFAULT_RSTYLE);
629 export_const_iv (OVERLAY_RSTYLE);
630 export_const_iv (RS_Bold);
631 export_const_iv (RS_Italic);
632 export_const_iv (RS_Blink);
633 export_const_iv (RS_RVid);
634 export_const_iv (RS_Uline);
635
636 export_const_iv (CurrentTime);
637 export_const_iv (ShiftMask);
638 export_const_iv (LockMask);
639 export_const_iv (ControlMask);
640 export_const_iv (Mod1Mask);
641 export_const_iv (Mod2Mask);
642 export_const_iv (Mod3Mask);
643 export_const_iv (Mod4Mask);
644 export_const_iv (Mod5Mask);
645 export_const_iv (Button1Mask);
646 export_const_iv (Button2Mask);
647 export_const_iv (Button3Mask);
648 export_const_iv (Button4Mask);
649 export_const_iv (Button5Mask);
650 export_const_iv (AnyModifier);
322} 651}
652
653SV *
654new (...)
655 CODE:
656{
657 stringvec *argv = new stringvec;
658 bool success;
659
660 for (int i = 0; i < items ;i++)
661 argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
662
663 rxvt_term *term = new rxvt_term;
664
665 term->argv = argv;
666
667 try
668 {
669 if (!term->init (argv->size (), argv->begin ()))
670 term = 0;
671 }
672 catch (const class rxvt_failure_exception &e)
673 {
674 term->destroy ();
675 croak ("exception caught while initializing new terminal instance");
676 }
677
678 RETVAL = term && term->perl.self ? newSVterm (term) : &PL_sv_undef;
679}
680 OUTPUT:
681 RETVAL
323 682
324void 683void
325set_should_invoke (int htype, int value) 684set_should_invoke (int htype, int value)
326 CODE: 685 CODE:
327 rxvt_perl.should_invoke [htype] = value; 686 rxvt_perl.should_invoke [htype] = value;
341 CODE: 700 CODE:
342 RETVAL = NOW; 701 RETVAL = NOW;
343 OUTPUT: 702 OUTPUT:
344 RETVAL 703 RETVAL
345 704
705int
706GET_BASEFG (int rend)
707 CODE:
708 RETVAL = GET_BASEFG (rend);
709 OUTPUT:
710 RETVAL
711
712int
713GET_BASEBG (int rend)
714 CODE:
715 RETVAL = GET_BASEBG (rend);
716 OUTPUT:
717 RETVAL
718
719int
720SET_FGCOLOR (int rend, int new_color)
721 CODE:
722 RETVAL = SET_FGCOLOR (rend, new_color);
723 OUTPUT:
724 RETVAL
725
726int
727SET_BGCOLOR (int rend, int new_color)
728 CODE:
729 RETVAL = SET_BGCOLOR (rend, new_color);
730 OUTPUT:
731 RETVAL
732
733int
734GET_CUSTOM (int rend)
735 CODE:
736 RETVAL = (rend && RS_customMask) >> RS_customShift;
737 OUTPUT:
738 RETVAL
739
740int
741SET_CUSTOM (int rend, int new_value)
742 CODE:
743{
744 if (!IN_RANGE_EXC (new_value, 0, RS_customCount))
745 croak ("custom value out of range, must be 0..%d", RS_customCount - 1);
746
747 RETVAL = (rend & ~RS_customMask)
748 | ((new_value << RS_customShift) & RS_customMask);
749}
750 OUTPUT:
751 RETVAL
752
346MODULE = urxvt PACKAGE = urxvt::term 753MODULE = urxvt PACKAGE = urxvt::term
754
755void
756rxvt_term::destroy ()
757
758void
759rxvt_term::grab_button (int button, U32 modifiers)
760 CODE:
761 XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
762 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
763 GrabModeSync, GrabModeSync, None, GRAB_CURSOR);
764
765bool
766rxvt_term::grab (U32 eventtime, int sync = 0)
767 CODE:
768{
769 int mode = sync ? GrabModeSync : GrabModeAsync;
770
771 THIS->perl.grabtime = 0;
772
773 if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
774 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
775 mode, mode, None, GRAB_CURSOR, eventtime))
776 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
777 THIS->perl.grabtime = eventtime;
778 else
779 XUngrabPointer (THIS->display->display, eventtime);
780
781 RETVAL = !!THIS->perl.grabtime;
782}
783 OUTPUT:
784 RETVAL
785
786void
787rxvt_term::allow_events_async ()
788 CODE:
789 XAllowEvents (THIS->display->display, AsyncBoth, THIS->perl.grabtime);
790
791void
792rxvt_term::allow_events_sync ()
793 CODE:
794 XAllowEvents (THIS->display->display, SyncBoth, THIS->perl.grabtime);
795
796void
797rxvt_term::allow_events_replay ()
798 CODE:
799 XAllowEvents (THIS->display->display, ReplayPointer, THIS->perl.grabtime);
800 XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime);
801
802void
803rxvt_term::ungrab ()
804 CODE:
805{
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}
347 813
348int 814int
349rxvt_term::strwidth (SV *str) 815rxvt_term::strwidth (SV *str)
350 CODE: 816 CODE:
351{ 817{
370 char *mbstr = rxvt_wcstombs (wstr); 836 char *mbstr = rxvt_wcstombs (wstr);
371 rxvt_pop_locale (); 837 rxvt_pop_locale ();
372 838
373 free (wstr); 839 free (wstr);
374 840
375 RETVAL = newSVpv (mbstr, 0); 841 RETVAL = taint_if (newSVpv (mbstr, 0), str);
376 free (mbstr); 842 free (mbstr);
377} 843}
378 OUTPUT: 844 OUTPUT:
379 RETVAL 845 RETVAL
380 846
387 853
388 rxvt_push_locale (THIS->locale); 854 rxvt_push_locale (THIS->locale);
389 wchar_t *wstr = rxvt_mbstowcs (data, len); 855 wchar_t *wstr = rxvt_mbstowcs (data, len);
390 rxvt_pop_locale (); 856 rxvt_pop_locale ();
391 857
392 char *str = rxvt_wcstoutf8 (wstr); 858 RETVAL = taint_if (wcs2sv (wstr), octets);
393 free (wstr); 859 free (wstr);
394
395 RETVAL = newSVpv (str, 0);
396 SvUTF8_on (RETVAL);
397 free (str);
398} 860}
399 OUTPUT: 861 OUTPUT:
400 RETVAL 862 RETVAL
401 863
864#define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
865
866#define TERM_OFFSET_width TERM_OFFSET(width)
867#define TERM_OFFSET_height TERM_OFFSET(height)
868#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
869#define TERM_OFFSET_fheight TERM_OFFSET(fheight)
870#define TERM_OFFSET_fbase TERM_OFFSET(fbase)
871#define TERM_OFFSET_nrow TERM_OFFSET(nrow)
872#define TERM_OFFSET_ncol TERM_OFFSET(ncol)
873#define TERM_OFFSET_focus TERM_OFFSET(focus)
874#define TERM_OFFSET_mapped TERM_OFFSET(mapped)
875#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines)
876#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
877#define TERM_OFFSET_nsaved TERM_OFFSET(nsaved)
878
402int 879int
880rxvt_term::width ()
881 ALIAS:
882 width = TERM_OFFSET_width
883 height = TERM_OFFSET_height
884 fwidth = TERM_OFFSET_fwidth
885 fheight = TERM_OFFSET_fheight
886 fbase = TERM_OFFSET_fbase
887 nrow = TERM_OFFSET_nrow
888 ncol = TERM_OFFSET_ncol
889 focus = TERM_OFFSET_focus
890 mapped = TERM_OFFSET_mapped
891 saveLines = TERM_OFFSET_saveLines
892 total_rows = TERM_OFFSET_total_rows
893 nsaved = TERM_OFFSET_nsaved
894 CODE:
895 RETVAL = *(int *)((char *)THIS + ix);
896 OUTPUT:
897 RETVAL
898
899unsigned int
900rxvt_term::ModLevel3Mask ()
901 ALIAS:
902 ModLevel3Mask = 0
903 ModMetaMask = 1
904 ModNumLockMask = 2
905 CODE:
906 switch (ix)
907 {
908 case 0: RETVAL = THIS->ModLevel3Mask; break;
909 case 1: RETVAL = THIS->ModMetaMask; break;
910 case 2: RETVAL = THIS->ModNumLockMask; break;
911 }
912 OUTPUT:
913 RETVAL
914
915U32
916rxvt_term::parent ()
917 CODE:
918 RETVAL = (U32)THIS->parent [0];
919 OUTPUT:
920 RETVAL
921
922U32
403rxvt_term::nsaved () 923rxvt_term::vt ()
404 CODE: 924 CODE:
925 RETVAL = (U32)THIS->vt;
926 OUTPUT:
927 RETVAL
928
929U32
930rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
931 CODE:
932{
405 RETVAL = THIS->nsaved; 933 RETVAL = THIS->rstyle;
934 THIS->rstyle = new_rstyle;
935}
406 OUTPUT: 936 OUTPUT:
407 RETVAL 937 RETVAL
408 938
409int 939int
410rxvt_term::view_start (int newval = -1) 940rxvt_term::view_start (int newval = -1)
411 CODE: 941 CODE:
412{ 942{
419 } 949 }
420} 950}
421 OUTPUT: 951 OUTPUT:
422 RETVAL 952 RETVAL
423 953
424int
425rxvt_term::nrow ()
426 CODE:
427 RETVAL = THIS->nrow;
428 OUTPUT:
429 RETVAL
430
431int
432rxvt_term::ncol ()
433 CODE:
434 RETVAL = THIS->ncol;
435 OUTPUT:
436 RETVAL
437
438void 954void
439rxvt_term::want_refresh () 955rxvt_term::want_refresh ()
440 CODE: 956 CODE:
441 THIS->want_refresh = 1; 957 THIS->want_refresh = 1;
442 958
443void 959void
444rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0) 960rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
445 PPCODE: 961 PPCODE:
446{ 962{
447 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 963 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
448 croak ("row_number number of out range"); 964 XSRETURN_EMPTY;
449 965
450 line_t &l = ROW(row_number); 966 line_t &l = ROW(row_number);
451 967
452 if (GIMME_V != G_VOID) 968 if (GIMME_V != G_VOID)
453 { 969 {
454 wchar_t *wstr = new wchar_t [THIS->ncol]; 970 wchar_t *wstr = new wchar_t [THIS->ncol];
455 971
456 for (int col = 0; col <THIS->ncol; col++) 972 for (int col = 0; col < THIS->ncol; col++)
457 wstr [col] = l.t [col]; 973 wstr [col] = l.t [col];
458 974
459 char *str = rxvt_wcstoutf8 (wstr, THIS->ncol); 975 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, THIS->ncol))));
460 free (wstr);
461 976
462 SV *sv = newSVpv (str, 0); 977 delete [] wstr;
463 SvUTF8_on (sv);
464 XPUSHs (sv_2mortal (sv));
465 free (str);
466 } 978 }
467 979
468 if (new_text) 980 if (new_text)
469 { 981 {
470 STRLEN slen;
471 char *str = SvPVutf8 (new_text, slen); 982 wchar_t *wstr = sv2wcs (new_text);
472 wchar_t *wstr = rxvt_utf8towcs (str, slen);
473 983
474 int len = wcslen (wstr); 984 int len = min (wcslen (wstr) - start_ofs, max_len);
475 985
476 if (start_col + len > THIS->ncol) 986 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
477 { 987 {
478 free (wstr); 988 free (wstr);
479 croak ("new_text extends beyond right margin"); 989 croak ("new_text extends beyond horizontal margins");
480 } 990 }
481 991
482 for (int col = start_col; col < start_col + len; col++) 992 for (int col = start_col; col < start_col + len; col++)
483 { 993 {
484 l.t [col] = wstr [col - start_col]; 994 l.t [col] = wstr [start_ofs + col - start_col];
485 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col])); 995 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col]));
486 } 996 }
487 997
488 free (wstr); 998 free (wstr);
489 } 999 }
490} 1000}
491 1001
492void 1002void
493rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0) 1003rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
494 PPCODE: 1004 PPCODE:
495{ 1005{
496 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1006 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
497 croak ("row_number number of out range"); 1007 XSRETURN_EMPTY;
498 1008
499 line_t &l = ROW(row_number); 1009 line_t &l = ROW(row_number);
500 1010
501 if (GIMME_V != G_VOID) 1011 if (GIMME_V != G_VOID)
502 { 1012 {
513 { 1023 {
514 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV) 1024 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV)
515 croak ("new_rend must be arrayref"); 1025 croak ("new_rend must be arrayref");
516 1026
517 AV *av = (AV *)SvRV (new_rend); 1027 AV *av = (AV *)SvRV (new_rend);
518 int len = av_len (av) + 1; 1028 int len = min (av_len (av) + 1 - start_ofs, max_len);
519 1029
520 if (start_col + len > THIS->ncol) 1030 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
521 croak ("new_rend array extends beyond right margin"); 1031 croak ("new_rend array extends beyond horizontal margins");
522 1032
523 for (int col = start_col; col < start_col + len; col++) 1033 for (int col = start_col; col < start_col + len; col++)
524 { 1034 {
525 rend_t r = SvIV (*av_fetch (av, col - start_col, 1)) & ~RS_fontMask; 1035 rend_t r = SvIV (*av_fetch (av, start_ofs + col - start_col, 1)) & ~RS_fontMask;
526 1036
527 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col])); 1037 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col]));
528 } 1038 }
529 } 1039 }
530} 1040}
531 1041
532int 1042int
533rxvt_term::ROW_l (int row_number, int new_length = -2) 1043rxvt_term::ROW_l (int row_number, int new_length = -1)
534 CODE: 1044 CODE:
535{ 1045{
536 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1046 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
537 croak ("row_number number of out range"); 1047 XSRETURN_EMPTY;
538 1048
539 line_t &l = ROW(row_number); 1049 line_t &l = ROW(row_number);
540 RETVAL = l.l; 1050 RETVAL = l.l;
541 1051
542 if (new_length >= -1) 1052 if (new_length >= 0)
543 l.l = new_length; 1053 l.l = new_length;
544} 1054}
545 OUTPUT: 1055 OUTPUT:
546 RETVAL 1056 RETVAL
547 1057
1058bool
1059rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
1060 CODE:
1061{
1062 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1063 XSRETURN_EMPTY;
1064
1065 line_t &l = ROW(row_number);
1066 RETVAL = l.is_longer ();
1067
1068 if (new_is_longer >= 0)
1069 l.is_longer (new_is_longer);
1070}
1071 OUTPUT:
1072 RETVAL
1073
548SV * 1074SV *
549rxvt_term::special_encode (SV *str) 1075rxvt_term::special_encode (SV *string)
550 CODE: 1076 CODE:
551 abort ();//TODO 1077{
1078 wchar_t *wstr = sv2wcs (string);
1079 int wlen = wcslen (wstr);
1080 wchar_t *rstr = new wchar_t [wlen]; // cannot become longer
1081
1082 rxvt_push_locale (THIS->locale);
1083
1084 wchar_t *r = rstr;
1085 for (wchar_t *s = wstr; *s; s++)
1086 if (wcwidth (*s) == 0)
1087 {
1088 if (r == rstr)
1089 croak ("leading combining character unencodable");
1090
1091 unicode_t n = rxvt_compose (r[-1], *s);
1092 if (n == NOCHAR)
1093 n = rxvt_composite.compose (r[-1], *s);
1094
1095 r[-1] = n;
1096 }
1097#if !UNICODE_3
1098 else if (*s >= 0x10000)
1099 *r++ = rxvt_composite.compose (*s);
1100#endif
1101 else
1102 *r++ = *s;
1103
1104 rxvt_pop_locale ();
1105
1106 RETVAL = taint_if (wcs2sv (rstr, r - rstr), string);
1107
1108 delete [] rstr;
1109}
1110 OUTPUT:
1111 RETVAL
552 1112
553SV * 1113SV *
554rxvt_term::special_decode (SV *str) 1114rxvt_term::special_decode (SV *text)
555 CODE: 1115 CODE:
556 abort ();//TODO 1116{
1117 wchar_t *wstr = sv2wcs (text);
1118 int wlen = wcslen (wstr);
1119 int dlen = 0;
1120
1121 // find length
1122 for (wchar_t *s = wstr; *s; s++)
1123 if (*s == NOCHAR)
1124 ;
1125 else if (IS_COMPOSE (*s))
1126 dlen += rxvt_composite.expand (*s, 0);
1127 else
1128 dlen++;
1129
1130 wchar_t *rstr = new wchar_t [dlen];
1131
1132 // decode
1133 wchar_t *r = rstr;
1134 for (wchar_t *s = wstr; *s; s++)
1135 if (*s == NOCHAR)
1136 ;
1137 else if (IS_COMPOSE (*s))
1138 r += rxvt_composite.expand (*s, r);
1139 else
1140 *r++ = *s;
1141
1142 RETVAL = taint_if (wcs2sv (rstr, r - rstr), text);
1143
1144 delete [] rstr;
1145}
1146 OUTPUT:
1147 RETVAL
557 1148
558void 1149void
559rxvt_term::_resource (char *name, int index, SV *newval = 0) 1150rxvt_term::_resource (char *name, int index, SV *newval = 0)
560 PPCODE: 1151 PPCODE:
561{ 1152{
562 struct resval { const char *name; int value; } rslist [] = { 1153 struct resval { const char *name; int value; } rslist [] = {
563# define Rs_def(name) { # name, Rs_ ## name }, 1154# define def(name) { # name, Rs_ ## name },
564# define Rs_reserve(name,count) 1155# define reserve(name,count)
565# include "rsinc.h" 1156# include "rsinc.h"
566# undef Rs_def 1157# undef def
567# undef Rs_reserve 1158# undef reserve
568 }; 1159 };
569 1160
570 struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]); 1161 struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]);
571 1162
572 do { 1163 do {
578 1169
579 if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES)) 1170 if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES))
580 croak ("requested out-of-bound resource %s+%d,", name, index - rs->value); 1171 croak ("requested out-of-bound resource %s+%d,", name, index - rs->value);
581 1172
582 if (GIMME_V != G_VOID) 1173 if (GIMME_V != G_VOID)
583 XPUSHs (THIS->rs [index] ? sv_2mortal (newSVpv (THIS->rs [index], 0)) : &PL_sv_undef); 1174 XPUSHs (THIS->rs [index] ? sv_2mortal (taint (newSVpv (THIS->rs [index], 0))) : &PL_sv_undef);
584 1175
585 if (newval) 1176 if (newval)
586 { 1177 {
587 if (SvOK (newval)) 1178 if (SvOK (newval))
588 { 1179 {
593 else 1184 else
594 THIS->rs [index] = 0; 1185 THIS->rs [index] = 0;
595 } 1186 }
596} 1187}
597 1188
1189bool
1190rxvt_term::option (U32 optval, int set = -1)
1191 CODE:
1192{
1193 RETVAL = THIS->options & optval;
1194
1195 if (set >= 0)
1196 {
1197 if (set)
1198 THIS->options |= optval;
1199 else
1200 THIS->options &= ~optval;
1201
1202 switch (optval)
1203 {
1204 case Opt_skipBuiltinGlyphs:
1205 THIS->set_fonts ();
1206 THIS->scr_remap_chars ();
1207 THIS->scr_touch (true);
1208 THIS->want_refresh = 1;
1209 break;
1210
1211 case Opt_cursorUnderline:
1212 THIS->want_refresh = 1;
1213 break;
1214
1215# case Opt_scrollBar_floating:
1216# case Opt_scrollBar_right:
1217# THIS->resize_all_windows (THIS->width, THIS->height, 1);
1218# break;
1219 }
1220 }
1221}
1222 OUTPUT:
1223 RETVAL
1224
598void 1225void
599rxvt_term::selection_mark (...) 1226rxvt_term::cur (...)
600 PROTOTYPE: $;$$ 1227 PROTOTYPE: $;$$
601 ALIAS: 1228 ALIAS:
1229 screen_cur = 0
602 selection_beg = 1 1230 selection_beg = 1
603 selection_end = 2 1231 selection_end = 2
1232 selection_mark = 3
604 PPCODE: 1233 PPCODE:
605{ 1234{
606 row_col_t &sel = ix == 1 ? THIS->selection.beg 1235 row_col_t &rc = ix == 0 ? THIS->screen.cur
1236 : ix == 1 ? THIS->selection.beg
607 : ix == 2 ? THIS->selection.end 1237 : ix == 2 ? THIS->selection.end
608 : THIS->selection.mark; 1238 : THIS->selection.mark;
609 1239
610 if (GIMME_V != G_VOID) 1240 if (GIMME_V != G_VOID)
611 { 1241 {
612 EXTEND (SP, 2); 1242 EXTEND (SP, 2);
613 PUSHs (sv_2mortal (newSViv (sel.row))); 1243 PUSHs (sv_2mortal (newSViv (rc.row)));
614 PUSHs (sv_2mortal (newSViv (sel.col))); 1244 PUSHs (sv_2mortal (newSViv (rc.col)));
615 } 1245 }
616 1246
617 if (items == 3) 1247 if (items == 3)
618 { 1248 {
619 sel.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1); 1249 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1);
620 sel.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1); 1250 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
621 1251
622 if (ix) 1252 if (ix)
623 THIS->want_refresh = 1; 1253 THIS->want_refresh = 1;
624 } 1254 }
625} 1255}
626 1256
627int 1257int
628rxvt_term::selection_grab (int eventtime) 1258rxvt_term::selection_grab (U32 eventtime)
629 1259
630void 1260void
631rxvt_term::selection (SV *newtext = 0) 1261rxvt_term::selection (SV *newtext = 0)
632 PPCODE: 1262 PPCODE:
633{ 1263{
634 if (GIMME_V != G_VOID) 1264 if (GIMME_V != G_VOID)
635 { 1265 XPUSHs (taint (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len))));
636 char *sel = rxvt_wcstoutf8 (THIS->selection.text, THIS->selection.len);
637 SV *sv = newSVpv (sel, 0);
638 SvUTF8_on (sv);
639 free (sel);
640 XPUSHs (sv_2mortal (sv));
641 }
642 1266
643 if (newtext) 1267 if (newtext)
644 { 1268 {
645 free (THIS->selection.text); 1269 free (THIS->selection.text);
646 1270
647 THIS->selection.text = sv2wcs (newtext); 1271 THIS->selection.text = sv2wcs (newtext);
648 THIS->selection.len = wcslen (THIS->selection.text); 1272 THIS->selection.len = wcslen (THIS->selection.text);
649 } 1273 }
650} 1274}
651
652void
653rxvt_term::scr_overlay_new (int x, int y, int w, int h)
654 1275
655void 1276void
656rxvt_term::scr_overlay_off () 1277rxvt_term::scr_add_lines (SV *string)
657
658void
659rxvt_term::scr_overlay_set_char (int x, int y, U32 text, U32 rend = OVERLAY_RSTYLE)
660 CODE: 1278 CODE:
661 THIS->scr_overlay_set (x, y, text, rend);
662
663void
664rxvt_term::scr_overlay_set (int x, int y, SV *text)
665 CODE:
666{ 1279{
667 wchar_t *wtext = sv2wcs (text); 1280 wchar_t *wstr = sv2wcs (string);
668 THIS->scr_overlay_set (x, y, wtext); 1281 THIS->scr_add_lines (wstr, wcslen (wstr));
669 free (wtext); 1282 free (wstr);
670} 1283}
671 1284
672void 1285void
673rxvt_term::tt_write (SV *octets) 1286rxvt_term::tt_write (SV *octets)
674 INIT: 1287 INIT:
675 STRLEN len; 1288 STRLEN len;
676 char *str = SvPVbyte (octets, len); 1289 char *str = SvPVbyte (octets, len);
677 C_ARGS: 1290 C_ARGS:
678 (unsigned char *)str, len 1291 str, len
1292
1293void
1294rxvt_term::cmd_parse (SV *octets)
1295 CODE:
1296{
1297 STRLEN len;
1298 char *str = SvPVbyte (octets, len);
1299
1300 char *old_cmdbuf_ptr = THIS->cmdbuf_ptr;
1301 char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1302
1303 THIS->cmdbuf_ptr = str;
1304 THIS->cmdbuf_endp = str + len;
1305
1306 rxvt_push_locale (THIS->locale);
1307 THIS->cmd_parse ();
1308 rxvt_pop_locale ();
1309
1310 THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1311 THIS->cmdbuf_endp = old_cmdbuf_endp;
1312}
1313
1314SV *
1315rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2)
1316 CODE:
1317{
1318 overlay *o = new overlay (THIS, x, y, w, h, rstyle, border);
1319 RETVAL = newSVptr ((void *)o, "urxvt::overlay");
1320 o->self = (HV *)SvRV (RETVAL);
1321}
1322 OUTPUT:
1323 RETVAL
1324
1325MODULE = urxvt PACKAGE = urxvt::overlay
1326
1327void
1328overlay::set (int x, int y, SV *text, SV *rend = 0)
1329
1330void
1331overlay::show ()
1332
1333void
1334overlay::hide ()
1335
1336void
1337overlay::DESTROY ()
679 1338
680MODULE = urxvt PACKAGE = urxvt::timer 1339MODULE = urxvt PACKAGE = urxvt::timer
681 1340
682SV * 1341SV *
683timer::new () 1342timer::new ()
684 CODE: 1343 CODE:
685 timer *w = new timer; 1344 timer *w = new timer;
1345 w->start (NOW);
686 RETVAL = newSVptr ((void *)w, "urxvt::timer"); 1346 RETVAL = newSVptr ((void *)w, "urxvt::timer");
687 w->self = (HV *)SvRV (RETVAL); 1347 w->self = (HV *)SvRV (RETVAL);
688 OUTPUT: 1348 OUTPUT:
689 RETVAL 1349 RETVAL
690 1350
698 1358
699NV 1359NV
700timer::at () 1360timer::at ()
701 CODE: 1361 CODE:
702 RETVAL = THIS->at; 1362 RETVAL = THIS->at;
1363 OUTPUT:
1364 RETVAL
1365
1366timer *
1367timer::interval (NV interval)
1368 CODE:
1369 THIS->interval = interval;
1370 RETVAL = THIS;
703 OUTPUT: 1371 OUTPUT:
704 RETVAL 1372 RETVAL
705 1373
706timer * 1374timer *
707timer::set (NV tstamp) 1375timer::set (NV tstamp)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines