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