ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtperl.xs
Revision: 1.63
Committed: Fri Jan 13 05:06:44 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.62: +0 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 /*----------------------------------------------------------------------*
2 * File: rxvtperl.xs
3 *----------------------------------------------------------------------*
4 *
5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
7 *
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 #include <cstddef>
32 #include <cstdarg>
33
34 #include "unistd.h"
35
36 #include "iom.h"
37 #include "rxvt.h"
38 #include "keyboard.h"
39 #include "rxvtutil.h"
40 #include "rxvtperl.h"
41
42 #include "perlxsi.c"
43
44 #if defined(HAVE_SCROLLBARS) || defined(MENUBAR)
45 # define GRAB_CURSOR THIS->leftptr_cursor
46 #else
47 # define GRAB_CURSOR None
48 #endif
49
50 #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 /////////////////////////////////////////////////////////////////////////////
56
57 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 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 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 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 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
105 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
106 }
107
108 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 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 MAGIC *mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
125
126 if (!mg)
127 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
128
129 return (long)mg->mg_ptr;
130 }
131
132 #define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
133 #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 tstamp interval;
193
194 timer ()
195 : time_watcher (this, &timer::execute)
196 {
197 }
198
199 void execute (time_watcher &w)
200 {
201 if (interval)
202 start (at + interval);
203
204 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 #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 void show ();
240 void hide ();
241
242 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
259 for (int y = 0; y < h; y++)
260 {
261 text_t *tp = text[y] = new text_t[w];
262 rend_t *rp = rend[y] = new rend_t[w];
263
264 text_t t0, t1, t2;
265 rend_t r = rstyle;
266
267 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
276 *tp++ = t0;
277 *rp++ = r;
278
279 for (int x = w - 2; x-- > 0; )
280 {
281 *tp++ = t1;
282 *rp++ = r;
283 }
284
285 *tp = t2;
286 *rp = r;
287 }
288 else
289 for (int x = w; x-- > 0; )
290 {
291 *tp++ = 0x0020;
292 *rp++ = r;
293 }
294 }
295
296 show ();
297 THIS->want_refresh = 1;
298 }
299
300 overlay::~overlay ()
301 {
302 hide ();
303
304 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 void
317 overlay::show ()
318 {
319 char key[33]; sprintf (key, "%32lx", (long)this);
320
321 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0));
322 hv_store (hv, key, 32, newSViv ((long)this), 0);
323 }
324
325 void
326 overlay::hide ()
327 {
328 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
329
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 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
352 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 {
357 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 void overlay::set (int x, int y, SV *text, SV *rend)
365 {
366 x += border;
367 y += border;
368
369 if (!IN_RANGE_EXC (y, 0, h - border))
370 return;
371
372 wchar_t *wtext = sv2wcs (text);
373
374 for (int col = min (wcslen (wtext), w - x - border); col--; )
375 this->text [y][x + col] = wtext [col];
376
377 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
390 THIS->want_refresh = 1;
391 }
392
393
394 /////////////////////////////////////////////////////////////////////////////
395
396 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 rxvt_perl_interp::init ()
411 {
412 if (!perl)
413 {
414 perl_environ = rxvt_environ;
415 swap (perl_environ, environ);
416
417 char *argv[] = {
418 "",
419 "-T",
420 "-edo '" LIBDIR "/urxvt.pm' or ($@ and die $@) or exit 1",
421 };
422
423 perl = perl_alloc ();
424 perl_construct (perl);
425
426 if (perl_parse (perl, xs_init, 3, argv, (char **)NULL)
427 || 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
436 swap (perl_environ, environ);
437 }
438 }
439
440 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 bool
452 rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
453 {
454 if (!perl)
455 return false;
456
457 if (htype == HOOK_INIT) // first hook ever called
458 {
459 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 }
462 else if (!term->perl.self)
463 return false; // perl not initialized for this instance
464 else if (htype == HOOK_DESTROY)
465 {
466 // handled later
467 }
468 else
469 {
470 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
474 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
482 }
483
484 if (!term->perl.should_invoke [htype])
485 return false;
486 }
487
488 swap (perl_environ, environ);
489
490 try
491 {
492 dSP;
493 va_list ap;
494
495 va_start (ap, htype);
496
497 ENTER;
498 SAVETMPS;
499
500 PUSHMARK (SP);
501
502 XPUSHs (sv_2mortal (newSVterm (term)));
503 XPUSHs (sv_2mortal (newSViv (htype)));
504
505 for (;;) {
506 data_type dt = (data_type)va_arg (ap, int);
507
508 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
522 case DT_STR_LEN:
523 {
524 char *str = va_arg (ap, char *);
525 int len = va_arg (ap, int);
526
527 XPUSHs (taint (sv_2mortal (newSVpvn (str, len))));
528 }
529 break;
530
531 case DT_WCS_LEN:
532 {
533 wchar_t *wstr = va_arg (ap, wchar_t *);
534 int wlen = va_arg (ap, int);
535
536 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, wlen))));
537 }
538 break;
539
540 case DT_XEVENT:
541 {
542 XEvent *xe = va_arg (ap, XEvent *);
543 HV *hv = newHV ();
544
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 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
588 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
589 }
590 break;
591
592 case DT_END:
593 {
594 va_end (ap);
595
596 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
622 swap (perl_environ, environ);
623 return count;
624 }
625
626 default:
627 rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
628 }
629 }
630 }
631 catch (...)
632 {
633 swap (perl_environ, environ);
634 throw;
635 }
636 }
637
638 /////////////////////////////////////////////////////////////////////////////
639
640 MODULE = urxvt PACKAGE = urxvt
641
642 PROTOTYPES: ENABLE
643
644 BOOT:
645 {
646 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
651 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
652 # define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
653 # include "hookinc.h"
654 # undef def
655
656 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 struct {
665 const char *name;
666 IV iv;
667 } *civ, const_iv[] = {
668 # define const_iv(name) { # name, (IV)name }
669 const_iv (DEFAULT_RSTYLE),
670 const_iv (OVERLAY_RSTYLE),
671 const_iv (RS_Bold),
672 const_iv (RS_Italic),
673 const_iv (RS_Blink),
674 const_iv (RS_RVid),
675 const_iv (RS_Uline),
676
677 const_iv (CurrentTime),
678 const_iv (ShiftMask),
679 const_iv (LockMask),
680 const_iv (ControlMask),
681 const_iv (Mod1Mask),
682 const_iv (Mod2Mask),
683 const_iv (Mod3Mask),
684 const_iv (Mod4Mask),
685 const_iv (Mod5Mask),
686 const_iv (Button1Mask),
687 const_iv (Button2Mask),
688 const_iv (Button3Mask),
689 const_iv (Button4Mask),
690 const_iv (Button5Mask),
691 const_iv (AnyModifier),
692
693 const_iv (EVENT_NONE),
694 const_iv (EVENT_READ),
695 const_iv (EVENT_WRITE),
696
697 const_iv (NoEventMask),
698 const_iv (KeyPressMask),
699 const_iv (KeyReleaseMask),
700 const_iv (ButtonPressMask),
701 const_iv (ButtonReleaseMask),
702 const_iv (EnterWindowMask),
703 const_iv (LeaveWindowMask),
704 const_iv (PointerMotionMask),
705 const_iv (PointerMotionHintMask),
706 const_iv (Button1MotionMask),
707 const_iv (Button2MotionMask),
708 const_iv (Button3MotionMask),
709 const_iv (Button4MotionMask),
710 const_iv (Button5MotionMask),
711 const_iv (ButtonMotionMask),
712 const_iv (KeymapStateMask),
713 const_iv (ExposureMask),
714 const_iv (VisibilityChangeMask),
715 const_iv (StructureNotifyMask),
716 const_iv (ResizeRedirectMask),
717 const_iv (SubstructureNotifyMask),
718 const_iv (SubstructureRedirectMask),
719 const_iv (FocusChangeMask),
720 const_iv (PropertyChangeMask),
721 const_iv (ColormapChangeMask),
722 const_iv (OwnerGrabButtonMask),
723
724 const_iv (KeyPress),
725 const_iv (KeyRelease),
726 const_iv (ButtonPress),
727 const_iv (ButtonRelease),
728 const_iv (MotionNotify),
729 const_iv (EnterNotify),
730 const_iv (LeaveNotify),
731 const_iv (FocusIn),
732 const_iv (FocusOut),
733 const_iv (KeymapNotify),
734 const_iv (Expose),
735 const_iv (GraphicsExpose),
736 const_iv (NoExpose),
737 const_iv (VisibilityNotify),
738 const_iv (CreateNotify),
739 const_iv (DestroyNotify),
740 const_iv (UnmapNotify),
741 const_iv (MapNotify),
742 const_iv (MapRequest),
743 const_iv (ReparentNotify),
744 const_iv (ConfigureNotify),
745 const_iv (ConfigureRequest),
746 const_iv (GravityNotify),
747 const_iv (ResizeRequest),
748 const_iv (CirculateNotify),
749 const_iv (CirculateRequest),
750 const_iv (PropertyNotify),
751 const_iv (SelectionClear),
752 const_iv (SelectionRequest),
753 const_iv (SelectionNotify),
754 const_iv (ColormapNotify),
755 const_iv (ClientMessage),
756 const_iv (MappingNotify),
757 };
758
759 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]);
760 civ-- > const_iv; )
761 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
762 }
763
764 void
765 warn (const char *msg)
766 CODE:
767 rxvt_warn ("%s", msg);
768
769 void
770 fatal (const char *msg)
771 CODE:
772 rxvt_fatal ("%s", msg);
773
774 SV *
775 untaint (SV *sv)
776 CODE:
777 RETVAL = newSVsv (sv);
778 SvTAINTED_off (RETVAL);
779 OUTPUT:
780 RETVAL
781
782 void
783 _exit (int status)
784
785 bool
786 safe ()
787 CODE:
788 RETVAL = !rxvt_tainted ();
789 OUTPUT:
790 RETVAL
791
792 NV
793 NOW ()
794 CODE:
795 RETVAL = NOW;
796 OUTPUT:
797 RETVAL
798
799 int
800 GET_BASEFG (int rend)
801 CODE:
802 RETVAL = GET_BASEFG (rend);
803 OUTPUT:
804 RETVAL
805
806 int
807 GET_BASEBG (int rend)
808 CODE:
809 RETVAL = GET_BASEBG (rend);
810 OUTPUT:
811 RETVAL
812
813 int
814 SET_FGCOLOR (int rend, int new_color)
815 CODE:
816 RETVAL = SET_FGCOLOR (rend, new_color);
817 OUTPUT:
818 RETVAL
819
820 int
821 SET_BGCOLOR (int rend, int new_color)
822 CODE:
823 RETVAL = SET_BGCOLOR (rend, new_color);
824 OUTPUT:
825 RETVAL
826
827 int
828 GET_CUSTOM (int rend)
829 CODE:
830 RETVAL = (rend && RS_customMask) >> RS_customShift;
831 OUTPUT:
832 RETVAL
833
834 int
835 SET_CUSTOM (int rend, int new_value)
836 CODE:
837 {
838 if (!IN_RANGE_EXC (new_value, 0, RS_customCount))
839 croak ("custom value out of range, must be 0..%d", RS_customCount - 1);
840
841 RETVAL = (rend & ~RS_customMask)
842 | ((new_value << RS_customShift) & RS_customMask);
843 }
844 OUTPUT:
845 RETVAL
846
847 MODULE = urxvt PACKAGE = urxvt::term
848
849 SV *
850 _new (...)
851 CODE:
852 {
853 if (items < 1 || !SvROK (ST (0)) || SvTYPE (SvRV (ST (0))) != SVt_PVAV)
854 croak ("first argument to urxvt::term->_new must be arrayref");
855
856 rxvt_term *term = new rxvt_term;
857
858 term->argv = new stringvec;
859 term->envv = new stringvec;
860
861 for (int i = 1; i < items; i++)
862 term->argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
863
864 AV *envv = (AV *)SvRV (ST (0));
865 for (int i = av_len (envv) + 1; i--; )
866 term->envv->push_back (strdup (SvPVbyte_nolen (*av_fetch (envv, i, 1))));
867
868 term->envv->push_back (0);
869
870 bool success;
871
872 try
873 {
874 success = term->init (term->argv->size (), term->argv->begin ());
875 }
876 catch (const class rxvt_failure_exception &e)
877 {
878 success = false;
879 }
880
881 if (!success)
882 {
883 term->destroy ();
884 croak ("error while initializing new terminal instance");
885 }
886
887 RETVAL = term && term->perl.self
888 ? newSVterm (term) : &PL_sv_undef;
889 }
890 OUTPUT:
891 RETVAL
892
893 void
894 rxvt_term::destroy ()
895
896 void
897 rxvt_term::set_should_invoke (int htype, int inc)
898 CODE:
899 THIS->perl.should_invoke [htype] += inc;
900
901 void
902 rxvt_term::grab_button (int button, U32 modifiers)
903 CODE:
904 XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
905 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
906 GrabModeSync, GrabModeSync, None, GRAB_CURSOR);
907
908 bool
909 rxvt_term::grab (U32 eventtime, int sync = 0)
910 CODE:
911 {
912 int mode = sync ? GrabModeSync : GrabModeAsync;
913
914 THIS->perl.grabtime = 0;
915
916 if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
917 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
918 mode, mode, None, GRAB_CURSOR, eventtime))
919 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
920 THIS->perl.grabtime = eventtime;
921 else
922 XUngrabPointer (THIS->display->display, eventtime);
923
924 RETVAL = !!THIS->perl.grabtime;
925 }
926 OUTPUT:
927 RETVAL
928
929 void
930 rxvt_term::allow_events_async ()
931 CODE:
932 XAllowEvents (THIS->display->display, AsyncBoth, THIS->perl.grabtime);
933
934 void
935 rxvt_term::allow_events_sync ()
936 CODE:
937 XAllowEvents (THIS->display->display, SyncBoth, THIS->perl.grabtime);
938
939 void
940 rxvt_term::allow_events_replay ()
941 CODE:
942 XAllowEvents (THIS->display->display, ReplayPointer, THIS->perl.grabtime);
943 XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime);
944
945 void
946 rxvt_term::ungrab ()
947 CODE:
948 ungrab (THIS);
949
950 int
951 rxvt_term::strwidth (SV *str)
952 CODE:
953 {
954 wchar_t *wstr = sv2wcs (str);
955
956 rxvt_push_locale (THIS->locale);
957 RETVAL = wcswidth (wstr, wcslen (wstr));
958 rxvt_pop_locale ();
959
960 free (wstr);
961 }
962 OUTPUT:
963 RETVAL
964
965 SV *
966 rxvt_term::locale_encode (SV *str)
967 CODE:
968 {
969 wchar_t *wstr = sv2wcs (str);
970
971 rxvt_push_locale (THIS->locale);
972 char *mbstr = rxvt_wcstombs (wstr);
973 rxvt_pop_locale ();
974
975 free (wstr);
976
977 RETVAL = taint_if (newSVpv (mbstr, 0), str);
978 free (mbstr);
979 }
980 OUTPUT:
981 RETVAL
982
983 SV *
984 rxvt_term::locale_decode (SV *octets)
985 CODE:
986 {
987 STRLEN len;
988 char *data = SvPVbyte (octets, len);
989
990 rxvt_push_locale (THIS->locale);
991 wchar_t *wstr = rxvt_mbstowcs (data, len);
992 rxvt_pop_locale ();
993
994 RETVAL = taint_if (wcs2sv (wstr), octets);
995 free (wstr);
996 }
997 OUTPUT:
998 RETVAL
999
1000 #define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
1001
1002 #define TERM_OFFSET_width TERM_OFFSET(width)
1003 #define TERM_OFFSET_height TERM_OFFSET(height)
1004 #define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
1005 #define TERM_OFFSET_fheight TERM_OFFSET(fheight)
1006 #define TERM_OFFSET_fbase TERM_OFFSET(fbase)
1007 #define TERM_OFFSET_nrow TERM_OFFSET(nrow)
1008 #define TERM_OFFSET_ncol TERM_OFFSET(ncol)
1009 #define TERM_OFFSET_focus TERM_OFFSET(focus)
1010 #define TERM_OFFSET_mapped TERM_OFFSET(mapped)
1011 #define TERM_OFFSET_saveLines TERM_OFFSET(saveLines)
1012 #define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
1013 #define TERM_OFFSET_nsaved TERM_OFFSET(nsaved)
1014
1015 int
1016 rxvt_term::width ()
1017 ALIAS:
1018 width = TERM_OFFSET_width
1019 height = TERM_OFFSET_height
1020 fwidth = TERM_OFFSET_fwidth
1021 fheight = TERM_OFFSET_fheight
1022 fbase = TERM_OFFSET_fbase
1023 nrow = TERM_OFFSET_nrow
1024 ncol = TERM_OFFSET_ncol
1025 focus = TERM_OFFSET_focus
1026 mapped = TERM_OFFSET_mapped
1027 saveLines = TERM_OFFSET_saveLines
1028 total_rows = TERM_OFFSET_total_rows
1029 nsaved = TERM_OFFSET_nsaved
1030 CODE:
1031 RETVAL = *(int *)((char *)THIS + ix);
1032 OUTPUT:
1033 RETVAL
1034
1035 unsigned int
1036 rxvt_term::ModLevel3Mask ()
1037 ALIAS:
1038 ModLevel3Mask = 0
1039 ModMetaMask = 1
1040 ModNumLockMask = 2
1041 CODE:
1042 switch (ix)
1043 {
1044 case 0: RETVAL = THIS->ModLevel3Mask; break;
1045 case 1: RETVAL = THIS->ModMetaMask; break;
1046 case 2: RETVAL = THIS->ModNumLockMask; break;
1047 }
1048 OUTPUT:
1049 RETVAL
1050
1051 char *
1052 rxvt_term::display_id ()
1053 ALIAS:
1054 display_id = 0
1055 locale = 1
1056 CODE:
1057 switch (ix)
1058 {
1059 case 0: RETVAL = THIS->display->id; break;
1060 case 1: RETVAL = THIS->locale; break;
1061 }
1062 OUTPUT:
1063 RETVAL
1064
1065 SV *
1066 rxvt_term::_env ()
1067 CODE:
1068 {
1069 if (THIS->envv)
1070 {
1071 AV *av = newAV ();
1072
1073 for (char **i = THIS->envv->begin (); i != THIS->envv->end (); ++i)
1074 if (*i)
1075 av_push (av, newSVpv (*i, 0));
1076
1077 RETVAL = newRV_noinc ((SV *)av);
1078 }
1079 else
1080 RETVAL = &PL_sv_undef;
1081 }
1082 OUTPUT:
1083 RETVAL
1084
1085 int
1086 rxvt_term::pty_ev_events (int events = EVENT_UNDEF)
1087 CODE:
1088 RETVAL = THIS->pty_ev.events;
1089 if (events != EVENT_UNDEF)
1090 THIS->pty_ev.set (events);
1091 OUTPUT:
1092 RETVAL
1093
1094 U32
1095 rxvt_term::parent ()
1096 CODE:
1097 RETVAL = (U32)THIS->parent [0];
1098 OUTPUT:
1099 RETVAL
1100
1101 U32
1102 rxvt_term::vt ()
1103 CODE:
1104 RETVAL = (U32)THIS->vt;
1105 OUTPUT:
1106 RETVAL
1107
1108 void
1109 rxvt_term::vt_emask_add (U32 emask)
1110 CODE:
1111 THIS->vt_emask_perl |= emask;
1112 THIS->vt_select_input ();
1113
1114 U32
1115 rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
1116 CODE:
1117 RETVAL = THIS->rstyle;
1118 THIS->rstyle = new_rstyle;
1119 OUTPUT:
1120 RETVAL
1121
1122 int
1123 rxvt_term::view_start (int newval = -1)
1124 PROTOTYPE: $;$
1125 CODE:
1126 {
1127 RETVAL = THIS->view_start;
1128
1129 if (newval >= 0)
1130 {
1131 THIS->view_start = min (newval, THIS->nsaved);
1132 THIS->scr_changeview (RETVAL);
1133 }
1134 }
1135 OUTPUT:
1136 RETVAL
1137
1138 void
1139 rxvt_term::want_refresh ()
1140 CODE:
1141 THIS->want_refresh = 1;
1142
1143 void
1144 rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
1145 PPCODE:
1146 {
1147 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1148 XSRETURN_EMPTY;
1149
1150 line_t &l = ROW(row_number);
1151
1152 if (GIMME_V != G_VOID)
1153 {
1154 wchar_t *wstr = new wchar_t [THIS->ncol];
1155
1156 for (int col = 0; col < THIS->ncol; col++)
1157 wstr [col] = l.t [col];
1158
1159 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, THIS->ncol))));
1160
1161 delete [] wstr;
1162 }
1163
1164 if (new_text)
1165 {
1166 wchar_t *wstr = sv2wcs (new_text);
1167
1168 int len = min (wcslen (wstr) - start_ofs, max_len);
1169
1170 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
1171 {
1172 free (wstr);
1173 croak ("new_text extends beyond horizontal margins");
1174 }
1175
1176 for (int col = start_col; col < start_col + len; col++)
1177 {
1178 l.t [col] = wstr [start_ofs + col - start_col];
1179 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col]));
1180 }
1181
1182 free (wstr);
1183 }
1184 }
1185
1186 void
1187 rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
1188 PPCODE:
1189 {
1190 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1191 XSRETURN_EMPTY;
1192
1193 line_t &l = ROW(row_number);
1194
1195 if (GIMME_V != G_VOID)
1196 {
1197 AV *av = newAV ();
1198
1199 av_extend (av, THIS->ncol - 1);
1200 for (int col = 0; col < THIS->ncol; col++)
1201 av_store (av, col, newSViv (l.r [col]));
1202
1203 XPUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
1204 }
1205
1206 if (new_rend)
1207 {
1208 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV)
1209 croak ("new_rend must be arrayref");
1210
1211 AV *av = (AV *)SvRV (new_rend);
1212 int len = min (av_len (av) + 1 - start_ofs, max_len);
1213
1214 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
1215 croak ("new_rend array extends beyond horizontal margins");
1216
1217 for (int col = start_col; col < start_col + len; col++)
1218 {
1219 rend_t r = SvIV (*av_fetch (av, start_ofs + col - start_col, 1)) & ~RS_fontMask;
1220
1221 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col]));
1222 }
1223 }
1224 }
1225
1226 int
1227 rxvt_term::ROW_l (int row_number, int new_length = -1)
1228 CODE:
1229 {
1230 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1231 XSRETURN_EMPTY;
1232
1233 line_t &l = ROW(row_number);
1234 RETVAL = l.l;
1235
1236 if (new_length >= 0)
1237 l.l = new_length;
1238 }
1239 OUTPUT:
1240 RETVAL
1241
1242 bool
1243 rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
1244 CODE:
1245 {
1246 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1247 XSRETURN_EMPTY;
1248
1249 line_t &l = ROW(row_number);
1250 RETVAL = l.is_longer ();
1251
1252 if (new_is_longer >= 0)
1253 l.is_longer (new_is_longer);
1254 }
1255 OUTPUT:
1256 RETVAL
1257
1258 SV *
1259 rxvt_term::special_encode (SV *string)
1260 CODE:
1261 {
1262 wchar_t *wstr = sv2wcs (string);
1263 int wlen = wcslen (wstr);
1264 wchar_t *rstr = new wchar_t [wlen]; // cannot become longer
1265
1266 rxvt_push_locale (THIS->locale);
1267
1268 wchar_t *r = rstr;
1269 for (wchar_t *s = wstr; *s; s++)
1270 if (wcwidth (*s) == 0)
1271 {
1272 if (r == rstr)
1273 croak ("leading combining character unencodable");
1274
1275 unicode_t n = rxvt_compose (r[-1], *s);
1276 if (n == NOCHAR)
1277 n = rxvt_composite.compose (r[-1], *s);
1278
1279 r[-1] = n;
1280 }
1281 #if !UNICODE_3
1282 else if (*s >= 0x10000)
1283 *r++ = rxvt_composite.compose (*s);
1284 #endif
1285 else
1286 *r++ = *s;
1287
1288 rxvt_pop_locale ();
1289
1290 RETVAL = taint_if (wcs2sv (rstr, r - rstr), string);
1291
1292 delete [] rstr;
1293 }
1294 OUTPUT:
1295 RETVAL
1296
1297 SV *
1298 rxvt_term::special_decode (SV *text)
1299 CODE:
1300 {
1301 wchar_t *wstr = sv2wcs (text);
1302 int wlen = wcslen (wstr);
1303 int dlen = 0;
1304
1305 // find length
1306 for (wchar_t *s = wstr; *s; s++)
1307 if (*s == NOCHAR)
1308 ;
1309 else if (IS_COMPOSE (*s))
1310 dlen += rxvt_composite.expand (*s, 0);
1311 else
1312 dlen++;
1313
1314 wchar_t *rstr = new wchar_t [dlen];
1315
1316 // decode
1317 wchar_t *r = rstr;
1318 for (wchar_t *s = wstr; *s; s++)
1319 if (*s == NOCHAR)
1320 ;
1321 else if (IS_COMPOSE (*s))
1322 r += rxvt_composite.expand (*s, r);
1323 else
1324 *r++ = *s;
1325
1326 RETVAL = taint_if (wcs2sv (rstr, r - rstr), text);
1327
1328 delete [] rstr;
1329 }
1330 OUTPUT:
1331 RETVAL
1332
1333 void
1334 rxvt_term::_resource (char *name, int index, SV *newval = 0)
1335 PPCODE:
1336 {
1337 struct resval { const char *name; int value; } rslist [] = {
1338 # define def(name) { # name, Rs_ ## name },
1339 # define reserve(name,count)
1340 # include "rsinc.h"
1341 # undef def
1342 # undef reserve
1343 };
1344
1345 struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]);
1346
1347 do {
1348 if (rs-- == rslist)
1349 croak ("no such resource '%s', requested", name);
1350 } while (strcmp (name, rs->name));
1351
1352 index += rs->value;
1353
1354 if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES))
1355 croak ("requested out-of-bound resource %s+%d,", name, index - rs->value);
1356
1357 if (GIMME_V != G_VOID)
1358 XPUSHs (THIS->rs [index] ? sv_2mortal (taint (newSVpv (THIS->rs [index], 0))) : &PL_sv_undef);
1359
1360 if (newval)
1361 {
1362 if (SvOK (newval))
1363 {
1364 char *str = strdup (SvPVbyte_nolen (newval));
1365 THIS->rs [index] = str;
1366 THIS->allocated.push_back (str);
1367 }
1368 else
1369 THIS->rs [index] = 0;
1370 }
1371 }
1372
1373 const char *
1374 rxvt_term::x_resource (const char *name)
1375 CLEANUP:
1376 SvTAINTED_on (ST (0));
1377
1378 bool
1379 rxvt_term::option (U32 optval, int set = -1)
1380 CODE:
1381 {
1382 RETVAL = THIS->options & optval;
1383
1384 if (set >= 0)
1385 {
1386 if (set)
1387 THIS->options |= optval;
1388 else
1389 THIS->options &= ~optval;
1390
1391 switch (optval)
1392 {
1393 case Opt_skipBuiltinGlyphs:
1394 THIS->set_fonts ();
1395 THIS->scr_remap_chars ();
1396 THIS->scr_touch (true);
1397 THIS->want_refresh = 1;
1398 break;
1399
1400 case Opt_cursorUnderline:
1401 THIS->want_refresh = 1;
1402 break;
1403
1404 # case Opt_scrollBar_floating:
1405 # case Opt_scrollBar_right:
1406 # THIS->resize_all_windows (THIS->width, THIS->height, 1);
1407 # break;
1408 }
1409 }
1410 }
1411 OUTPUT:
1412 RETVAL
1413
1414 bool
1415 rxvt_term::parse_keysym (char *keysym, char *str)
1416 CODE:
1417 RETVAL = 0 < THIS->parse_keysym (keysym, str);
1418 THIS->keyboard->register_done ();
1419 OUTPUT:
1420 RETVAL
1421
1422 void
1423 rxvt_term::screen_cur (...)
1424 PROTOTYPE: $;$$
1425 ALIAS:
1426 screen_cur = 0
1427 selection_beg = 1
1428 selection_end = 2
1429 selection_mark = 3
1430 PPCODE:
1431 {
1432 row_col_t &rc = ix == 0 ? THIS->screen.cur
1433 : ix == 1 ? THIS->selection.beg
1434 : ix == 2 ? THIS->selection.end
1435 : THIS->selection.mark;
1436
1437 if (GIMME_V != G_VOID)
1438 {
1439 EXTEND (SP, 2);
1440 PUSHs (sv_2mortal (newSViv (rc.row)));
1441 PUSHs (sv_2mortal (newSViv (rc.col)));
1442 }
1443
1444 if (items == 3)
1445 {
1446 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1);
1447 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
1448
1449 if (ix)
1450 THIS->want_refresh = 1;
1451 }
1452 }
1453
1454 char
1455 rxvt_term::cur_charset ()
1456 CODE:
1457 RETVAL = THIS->charsets [THIS->screen.charset];
1458 OUTPUT:
1459 RETVAL
1460
1461 #void
1462 #rxvt_term::selection_clear ()
1463
1464 void
1465 rxvt_term::selection_make (U32 eventtime, bool rect = false)
1466 CODE:
1467 THIS->selection.op = SELECTION_CONT;
1468 THIS->selection.rect = rect;
1469 THIS->selection_make (eventtime);
1470
1471 int
1472 rxvt_term::selection_grab (U32 eventtime)
1473
1474 void
1475 rxvt_term::selection (SV *newtext = 0)
1476 PPCODE:
1477 {
1478 if (GIMME_V != G_VOID)
1479 XPUSHs (THIS->selection.text
1480 ? taint (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)))
1481 : &PL_sv_undef);
1482
1483 if (newtext)
1484 {
1485 free (THIS->selection.text);
1486
1487 THIS->selection.text = sv2wcs (newtext);
1488 THIS->selection.len = wcslen (THIS->selection.text);
1489 }
1490 }
1491
1492 void
1493 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)
1494
1495 void
1496 rxvt_term::scr_xor_span (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle = RS_RVid)
1497
1498 void
1499 rxvt_term::scr_bell ()
1500
1501 void
1502 rxvt_term::scr_add_lines (SV *string)
1503 CODE:
1504 {
1505 wchar_t *wstr = sv2wcs (string);
1506 THIS->scr_add_lines (wstr, wcslen (wstr));
1507 free (wstr);
1508 }
1509
1510 void
1511 rxvt_term::tt_write (SV *octets)
1512 INIT:
1513 STRLEN len;
1514 char *str = SvPVbyte (octets, len);
1515 C_ARGS:
1516 str, len
1517
1518 void
1519 rxvt_term::cmd_parse (SV *octets)
1520 CODE:
1521 {
1522 STRLEN len;
1523 char *str = SvPVbyte (octets, len);
1524
1525 char *old_cmdbuf_ptr = THIS->cmdbuf_ptr;
1526 char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1527
1528 THIS->cmdbuf_ptr = str;
1529 THIS->cmdbuf_endp = str + len;
1530
1531 rxvt_push_locale (THIS->locale);
1532 THIS->cmd_parse ();
1533 rxvt_pop_locale ();
1534
1535 THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1536 THIS->cmdbuf_endp = old_cmdbuf_endp;
1537 }
1538
1539 SV *
1540 rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2)
1541 CODE:
1542 {
1543 overlay *o = new overlay (THIS, x, y, w, h, rstyle, border);
1544 RETVAL = newSVptr ((void *)o, "urxvt::overlay");
1545 o->self = (HV *)SvRV (RETVAL);
1546 }
1547 OUTPUT:
1548 RETVAL
1549
1550 MODULE = urxvt PACKAGE = urxvt::overlay
1551
1552 void
1553 overlay::set (int x, int y, SV *text, SV *rend = 0)
1554
1555 void
1556 overlay::show ()
1557
1558 void
1559 overlay::hide ()
1560
1561 void
1562 overlay::DESTROY ()
1563
1564 MODULE = urxvt PACKAGE = urxvt::timer
1565
1566 SV *
1567 timer::new ()
1568 CODE:
1569 timer *w = new timer;
1570 w->start (NOW);
1571 RETVAL = newSVptr ((void *)w, "urxvt::timer");
1572 w->self = (HV *)SvRV (RETVAL);
1573 OUTPUT:
1574 RETVAL
1575
1576 timer *
1577 timer::cb (SV *cb)
1578 CODE:
1579 THIS->cb (cb);
1580 RETVAL = THIS;
1581 OUTPUT:
1582 RETVAL
1583
1584 NV
1585 timer::at ()
1586 CODE:
1587 RETVAL = THIS->at;
1588 OUTPUT:
1589 RETVAL
1590
1591 timer *
1592 timer::interval (NV interval)
1593 CODE:
1594 THIS->interval = interval;
1595 RETVAL = THIS;
1596 OUTPUT:
1597 RETVAL
1598
1599 timer *
1600 timer::set (NV tstamp)
1601 CODE:
1602 THIS->set (tstamp);
1603 RETVAL = THIS;
1604 OUTPUT:
1605 RETVAL
1606
1607 timer *
1608 timer::start (NV tstamp = THIS->at)
1609 CODE:
1610 THIS->start (tstamp);
1611 RETVAL = THIS;
1612 OUTPUT:
1613 RETVAL
1614
1615 timer *
1616 timer::stop ()
1617 CODE:
1618 THIS->stop ();
1619 RETVAL = THIS;
1620 OUTPUT:
1621 RETVAL
1622
1623 void
1624 timer::DESTROY ()
1625
1626 MODULE = urxvt PACKAGE = urxvt::iow
1627
1628 SV *
1629 iow::new ()
1630 CODE:
1631 iow *w = new iow;
1632 RETVAL = newSVptr ((void *)w, "urxvt::iow");
1633 w->self = (HV *)SvRV (RETVAL);
1634 OUTPUT:
1635 RETVAL
1636
1637 iow *
1638 iow::cb (SV *cb)
1639 CODE:
1640 THIS->cb (cb);
1641 RETVAL = THIS;
1642 OUTPUT:
1643 RETVAL
1644
1645 iow *
1646 iow::fd (int fd)
1647 CODE:
1648 THIS->fd = fd;
1649 RETVAL = THIS;
1650 OUTPUT:
1651 RETVAL
1652
1653 iow *
1654 iow::events (short events)
1655 CODE:
1656 THIS->events = events;
1657 RETVAL = THIS;
1658 OUTPUT:
1659 RETVAL
1660
1661 iow *
1662 iow::start ()
1663 CODE:
1664 THIS->start ();
1665 RETVAL = THIS;
1666 OUTPUT:
1667 RETVAL
1668
1669 iow *
1670 iow::stop ()
1671 CODE:
1672 THIS->stop ();
1673 RETVAL = THIS;
1674 OUTPUT:
1675 RETVAL
1676
1677 void
1678 iow::DESTROY ()
1679
1680