Remove trailing whitespace.
[dana/urxvt.git] / src / rxvtperl.xs
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 #ifdef HAVE_SCROLLBARS
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 wchar_t *
58 sv2wcs (SV *sv)
59 {
60   STRLEN len;
61   char *str = SvPVutf8 (sv, len);
62   return rxvt_utf8towcs (str, len);
63 }
64
65 static SV *
66 wcs2sv (wchar_t *wstr, int len = -1)
67 {
68   char *str = rxvt_wcstoutf8 (wstr, len);
69
70   SV *sv = newSVpv (str, 0);
71   SvUTF8_on (sv);
72   free (str);
73
74   return sv;
75 }
76
77 static SV *
78 newSVptr (void *ptr, const char *klass)
79 {
80   HV *hv = newHV ();
81   sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
82   return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
83 }
84
85 static void
86 clearSVptr (SV *sv)
87 {
88   if (SvROK (sv))
89     sv = SvRV (sv);
90
91   hv_clear ((HV *)sv);
92   sv_unmagic (sv, PERL_MAGIC_ext);
93 }
94
95 static long
96 SvPTR (SV *sv, const char *klass)
97 {
98   if (!sv_derived_from (sv, klass))
99     croak ("object of type %s expected", klass);
100
101   MAGIC *mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
102
103   if (!mg)
104     croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
105
106   return (long)mg->mg_ptr;
107 }
108
109 #define newSVterm(term) SvREFCNT_inc ((SV *)(term)->perl.self)
110 #define SvTERM(sv) (rxvt_term *)SvPTR ((sv), "urxvt::term")
111
112 /////////////////////////////////////////////////////////////////////////////
113
114 #define SvOVERLAY(sv) (overlay *)SvPTR (sv, "urxvt::overlay")
115
116 class overlay {
117   rxvt_term *THIS;
118   AV *overlay_av;
119   int x, y, w, h;
120   int border;
121   text_t **text;
122   rend_t **rend;
123
124 public:
125   HV *self;
126
127   overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border);
128   ~overlay ();
129
130   void show ();
131   void hide ();
132
133   void swap ();
134
135   void set (int x, int y, SV *str, SV *rend);
136 };
137
138 overlay::overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border)
139 : THIS(THIS), x(x_), y(y_), w(w_), h(h_), border(border == 2), overlay_av (0)
140 {
141   if (w < 0) w = 0;
142   if (h < 0) h = 0;
143
144   if (border == 2)
145     {
146       w += 2;
147       h += 2;
148     }
149
150   text = new text_t *[h];
151   rend = new rend_t *[h];
152
153   for (int y = 0; y < h; y++)
154     {
155       text_t *tp = text[y] = new text_t[w];
156       rend_t *rp = rend[y] = new rend_t[w];
157
158       text_t t0, t1, t2;
159       rend_t r = rstyle;
160
161       if (border == 2)
162         {
163           if (y == 0)
164             t0 = 0x2554, t1 = 0x2550, t2 = 0x2557;
165           else if (y < h - 1)
166             t0 = 0x2551, t1 = 0x0020, t2 = 0x2551;
167           else
168             t0 = 0x255a, t1 = 0x2550, t2 = 0x255d;
169
170           *tp++ = t0;
171           *rp++ = r;
172
173           for (int x = w - 2; x-- > 0; )
174             {
175               *tp++ = t1;
176               *rp++ = r;
177             }
178
179           *tp = t2;
180           *rp = r;
181         }
182       else
183         for (int x = w; x-- > 0; )
184           {
185             *tp++ = 0x0020;
186             *rp++ = r;
187           }
188     }
189
190   show ();
191 }
192
193 overlay::~overlay ()
194 {
195   hide ();
196
197   for (int y = h; y--; )
198     {
199       delete [] text[y];
200       delete [] rend[y];
201     }
202
203   delete [] text;
204   delete [] rend;
205 }
206
207 void
208 overlay::show ()
209 {
210   if (overlay_av)
211     return;
212
213   overlay_av = (AV *)SvREFCNT_inc (SvRV (
214         *hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0)
215      ));
216   av_push (overlay_av, newSViv ((long)this));
217
218   THIS->want_refresh = 1;
219 }
220
221 void
222 overlay::hide ()
223 {
224   if (!overlay_av)
225     return;
226
227   int i;
228
229   for (i = AvFILL (overlay_av); i >= 0; i--)
230     if (SvIV (*av_fetch (overlay_av, i, 1)) == (long)this)
231       break;
232
233   for (; i < AvFILL (overlay_av); i++)
234     av_store (overlay_av, i, SvREFCNT_inc (*av_fetch (overlay_av, i + 1, 0)));
235
236   av_pop (overlay_av);
237
238   SvREFCNT_dec (overlay_av);
239   overlay_av = 0;
240
241   THIS->want_refresh = 1;
242 }
243
244 void overlay::swap ()
245 {
246   int ov_x = max (0, min (MOD (x, THIS->ncol), THIS->ncol - w));
247   int ov_y = max (0, min (MOD (y, THIS->nrow), THIS->nrow - h));
248
249   int ov_w = min (w, THIS->ncol - ov_x);
250   int ov_h = min (h, THIS->nrow - ov_y);
251
252   for (int y = ov_h; y--; )
253     {
254       text_t *t1 = text [y];
255       rend_t *r1 = rend [y];
256
257       text_t *t2 = ROW(y + ov_y + THIS->view_start).t + ov_x;
258       rend_t *r2 = ROW(y + ov_y + THIS->view_start).r + ov_x;
259
260       for (int x = ov_w; x--; )
261         {
262           text_t t = *t1; *t1++ = *t2; *t2++ = t;
263           rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t));
264         }
265     }
266
267 }
268
269 void overlay::set (int x, int y, SV *text, SV *rend)
270 {
271   x += border;
272   y += border;
273
274   if (!IN_RANGE_EXC (y, 0, h - border))
275     return;
276
277   wchar_t *wtext = sv2wcs (text);
278
279   for (int col = min (wcslen (wtext), w - x - border); col--; )
280     this->text [y][x + col] = wtext [col];
281
282   free (wtext);
283
284   if (rend)
285     {
286       if (!SvROK (rend) || SvTYPE (SvRV (rend)) != SVt_PVAV)
287         croak ("rend must be arrayref");
288
289       AV *av = (AV *)SvRV (rend);
290
291       for (int col = min (AvFILL (av) + 1, w - x - border); col--; )
292         this->rend [y][x + col] = SvIV (*av_fetch (av, col, 1));
293     }
294
295   THIS->want_refresh = 1;
296 }
297
298 /////////////////////////////////////////////////////////////////////////////
299
300 #define IOM_CLASS "urxvt"
301 #define IOM_WARN rxvt_warn
302 #include <iom_perl.h>
303
304 /////////////////////////////////////////////////////////////////////////////
305
306 struct rxvt_perl_interp rxvt_perl;
307
308 static PerlInterpreter *perl;
309
310 rxvt_perl_interp::~rxvt_perl_interp ()
311 {
312   if (perl)
313     {
314       perl_destruct (perl);
315       perl_free (perl);
316     }
317 }
318
319 void
320 rxvt_perl_interp::init (rxvt_term *term)
321 {
322   if (!perl)
323     {
324       rxvt_push_locale (""); // perl init destroys current locale
325
326       perl_environ = rxvt_environ;
327       swap (perl_environ, environ);
328
329       char *argv[] = {
330         "",
331         "-e"
332         "BEGIN {"
333         "   urxvt->bootstrap;"
334         "   unshift @INC, '" LIBDIR "';"
335         "}"
336         ""
337         "use urxvt;"
338       };
339
340       perl = perl_alloc ();
341       perl_construct (perl);
342
343       if (perl_parse (perl, xs_init, 2, argv, (char **)NULL)
344           || perl_run (perl))
345         {
346           rxvt_warn ("unable to initialize perl-interpreter, continuing without.\n");
347
348           perl_destruct (perl);
349           perl_free (perl);
350           perl = 0;
351         }
352
353       swap (perl_environ, environ);
354
355       rxvt_pop_locale ();
356     }
357
358   if (perl)
359     {
360       // runs outside of perls ENV
361       term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
362       hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newAV ()), 0);
363     }
364 }
365
366 static void
367 ungrab (rxvt_term *THIS)
368 {
369   if (THIS->perl.grabtime)
370     {
371       XUngrabKeyboard (THIS->dpy, THIS->perl.grabtime);
372       XUngrabPointer  (THIS->dpy, THIS->perl.grabtime);
373       THIS->perl.grabtime = 0;
374     }
375 }
376
377 bool
378 rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
379 {
380   if (!perl || !term->perl.self)
381     return false;
382
383   // pre-handling of some events
384   if (htype == HOOK_REFRESH_END)
385     {
386       AV *av = (AV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
387
388       for (int i = 0; i <= AvFILL (av); i++)
389         ((overlay *)SvIV (*av_fetch (av, i, 0)))->swap ();
390     }
391
392   swap (perl_environ, environ);
393
394   bool event_consumed;
395
396   if (htype == HOOK_INIT || htype == HOOK_DESTROY // must be called always
397       || term->perl.should_invoke [htype])
398     try
399       {
400         dSP;
401         va_list ap;
402
403         va_start (ap, htype);
404
405         ENTER;
406         SAVETMPS;
407
408         PUSHMARK (SP);
409
410         XPUSHs (sv_2mortal (newSVterm (term)));
411         XPUSHs (sv_2mortal (newSViv (htype)));
412
413         for (;;) {
414           data_type dt = (data_type)va_arg (ap, int);
415
416           switch (dt)
417             {
418               case DT_INT:
419                 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int))));
420                 break;
421
422               case DT_LONG:
423                 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
424                 break;
425
426               case DT_STR:
427                 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
428                 break;
429
430               case DT_STR_LEN:
431                 {
432                   char *str = va_arg (ap, char *);
433                   int len   = va_arg (ap, int);
434
435                   XPUSHs (sv_2mortal (newSVpvn (str, len)));
436                 }
437                 break;
438
439               case DT_WCS_LEN:
440                 {
441                   wchar_t *wstr = va_arg (ap, wchar_t *);
442                   int wlen      = va_arg (ap, int);
443
444                   XPUSHs (sv_2mortal (wcs2sv (wstr, wlen)));
445                 }
446                break;
447
448               case DT_LCS_LEN:
449                 {
450                   long *lstr = va_arg (ap, long *);
451                   int llen   = va_arg (ap, int);
452
453                   XPUSHs (sv_2mortal (newSVpvn ((char *)lstr, llen * sizeof (long))));
454                 }
455                break;
456
457               case DT_XEVENT:
458                 {
459                   XEvent *xe = va_arg (ap, XEvent *);
460                   HV *hv = newHV ();
461
462 #                 define set(name, sv) hv_store (hv, # name,  sizeof (# name) - 1, sv, 0)
463 #                 define setiv(name, val) hv_store (hv, # name,  sizeof (# name) - 1, newSViv (val), 0)
464 #                 define setuv(name, val) hv_store (hv, # name,  sizeof (# name) - 1, newSVuv (val), 0)
465 #                 undef set
466
467                   setiv (type,       xe->type);
468                   setiv (send_event, xe->xany.send_event);
469                   setiv (serial,     xe->xany.serial);
470
471                   switch (xe->type)
472                     {
473                       case KeyPress:
474                       case KeyRelease:
475                       case ButtonPress:
476                       case ButtonRelease:
477                       case MotionNotify:
478                         setuv (window,    xe->xmotion.window);
479                         setuv (root,      xe->xmotion.root);
480                         setuv (subwindow, xe->xmotion.subwindow);
481                         setuv (time,      xe->xmotion.time);
482                         setiv (x,         xe->xmotion.x);
483                         setiv (y,         xe->xmotion.y);
484                         setiv (row,       xe->xmotion.y / term->fheight + term->view_start);
485                         setiv (col,       xe->xmotion.x / term->fwidth);
486                         setiv (x_root,    xe->xmotion.x_root);
487                         setiv (y_root,    xe->xmotion.y_root);
488                         setuv (state,     xe->xmotion.state);
489
490                         switch (xe->type)
491                           {
492                             case KeyPress:
493                             case KeyRelease:
494                               setuv (keycode, xe->xkey.keycode);
495                               break;
496
497                             case ButtonPress:
498                             case ButtonRelease:
499                               setuv (button,  xe->xbutton.button);
500                               break;
501
502                             case MotionNotify:
503                               setiv (is_hint, xe->xmotion.is_hint);
504                               break;
505                           }
506
507                         break;
508
509                       case MapNotify:
510                       case UnmapNotify:
511                       case ConfigureNotify:
512                         setuv (event,  xe->xconfigure.event);
513                         setuv (window, xe->xconfigure.window);
514
515                         switch (xe->type)
516                           {
517                             case ConfigureNotify:
518                               setiv (x,      xe->xconfigure.x);
519                               setiv (y,      xe->xconfigure.y);
520                               setiv (width,  xe->xconfigure.width);
521                               setiv (height, xe->xconfigure.height);
522                               setuv (above,  xe->xconfigure.above);
523                               break;
524                           }
525
526                         break;
527
528                       case PropertyNotify:
529                         setuv (window,       xe->xproperty.window);
530                         setuv (atom,         xe->xproperty.atom);
531                         setuv (time,         xe->xproperty.time);
532                         setiv (state,        xe->xproperty.state);
533                         break;
534
535                       case ClientMessage:
536                         setuv (window,       xe->xclient.window);
537                         setuv (message_type, xe->xclient.message_type);
538                         setuv (format,       xe->xclient.format);
539                         setuv (l0,           xe->xclient.data.l[0]);
540                         setuv (l1,           xe->xclient.data.l[1]);
541                         setuv (l2,           xe->xclient.data.l[2]);
542                         setuv (l3,           xe->xclient.data.l[3]);
543                         setuv (l4,           xe->xclient.data.l[4]);
544                         break;
545                     }
546
547                   XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
548                 }
549                 break;
550
551               case DT_END:
552                 goto call;
553
554               default:
555                 rxvt_fatal ("FATAL: unable to pass data type %d\n", dt);
556             }
557         }
558
559       call:
560         va_end (ap);
561
562         PUTBACK;
563         int count = call_pv ("urxvt::invoke", G_ARRAY | G_EVAL);
564         SPAGAIN;
565
566         if (count)
567           {
568             SV *status = POPs;
569             count = SvTRUE (status);
570           }
571
572         PUTBACK;
573         FREETMPS;
574         LEAVE;
575
576         if (SvTRUE (ERRSV))
577           {
578             rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
579             ungrab (term); // better lose the grab than the session
580           }
581
582         event_consumed = !!count;
583       }
584     catch (...)
585       {
586         swap (perl_environ, environ);
587         throw;
588       }
589   else
590     event_consumed = false;
591
592   // post-handling of some events
593   if (htype == HOOK_REFRESH_BEGIN)
594     {
595       AV *av = (AV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
596
597       for (int i = AvFILL (av); i >= 0; i--)
598         ((overlay *)SvIV (*av_fetch (av, i, 0)))->swap ();
599     }
600   else if (htype == HOOK_DESTROY)
601     {
602       clearSVptr ((SV *)term->perl.self);
603       SvREFCNT_dec ((SV *)term->perl.self);
604
605       // don't allow further calls
606       term->perl.self = 0;
607     }
608
609   swap (perl_environ, environ);
610
611   return event_consumed;
612 }
613
614 /////////////////////////////////////////////////////////////////////////////
615
616 MODULE = urxvt             PACKAGE = urxvt
617
618 PROTOTYPES: ENABLE
619
620 BOOT:
621 {
622   sv_setsv (get_sv ("urxvt::LIBDIR",   1), newSVpvn (LIBDIR,   sizeof (LIBDIR)   - 1));
623   sv_setsv (get_sv ("urxvt::RESNAME",  1), newSVpvn (RESNAME,  sizeof (RESNAME)  - 1));
624   sv_setsv (get_sv ("urxvt::RESCLASS", 1), newSVpvn (RESCLASS, sizeof (RESCLASS) - 1));
625   sv_setsv (get_sv ("urxvt::RXVTNAME", 1), newSVpvn (RXVTNAME, sizeof (RXVTNAME) - 1));
626
627   AV *hookname = get_av ("urxvt::HOOKNAME", 1);
628 # define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
629 # include "hookinc.h"
630 # undef def
631
632   HV *option = get_hv ("urxvt::OPTION", 1);
633 # define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
634 # define nodef(name)
635 # include "optinc.h"
636 # undef nodef
637 # undef def
638
639   HV *stash = gv_stashpv ("urxvt", 1);
640   static const struct {
641     const char *name;
642     IV iv;
643   } *civ, const_iv[] = {
644 #   define const_iv(name) { # name, (IV)name }
645     const_iv (DEFAULT_RSTYLE),
646     const_iv (OVERLAY_RSTYLE),
647     const_iv (RS_Bold),
648     const_iv (RS_Italic),
649     const_iv (RS_Blink),
650     const_iv (RS_RVid),
651     const_iv (RS_Uline),
652
653     const_iv (CurrentTime),
654     const_iv (ShiftMask),
655     const_iv (LockMask),
656     const_iv (ControlMask),
657     const_iv (Mod1Mask),
658     const_iv (Mod2Mask),
659     const_iv (Mod3Mask),
660     const_iv (Mod4Mask),
661     const_iv (Mod5Mask),
662     const_iv (Button1Mask),
663     const_iv (Button2Mask),
664     const_iv (Button3Mask),
665     const_iv (Button4Mask),
666     const_iv (Button5Mask),
667     const_iv (AnyModifier),
668
669     const_iv (NoSymbol),
670     const_iv (GrabModeSync),
671     const_iv (GrabModeAsync),
672
673     const_iv (NoEventMask),
674     const_iv (KeyPressMask),
675     const_iv (KeyReleaseMask),
676     const_iv (ButtonPressMask),
677     const_iv (ButtonReleaseMask),
678     const_iv (EnterWindowMask),
679     const_iv (LeaveWindowMask),
680     const_iv (PointerMotionMask),
681     const_iv (PointerMotionHintMask),
682     const_iv (Button1MotionMask),
683     const_iv (Button2MotionMask),
684     const_iv (Button3MotionMask),
685     const_iv (Button4MotionMask),
686     const_iv (Button5MotionMask),
687     const_iv (ButtonMotionMask),
688     const_iv (KeymapStateMask),
689     const_iv (ExposureMask),
690     const_iv (VisibilityChangeMask),
691     const_iv (StructureNotifyMask),
692     const_iv (ResizeRedirectMask),
693     const_iv (SubstructureNotifyMask),
694     const_iv (SubstructureRedirectMask),
695     const_iv (FocusChangeMask),
696     const_iv (PropertyChangeMask),
697     const_iv (ColormapChangeMask),
698     const_iv (OwnerGrabButtonMask),
699
700     const_iv (KeyPress),
701     const_iv (KeyRelease),
702     const_iv (ButtonPress),
703     const_iv (ButtonRelease),
704     const_iv (MotionNotify),
705     const_iv (EnterNotify),
706     const_iv (LeaveNotify),
707     const_iv (FocusIn),
708     const_iv (FocusOut),
709     const_iv (KeymapNotify),
710     const_iv (Expose),
711     const_iv (GraphicsExpose),
712     const_iv (NoExpose),
713     const_iv (VisibilityNotify),
714     const_iv (CreateNotify),
715     const_iv (DestroyNotify),
716     const_iv (UnmapNotify),
717     const_iv (MapNotify),
718     const_iv (MapRequest),
719     const_iv (ReparentNotify),
720     const_iv (ConfigureNotify),
721     const_iv (ConfigureRequest),
722     const_iv (GravityNotify),
723     const_iv (ResizeRequest),
724     const_iv (CirculateNotify),
725     const_iv (CirculateRequest),
726     const_iv (PropertyNotify),
727     const_iv (SelectionClear),
728     const_iv (SelectionRequest),
729     const_iv (SelectionNotify),
730     const_iv (ColormapNotify),
731     const_iv (ClientMessage),
732     const_iv (MappingNotify),
733 #   if ENABLE_XIM_ONTHESPOT
734     const_iv (XIMReverse),
735     const_iv (XIMUnderline),
736     const_iv (XIMHighlight),
737     const_iv (XIMPrimary),
738     const_iv (XIMSecondary),
739     const_iv (XIMTertiary),
740     const_iv (XIMVisibleToForward),
741     const_iv (XIMVisibleToBackword),
742     const_iv (XIMVisibleToCenter),
743 #   if 0
744     const_iv (XIMForwardChar),
745     const_iv (XIMBackwardChar),
746     const_iv (XIMForwardWord),
747     const_iv (XIMBackwardWord),
748     const_iv (XIMCaretUp),
749     const_iv (XIMCaretDown),
750     const_iv (XIMNextLine),
751     const_iv (XIMPreviousLine),
752     const_iv (XIMLineStart),
753     const_iv (XIMLineEnd),
754     const_iv (XIMAbsolutePosition),
755     const_iv (XIMDontChange),
756 #   endif
757 #   endif
758   };
759
760   for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); 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 void
775 _exit (int status)
776
777 NV
778 NOW ()
779         CODE:
780         RETVAL = NOW;
781         OUTPUT:
782         RETVAL
783
784 int
785 GET_BASEFG (int rend)
786         CODE:
787         RETVAL = GET_BASEFG (rend);
788         OUTPUT:
789         RETVAL
790
791 int
792 GET_BASEBG (int rend)
793         CODE:
794         RETVAL = GET_BASEBG (rend);
795         OUTPUT:
796         RETVAL
797
798 int
799 SET_FGCOLOR (int rend, int new_color)
800         CODE:
801         RETVAL = SET_FGCOLOR (rend, clamp (new_color, 0, TOTAL_COLORS - 1));
802         OUTPUT:
803         RETVAL
804
805 int
806 SET_BGCOLOR (int rend, int new_color)
807         CODE:
808         RETVAL = SET_BGCOLOR (rend, clamp (new_color, 0, TOTAL_COLORS - 1));
809         OUTPUT:
810         RETVAL
811
812 int
813 GET_CUSTOM (int rend)
814         CODE:
815         RETVAL = (rend & RS_customMask) >> RS_customShift;
816         OUTPUT:
817         RETVAL
818
819 int
820 SET_CUSTOM (int rend, int new_value)
821         CODE:
822 {
823         if (!IN_RANGE_EXC (new_value, 0, RS_customCount))
824           croak ("custom value out of range, must be 0..%d", RS_customCount - 1);
825
826         RETVAL = (rend & ~RS_customMask)
827                | ((new_value << RS_customShift) & RS_customMask);
828 }
829         OUTPUT:
830         RETVAL
831
832 void
833 termlist ()
834         PPCODE:
835 {
836         EXTEND (SP, rxvt_term::termlist.size ());
837
838         for (rxvt_term **t = rxvt_term::termlist.begin (); t < rxvt_term::termlist.end (); t++)
839           if ((*t)->perl.self)
840             PUSHs (sv_2mortal (newSVterm (*t)));
841 }
842
843 MODULE = urxvt             PACKAGE = urxvt::term
844
845 SV *
846 _new (AV *env, AV *arg)
847         CODE:
848 {
849         rxvt_term *term = new rxvt_term;
850
851         stringvec *argv = new stringvec;
852         stringvec *envv = new stringvec;
853
854         for (int i = 0; i <= AvFILL (arg); i++)
855           argv->push_back (strdup (SvPVbyte_nolen (*av_fetch (arg, i, 1))));
856
857         for (int i = AvFILL (env) + 1; i--; )
858           envv->push_back (strdup (SvPVbyte_nolen (*av_fetch (env, i, 1))));
859
860         envv->push_back (0);
861
862         bool success;
863
864         try
865           {
866             success = term->init (argv, envv);
867           }
868         catch (const class rxvt_failure_exception &e)
869           {
870             success = false;
871           }
872
873         if (!success)
874           {
875             term->destroy ();
876             croak ("error while initializing new terminal instance");
877           }
878
879         RETVAL = term && term->perl.self
880                  ? newSVterm (term) : &PL_sv_undef;
881 }
882         OUTPUT:
883         RETVAL
884
885 void
886 rxvt_term::destroy ()
887
888 void
889 rxvt_term::set_should_invoke (int htype, int inc)
890         CODE:
891         THIS->perl.should_invoke [htype] += inc;
892
893 int
894 rxvt_term::grab_button (int button, U32 modifiers, Window window = THIS->vt)
895         CODE:
896         RETVAL = XGrabButton (THIS->dpy, button, modifiers, window, 1,
897                               ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
898                               GrabModeSync, GrabModeSync, None, GRAB_CURSOR);
899         OUTPUT: RETVAL
900
901 int
902 rxvt_term::ungrab_button (int button, U32 modifiers, Window window = THIS->vt)
903         CODE:
904         RETVAL = XUngrabButton (THIS->dpy, button, modifiers, window);
905         OUTPUT: RETVAL
906
907 void
908 rxvt_term::XGrabKey (int keycode, U32 modifiers, Window window = THIS->vt, \
909                      int owner_events = 1, int pointer_mode = GrabModeAsync, int keyboard_mode = GrabModeAsync)
910         CODE:
911         XGrabKey (THIS->dpy, keycode, modifiers, window, owner_events, pointer_mode, keyboard_mode);
912
913 void
914 rxvt_term::XUngrabKey (int keycode, U32 modifiers, Window window = THIS->vt)
915         CODE:
916         XUngrabKey (THIS->dpy, keycode, modifiers, window);
917
918 void
919 rxvt_term::XUngrabKeyboard (Time eventtime)
920         CODE:
921         XUngrabKeyboard (THIS->dpy, eventtime);
922
923 bool
924 rxvt_term::grab (Time eventtime, int sync = 0)
925         CODE:
926 {
927         int mode = sync ? GrabModeSync : GrabModeAsync;
928
929         THIS->perl.grabtime = 0;
930
931         if (!XGrabPointer (THIS->dpy, THIS->vt, 0,
932                            ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
933                            mode, mode, None, GRAB_CURSOR, eventtime))
934           if (!XGrabKeyboard (THIS->dpy, THIS->vt, 0, mode, mode, eventtime))
935             THIS->perl.grabtime = eventtime;
936           else
937             XUngrabPointer (THIS->dpy, eventtime);
938
939         RETVAL = !!THIS->perl.grabtime;
940 }
941         OUTPUT:
942         RETVAL
943
944 void
945 rxvt_term::allow_events_async ()
946         CODE:
947         XAllowEvents (THIS->dpy, AsyncBoth,      THIS->perl.grabtime);
948
949 void
950 rxvt_term::allow_events_sync ()
951         CODE:
952         XAllowEvents (THIS->dpy, SyncBoth,       THIS->perl.grabtime);
953
954 void
955 rxvt_term::allow_events_replay ()
956         CODE:
957         XAllowEvents (THIS->dpy, ReplayPointer,  THIS->perl.grabtime);
958         XAllowEvents (THIS->dpy, ReplayKeyboard, THIS->perl.grabtime);
959
960 void
961 rxvt_term::ungrab ()
962         CODE:
963         ungrab (THIS);
964
965 int
966 rxvt_term::XStringToKeysym (char *string)
967         CODE:
968         RETVAL = XStringToKeysym (string);
969         OUTPUT: RETVAL
970
971 char *
972 rxvt_term::XKeysymToString (int sym)
973         CODE:
974         RETVAL = XKeysymToString (sym);
975         OUTPUT: RETVAL
976
977 int
978 rxvt_term::XKeysymToKeycode (int sym)
979         CODE:
980         RETVAL = XKeysymToKeycode (THIS->dpy, sym);
981         OUTPUT: RETVAL
982
983 int
984 rxvt_term::XKeycodeToKeysym (int code, int index)
985         CODE:
986         RETVAL = XKeycodeToKeysym (THIS->dpy, code, index);
987         OUTPUT: RETVAL
988
989 int
990 rxvt_term::strwidth (SV *str)
991         CODE:
992 {
993         wchar_t *wstr = sv2wcs (str);
994
995         rxvt_push_locale (THIS->locale);
996         RETVAL = 0;
997         for (wchar_t *wc = wstr; *wc; wc++)
998           {
999             int w = WCWIDTH (*wc);
1000
1001             if (w)
1002               RETVAL += max (w, 1);
1003           }
1004         rxvt_pop_locale ();
1005
1006         free (wstr);
1007 }
1008         OUTPUT:
1009         RETVAL
1010
1011 SV *
1012 rxvt_term::locale_encode (SV *str)
1013         CODE:
1014 {
1015         wchar_t *wstr = sv2wcs (str);
1016
1017         rxvt_push_locale (THIS->locale);
1018         char *mbstr = rxvt_wcstombs (wstr);
1019         rxvt_pop_locale ();
1020
1021         free (wstr);
1022
1023         RETVAL = newSVpv (mbstr, 0);
1024         free (mbstr);
1025 }
1026         OUTPUT:
1027         RETVAL
1028
1029 SV *
1030 rxvt_term::locale_decode (SV *octets)
1031         CODE:
1032 {
1033         STRLEN len;
1034         char *data = SvPVbyte (octets, len);
1035
1036         rxvt_push_locale (THIS->locale);
1037         wchar_t *wstr = rxvt_mbstowcs (data, len);
1038         rxvt_pop_locale ();
1039
1040         RETVAL = wcs2sv (wstr);
1041         free (wstr);
1042 }
1043         OUTPUT:
1044         RETVAL
1045
1046 char *
1047 rxvt_term::locale ()
1048         CODE:
1049         RETVAL = THIS->locale;
1050         OUTPUT:
1051         RETVAL
1052
1053 #define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
1054
1055 #define TERM_OFFSET_width      TERM_OFFSET(width)
1056 #define TERM_OFFSET_height     TERM_OFFSET(height)
1057 #define TERM_OFFSET_fwidth     TERM_OFFSET(fwidth)
1058 #define TERM_OFFSET_fheight    TERM_OFFSET(fheight)
1059 #define TERM_OFFSET_fbase      TERM_OFFSET(fbase)
1060 #define TERM_OFFSET_nrow       TERM_OFFSET(nrow)
1061 #define TERM_OFFSET_ncol       TERM_OFFSET(ncol)
1062 #define TERM_OFFSET_focus      TERM_OFFSET(focus)
1063 #define TERM_OFFSET_mapped     TERM_OFFSET(mapped)
1064 #define TERM_OFFSET_int_bwidth TERM_OFFSET(int_bwidth)
1065 #define TERM_OFFSET_ext_bwidth TERM_OFFSET(ext_bwidth)
1066 #define TERM_OFFSET_lineSpace  TERM_OFFSET(lineSpace)
1067 #define TERM_OFFSET_saveLines  TERM_OFFSET(saveLines)
1068 #define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
1069 #define TERM_OFFSET_top_row    TERM_OFFSET(top_row)
1070
1071 int
1072 rxvt_term::width ()
1073         ALIAS:
1074            width      = TERM_OFFSET_width
1075            height     = TERM_OFFSET_height
1076            fwidth     = TERM_OFFSET_fwidth
1077            fheight    = TERM_OFFSET_fheight
1078            fbase      = TERM_OFFSET_fbase
1079            nrow       = TERM_OFFSET_nrow
1080            ncol       = TERM_OFFSET_ncol
1081            focus      = TERM_OFFSET_focus
1082            mapped     = TERM_OFFSET_mapped
1083            int_bwidth = TERM_OFFSET_int_bwidth
1084            ext_bwidth = TERM_OFFSET_ext_bwidth
1085            lineSpace  = TERM_OFFSET_lineSpace
1086            saveLines  = TERM_OFFSET_saveLines
1087            total_rows = TERM_OFFSET_total_rows
1088            top_row    = TERM_OFFSET_top_row
1089         CODE:
1090         RETVAL = *(int *)((char *)THIS + ix);
1091         OUTPUT:
1092         RETVAL
1093
1094 unsigned int
1095 rxvt_term::ModLevel3Mask ()
1096         ALIAS:
1097            ModLevel3Mask  = 0
1098            ModMetaMask    = 1
1099            ModNumLockMask = 2
1100            current_screen = 3
1101            hidden_cursor  = 4
1102         CODE:
1103         switch (ix)
1104           {
1105             case 0: RETVAL = THIS->ModLevel3Mask;  break;
1106             case 1: RETVAL = THIS->ModMetaMask;    break;
1107             case 2: RETVAL = THIS->ModNumLockMask; break;
1108             case 3: RETVAL = THIS->current_screen; break;
1109             case 4: RETVAL = THIS->hidden_cursor;  break;
1110           }
1111         OUTPUT:
1112         RETVAL
1113
1114 char *
1115 rxvt_term::display_id ()
1116         ALIAS:
1117            display_id = 0
1118            locale     = 1
1119         CODE:
1120         switch (ix)
1121           {
1122             case 0: RETVAL = THIS->display->id; break;
1123             case 1: RETVAL = THIS->locale;      break;
1124           }
1125         OUTPUT:
1126         RETVAL
1127
1128 SV *
1129 rxvt_term::envv ()
1130         ALIAS:
1131         argv = 1
1132         PPCODE:
1133 {
1134         stringvec *vec = ix ? THIS->argv : THIS->envv;
1135
1136         EXTEND (SP, vec->size ());
1137
1138         for (char **i = vec->begin (); i != vec->end (); ++i)
1139           if (*i)
1140             PUSHs (sv_2mortal (newSVpv (*i, 0)));
1141 }
1142
1143 int
1144 rxvt_term::pty_ev_events (int events = EVENT_UNDEF)
1145         CODE:
1146         RETVAL = THIS->pty_ev.events;
1147         if (events != EVENT_UNDEF)
1148           THIS->pty_ev.set (events);
1149         OUTPUT:
1150         RETVAL
1151
1152 int
1153 rxvt_term::pty_fd ()
1154         CODE:
1155         RETVAL = THIS->pty->pty;
1156         OUTPUT:
1157         RETVAL
1158
1159 Window
1160 rxvt_term::parent ()
1161         CODE:
1162         RETVAL = THIS->parent [0];
1163         OUTPUT:
1164         RETVAL
1165
1166 Window
1167 rxvt_term::vt ()
1168         CODE:
1169         RETVAL = THIS->vt;
1170         OUTPUT:
1171         RETVAL
1172
1173 void
1174 rxvt_term::vt_emask_add (U32 emask)
1175         CODE:
1176         THIS->vt_emask_perl |= emask;
1177         THIS->vt_select_input ();
1178
1179 U32
1180 rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
1181         CODE:
1182         RETVAL = THIS->rstyle;
1183         THIS->rstyle = new_rstyle;
1184         OUTPUT:
1185         RETVAL
1186
1187 int
1188 rxvt_term::view_start (int newval = 1)
1189         PROTOTYPE: $;$
1190         CODE:
1191 {
1192         RETVAL = THIS->view_start;
1193
1194         if (newval <= 0)
1195           THIS->scr_changeview (max (newval, THIS->top_row));
1196 }
1197         OUTPUT:
1198         RETVAL
1199
1200 void
1201 rxvt_term::focus_in ()
1202
1203 void
1204 rxvt_term::focus_out ()
1205
1206 void
1207 rxvt_term::key_press (unsigned int state, unsigned int keycode, Time time = CurrentTime)
1208         ALIAS:
1209            key_release = 1
1210         CODE:
1211 {
1212         XKeyEvent xkey;
1213
1214         memset (&xkey, 0, sizeof (xkey));
1215
1216         xkey.time      = time;
1217         xkey.state     = state;
1218         xkey.keycode   = keycode;
1219
1220         xkey.type      = ix ? KeyRelease : KeyPress;
1221         xkey.display   = THIS->dpy;
1222         xkey.window    = THIS->vt;
1223         xkey.root      = THIS->display->root;
1224         xkey.subwindow = THIS->vt;
1225
1226         if (ix)
1227           THIS->key_release (xkey);
1228         else
1229           THIS->key_press (xkey);
1230 }
1231
1232 void
1233 rxvt_term::want_refresh ()
1234         CODE:
1235         THIS->want_refresh = 1;
1236
1237 void
1238 rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
1239         PPCODE:
1240 {
1241         if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
1242           XSRETURN_EMPTY;
1243
1244         line_t &l = ROW(row_number);
1245
1246         if (GIMME_V != G_VOID)
1247           {
1248             wchar_t *wstr = rxvt_temp_buf<wchar_t> (THIS->ncol);
1249
1250             for (int col = 0; col < THIS->ncol; col++)
1251               wstr [col] = l.t [col];
1252
1253             XPUSHs (sv_2mortal (wcs2sv (wstr, THIS->ncol)));
1254           }
1255
1256         if (new_text)
1257           {
1258             wchar_t *wstr = sv2wcs (new_text);
1259
1260             int len = min (wcslen (wstr) - start_ofs, max_len);
1261
1262             if (start_col < 0 || start_col + len > THIS->ncol)
1263               {
1264                 free (wstr);
1265                 croak ("new_text extends beyond horizontal margins");
1266               }
1267
1268             for (int col = start_col; col < start_col + len; col++)
1269               {
1270                 l.t [col] = wstr [start_ofs + col - start_col];
1271                 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col]));
1272               }
1273
1274             free (wstr);
1275           }
1276 }
1277
1278 void
1279 rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
1280         PPCODE:
1281 {
1282         if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
1283           XSRETURN_EMPTY;
1284
1285         line_t &l = ROW(row_number);
1286
1287         if (GIMME_V != G_VOID)
1288           {
1289             AV *av = newAV ();
1290
1291             av_extend (av, THIS->ncol - 1);
1292             for (int col = 0; col < THIS->ncol; col++)
1293               av_store (av, col, newSViv (l.r [col]));
1294
1295             XPUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
1296           }
1297
1298         if (new_rend)
1299           {
1300             if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV)
1301               croak ("new_rend must be arrayref");
1302
1303             AV *av = (AV *)SvRV (new_rend);
1304             int len = min (AvFILL (av) + 1 - start_ofs, max_len);
1305
1306             if (start_col < 0 || start_col + len > THIS->ncol)
1307               croak ("new_rend array extends beyond horizontal margins");
1308
1309             for (int col = start_col; col < start_col + len; col++)
1310               {
1311                 rend_t r = SvIV (*av_fetch (av, start_ofs + col - start_col, 1)) & ~RS_fontMask;
1312
1313                 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col]));
1314               }
1315           }
1316 }
1317
1318 int
1319 rxvt_term::ROW_l (int row_number, int new_length = -1)
1320         CODE:
1321 {
1322         if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
1323           XSRETURN_EMPTY;
1324
1325         line_t &l = ROW(row_number);
1326         RETVAL = l.l;
1327
1328         if (new_length >= 0)
1329           l.l = new_length;
1330 }
1331         OUTPUT:
1332         RETVAL
1333
1334 bool
1335 rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
1336         CODE:
1337 {
1338         if (!IN_RANGE_EXC (row_number, THIS->top_row, THIS->nrow))
1339           XSRETURN_EMPTY;
1340
1341         line_t &l = ROW(row_number);
1342         RETVAL = l.is_longer ();
1343
1344         if (new_is_longer >= 0)
1345           l.is_longer (new_is_longer);
1346 }
1347         OUTPUT:
1348         RETVAL
1349
1350 SV *
1351 rxvt_term::special_encode (SV *string)
1352         CODE:
1353 {
1354         wchar_t *wstr = sv2wcs (string);
1355         int wlen = wcslen (wstr);
1356         wchar_t *rstr = rxvt_temp_buf<wchar_t> (wlen * 2); // cannot become longer
1357
1358         rxvt_push_locale (THIS->locale);
1359
1360         wchar_t *r = rstr;
1361         for (wchar_t *s = wstr; *s; s++)
1362           {
1363             int w = WCWIDTH (*s);
1364
1365             if (w == 0)
1366               {
1367                 if (r == rstr)
1368                   croak ("leading combining character unencodable");
1369
1370                 unicode_t n = rxvt_compose (r[-1], *s);
1371                 if (n == NOCHAR)
1372                   n = rxvt_composite.compose (r[-1], *s);
1373
1374                 r[-1] = n;
1375               }
1376 #if !UNICODE_3
1377             else if (*s >= 0x10000)
1378               *r++ = rxvt_composite.compose (*s);
1379 #endif
1380             else
1381               *r++ = *s;
1382
1383             // the *2 above only allows wcwidth <= 2
1384             if (w > 1)
1385               *r++ = NOCHAR;
1386           }
1387
1388         rxvt_pop_locale ();
1389
1390         RETVAL = wcs2sv (rstr, r - rstr);
1391 }
1392         OUTPUT:
1393         RETVAL
1394
1395 SV *
1396 rxvt_term::special_decode (SV *text)
1397         CODE:
1398 {
1399         wchar_t *wstr = sv2wcs (text);
1400         int dlen = 0;
1401
1402         // find length
1403         for (wchar_t *s = wstr; *s; s++)
1404           if (*s == NOCHAR)
1405             ;
1406           else if (IS_COMPOSE (*s))
1407             dlen += rxvt_composite.expand (*s, 0);
1408           else
1409             dlen++;
1410
1411         wchar_t *rstr = rxvt_temp_buf<wchar_t> (dlen);
1412
1413         // decode
1414         wchar_t *r = rstr;
1415         for (wchar_t *s = wstr; *s; s++)
1416           if (*s == NOCHAR)
1417             ;
1418           else if (IS_COMPOSE (*s))
1419             r += rxvt_composite.expand (*s, r);
1420           else
1421             *r++ = *s;
1422
1423         RETVAL = wcs2sv (rstr, r - rstr);
1424 }
1425         OUTPUT:
1426         RETVAL
1427
1428 void
1429 rxvt_term::_resource (char *name, int index, SV *newval = 0)
1430         PPCODE:
1431 {
1432         static const struct resval { const char *name; int value; } *rs, rslist [] = {
1433 #         define def(name) { # name, Rs_ ## name },
1434 #         define reserve(name,count)
1435 #         include "rsinc.h"
1436 #         undef def
1437 #         undef reserve
1438         };
1439
1440         rs = rslist + sizeof (rslist) / sizeof (rslist [0]);
1441
1442         do {
1443           if (rs-- == rslist)
1444             croak ("no such resource '%s', requested", name);
1445         } while (strcmp (name, rs->name));
1446
1447         index += rs->value;
1448
1449         if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES))
1450           croak ("requested out-of-bound resource %s+%d,", name, index - rs->value);
1451
1452         if (GIMME_V != G_VOID)
1453           XPUSHs (THIS->rs [index] ? sv_2mortal (newSVpv (THIS->rs [index], 0)) : &PL_sv_undef);
1454
1455         if (newval)
1456           {
1457             if (SvOK (newval))
1458               {
1459                 char *str = strdup (SvPVbyte_nolen (newval));
1460                 THIS->rs [index] = str;
1461                 THIS->allocated.push_back (str);
1462               }
1463             else
1464               THIS->rs [index] = 0;
1465           }
1466 }
1467
1468 const char *
1469 rxvt_term::x_resource (const char *name)
1470
1471 bool
1472 rxvt_term::option (U8 optval, int set = -1)
1473         CODE:
1474 {
1475         RETVAL = THIS->option (optval);
1476
1477         if (set >= 0)
1478           {
1479             THIS->set_option (optval, set);
1480
1481             if (THIS->check_ev.is_active ()) // avoid doing this before START
1482               switch (optval)
1483                 {
1484                   case Opt_skipBuiltinGlyphs:
1485                     THIS->set_fonts ();
1486                     THIS->scr_remap_chars ();
1487                     THIS->scr_touch (true);
1488                     THIS->want_refresh = 1;
1489                     break;
1490
1491                   case Opt_cursorUnderline:
1492                     THIS->want_refresh = 1;
1493                     break;
1494
1495 #                  case Opt_scrollBar_floating:
1496 #                  case Opt_scrollBar_right:
1497 #                    THIS->resize_all_windows (THIS->width, THIS->height, 1);
1498 #                    break;
1499                 }
1500           }
1501 }
1502         OUTPUT:
1503         RETVAL
1504
1505 bool
1506 rxvt_term::parse_keysym (char *keysym, char *str)
1507         CODE:
1508         RETVAL = 0 < THIS->parse_keysym (keysym, str);
1509         THIS->keyboard->register_done ();
1510         OUTPUT:
1511         RETVAL
1512
1513 void
1514 rxvt_term::screen_cur (...)
1515         PROTOTYPE: $;$$
1516         ALIAS:
1517            screen_cur     = 0
1518            selection_beg  = 1
1519            selection_end  = 2
1520            selection_mark = 3
1521         PPCODE:
1522 {
1523         row_col_t &rc = ix == 0 ? THIS->screen.cur
1524                       : ix == 1 ? THIS->selection.beg
1525                       : ix == 2 ? THIS->selection.end
1526                       :           THIS->selection.mark;
1527
1528         if (GIMME_V != G_VOID)
1529           {
1530             EXTEND (SP, 2);
1531             PUSHs (sv_2mortal (newSViv (rc.row)));
1532             PUSHs (sv_2mortal (newSViv (rc.col)));
1533           }
1534
1535         if (items == 3)
1536           {
1537             rc.row = SvIV (ST (1));
1538             rc.col = SvIV (ST (2));
1539
1540             if (ix == 2)
1541               {
1542                 if (rc.col == 0)
1543                   {
1544                     // col == 0 means end of previous line
1545                     rc.row--;
1546                     rc.col = THIS->ncol;
1547                   }
1548                 else if (IN_RANGE_EXC (rc.row, THIS->top_row, THIS->nrow)
1549                          && rc.col > ROW(rc.row).l)
1550                   {
1551                     // col >= length means while line and add newline
1552                     rc.col = THIS->ncol;
1553                   }
1554               }
1555
1556             clamp_it (rc.col, 0, THIS->ncol);
1557             clamp_it (rc.row, THIS->top_row, THIS->nrow - 1);
1558
1559             if (ix)
1560               THIS->want_refresh = 1;
1561           }
1562 }
1563
1564 char
1565 rxvt_term::cur_charset ()
1566         CODE:
1567         RETVAL = THIS->charsets [THIS->screen.charset];
1568         OUTPUT:
1569         RETVAL
1570
1571 void
1572 rxvt_term::selection_clear ()
1573
1574 void
1575 rxvt_term::selection_make (Time eventtime, bool rect = false)
1576         CODE:
1577         THIS->selection.op = SELECTION_CONT;
1578         THIS->selection.rect = rect;
1579         THIS->selection_make (eventtime);
1580
1581 int
1582 rxvt_term::selection_grab (Time eventtime)
1583
1584 void
1585 rxvt_term::selection (SV *newtext = 0)
1586         PPCODE:
1587 {
1588         if (GIMME_V != G_VOID)
1589           XPUSHs (THIS->selection.text
1590                   ? sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len))
1591                   : &PL_sv_undef);
1592
1593         if (newtext)
1594           {
1595             free (THIS->selection.text);
1596
1597             THIS->selection.text = sv2wcs (newtext);
1598             THIS->selection.len = wcslen (THIS->selection.text);
1599           }
1600 }
1601
1602 void
1603 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)
1604
1605 void
1606 rxvt_term::scr_xor_span (int beg_row, int beg_col, int end_row, int end_col, U32 rstyle = RS_RVid)
1607
1608 void
1609 rxvt_term::scr_bell ()
1610
1611 void
1612 rxvt_term::scr_change_screen (int screen)
1613
1614 void
1615 rxvt_term::scr_add_lines (SV *string)
1616         CODE:
1617 {
1618         wchar_t *wstr = sv2wcs (string);
1619         THIS->scr_add_lines (wstr, wcslen (wstr));
1620         free (wstr);
1621 }
1622
1623 void
1624 rxvt_term::tt_write (SV *octets)
1625         INIT:
1626           STRLEN len;
1627           char *str = SvPVbyte (octets, len);
1628         C_ARGS:
1629           str, len
1630
1631 void
1632 rxvt_term::cmd_parse (SV *octets)
1633         CODE:
1634 {
1635         STRLEN len;
1636         char *str = SvPVbyte (octets, len);
1637
1638         char *old_cmdbuf_ptr  = THIS->cmdbuf_ptr;
1639         char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1640
1641         THIS->cmdbuf_ptr  = str;
1642         THIS->cmdbuf_endp = str + len;
1643
1644         rxvt_push_locale (THIS->locale);
1645         THIS->cmd_parse ();
1646         rxvt_pop_locale ();
1647
1648         THIS->cmdbuf_ptr  = old_cmdbuf_ptr;
1649         THIS->cmdbuf_endp = old_cmdbuf_endp;
1650 }
1651
1652 SV *
1653 rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2)
1654         CODE:
1655 {
1656         overlay *o = new overlay (THIS, x, y, w, h, rstyle, border);
1657         RETVAL = newSVptr ((void *)o, "urxvt::overlay");
1658         o->self = (HV *)SvRV (RETVAL);
1659 }
1660         OUTPUT:
1661         RETVAL
1662
1663 #############################################################################
1664 # Various X Utility Functions
1665 #############################################################################
1666
1667 void
1668 rxvt_term::XListProperties (Window window)
1669         PPCODE:
1670 {
1671         int count;
1672         Atom *props = XListProperties (THIS->dpy, window, &count);
1673
1674         EXTEND (SP, count);
1675         while (count--)
1676           PUSHs (newSVuv ((U32)props [count]));
1677
1678         XFree (props);
1679 }
1680
1681 void
1682 rxvt_term::XGetWindowProperty (Window window, Atom property)
1683         PPCODE:
1684 {
1685         Atom type;
1686         int format;
1687         unsigned long nitems;
1688         unsigned long bytes_after;
1689         unsigned char *prop;
1690
1691         XGetWindowProperty (THIS->dpy, window, property,
1692                             0, 1<<24, 0, AnyPropertyType,
1693                             &type, &format, &nitems, &bytes_after, &prop);
1694
1695         if (type != None)
1696           {
1697             int elemsize = format == 16 ? sizeof (short)
1698                          : format == 32 ? sizeof (long)
1699                          :                1;
1700
1701             EXTEND (SP, 3);
1702             PUSHs (newSVuv ((U32)type));
1703             PUSHs (newSViv (format));
1704             PUSHs (newSVpvn ((char *)prop, nitems * elemsize));
1705             XFree (prop);
1706           }
1707 }
1708
1709 void
1710 rxvt_term::XChangeWindowProperty (Window window, Atom property, Atom type, int format, SV *data)
1711         CODE:
1712 {
1713         STRLEN len;
1714         char *data_ = SvPVbyte (data, len);
1715
1716         int elemsize = format == 16 ? sizeof (short)
1717                      : format == 32 ? sizeof (long)
1718                      :                1;
1719
1720         XChangeProperty (THIS->dpy, window, property,
1721                          type, format, PropModeReplace,
1722                          (unsigned char *)data_, len / elemsize);
1723 }
1724
1725 Atom
1726 XInternAtom (rxvt_term *term, char *atom_name, int only_if_exists = FALSE)
1727         C_ARGS: term->dpy, atom_name, only_if_exists
1728
1729 char *
1730 XGetAtomName (rxvt_term *term, Atom atom)
1731         C_ARGS: term->dpy, atom
1732         CLEANUP:
1733         XFree (RETVAL);
1734
1735 void
1736 XDeleteProperty (rxvt_term *term, Window window, Atom property)
1737         C_ARGS: term->dpy, window, property
1738
1739 Window
1740 rxvt_term::DefaultRootWindow ()
1741         CODE:
1742         RETVAL = THIS->display->root;
1743         OUTPUT:
1744         RETVAL
1745
1746 #if 0
1747
1748 Window
1749 XCreateSimpleWindow (rxvt_term *term, Window parent, int x, int y, unsigned int width, unsigned int height)
1750         C_ARGS: term->dpy, (Window)parent,
1751                 x, y, width, height, 0,
1752                 term->pix_colors_focused[Color_border],
1753                 term->pix_colors_focused[Color_border]
1754
1755 #endif
1756
1757 void
1758 XReparentWindow (rxvt_term *term, Window window, Window parent, int x = 0, int y = 0)
1759         C_ARGS: term->dpy, window, parent, x, y
1760
1761 void
1762 XMapWindow (rxvt_term *term, Window window)
1763         C_ARGS: term->dpy, window
1764
1765 void
1766 XUnmapWindow (rxvt_term *term, Window window)
1767         C_ARGS: term->dpy, window
1768
1769 void
1770 XMoveResizeWindow (rxvt_term *term, Window window, int x, int y, unsigned int width, unsigned int height)
1771         C_ARGS: term->dpy, window, x, y, width, height
1772
1773 void
1774 rxvt_term::XChangeInput (Window window, U32 add_events, U32 del_events = 0)
1775         CODE:
1776 {
1777         XWindowAttributes attr;
1778         XGetWindowAttributes (THIS->dpy, window, &attr);
1779         XSelectInput (THIS->dpy, window, attr.your_event_mask | add_events & ~del_events);
1780 }
1781
1782 void
1783 rxvt_term::XTranslateCoordinates (Window src, Window dst, int x, int y)
1784         PPCODE:
1785 {
1786         int dx, dy;
1787         Window child;
1788
1789         if (XTranslateCoordinates (THIS->dpy, src, dst, x, y, &dx, &dy, &child))
1790           {
1791             EXTEND (SP, 3);
1792             PUSHs (newSViv (dx));
1793             PUSHs (newSViv (dy));
1794             PUSHs (newSVuv (child));
1795           }
1796 }
1797
1798 #############################################################################
1799 # urxvt::overlay
1800 #############################################################################
1801
1802 MODULE = urxvt             PACKAGE = urxvt::overlay
1803
1804 void
1805 overlay::set (int x, int y, SV *text, SV *rend = 0)
1806
1807 void
1808 overlay::show ()
1809
1810 void
1811 overlay::hide ()
1812
1813 void
1814 overlay::DESTROY ()
1815
1816 INCLUDE: $PERL <iom_perl.xs -pe s/IOM_MODULE/urxvt/g,s/IOM_CLASS/urxvt/g |
1817