ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtperl.xs
Revision: 1.62
Committed: Fri Jan 13 04:59:04 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.61: +110 -34 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 root 1.62 if (!term->perl.should_invoke [htype])
485 root 1.50 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 root 1.62 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 root 1.1 }
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 root 1.45 SV *
775     untaint (SV *sv)
776     CODE:
777     RETVAL = newSVsv (sv);
778     SvTAINTED_off (RETVAL);
779     OUTPUT:
780     RETVAL
781    
782 root 1.59 void
783     _exit (int status)
784    
785 root 1.47 bool
786     safe ()
787     CODE:
788     RETVAL = !rxvt_tainted ();
789     OUTPUT:
790     RETVAL
791    
792 root 1.3 NV
793     NOW ()
794     CODE:
795     RETVAL = NOW;
796     OUTPUT:
797     RETVAL
798    
799 root 1.11 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 root 1.12 SET_FGCOLOR (int rend, int new_color)
815 root 1.11 CODE:
816 root 1.12 RETVAL = SET_FGCOLOR (rend, new_color);
817 root 1.11 OUTPUT:
818     RETVAL
819    
820     int
821 root 1.12 SET_BGCOLOR (int rend, int new_color)
822 root 1.11 CODE:
823 root 1.12 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 root 1.11 OUTPUT:
845     RETVAL
846    
847 root 1.3 MODULE = urxvt PACKAGE = urxvt::term
848    
849 root 1.54 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 root 1.28 void
894     rxvt_term::destroy ()
895    
896 root 1.35 void
897 root 1.62 rxvt_term::set_should_invoke (int htype, int inc)
898     CODE:
899     THIS->perl.should_invoke [htype] += inc;
900    
901     void
902 root 1.36 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 root 1.41 GrabModeSync, GrabModeSync, None, GRAB_CURSOR);
907 root 1.36
908     bool
909     rxvt_term::grab (U32 eventtime, int sync = 0)
910 root 1.35 CODE:
911     {
912 root 1.36 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 root 1.41 mode, mode, None, GRAB_CURSOR, eventtime))
919 root 1.36 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 root 1.35 }
926 root 1.36 OUTPUT:
927     RETVAL
928    
929     void
930 root 1.44 rxvt_term::allow_events_async ()
931 root 1.36 CODE:
932 root 1.44 XAllowEvents (THIS->display->display, AsyncBoth, THIS->perl.grabtime);
933 root 1.36
934     void
935 root 1.44 rxvt_term::allow_events_sync ()
936 root 1.36 CODE:
937 root 1.44 XAllowEvents (THIS->display->display, SyncBoth, THIS->perl.grabtime);
938 root 1.36
939     void
940 root 1.44 rxvt_term::allow_events_replay ()
941 root 1.36 CODE:
942 root 1.44 XAllowEvents (THIS->display->display, ReplayPointer, THIS->perl.grabtime);
943     XAllowEvents (THIS->display->display, ReplayKeyboard, THIS->perl.grabtime);
944 root 1.36
945     void
946 root 1.44 rxvt_term::ungrab ()
947 root 1.36 CODE:
948 root 1.45 ungrab (THIS);
949 root 1.35
950 root 1.1 int
951 root 1.3 rxvt_term::strwidth (SV *str)
952 root 1.1 CODE:
953     {
954     wchar_t *wstr = sv2wcs (str);
955 root 1.3
956     rxvt_push_locale (THIS->locale);
957 root 1.1 RETVAL = wcswidth (wstr, wcslen (wstr));
958 root 1.3 rxvt_pop_locale ();
959    
960 root 1.1 free (wstr);
961     }
962     OUTPUT:
963     RETVAL
964    
965 root 1.3 SV *
966     rxvt_term::locale_encode (SV *str)
967 root 1.1 CODE:
968 root 1.3 {
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 root 1.42 RETVAL = taint_if (newSVpv (mbstr, 0), str);
978 root 1.3 free (mbstr);
979     }
980     OUTPUT:
981 root 1.1 RETVAL
982    
983 root 1.3 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 root 1.42 RETVAL = taint_if (wcs2sv (wstr), octets);
995 root 1.3 free (wstr);
996     }
997     OUTPUT:
998     RETVAL
999 root 1.1
1000 root 1.38 #define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
1001 root 1.24
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 root 1.38 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 root 1.48 char *
1052     rxvt_term::display_id ()
1053 root 1.49 ALIAS:
1054     display_id = 0
1055     locale = 1
1056 root 1.48 CODE:
1057 root 1.49 switch (ix)
1058     {
1059     case 0: RETVAL = THIS->display->id; break;
1060     case 1: RETVAL = THIS->locale; break;
1061     }
1062 root 1.48 OUTPUT:
1063     RETVAL
1064    
1065 root 1.54 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 root 1.50 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 root 1.24 U32
1095 root 1.31 rxvt_term::parent ()
1096     CODE:
1097     RETVAL = (U32)THIS->parent [0];
1098     OUTPUT:
1099     RETVAL
1100    
1101     U32
1102 root 1.30 rxvt_term::vt ()
1103     CODE:
1104 root 1.31 RETVAL = (U32)THIS->vt;
1105 root 1.30 OUTPUT:
1106     RETVAL
1107    
1108 root 1.62 void
1109     rxvt_term::vt_emask_add (U32 emask)
1110     CODE:
1111     THIS->vt_emask_perl |= emask;
1112     THIS->vt_select_input ();
1113    
1114 root 1.30 U32
1115 root 1.25 rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
1116 root 1.7 CODE:
1117 root 1.24 {
1118 root 1.25 RETVAL = THIS->rstyle;
1119     THIS->rstyle = new_rstyle;
1120 root 1.24 }
1121 root 1.7 OUTPUT:
1122 root 1.24 RETVAL
1123 root 1.7
1124     int
1125     rxvt_term::view_start (int newval = -1)
1126 root 1.61 PROTOTYPE: $;$
1127 root 1.7 CODE:
1128     {
1129     RETVAL = THIS->view_start;
1130    
1131     if (newval >= 0)
1132     {
1133     THIS->view_start = min (newval, THIS->nsaved);
1134     THIS->scr_changeview (RETVAL);
1135     }
1136     }
1137     OUTPUT:
1138     RETVAL
1139    
1140 root 1.8 void
1141 root 1.9 rxvt_term::want_refresh ()
1142     CODE:
1143     THIS->want_refresh = 1;
1144    
1145     void
1146 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)
1147 root 1.8 PPCODE:
1148     {
1149     if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1150 root 1.19 XSRETURN_EMPTY;
1151 root 1.8
1152     line_t &l = ROW(row_number);
1153    
1154     if (GIMME_V != G_VOID)
1155     {
1156     wchar_t *wstr = new wchar_t [THIS->ncol];
1157    
1158 root 1.33 for (int col = 0; col < THIS->ncol; col++)
1159 root 1.8 wstr [col] = l.t [col];
1160    
1161 root 1.42 XPUSHs (taint (sv_2mortal (wcs2sv (wstr, THIS->ncol))));
1162 root 1.8
1163 root 1.25 delete [] wstr;
1164 root 1.8 }
1165    
1166     if (new_text)
1167     {
1168 root 1.13 wchar_t *wstr = sv2wcs (new_text);
1169 root 1.8
1170 root 1.27 int len = min (wcslen (wstr) - start_ofs, max_len);
1171 root 1.8
1172 root 1.10 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
1173 root 1.8 {
1174     free (wstr);
1175 root 1.10 croak ("new_text extends beyond horizontal margins");
1176 root 1.8 }
1177    
1178     for (int col = start_col; col < start_col + len; col++)
1179     {
1180 root 1.27 l.t [col] = wstr [start_ofs + col - start_col];
1181 root 1.8 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col]));
1182     }
1183 root 1.9
1184     free (wstr);
1185 root 1.8 }
1186     }
1187    
1188     void
1189 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)
1190 root 1.8 PPCODE:
1191     {
1192     if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1193 root 1.19 XSRETURN_EMPTY;
1194 root 1.8
1195     line_t &l = ROW(row_number);
1196    
1197     if (GIMME_V != G_VOID)
1198     {
1199     AV *av = newAV ();
1200    
1201     av_extend (av, THIS->ncol - 1);
1202     for (int col = 0; col < THIS->ncol; col++)
1203     av_store (av, col, newSViv (l.r [col]));
1204    
1205     XPUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
1206     }
1207    
1208     if (new_rend)
1209     {
1210     if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV)
1211     croak ("new_rend must be arrayref");
1212    
1213     AV *av = (AV *)SvRV (new_rend);
1214 root 1.27 int len = min (av_len (av) + 1 - start_ofs, max_len);
1215 root 1.8
1216 root 1.10 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
1217     croak ("new_rend array extends beyond horizontal margins");
1218 root 1.8
1219     for (int col = start_col; col < start_col + len; col++)
1220     {
1221 root 1.27 rend_t r = SvIV (*av_fetch (av, start_ofs + col - start_col, 1)) & ~RS_fontMask;
1222 root 1.8
1223     l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col]));
1224     }
1225     }
1226     }
1227    
1228     int
1229 root 1.26 rxvt_term::ROW_l (int row_number, int new_length = -1)
1230 root 1.8 CODE:
1231     {
1232     if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1233 root 1.19 XSRETURN_EMPTY;
1234 root 1.8
1235     line_t &l = ROW(row_number);
1236 root 1.26 RETVAL = l.l;
1237 root 1.8
1238 root 1.26 if (new_length >= 0)
1239 root 1.8 l.l = new_length;
1240     }
1241     OUTPUT:
1242     RETVAL
1243    
1244 root 1.19 bool
1245 root 1.26 rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
1246 root 1.19 CODE:
1247     {
1248     if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1249     XSRETURN_EMPTY;
1250    
1251     line_t &l = ROW(row_number);
1252 root 1.26 RETVAL = l.is_longer ();
1253    
1254     if (new_is_longer >= 0)
1255     l.is_longer (new_is_longer);
1256 root 1.19 }
1257     OUTPUT:
1258     RETVAL
1259    
1260 root 1.8 SV *
1261 root 1.33 rxvt_term::special_encode (SV *string)
1262 root 1.8 CODE:
1263 root 1.33 {
1264     wchar_t *wstr = sv2wcs (string);
1265     int wlen = wcslen (wstr);
1266     wchar_t *rstr = new wchar_t [wlen]; // cannot become longer
1267    
1268     rxvt_push_locale (THIS->locale);
1269    
1270     wchar_t *r = rstr;
1271     for (wchar_t *s = wstr; *s; s++)
1272     if (wcwidth (*s) == 0)
1273     {
1274     if (r == rstr)
1275     croak ("leading combining character unencodable");
1276    
1277     unicode_t n = rxvt_compose (r[-1], *s);
1278     if (n == NOCHAR)
1279     n = rxvt_composite.compose (r[-1], *s);
1280    
1281     r[-1] = n;
1282     }
1283     #if !UNICODE_3
1284     else if (*s >= 0x10000)
1285     *r++ = rxvt_composite.compose (*s);
1286     #endif
1287     else
1288     *r++ = *s;
1289    
1290     rxvt_pop_locale ();
1291    
1292 root 1.42 RETVAL = taint_if (wcs2sv (rstr, r - rstr), string);
1293 root 1.33
1294     delete [] rstr;
1295     }
1296     OUTPUT:
1297     RETVAL
1298 root 1.8
1299     SV *
1300 root 1.33 rxvt_term::special_decode (SV *text)
1301 root 1.8 CODE:
1302 root 1.33 {
1303     wchar_t *wstr = sv2wcs (text);
1304     int wlen = wcslen (wstr);
1305     int dlen = 0;
1306    
1307     // find length
1308     for (wchar_t *s = wstr; *s; s++)
1309     if (*s == NOCHAR)
1310     ;
1311     else if (IS_COMPOSE (*s))
1312     dlen += rxvt_composite.expand (*s, 0);
1313     else
1314     dlen++;
1315    
1316     wchar_t *rstr = new wchar_t [dlen];
1317    
1318     // decode
1319     wchar_t *r = rstr;
1320     for (wchar_t *s = wstr; *s; s++)
1321     if (*s == NOCHAR)
1322     ;
1323     else if (IS_COMPOSE (*s))
1324     r += rxvt_composite.expand (*s, r);
1325     else
1326     *r++ = *s;
1327    
1328 root 1.42 RETVAL = taint_if (wcs2sv (rstr, r - rstr), text);
1329 root 1.33
1330     delete [] rstr;
1331     }
1332     OUTPUT:
1333     RETVAL
1334 root 1.8
1335 root 1.1 void
1336 root 1.2 rxvt_term::_resource (char *name, int index, SV *newval = 0)
1337     PPCODE:
1338     {
1339     struct resval { const char *name; int value; } rslist [] = {
1340 root 1.21 # define def(name) { # name, Rs_ ## name },
1341     # define reserve(name,count)
1342 root 1.2 # include "rsinc.h"
1343 root 1.21 # undef def
1344     # undef reserve
1345 root 1.2 };
1346    
1347     struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]);
1348    
1349     do {
1350     if (rs-- == rslist)
1351     croak ("no such resource '%s', requested", name);
1352     } while (strcmp (name, rs->name));
1353    
1354     index += rs->value;
1355    
1356     if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES))
1357     croak ("requested out-of-bound resource %s+%d,", name, index - rs->value);
1358    
1359     if (GIMME_V != G_VOID)
1360 root 1.42 XPUSHs (THIS->rs [index] ? sv_2mortal (taint (newSVpv (THIS->rs [index], 0))) : &PL_sv_undef);
1361 root 1.2
1362     if (newval)
1363     {
1364     if (SvOK (newval))
1365     {
1366     char *str = strdup (SvPVbyte_nolen (newval));
1367     THIS->rs [index] = str;
1368     THIS->allocated.push_back (str);
1369     }
1370     else
1371     THIS->rs [index] = 0;
1372     }
1373     }
1374    
1375 root 1.55 const char *
1376     rxvt_term::x_resource (const char *name)
1377     CLEANUP:
1378     SvTAINTED_on (ST (0));
1379    
1380 root 1.40 bool
1381     rxvt_term::option (U32 optval, int set = -1)
1382     CODE:
1383     {
1384     RETVAL = THIS->options & optval;
1385    
1386     if (set >= 0)
1387     {
1388     if (set)
1389     THIS->options |= optval;
1390     else
1391     THIS->options &= ~optval;
1392    
1393     switch (optval)
1394     {
1395     case Opt_skipBuiltinGlyphs:
1396     THIS->set_fonts ();
1397     THIS->scr_remap_chars ();
1398     THIS->scr_touch (true);
1399     THIS->want_refresh = 1;
1400     break;
1401    
1402     case Opt_cursorUnderline:
1403     THIS->want_refresh = 1;
1404     break;
1405    
1406     # case Opt_scrollBar_floating:
1407     # case Opt_scrollBar_right:
1408     # THIS->resize_all_windows (THIS->width, THIS->height, 1);
1409     # break;
1410     }
1411     }
1412     }
1413     OUTPUT:
1414     RETVAL
1415    
1416 root 1.50 bool
1417     rxvt_term::parse_keysym (char *keysym, char *str)
1418     CODE:
1419     RETVAL = 0 < THIS->parse_keysym (keysym, str);
1420     THIS->keyboard->register_done ();
1421     OUTPUT:
1422     RETVAL
1423    
1424 root 1.2 void
1425 root 1.46 rxvt_term::screen_cur (...)
1426 root 1.1 PROTOTYPE: $;$$
1427     ALIAS:
1428 root 1.24 screen_cur = 0
1429     selection_beg = 1
1430     selection_end = 2
1431     selection_mark = 3
1432 root 1.1 PPCODE:
1433     {
1434 root 1.24 row_col_t &rc = ix == 0 ? THIS->screen.cur
1435     : ix == 1 ? THIS->selection.beg
1436     : ix == 2 ? THIS->selection.end
1437     : THIS->selection.mark;
1438 root 1.1
1439     if (GIMME_V != G_VOID)
1440     {
1441     EXTEND (SP, 2);
1442 root 1.24 PUSHs (sv_2mortal (newSViv (rc.row)));
1443     PUSHs (sv_2mortal (newSViv (rc.col)));
1444 root 1.1 }
1445    
1446     if (items == 3)
1447     {
1448 root 1.24 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1);
1449     rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
1450 root 1.1
1451     if (ix)
1452     THIS->want_refresh = 1;
1453     }
1454     }
1455    
1456 root 1.53 char
1457     rxvt_term::cur_charset ()
1458     CODE:
1459     RETVAL = THIS->charsets [THIS->screen.charset];
1460     OUTPUT:
1461     RETVAL
1462    
1463 root 1.60 #void
1464     #rxvt_term::selection_clear ()
1465    
1466     void
1467     rxvt_term::selection_make (U32 eventtime, bool rect = false)
1468     CODE:
1469     THIS->selection.op = SELECTION_CONT;
1470     THIS->selection.rect = rect;
1471     THIS->selection_make (eventtime);
1472    
1473 root 1.1 int
1474 root 1.36 rxvt_term::selection_grab (U32 eventtime)
1475 root 1.1
1476     void
1477     rxvt_term::selection (SV *newtext = 0)
1478     PPCODE:
1479     {
1480     if (GIMME_V != G_VOID)
1481 root 1.45 XPUSHs (THIS->selection.text
1482     ? taint (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)))
1483     : &PL_sv_undef);
1484 root 1.1
1485     if (newtext)
1486     {
1487     free (THIS->selection.text);
1488    
1489     THIS->selection.text = sv2wcs (newtext);
1490     THIS->selection.len = wcslen (THIS->selection.text);
1491     }
1492     }
1493 root 1.24
1494 root 1.1 void
1495 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)
1496    
1497     void
1498     rxvt_term::scr_xor_span (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle = RS_RVid)
1499    
1500     void
1501 root 1.50 rxvt_term::scr_bell ()
1502    
1503     void
1504 root 1.25 rxvt_term::scr_add_lines (SV *string)
1505     CODE:
1506     {
1507     wchar_t *wstr = sv2wcs (string);
1508 root 1.32 THIS->scr_add_lines (wstr, wcslen (wstr));
1509 root 1.25 free (wstr);
1510     }
1511    
1512     void
1513 root 1.13 rxvt_term::tt_write (SV *octets)
1514     INIT:
1515     STRLEN len;
1516     char *str = SvPVbyte (octets, len);
1517     C_ARGS:
1518 root 1.23 str, len
1519 root 1.13
1520 root 1.28 void
1521     rxvt_term::cmd_parse (SV *octets)
1522     CODE:
1523     {
1524     STRLEN len;
1525     char *str = SvPVbyte (octets, len);
1526    
1527     char *old_cmdbuf_ptr = THIS->cmdbuf_ptr;
1528     char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1529    
1530     THIS->cmdbuf_ptr = str;
1531     THIS->cmdbuf_endp = str + len;
1532    
1533 root 1.35 rxvt_push_locale (THIS->locale);
1534 root 1.28 THIS->cmd_parse ();
1535 root 1.35 rxvt_pop_locale ();
1536 root 1.28
1537     THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1538     THIS->cmdbuf_endp = old_cmdbuf_endp;
1539     }
1540    
1541 root 1.13 SV *
1542     rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2)
1543     CODE:
1544     {
1545     overlay *o = new overlay (THIS, x, y, w, h, rstyle, border);
1546     RETVAL = newSVptr ((void *)o, "urxvt::overlay");
1547     o->self = (HV *)SvRV (RETVAL);
1548     }
1549     OUTPUT:
1550     RETVAL
1551    
1552     MODULE = urxvt PACKAGE = urxvt::overlay
1553 root 1.1
1554     void
1555 root 1.13 overlay::set (int x, int y, SV *text, SV *rend = 0)
1556 root 1.1
1557     void
1558 root 1.18 overlay::show ()
1559    
1560     void
1561     overlay::hide ()
1562    
1563     void
1564 root 1.13 overlay::DESTROY ()
1565 root 1.1
1566     MODULE = urxvt PACKAGE = urxvt::timer
1567    
1568     SV *
1569     timer::new ()
1570     CODE:
1571     timer *w = new timer;
1572 root 1.13 w->start (NOW);
1573 root 1.1 RETVAL = newSVptr ((void *)w, "urxvt::timer");
1574     w->self = (HV *)SvRV (RETVAL);
1575     OUTPUT:
1576     RETVAL
1577    
1578     timer *
1579     timer::cb (SV *cb)
1580     CODE:
1581     THIS->cb (cb);
1582     RETVAL = THIS;
1583     OUTPUT:
1584     RETVAL
1585    
1586     NV
1587     timer::at ()
1588     CODE:
1589     RETVAL = THIS->at;
1590     OUTPUT:
1591     RETVAL
1592    
1593     timer *
1594 root 1.13 timer::interval (NV interval)
1595     CODE:
1596     THIS->interval = interval;
1597     RETVAL = THIS;
1598     OUTPUT:
1599     RETVAL
1600    
1601     timer *
1602 root 1.1 timer::set (NV tstamp)
1603     CODE:
1604     THIS->set (tstamp);
1605     RETVAL = THIS;
1606     OUTPUT:
1607     RETVAL
1608    
1609     timer *
1610     timer::start (NV tstamp = THIS->at)
1611     CODE:
1612     THIS->start (tstamp);
1613     RETVAL = THIS;
1614     OUTPUT:
1615     RETVAL
1616    
1617     timer *
1618     timer::stop ()
1619     CODE:
1620     THIS->stop ();
1621     RETVAL = THIS;
1622     OUTPUT:
1623     RETVAL
1624    
1625     void
1626     timer::DESTROY ()
1627    
1628     MODULE = urxvt PACKAGE = urxvt::iow
1629    
1630     SV *
1631     iow::new ()
1632     CODE:
1633     iow *w = new iow;
1634     RETVAL = newSVptr ((void *)w, "urxvt::iow");
1635     w->self = (HV *)SvRV (RETVAL);
1636     OUTPUT:
1637     RETVAL
1638    
1639     iow *
1640     iow::cb (SV *cb)
1641     CODE:
1642     THIS->cb (cb);
1643     RETVAL = THIS;
1644     OUTPUT:
1645     RETVAL
1646    
1647     iow *
1648     iow::fd (int fd)
1649     CODE:
1650     THIS->fd = fd;
1651     RETVAL = THIS;
1652     OUTPUT:
1653     RETVAL
1654    
1655     iow *
1656     iow::events (short events)
1657     CODE:
1658     THIS->events = events;
1659     RETVAL = THIS;
1660     OUTPUT:
1661     RETVAL
1662    
1663     iow *
1664     iow::start ()
1665     CODE:
1666     THIS->start ();
1667     RETVAL = THIS;
1668     OUTPUT:
1669     RETVAL
1670    
1671     iow *
1672     iow::stop ()
1673     CODE:
1674     THIS->stop ();
1675     RETVAL = THIS;
1676     OUTPUT:
1677     RETVAL
1678    
1679     void
1680     iow::DESTROY ()
1681    
1682