ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtperl.xs
Revision: 1.61
Committed: Thu Jan 12 10:02:20 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.60: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 /*----------------------------------------------------------------------*
2     * File: rxvtperl.xs
3     *----------------------------------------------------------------------*
4     *
5     * All portions of code are copyright by their respective author/s.
6 root 1.31 * Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
7 root 1.1 *
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
10     * the Free Software Foundation; either version 2 of the License, or
11     * (at your option) any later version.
12     *
13     * This program is distributed in the hope that it will be useful,
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16     * GNU General Public License for more details.
17     *
18     * You should have received a copy of the GNU General Public License
19     * along with this program; if not, write to the Free Software
20     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21     *----------------------------------------------------------------------*/
22    
23     #define line_t perl_line_t
24     #include <EXTERN.h>
25     #include <perl.h>
26     #include <XSUB.h>
27     #undef line_t
28    
29     #include "../config.h"
30    
31 root 1.38 #include <cstddef>
32 root 1.1 #include <cstdarg>
33    
34 root 1.59 #include "unistd.h"
35    
36 root 1.50 #include "iom.h"
37 root 1.1 #include "rxvt.h"
38 root 1.50 #include "keyboard.h"
39 root 1.1 #include "rxvtutil.h"
40     #include "rxvtperl.h"
41    
42     #include "perlxsi.c"
43    
44 root 1.41 #if defined(HAVE_SCROLLBARS) || defined(MENUBAR)
45     # define GRAB_CURSOR THIS->leftptr_cursor
46     #else
47     # define GRAB_CURSOR None
48     #endif
49    
50 root 1.8 #undef LINENO
51     #define LINENO(n) MOD (THIS->term_start + int(n), THIS->total_rows)
52     #undef ROW
53     #define ROW(n) THIS->row_buf [LINENO (n)]
54    
55 root 1.1 /////////////////////////////////////////////////////////////////////////////
56    
57 root 1.42 static SV *
58     taint (SV *sv)
59     {
60     SvTAINT (sv);
61     return sv;
62     }
63    
64     static SV *
65     taint_if (SV *sv, SV *src)
66     {
67     if (SvTAINTED (src))
68     SvTAINT (sv);
69    
70     return sv;
71     }
72    
73 root 1.1 static wchar_t *
74     sv2wcs (SV *sv)
75     {
76     STRLEN len;
77     char *str = SvPVutf8 (sv, len);
78     return rxvt_utf8towcs (str, len);
79     }
80    
81     static SV *
82 root 1.25 wcs2sv (wchar_t *wstr, int len = -1)
83     {
84     char *str = rxvt_wcstoutf8 (wstr, len);
85    
86     SV *sv = newSVpv (str, 0);
87     SvUTF8_on (sv);
88     free (str);
89    
90     return sv;
91     }
92    
93     static SV *
94 root 1.1 new_ref (HV *hv, const char *klass)
95     {
96     return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1));
97     }
98    
99     //TODO: use magic
100     static SV *
101     newSVptr (void *ptr, const char *klass)
102     {
103     HV *hv = newHV ();
104 root 1.18 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
105 root 1.1 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
106     }
107    
108 root 1.18 static void
109     clearSVptr (SV *sv)
110     {
111     if (SvROK (sv))
112     sv = SvRV (sv);
113    
114     hv_clear ((HV *)sv);
115     sv_unmagic (sv, PERL_MAGIC_ext);
116     }
117    
118 root 1.1 static long
119     SvPTR (SV *sv, const char *klass)
120     {
121     if (!sv_derived_from (sv, klass))
122     croak ("object of type %s expected", klass);
123    
124 root 1.18 MAGIC *mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
125 root 1.1
126 root 1.18 if (!mg)
127 root 1.1 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
128    
129 root 1.18 return (long)mg->mg_ptr;
130 root 1.1 }
131    
132 root 1.36 #define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
133 root 1.1 #define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term")
134    
135     /////////////////////////////////////////////////////////////////////////////
136    
137     struct perl_watcher
138     {
139     SV *cbsv;
140     HV *self;
141    
142     perl_watcher ()
143     : cbsv (newSV (0))
144     {
145     }
146    
147     ~perl_watcher ()
148     {
149     SvREFCNT_dec (cbsv);
150     }
151    
152     void cb (SV *cb)
153     {
154     sv_setsv (cbsv, cb);
155     }
156    
157     void invoke (const char *type, SV *self, int arg = -1);
158     };
159    
160     void
161     perl_watcher::invoke (const char *type, SV *self, int arg)
162     {
163     dSP;
164    
165     ENTER;
166     SAVETMPS;
167    
168     PUSHMARK (SP);
169    
170     XPUSHs (sv_2mortal (self));
171    
172     if (arg >= 0)
173     XPUSHs (sv_2mortal (newSViv (arg)));
174    
175     PUTBACK;
176     call_sv (cbsv, G_VOID | G_EVAL | G_DISCARD);
177     SPAGAIN;
178    
179     PUTBACK;
180     FREETMPS;
181     LEAVE;
182    
183     if (SvTRUE (ERRSV))
184     rxvt_warn ("%s callback evaluation error: %s", type, SvPV_nolen (ERRSV));
185     }
186    
187     #define newSVtimer(timer) new_ref (timer->self, "urxvt::timer")
188     #define SvTIMER(sv) (timer *)SvPTR (sv, "urxvt::timer")
189    
190     struct timer : time_watcher, perl_watcher
191     {
192 root 1.13 tstamp interval;
193    
194 root 1.1 timer ()
195     : time_watcher (this, &timer::execute)
196     {
197     }
198    
199     void execute (time_watcher &w)
200     {
201 root 1.13 if (interval)
202     start (at + interval);
203    
204 root 1.1 invoke ("urxvt::timer", newSVtimer (this));
205     }
206     };
207    
208     #define newSViow(iow) new_ref (iow->self, "urxvt::iow")
209     #define SvIOW(sv) (iow *)SvPTR (sv, "urxvt::iow")
210    
211     struct iow : io_watcher, perl_watcher
212     {
213     iow ()
214     : io_watcher (this, &iow::execute)
215     {
216     }
217    
218     void execute (io_watcher &w, short revents)
219     {
220     invoke ("urxvt::iow", newSViow (this), revents);
221     }
222     };
223    
224     /////////////////////////////////////////////////////////////////////////////
225    
226 root 1.13 #define SvOVERLAY(sv) (overlay *)SvPTR (sv, "urxvt::overlay")
227    
228     struct overlay {
229     HV *self;
230     rxvt_term *THIS;
231     int x, y, w, h;
232     int border;
233     text_t **text;
234     rend_t **rend;
235    
236     overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border);
237     ~overlay ();
238    
239 root 1.18 void show ();
240     void hide ();
241    
242 root 1.13 void swap ();
243    
244     void set (int x, int y, SV *str, SV *rend);
245     };
246    
247     overlay::overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border)
248     : THIS(THIS), x(x_), y(y_), w(w_), h(h_), border(border == 2)
249     {
250     if (border == 2)
251     {
252     w += 2;
253     h += 2;
254     }
255    
256     text = new text_t *[h];
257     rend = new rend_t *[h];
258 root 1.24
259 root 1.13 for (int y = 0; y < h; y++)
260 root 1.24 {
261 root 1.13 text_t *tp = text[y] = new text_t[w];
262     rend_t *rp = rend[y] = new rend_t[w];
263 root 1.24
264 root 1.13 text_t t0, t1, t2;
265     rend_t r = rstyle;
266 root 1.24
267 root 1.13 if (border == 2)
268     {
269     if (y == 0)
270     t0 = 0x2554, t1 = 0x2550, t2 = 0x2557;
271     else if (y < h - 1)
272     t0 = 0x2551, t1 = 0x0020, t2 = 0x2551;
273     else
274     t0 = 0x255a, t1 = 0x2550, t2 = 0x255d;
275 root 1.24
276     *tp++ = t0;
277 root 1.13 *rp++ = r;
278 root 1.24
279 root 1.13 for (int x = w - 2; x-- > 0; )
280     {
281     *tp++ = t1;
282     *rp++ = r;
283 root 1.24 }
284 root 1.13
285     *tp = t2;
286 root 1.24 *rp = r;
287 root 1.13 }
288     else
289     for (int x = w; x-- > 0; )
290     {
291     *tp++ = 0x0020;
292     *rp++ = r;
293 root 1.24 }
294     }
295 root 1.13
296 root 1.18 show ();
297 root 1.13 THIS->want_refresh = 1;
298     }
299    
300     overlay::~overlay ()
301     {
302 root 1.18 hide ();
303    
304 root 1.13 for (int y = h; y--; )
305     {
306     delete [] text[y];
307     delete [] rend[y];
308     }
309    
310     delete [] text;
311     delete [] rend;
312    
313     THIS->want_refresh = 1;
314     }
315    
316 root 1.18 void
317     overlay::show ()
318     {
319     char key[33]; sprintf (key, "%32lx", (long)this);
320    
321 root 1.36 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0));
322 root 1.18 hv_store (hv, key, 32, newSViv ((long)this), 0);
323     }
324    
325     void
326     overlay::hide ()
327     {
328 root 1.36 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
329 root 1.18
330     if (ovs)
331     {
332     char key[33]; sprintf (key, "%32lx", (long)this);
333    
334     HV *hv = (HV *)SvRV (*ovs);
335     hv_delete (hv, key, 32, G_DISCARD);
336     }
337     }
338    
339 root 1.13 void overlay::swap ()
340     {
341     int ov_x = max (0, min (MOD (x, THIS->ncol), THIS->ncol - w));
342     int ov_y = max (0, min (MOD (y, THIS->nrow), THIS->nrow - h));
343    
344     int ov_w = min (w, THIS->ncol - ov_x);
345     int ov_h = min (h, THIS->nrow - ov_y);
346    
347     for (int y = ov_h; y--; )
348     {
349     text_t *t1 = text [y];
350     rend_t *r1 = rend [y];
351 root 1.24
352 root 1.13 text_t *t2 = ROW(y + ov_y - THIS->view_start).t + ov_x;
353     rend_t *r2 = ROW(y + ov_y - THIS->view_start).r + ov_x;
354    
355     for (int x = ov_w; x--; )
356 root 1.24 {
357 root 1.13 text_t t = *t1; *t1++ = *t2; *t2++ = t;
358     rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t));
359     }
360     }
361    
362     }
363    
364 root 1.14 void overlay::set (int x, int y, SV *text, SV *rend)
365 root 1.13 {
366     x += border;
367     y += border;
368    
369     if (!IN_RANGE_EXC (y, 0, h - border))
370     return;
371    
372 root 1.14 wchar_t *wtext = sv2wcs (text);
373 root 1.13
374 root 1.14 for (int col = min (wcslen (wtext), w - x - border); col--; )
375     this->text [y][x + col] = wtext [col];
376 root 1.24
377 root 1.14 free (wtext);
378    
379     if (rend)
380     {
381     if (!SvROK (rend) || SvTYPE (SvRV (rend)) != SVt_PVAV)
382     croak ("rend must be arrayref");
383    
384     AV *av = (AV *)SvRV (rend);
385    
386     for (int col = min (av_len (av) + 1, w - x - border); col--; )
387     this->rend [y][x + col] = SvIV (*av_fetch (av, col, 1));
388     }
389 root 1.13
390     THIS->want_refresh = 1;
391     }
392    
393    
394     /////////////////////////////////////////////////////////////////////////////
395    
396 root 1.1 struct rxvt_perl_interp rxvt_perl;
397    
398     static PerlInterpreter *perl;
399    
400     rxvt_perl_interp::~rxvt_perl_interp ()
401     {
402     if (perl)
403     {
404     perl_destruct (perl);
405     perl_free (perl);
406     }
407     }
408    
409     void
410 root 1.43 rxvt_perl_interp::init ()
411 root 1.1 {
412     if (!perl)
413     {
414 root 1.57 perl_environ = rxvt_environ;
415     swap (perl_environ, environ);
416 root 1.56
417 root 1.1 char *argv[] = {
418     "",
419 root 1.43 "-T",
420 root 1.1 "-edo '" LIBDIR "/urxvt.pm' or ($@ and die $@) or exit 1",
421     };
422    
423     perl = perl_alloc ();
424     perl_construct (perl);
425    
426 root 1.43 if (perl_parse (perl, xs_init, 3, argv, (char **)NULL)
427 root 1.1 || perl_run (perl))
428     {
429     rxvt_warn ("unable to initialize perl-interpreter, continuing without.\n");
430    
431     perl_destruct (perl);
432     perl_free (perl);
433     perl = 0;
434     }
435 root 1.57
436     swap (perl_environ, environ);
437 root 1.1 }
438     }
439    
440 root 1.45 static void
441     ungrab (rxvt_term *THIS)
442     {
443     if (THIS->perl.grabtime)
444     {
445     XUngrabKeyboard (THIS->display->display, THIS->perl.grabtime);
446     XUngrabPointer (THIS->display->display, THIS->perl.grabtime);
447     THIS->perl.grabtime = 0;
448     }
449     }
450    
451 root 1.1 bool
452     rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
453     {
454 root 1.13 if (!perl)
455 root 1.1 return false;
456 root 1.24
457 root 1.1 if (htype == HOOK_INIT) // first hook ever called
458 root 1.13 {
459 root 1.36 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
460     hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
461 root 1.13 }
462 root 1.36 else if (!term->perl.self)
463 root 1.17 return false; // perl not initialized for this instance
464 root 1.13 else if (htype == HOOK_DESTROY)
465     {
466     // handled later
467     }
468 root 1.50 else
469 root 1.13 {
470 root 1.50 if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END)
471     {
472     HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
473 root 1.13
474 root 1.50 if (HvKEYS (hv))
475     {
476     hv_iterinit (hv);
477    
478     while (HE *he = hv_iternext (hv))
479     ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
480     }
481 root 1.13
482     }
483 root 1.50
484     if (!should_invoke [htype])
485     return false;
486 root 1.13 }
487 root 1.1
488 root 1.57 swap (perl_environ, environ);
489 root 1.56
490 root 1.57 try
491     {
492     dSP;
493     va_list ap;
494 root 1.1
495 root 1.57 va_start (ap, htype);
496 root 1.1
497 root 1.57 ENTER;
498     SAVETMPS;
499 root 1.1
500 root 1.57 PUSHMARK (SP);
501 root 1.1
502 root 1.57 XPUSHs (sv_2mortal (newSVterm (term)));
503     XPUSHs (sv_2mortal (newSViv (htype)));
504 root 1.1
505 root 1.57 for (;;) {
506     data_type dt = (data_type)va_arg (ap, int);
507 root 1.1
508 root 1.57 switch (dt)
509     {
510     case DT_INT:
511     XPUSHs (sv_2mortal (newSViv (va_arg (ap, int))));
512     break;
513    
514     case DT_LONG:
515     XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
516     break;
517    
518     case DT_STR:
519     XPUSHs (taint (sv_2mortal (newSVpv (va_arg (ap, char *), 0))));
520     break;
521 root 1.1
522 root 1.57 case DT_STR_LEN:
523     {
524     char *str = va_arg (ap, char *);
525     int len = va_arg (ap, int);
526 root 1.1
527 root 1.57 XPUSHs (taint (sv_2mortal (newSVpvn (str, len))));
528     }
529     break;
530 root 1.6
531 root 1.57 case DT_WCS_LEN:
532     {
533     wchar_t *wstr = va_arg (ap, wchar_t *);
534     int wlen = va_arg (ap, int);
535 root 1.29
536 root 1.57 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, wlen))));
537     }
538     break;
539 root 1.29
540 root 1.57 case DT_XEVENT:
541     {
542     XEvent *xe = va_arg (ap, XEvent *);
543     HV *hv = newHV ();
544 root 1.29
545     # define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0)
546     # define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0)
547     # undef set
548    
549 root 1.57 setiv (type, xe->type);
550     setiv (send_event, xe->xany.send_event);
551     setiv (serial, xe->xany.serial);
552    
553     switch (xe->type)
554     {
555     case KeyPress:
556     case KeyRelease:
557     case ButtonPress:
558     case ButtonRelease:
559     case MotionNotify:
560     setiv (time, xe->xmotion.time);
561     setiv (x, xe->xmotion.x);
562     setiv (y, xe->xmotion.y);
563     setiv (row, xe->xmotion.y / term->fheight);
564     setiv (col, xe->xmotion.x / term->fwidth);
565     setiv (x_root, xe->xmotion.x_root);
566     setiv (y_root, xe->xmotion.y_root);
567     setiv (state, xe->xmotion.state);
568     break;
569     }
570    
571     switch (xe->type)
572     {
573     case KeyPress:
574     case KeyRelease:
575     setiv (keycode, xe->xkey.keycode);
576     break;
577    
578     case ButtonPress:
579     case ButtonRelease:
580     setiv (button, xe->xbutton.button);
581     break;
582    
583     case MotionNotify:
584     setiv (is_hint, xe->xmotion.is_hint);
585     break;
586     }
587 root 1.29
588 root 1.57 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
589 root 1.29 }
590 root 1.57 break;
591 root 1.29
592 root 1.57 case DT_END:
593 root 1.29 {
594 root 1.57 va_end (ap);
595 root 1.29
596 root 1.57 PUTBACK;
597     int count = call_pv ("urxvt::invoke", G_ARRAY | G_EVAL);
598     SPAGAIN;
599    
600     if (count)
601     {
602     SV *status = POPs;
603     count = SvTRUE (status);
604     }
605    
606     PUTBACK;
607     FREETMPS;
608     LEAVE;
609    
610     if (SvTRUE (ERRSV))
611     {
612     rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
613     ungrab (term); // better lose the grab than the session
614     }
615    
616     if (htype == HOOK_DESTROY)
617     {
618     clearSVptr ((SV *)term->perl.self);
619     SvREFCNT_dec ((SV *)term->perl.self);
620     }
621 root 1.29
622 root 1.57 swap (perl_environ, environ);
623     return count;
624 root 1.29 }
625    
626 root 1.57 default:
627     rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
628 root 1.29 }
629 root 1.1 }
630 root 1.57 }
631     catch (...)
632     {
633     swap (perl_environ, environ);
634     throw;
635     }
636 root 1.1 }
637    
638     /////////////////////////////////////////////////////////////////////////////
639    
640     MODULE = urxvt PACKAGE = urxvt
641    
642     PROTOTYPES: ENABLE
643    
644     BOOT:
645     {
646 root 1.52 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
647     sv_setsv (get_sv ("urxvt::RESNAME", 1), newSVpvn (RESNAME, sizeof (RESNAME) - 1));
648     sv_setsv (get_sv ("urxvt::RESCLASS", 1), newSVpvn (RESCLASS, sizeof (RESCLASS) - 1));
649     sv_setsv (get_sv ("urxvt::RXVTNAME", 1), newSVpvn (RXVTNAME, sizeof (RXVTNAME) - 1));
650 root 1.37
651 root 1.1 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
652 root 1.21 # define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
653     # include "hookinc.h"
654     # undef def
655 root 1.1
656 root 1.39 HV *option = get_hv ("urxvt::OPTION", 1);
657     # define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
658     # define nodef(name)
659     # include "optinc.h"
660     # undef nodef
661     # undef def
662    
663     HV *stash = gv_stashpv ("urxvt", 1);
664     # define export_const_iv(name) newCONSTSUB (stash, # name, newSViv (name));
665 root 1.37 export_const_iv (DEFAULT_RSTYLE);
666     export_const_iv (OVERLAY_RSTYLE);
667     export_const_iv (RS_Bold);
668     export_const_iv (RS_Italic);
669     export_const_iv (RS_Blink);
670     export_const_iv (RS_RVid);
671     export_const_iv (RS_Uline);
672 root 1.38
673 root 1.37 export_const_iv (CurrentTime);
674 root 1.38 export_const_iv (ShiftMask);
675     export_const_iv (LockMask);
676     export_const_iv (ControlMask);
677     export_const_iv (Mod1Mask);
678     export_const_iv (Mod2Mask);
679     export_const_iv (Mod3Mask);
680     export_const_iv (Mod4Mask);
681     export_const_iv (Mod5Mask);
682     export_const_iv (Button1Mask);
683     export_const_iv (Button2Mask);
684     export_const_iv (Button3Mask);
685     export_const_iv (Button4Mask);
686     export_const_iv (Button5Mask);
687     export_const_iv (AnyModifier);
688 root 1.50
689     export_const_iv (EVENT_NONE);
690     export_const_iv (EVENT_READ);
691     export_const_iv (EVENT_WRITE);
692 root 1.1 }
693    
694     void
695     set_should_invoke (int htype, int value)
696     CODE:
697     rxvt_perl.should_invoke [htype] = value;
698    
699     void
700     warn (const char *msg)
701     CODE:
702     rxvt_warn ("%s", msg);
703    
704     void
705     fatal (const char *msg)
706     CODE:
707     rxvt_fatal ("%s", msg);
708    
709 root 1.45 SV *
710     untaint (SV *sv)
711     CODE:
712     RETVAL = newSVsv (sv);
713     SvTAINTED_off (RETVAL);
714     OUTPUT:
715     RETVAL
716    
717 root 1.59 void
718     _exit (int status)
719    
720 root 1.47 bool
721     safe ()
722     CODE:
723     RETVAL = !rxvt_tainted ();
724     OUTPUT:
725     RETVAL
726    
727 root 1.3 NV
728     NOW ()
729     CODE:
730     RETVAL = NOW;
731     OUTPUT:
732     RETVAL
733    
734 root 1.11 int
735     GET_BASEFG (int rend)
736     CODE:
737     RETVAL = GET_BASEFG (rend);
738     OUTPUT:
739     RETVAL
740    
741     int
742     GET_BASEBG (int rend)
743     CODE:
744     RETVAL = GET_BASEBG (rend);
745     OUTPUT:
746     RETVAL
747    
748     int
749 root 1.12 SET_FGCOLOR (int rend, int new_color)
750 root 1.11 CODE:
751 root 1.12 RETVAL = SET_FGCOLOR (rend, new_color);
752 root 1.11 OUTPUT:
753     RETVAL
754    
755     int
756 root 1.12 SET_BGCOLOR (int rend, int new_color)
757 root 1.11 CODE:
758 root 1.12 RETVAL = SET_BGCOLOR (rend, new_color);
759     OUTPUT:
760     RETVAL
761    
762     int
763     GET_CUSTOM (int rend)
764     CODE:
765     RETVAL = (rend && RS_customMask) >> RS_customShift;
766     OUTPUT:
767     RETVAL
768    
769     int
770     SET_CUSTOM (int rend, int new_value)
771     CODE:
772     {
773     if (!IN_RANGE_EXC (new_value, 0, RS_customCount))
774     croak ("custom value out of range, must be 0..%d", RS_customCount - 1);
775    
776     RETVAL = (rend & ~RS_customMask)
777     | ((new_value << RS_customShift) & RS_customMask);
778     }
779 root 1.11 OUTPUT:
780     RETVAL
781    
782 root 1.3 MODULE = urxvt PACKAGE = urxvt::term
783    
784 root 1.54 SV *
785     _new (...)
786     CODE:
787     {
788     if (items < 1 || !SvROK (ST (0)) || SvTYPE (SvRV (ST (0))) != SVt_PVAV)
789     croak ("first argument to urxvt::term->_new must be arrayref");
790    
791     rxvt_term *term = new rxvt_term;
792    
793     term->argv = new stringvec;
794     term->envv = new stringvec;
795    
796     for (int i = 1; i < items; i++)
797     term->argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
798    
799     AV *envv = (AV *)SvRV (ST (0));
800     for (int i = av_len (envv) + 1; i--; )
801     term->envv->push_back (strdup (SvPVbyte_nolen (*av_fetch (envv, i, 1))));
802    
803     term->envv->push_back (0);
804    
805     bool success;
806    
807     try
808     {
809     success = term->init (term->argv->size (), term->argv->begin ());
810     }
811     catch (const class rxvt_failure_exception &e)
812     {
813     success = false;
814     }
815    
816     if (!success)
817     {
818     term->destroy ();
819     croak ("error while initializing new terminal instance");
820     }
821    
822     RETVAL = term && term->perl.self
823     ? newSVterm (term) : &PL_sv_undef;
824     }
825     OUTPUT:
826     RETVAL
827    
828 root 1.28 void
829     rxvt_term::destroy ()
830    
831 root 1.35 void
832 root 1.36 rxvt_term::grab_button (int button, U32 modifiers)
833     CODE:
834     XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
835     ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
836 root 1.41 GrabModeSync, GrabModeSync, None, GRAB_CURSOR);
837 root 1.36
838     bool
839     rxvt_term::grab (U32 eventtime, int sync = 0)
840 root 1.35 CODE:
841     {
842 root 1.36 int mode = sync ? GrabModeSync : GrabModeAsync;
843    
844     THIS->perl.grabtime = 0;
845    
846     if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
847     ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
848 root 1.41 mode, mode, None, GRAB_CURSOR, eventtime))
849 root 1.36 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
850     THIS->perl.grabtime = eventtime;
851     else
852     XUngrabPointer (THIS->display->display, eventtime);
853    
854     RETVAL = !!THIS->perl.grabtime;
855 root 1.35 }
856 root 1.36 OUTPUT:
857     RETVAL
858    
859     void
860 root 1.44 rxvt_term::allow_events_async ()
861 root 1.36 CODE:
862 root 1.44 XAllowEvents (THIS->display->display, AsyncBoth, THIS->perl.grabtime);
863 root 1.36
864     void
865 root 1.44 rxvt_term::allow_events_sync ()
866 root 1.36 CODE:
867 root 1.44 XAllowEvents (THIS->display->display, SyncBoth, THIS->perl.grabtime);
868 root 1.36
869     void
870 root 1.44 rxvt_term::allow_events_replay ()
871 root 1.36 CODE:
872 root 1.44 XAllowEvents (THIS->display->display, ReplayPointer, THIS->perl.grabtime);
873     XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime);
874 root 1.36
875     void
876 root 1.44 rxvt_term::ungrab ()
877 root 1.36 CODE:
878 root 1.45 ungrab (THIS);
879 root 1.35
880 root 1.1 int
881 root 1.3 rxvt_term::strwidth (SV *str)
882 root 1.1 CODE:
883     {
884     wchar_t *wstr = sv2wcs (str);
885 root 1.3
886     rxvt_push_locale (THIS->locale);
887 root 1.1 RETVAL = wcswidth (wstr, wcslen (wstr));
888 root 1.3 rxvt_pop_locale ();
889    
890 root 1.1 free (wstr);
891     }
892     OUTPUT:
893     RETVAL
894    
895 root 1.3 SV *
896     rxvt_term::locale_encode (SV *str)
897 root 1.1 CODE:
898 root 1.3 {
899     wchar_t *wstr = sv2wcs (str);
900    
901     rxvt_push_locale (THIS->locale);
902     char *mbstr = rxvt_wcstombs (wstr);
903     rxvt_pop_locale ();
904    
905     free (wstr);
906    
907 root 1.42 RETVAL = taint_if (newSVpv (mbstr, 0), str);
908 root 1.3 free (mbstr);
909     }
910     OUTPUT:
911 root 1.1 RETVAL
912    
913 root 1.3 SV *
914     rxvt_term::locale_decode (SV *octets)
915     CODE:
916     {
917     STRLEN len;
918     char *data = SvPVbyte (octets, len);
919    
920     rxvt_push_locale (THIS->locale);
921     wchar_t *wstr = rxvt_mbstowcs (data, len);
922     rxvt_pop_locale ();
923    
924 root 1.42 RETVAL = taint_if (wcs2sv (wstr), octets);
925 root 1.3 free (wstr);
926     }
927     OUTPUT:
928     RETVAL
929 root 1.1
930 root 1.38 #define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
931 root 1.24
932     #define TERM_OFFSET_width TERM_OFFSET(width)
933     #define TERM_OFFSET_height TERM_OFFSET(height)
934     #define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
935     #define TERM_OFFSET_fheight TERM_OFFSET(fheight)
936     #define TERM_OFFSET_fbase TERM_OFFSET(fbase)
937     #define TERM_OFFSET_nrow TERM_OFFSET(nrow)
938     #define TERM_OFFSET_ncol TERM_OFFSET(ncol)
939     #define TERM_OFFSET_focus TERM_OFFSET(focus)
940     #define TERM_OFFSET_mapped TERM_OFFSET(mapped)
941     #define TERM_OFFSET_saveLines TERM_OFFSET(saveLines)
942     #define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
943     #define TERM_OFFSET_nsaved TERM_OFFSET(nsaved)
944    
945     int
946     rxvt_term::width ()
947     ALIAS:
948     width = TERM_OFFSET_width
949     height = TERM_OFFSET_height
950     fwidth = TERM_OFFSET_fwidth
951     fheight = TERM_OFFSET_fheight
952     fbase = TERM_OFFSET_fbase
953     nrow = TERM_OFFSET_nrow
954     ncol = TERM_OFFSET_ncol
955     focus = TERM_OFFSET_focus
956     mapped = TERM_OFFSET_mapped
957     saveLines = TERM_OFFSET_saveLines
958     total_rows = TERM_OFFSET_total_rows
959     nsaved = TERM_OFFSET_nsaved
960     CODE:
961     RETVAL = *(int *)((char *)THIS + ix);
962     OUTPUT:
963     RETVAL
964    
965 root 1.38 unsigned int
966     rxvt_term::ModLevel3Mask ()
967     ALIAS:
968     ModLevel3Mask = 0
969     ModMetaMask = 1
970     ModNumLockMask = 2
971     CODE:
972     switch (ix)
973     {
974     case 0: RETVAL = THIS->ModLevel3Mask; break;
975     case 1: RETVAL = THIS->ModMetaMask; break;
976     case 2: RETVAL = THIS->ModNumLockMask; break;
977     }
978     OUTPUT:
979     RETVAL
980    
981 root 1.48 char *
982     rxvt_term::display_id ()
983 root 1.49 ALIAS:
984     display_id = 0
985     locale = 1
986 root 1.48 CODE:
987 root 1.49 switch (ix)
988     {
989     case 0: RETVAL = THIS->display->id; break;
990     case 1: RETVAL = THIS->locale; break;
991     }
992 root 1.48 OUTPUT:
993     RETVAL
994    
995 root 1.54 SV *
996     rxvt_term::_env ()
997     CODE:
998     {
999     if (THIS->envv)
1000     {
1001     AV *av = newAV ();
1002    
1003     for (char **i = THIS->envv->begin (); i != THIS->envv->end (); ++i)
1004     if (*i)
1005     av_push (av, newSVpv (*i, 0));
1006    
1007     RETVAL = newRV_noinc ((SV *)av);
1008     }
1009     else
1010     RETVAL = &PL_sv_undef;
1011     }
1012     OUTPUT:
1013     RETVAL
1014    
1015 root 1.50 int
1016     rxvt_term::pty_ev_events (int events = EVENT_UNDEF)
1017     CODE:
1018     RETVAL = THIS->pty_ev.events;
1019     if (events != EVENT_UNDEF)
1020     THIS->pty_ev.set (events);
1021     OUTPUT:
1022     RETVAL
1023    
1024 root 1.24 U32
1025 root 1.31 rxvt_term::parent ()
1026     CODE:
1027     RETVAL = (U32)THIS->parent [0];
1028     OUTPUT:
1029     RETVAL
1030    
1031     U32
1032 root 1.30 rxvt_term::vt ()
1033     CODE:
1034 root 1.31 RETVAL = (U32)THIS->vt;
1035 root 1.30 OUTPUT:
1036     RETVAL
1037    
1038     U32
1039 root 1.25 rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
1040 root 1.7 CODE:
1041 root 1.24 {
1042 root 1.25 RETVAL = THIS->rstyle;
1043     THIS->rstyle = new_rstyle;
1044 root 1.24 }
1045 root 1.7 OUTPUT:
1046 root 1.24 RETVAL
1047 root 1.7
1048     int
1049     rxvt_term::view_start (int newval = -1)
1050 root 1.61 PROTOTYPE: $;$
1051 root 1.7 CODE:
1052     {
1053     RETVAL = THIS->view_start;
1054    
1055     if (newval >= 0)
1056     {
1057     THIS->view_start = min (newval, THIS->nsaved);
1058     THIS->scr_changeview (RETVAL);
1059     }
1060     }
1061     OUTPUT:
1062     RETVAL
1063    
1064 root 1.8 void
1065 root 1.9 rxvt_term::want_refresh ()
1066     CODE:
1067     THIS->want_refresh = 1;
1068    
1069     void
1070 root 1.27 rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
1071 root 1.8 PPCODE:
1072     {
1073     if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1074 root 1.19 XSRETURN_EMPTY;
1075 root 1.8
1076     line_t &l = ROW(row_number);
1077    
1078     if (GIMME_V != G_VOID)
1079     {
1080     wchar_t *wstr = new wchar_t [THIS->ncol];
1081    
1082 root 1.33 for (int col = 0; col < THIS->ncol; col++)
1083 root 1.8 wstr [col] = l.t [col];
1084    
1085 root 1.42 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, THIS->ncol))));
1086 root 1.8
1087 root 1.25 delete [] wstr;
1088 root 1.8 }
1089    
1090     if (new_text)
1091     {
1092 root 1.13 wchar_t *wstr = sv2wcs (new_text);
1093 root 1.8
1094 root 1.27 int len = min (wcslen (wstr) - start_ofs, max_len);
1095 root 1.8
1096 root 1.10 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
1097 root 1.8 {
1098     free (wstr);
1099 root 1.10 croak ("new_text extends beyond horizontal margins");
1100 root 1.8 }
1101    
1102     for (int col = start_col; col < start_col + len; col++)
1103     {
1104 root 1.27 l.t [col] = wstr [start_ofs + col - start_col];
1105 root 1.8 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col]));
1106     }
1107 root 1.9
1108     free (wstr);
1109 root 1.8 }
1110     }
1111    
1112     void
1113 root 1.27 rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
1114 root 1.8 PPCODE:
1115     {
1116     if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1117 root 1.19 XSRETURN_EMPTY;
1118 root 1.8
1119     line_t &l = ROW(row_number);
1120    
1121     if (GIMME_V != G_VOID)
1122     {
1123     AV *av = newAV ();
1124    
1125     av_extend (av, THIS->ncol - 1);
1126     for (int col = 0; col < THIS->ncol; col++)
1127     av_store (av, col, newSViv (l.r [col]));
1128    
1129     XPUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
1130     }
1131    
1132     if (new_rend)
1133     {
1134     if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV)
1135     croak ("new_rend must be arrayref");
1136    
1137     AV *av = (AV *)SvRV (new_rend);
1138 root 1.27 int len = min (av_len (av) + 1 - start_ofs, max_len);
1139 root 1.8
1140 root 1.10 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
1141     croak ("new_rend array extends beyond horizontal margins");
1142 root 1.8
1143     for (int col = start_col; col < start_col + len; col++)
1144     {
1145 root 1.27 rend_t r = SvIV (*av_fetch (av, start_ofs + col - start_col, 1)) & ~RS_fontMask;
1146 root 1.8
1147     l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col]));
1148     }
1149     }
1150     }
1151    
1152     int
1153 root 1.26 rxvt_term::ROW_l (int row_number, int new_length = -1)
1154 root 1.8 CODE:
1155     {
1156     if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1157 root 1.19 XSRETURN_EMPTY;
1158 root 1.8
1159     line_t &l = ROW(row_number);
1160 root 1.26 RETVAL = l.l;
1161 root 1.8
1162 root 1.26 if (new_length >= 0)
1163 root 1.8 l.l = new_length;
1164     }
1165     OUTPUT:
1166     RETVAL
1167    
1168 root 1.19 bool
1169 root 1.26 rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
1170 root 1.19 CODE:
1171     {
1172     if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1173     XSRETURN_EMPTY;
1174    
1175     line_t &l = ROW(row_number);
1176 root 1.26 RETVAL = l.is_longer ();
1177    
1178     if (new_is_longer >= 0)
1179     l.is_longer (new_is_longer);
1180 root 1.19 }
1181     OUTPUT:
1182     RETVAL
1183    
1184 root 1.8 SV *
1185 root 1.33 rxvt_term::special_encode (SV *string)
1186 root 1.8 CODE:
1187 root 1.33 {
1188     wchar_t *wstr = sv2wcs (string);
1189     int wlen = wcslen (wstr);
1190     wchar_t *rstr = new wchar_t [wlen]; // cannot become longer
1191    
1192     rxvt_push_locale (THIS->locale);
1193    
1194     wchar_t *r = rstr;
1195     for (wchar_t *s = wstr; *s; s++)
1196     if (wcwidth (*s) == 0)
1197     {
1198     if (r == rstr)
1199     croak ("leading combining character unencodable");
1200    
1201     unicode_t n = rxvt_compose (r[-1], *s);
1202     if (n == NOCHAR)
1203     n = rxvt_composite.compose (r[-1], *s);
1204    
1205     r[-1] = n;
1206     }
1207     #if !UNICODE_3
1208     else if (*s >= 0x10000)
1209     *r++ = rxvt_composite.compose (*s);
1210     #endif
1211     else
1212     *r++ = *s;
1213    
1214     rxvt_pop_locale ();
1215    
1216 root 1.42 RETVAL = taint_if (wcs2sv (rstr, r - rstr), string);
1217 root 1.33
1218     delete [] rstr;
1219     }
1220     OUTPUT:
1221     RETVAL
1222 root 1.8
1223     SV *
1224 root 1.33 rxvt_term::special_decode (SV *text)
1225 root 1.8 CODE:
1226 root 1.33 {
1227     wchar_t *wstr = sv2wcs (text);
1228     int wlen = wcslen (wstr);
1229     int dlen = 0;
1230    
1231     // find length
1232     for (wchar_t *s = wstr; *s; s++)
1233     if (*s == NOCHAR)
1234     ;
1235     else if (IS_COMPOSE (*s))
1236     dlen += rxvt_composite.expand (*s, 0);
1237     else
1238     dlen++;
1239    
1240     wchar_t *rstr = new wchar_t [dlen];
1241    
1242     // decode
1243     wchar_t *r = rstr;
1244     for (wchar_t *s = wstr; *s; s++)
1245     if (*s == NOCHAR)
1246     ;
1247     else if (IS_COMPOSE (*s))
1248     r += rxvt_composite.expand (*s, r);
1249     else
1250     *r++ = *s;
1251    
1252 root 1.42 RETVAL = taint_if (wcs2sv (rstr, r - rstr), text);
1253 root 1.33
1254     delete [] rstr;
1255     }
1256     OUTPUT:
1257     RETVAL
1258 root 1.8
1259 root 1.1 void
1260 root 1.2 rxvt_term::_resource (char *name, int index, SV *newval = 0)
1261     PPCODE:
1262     {
1263     struct resval { const char *name; int value; } rslist [] = {
1264 root 1.21 # define def(name) { # name, Rs_ ## name },
1265     # define reserve(name,count)
1266 root 1.2 # include "rsinc.h"
1267 root 1.21 # undef def
1268     # undef reserve
1269 root 1.2 };
1270    
1271     struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]);
1272    
1273     do {
1274     if (rs-- == rslist)
1275     croak ("no such resource '%s', requested", name);
1276     } while (strcmp (name, rs->name));
1277    
1278     index += rs->value;
1279    
1280     if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES))
1281     croak ("requested out-of-bound resource %s+%d,", name, index - rs->value);
1282    
1283     if (GIMME_V != G_VOID)
1284 root 1.42 XPUSHs (THIS->rs [index] ? sv_2mortal (taint (newSVpv (THIS->rs [index], 0))) : &PL_sv_undef);
1285 root 1.2
1286     if (newval)
1287     {
1288     if (SvOK (newval))
1289     {
1290     char *str = strdup (SvPVbyte_nolen (newval));
1291     THIS->rs [index] = str;
1292     THIS->allocated.push_back (str);
1293     }
1294     else
1295     THIS->rs [index] = 0;
1296     }
1297     }
1298    
1299 root 1.55 const char *
1300     rxvt_term::x_resource (const char *name)
1301     CLEANUP:
1302     SvTAINTED_on (ST (0));
1303    
1304 root 1.40 bool
1305     rxvt_term::option (U32 optval, int set = -1)
1306     CODE:
1307     {
1308     RETVAL = THIS->options & optval;
1309    
1310     if (set >= 0)
1311     {
1312     if (set)
1313     THIS->options |= optval;
1314     else
1315     THIS->options &= ~optval;
1316    
1317     switch (optval)
1318     {
1319     case Opt_skipBuiltinGlyphs:
1320     THIS->set_fonts ();
1321     THIS->scr_remap_chars ();
1322     THIS->scr_touch (true);
1323     THIS->want_refresh = 1;
1324     break;
1325    
1326     case Opt_cursorUnderline:
1327     THIS->want_refresh = 1;
1328     break;
1329    
1330     # case Opt_scrollBar_floating:
1331     # case Opt_scrollBar_right:
1332     # THIS->resize_all_windows (THIS->width, THIS->height, 1);
1333     # break;
1334     }
1335     }
1336     }
1337     OUTPUT:
1338     RETVAL
1339    
1340 root 1.50 bool
1341     rxvt_term::parse_keysym (char *keysym, char *str)
1342     CODE:
1343     RETVAL = 0 < THIS->parse_keysym (keysym, str);
1344     THIS->keyboard->register_done ();
1345     OUTPUT:
1346     RETVAL
1347    
1348 root 1.2 void
1349 root 1.46 rxvt_term::screen_cur (...)
1350 root 1.1 PROTOTYPE: $;$$
1351     ALIAS:
1352 root 1.24 screen_cur = 0
1353     selection_beg = 1
1354     selection_end = 2
1355     selection_mark = 3
1356 root 1.1 PPCODE:
1357     {
1358 root 1.24 row_col_t &rc = ix == 0 ? THIS->screen.cur
1359     : ix == 1 ? THIS->selection.beg
1360     : ix == 2 ? THIS->selection.end
1361     : THIS->selection.mark;
1362 root 1.1
1363     if (GIMME_V != G_VOID)
1364     {
1365     EXTEND (SP, 2);
1366 root 1.24 PUSHs (sv_2mortal (newSViv (rc.row)));
1367     PUSHs (sv_2mortal (newSViv (rc.col)));
1368 root 1.1 }
1369    
1370     if (items == 3)
1371     {
1372 root 1.24 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1);
1373     rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
1374 root 1.1
1375     if (ix)
1376     THIS->want_refresh = 1;
1377     }
1378     }
1379    
1380 root 1.53 char
1381     rxvt_term::cur_charset ()
1382     CODE:
1383     RETVAL = THIS->charsets [THIS->screen.charset];
1384     OUTPUT:
1385     RETVAL
1386    
1387 root 1.60 #void
1388     #rxvt_term::selection_clear ()
1389    
1390     void
1391     rxvt_term::selection_make (U32 eventtime, bool rect = false)
1392     CODE:
1393     THIS->selection.op = SELECTION_CONT;
1394     THIS->selection.rect = rect;
1395     THIS->selection_make (eventtime);
1396    
1397 root 1.1 int
1398 root 1.36 rxvt_term::selection_grab (U32 eventtime)
1399 root 1.1
1400     void
1401     rxvt_term::selection (SV *newtext = 0)
1402     PPCODE:
1403     {
1404     if (GIMME_V != G_VOID)
1405 root 1.45 XPUSHs (THIS->selection.text
1406     ? taint (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)))
1407     : &PL_sv_undef);
1408 root 1.1
1409     if (newtext)
1410     {
1411     free (THIS->selection.text);
1412    
1413     THIS->selection.text = sv2wcs (newtext);
1414     THIS->selection.len = wcslen (THIS->selection.text);
1415     }
1416     }
1417 root 1.24
1418 root 1.1 void
1419 root 1.51 rxvt_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)
1420    
1421     void
1422     rxvt_term::scr_xor_span (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle = RS_RVid)
1423    
1424     void
1425 root 1.50 rxvt_term::scr_bell ()
1426    
1427     void
1428 root 1.25 rxvt_term::scr_add_lines (SV *string)
1429     CODE:
1430     {
1431     wchar_t *wstr = sv2wcs (string);
1432 root 1.32 THIS->scr_add_lines (wstr, wcslen (wstr));
1433 root 1.25 free (wstr);
1434     }
1435    
1436     void
1437 root 1.13 rxvt_term::tt_write (SV *octets)
1438     INIT:
1439     STRLEN len;
1440     char *str = SvPVbyte (octets, len);
1441     C_ARGS:
1442 root 1.23 str, len
1443 root 1.13
1444 root 1.28 void
1445     rxvt_term::cmd_parse (SV *octets)
1446     CODE:
1447     {
1448     STRLEN len;
1449     char *str = SvPVbyte (octets, len);
1450    
1451     char *old_cmdbuf_ptr = THIS->cmdbuf_ptr;
1452     char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1453    
1454     THIS->cmdbuf_ptr = str;
1455     THIS->cmdbuf_endp = str + len;
1456    
1457 root 1.35 rxvt_push_locale (THIS->locale);
1458 root 1.28 THIS->cmd_parse ();
1459 root 1.35 rxvt_pop_locale ();
1460 root 1.28
1461     THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1462     THIS->cmdbuf_endp = old_cmdbuf_endp;
1463     }
1464    
1465 root 1.13 SV *
1466     rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2)
1467     CODE:
1468     {
1469     overlay *o = new overlay (THIS, x, y, w, h, rstyle, border);
1470     RETVAL = newSVptr ((void *)o, "urxvt::overlay");
1471     o->self = (HV *)SvRV (RETVAL);
1472     }
1473     OUTPUT:
1474     RETVAL
1475    
1476     MODULE = urxvt PACKAGE = urxvt::overlay
1477 root 1.1
1478     void
1479 root 1.13 overlay::set (int x, int y, SV *text, SV *rend = 0)
1480 root 1.1
1481     void
1482 root 1.18 overlay::show ()
1483    
1484     void
1485     overlay::hide ()
1486    
1487     void
1488 root 1.13 overlay::DESTROY ()
1489 root 1.1
1490     MODULE = urxvt PACKAGE = urxvt::timer
1491    
1492     SV *
1493     timer::new ()
1494     CODE:
1495     timer *w = new timer;
1496 root 1.13 w->start (NOW);
1497 root 1.1 RETVAL = newSVptr ((void *)w, "urxvt::timer");
1498     w->self = (HV *)SvRV (RETVAL);
1499     OUTPUT:
1500     RETVAL
1501    
1502     timer *
1503     timer::cb (SV *cb)
1504     CODE:
1505     THIS->cb (cb);
1506     RETVAL = THIS;
1507     OUTPUT:
1508     RETVAL
1509    
1510     NV
1511     timer::at ()
1512     CODE:
1513     RETVAL = THIS->at;
1514     OUTPUT:
1515     RETVAL
1516    
1517     timer *
1518 root 1.13 timer::interval (NV interval)
1519     CODE:
1520     THIS->interval = interval;
1521     RETVAL = THIS;
1522     OUTPUT:
1523     RETVAL
1524    
1525     timer *
1526 root 1.1 timer::set (NV tstamp)
1527     CODE:
1528     THIS->set (tstamp);
1529     RETVAL = THIS;
1530     OUTPUT:
1531     RETVAL
1532    
1533     timer *
1534     timer::start (NV tstamp = THIS->at)
1535     CODE:
1536     THIS->start (tstamp);
1537     RETVAL = THIS;
1538     OUTPUT:
1539     RETVAL
1540    
1541     timer *
1542     timer::stop ()
1543     CODE:
1544     THIS->stop ();
1545     RETVAL = THIS;
1546     OUTPUT:
1547     RETVAL
1548    
1549     void
1550     timer::DESTROY ()
1551    
1552     MODULE = urxvt PACKAGE = urxvt::iow
1553    
1554     SV *
1555     iow::new ()
1556     CODE:
1557     iow *w = new iow;
1558     RETVAL = newSVptr ((void *)w, "urxvt::iow");
1559     w->self = (HV *)SvRV (RETVAL);
1560     OUTPUT:
1561     RETVAL
1562    
1563     iow *
1564     iow::cb (SV *cb)
1565     CODE:
1566     THIS->cb (cb);
1567     RETVAL = THIS;
1568     OUTPUT:
1569     RETVAL
1570    
1571     iow *
1572     iow::fd (int fd)
1573     CODE:
1574     THIS->fd = fd;
1575     RETVAL = THIS;
1576     OUTPUT:
1577     RETVAL
1578    
1579     iow *
1580     iow::events (short events)
1581     CODE:
1582     THIS->events = events;
1583     RETVAL = THIS;
1584     OUTPUT:
1585     RETVAL
1586    
1587     iow *
1588     iow::start ()
1589     CODE:
1590     THIS->start ();
1591     RETVAL = THIS;
1592     OUTPUT:
1593     RETVAL
1594    
1595     iow *
1596     iow::stop ()
1597     CODE:
1598     THIS->stop ();
1599     RETVAL = THIS;
1600     OUTPUT:
1601     RETVAL
1602    
1603     void
1604     iow::DESTROY ()
1605    
1606