ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtperl.xs
(Generate patch)

Comparing rxvt-unicode/src/rxvtperl.xs (file contents):
Revision 1.11 by root, Tue Jan 3 02:01:27 2006 UTC vs.
Revision 1.40 by root, Sun Jan 8 00:07:18 2006 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvtperl.xs 2 * File: rxvtperl.xs
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 2005-2005 Marc Lehmann <pcg@goof.com> 6 * Copyright (c) 2005-2006 Marc Lehmann <pcg@goof.com>
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 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 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 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
26#include <XSUB.h> 26#include <XSUB.h>
27#undef line_t 27#undef line_t
28 28
29#include "../config.h" 29#include "../config.h"
30 30
31#include <cstddef>
31#include <cstdarg> 32#include <cstdarg>
32 33
33#include "rxvt.h" 34#include "rxvt.h"
34#include "iom.h" 35#include "iom.h"
35#include "rxvtutil.h" 36#include "rxvtutil.h"
51 char *str = SvPVutf8 (sv, len); 52 char *str = SvPVutf8 (sv, len);
52 return rxvt_utf8towcs (str, len); 53 return rxvt_utf8towcs (str, len);
53} 54}
54 55
55static SV * 56static SV *
57wcs2sv (wchar_t *wstr, int len = -1)
58{
59 char *str = rxvt_wcstoutf8 (wstr, len);
60
61 SV *sv = newSVpv (str, 0);
62 SvUTF8_on (sv);
63 free (str);
64
65 return sv;
66}
67
68static SV *
56new_ref (HV *hv, const char *klass) 69new_ref (HV *hv, const char *klass)
57{ 70{
58 return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1)); 71 return sv_bless (newRV ((SV *)hv), gv_stashpv (klass, 1));
59} 72}
60 73
61//TODO: use magic 74//TODO: use magic
62static SV * 75static SV *
63newSVptr (void *ptr, const char *klass) 76newSVptr (void *ptr, const char *klass)
64{ 77{
65 HV *hv = newHV (); 78 HV *hv = newHV ();
66 hv_store (hv, "_ptr", 4, newSViv ((long)ptr), 0); 79 sv_magic ((SV *)hv, 0, PERL_MAGIC_ext, (char *)ptr, 0);
67 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1)); 80 return sv_bless (newRV_noinc ((SV *)hv), gv_stashpv (klass, 1));
81}
82
83static void
84clearSVptr (SV *sv)
85{
86 if (SvROK (sv))
87 sv = SvRV (sv);
88
89 hv_clear ((HV *)sv);
90 sv_unmagic (sv, PERL_MAGIC_ext);
68} 91}
69 92
70static long 93static long
71SvPTR (SV *sv, const char *klass) 94SvPTR (SV *sv, const char *klass)
72{ 95{
73 if (!sv_derived_from (sv, klass)) 96 if (!sv_derived_from (sv, klass))
74 croak ("object of type %s expected", klass); 97 croak ("object of type %s expected", klass);
75 98
76 IV iv = SvIV (*hv_fetch ((HV *)SvRV (sv), "_ptr", 4, 1)); 99 MAGIC *mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
77 100
78 if (!iv) 101 if (!mg)
79 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass); 102 croak ("perl code used %s object, but C++ object is already destroyed, caught", klass);
80 103
81 return (long)iv; 104 return (long)mg->mg_ptr;
82} 105}
83 106
84#define newSVterm(term) SvREFCNT_inc ((SV *)term->self) 107#define newSVterm(term) SvREFCNT_inc ((SV *)term->perl.self)
85#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term") 108#define SvTERM(sv) (rxvt_term *)SvPTR (sv, "urxvt::term")
86 109
87///////////////////////////////////////////////////////////////////////////// 110/////////////////////////////////////////////////////////////////////////////
88 111
89struct perl_watcher 112struct perl_watcher
139#define newSVtimer(timer) new_ref (timer->self, "urxvt::timer") 162#define newSVtimer(timer) new_ref (timer->self, "urxvt::timer")
140#define SvTIMER(sv) (timer *)SvPTR (sv, "urxvt::timer") 163#define SvTIMER(sv) (timer *)SvPTR (sv, "urxvt::timer")
141 164
142struct timer : time_watcher, perl_watcher 165struct timer : time_watcher, perl_watcher
143{ 166{
167 tstamp interval;
168
144 timer () 169 timer ()
145 : time_watcher (this, &timer::execute) 170 : time_watcher (this, &timer::execute)
146 { 171 {
147 } 172 }
148 173
149 void execute (time_watcher &w) 174 void execute (time_watcher &w)
150 { 175 {
176 if (interval)
177 start (at + interval);
178
151 invoke ("urxvt::timer", newSVtimer (this)); 179 invoke ("urxvt::timer", newSVtimer (this));
152 } 180 }
153}; 181};
154 182
155#define newSViow(iow) new_ref (iow->self, "urxvt::iow") 183#define newSViow(iow) new_ref (iow->self, "urxvt::iow")
165 void execute (io_watcher &w, short revents) 193 void execute (io_watcher &w, short revents)
166 { 194 {
167 invoke ("urxvt::iow", newSViow (this), revents); 195 invoke ("urxvt::iow", newSViow (this), revents);
168 } 196 }
169}; 197};
198
199/////////////////////////////////////////////////////////////////////////////
200
201#define SvOVERLAY(sv) (overlay *)SvPTR (sv, "urxvt::overlay")
202
203struct overlay {
204 HV *self;
205 rxvt_term *THIS;
206 int x, y, w, h;
207 int border;
208 text_t **text;
209 rend_t **rend;
210
211 overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border);
212 ~overlay ();
213
214 void show ();
215 void hide ();
216
217 void swap ();
218
219 void set (int x, int y, SV *str, SV *rend);
220};
221
222overlay::overlay (rxvt_term *THIS, int x_, int y_, int w_, int h_, rend_t rstyle, int border)
223: THIS(THIS), x(x_), y(y_), w(w_), h(h_), border(border == 2)
224{
225 if (border == 2)
226 {
227 w += 2;
228 h += 2;
229 }
230
231 text = new text_t *[h];
232 rend = new rend_t *[h];
233
234 for (int y = 0; y < h; y++)
235 {
236 text_t *tp = text[y] = new text_t[w];
237 rend_t *rp = rend[y] = new rend_t[w];
238
239 text_t t0, t1, t2;
240 rend_t r = rstyle;
241
242 if (border == 2)
243 {
244 if (y == 0)
245 t0 = 0x2554, t1 = 0x2550, t2 = 0x2557;
246 else if (y < h - 1)
247 t0 = 0x2551, t1 = 0x0020, t2 = 0x2551;
248 else
249 t0 = 0x255a, t1 = 0x2550, t2 = 0x255d;
250
251 *tp++ = t0;
252 *rp++ = r;
253
254 for (int x = w - 2; x-- > 0; )
255 {
256 *tp++ = t1;
257 *rp++ = r;
258 }
259
260 *tp = t2;
261 *rp = r;
262 }
263 else
264 for (int x = w; x-- > 0; )
265 {
266 *tp++ = 0x0020;
267 *rp++ = r;
268 }
269 }
270
271 show ();
272 THIS->want_refresh = 1;
273}
274
275overlay::~overlay ()
276{
277 hide ();
278
279 for (int y = h; y--; )
280 {
281 delete [] text[y];
282 delete [] rend[y];
283 }
284
285 delete [] text;
286 delete [] rend;
287
288 THIS->want_refresh = 1;
289}
290
291void
292overlay::show ()
293{
294 char key[33]; sprintf (key, "%32lx", (long)this);
295
296 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0));
297 hv_store (hv, key, 32, newSViv ((long)this), 0);
298}
299
300void
301overlay::hide ()
302{
303 SV **ovs = hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0);
304
305 if (ovs)
306 {
307 char key[33]; sprintf (key, "%32lx", (long)this);
308
309 HV *hv = (HV *)SvRV (*ovs);
310 hv_delete (hv, key, 32, G_DISCARD);
311 }
312}
313
314void overlay::swap ()
315{
316 int ov_x = max (0, min (MOD (x, THIS->ncol), THIS->ncol - w));
317 int ov_y = max (0, min (MOD (y, THIS->nrow), THIS->nrow - h));
318
319 int ov_w = min (w, THIS->ncol - ov_x);
320 int ov_h = min (h, THIS->nrow - ov_y);
321
322 for (int y = ov_h; y--; )
323 {
324 text_t *t1 = text [y];
325 rend_t *r1 = rend [y];
326
327 text_t *t2 = ROW(y + ov_y - THIS->view_start).t + ov_x;
328 rend_t *r2 = ROW(y + ov_y - THIS->view_start).r + ov_x;
329
330 for (int x = ov_w; x--; )
331 {
332 text_t t = *t1; *t1++ = *t2; *t2++ = t;
333 rend_t r = *r1; *r1++ = *r2; *r2++ = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (t));
334 }
335 }
336
337}
338
339void overlay::set (int x, int y, SV *text, SV *rend)
340{
341 x += border;
342 y += border;
343
344 if (!IN_RANGE_EXC (y, 0, h - border))
345 return;
346
347 wchar_t *wtext = sv2wcs (text);
348
349 for (int col = min (wcslen (wtext), w - x - border); col--; )
350 this->text [y][x + col] = wtext [col];
351
352 free (wtext);
353
354 if (rend)
355 {
356 if (!SvROK (rend) || SvTYPE (SvRV (rend)) != SVt_PVAV)
357 croak ("rend must be arrayref");
358
359 AV *av = (AV *)SvRV (rend);
360
361 for (int col = min (av_len (av) + 1, w - x - border); col--; )
362 this->rend [y][x + col] = SvIV (*av_fetch (av, col, 1));
363 }
364
365 THIS->want_refresh = 1;
366}
367
170 368
171///////////////////////////////////////////////////////////////////////////// 369/////////////////////////////////////////////////////////////////////////////
172 370
173struct rxvt_perl_interp rxvt_perl; 371struct rxvt_perl_interp rxvt_perl;
174 372
213} 411}
214 412
215bool 413bool
216rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...) 414rxvt_perl_interp::invoke (rxvt_term *term, hook_type htype, ...)
217{ 415{
218 if (!perl 416 if (!perl)
219 || (!should_invoke [htype] && htype != HOOK_INIT && htype != HOOK_DESTROY))
220 return false; 417 return false;
221 418
222 if (htype == HOOK_INIT) // first hook ever called 419 if (htype == HOOK_INIT) // first hook ever called
420 {
223 term->self = (void *)newSVptr ((void *)term, "urxvt::term"); 421 term->perl.self = (void *)newSVptr ((void *)term, "urxvt::term");
422 hv_store ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, newRV_noinc ((SV *)newHV ()), 0);
423 }
424 else if (!term->perl.self)
425 return false; // perl not initialized for this instance
426 else if (htype == HOOK_DESTROY)
427 {
428 // handled later
429 }
430 else if (htype == HOOK_REFRESH_BEGIN || htype == HOOK_REFRESH_END)
431 {
432 HV *hv = (HV *)SvRV (*hv_fetch ((HV *)SvRV ((SV *)term->perl.self), "_overlay", 8, 0));
433
434 if (HvKEYS (hv))
435 {
436 hv_iterinit (hv);
437
438 while (HE *he = hv_iternext (hv))
439 ((overlay *)SvIV (hv_iterval (hv, he)))->swap ();
440 }
441 }
442 else if (!should_invoke [htype])
443 return false;
224 444
225 dSP; 445 dSP;
226 va_list ap; 446 va_list ap;
227 447
228 va_start (ap, htype); 448 va_start (ap, htype);
246 466
247 case DT_LONG: 467 case DT_LONG:
248 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long)))); 468 XPUSHs (sv_2mortal (newSViv (va_arg (ap, long))));
249 break; 469 break;
250 470
251 case DT_STRING: 471 case DT_STR:
252 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0))); 472 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
473 break;
474
475 case DT_STR_LEN:
476 {
477 char *str = va_arg (ap, char *);
478 int len = va_arg (ap, int);
479
480 XPUSHs (sv_2mortal (newSVpvn (str, len)));
481 }
482 break;
483
484 case DT_WCS_LEN:
485 {
486 wchar_t *wstr = va_arg (ap, wchar_t *);
487 int wlen = va_arg (ap, int);
488
489 XPUSHs (sv_2mortal (wcs2sv (wstr, wlen)));
490 }
491 break;
492
493 case DT_XEVENT:
494 {
495 XEvent *xe = va_arg (ap, XEvent *);
496 HV *hv = newHV ();
497
498# define set(name, sv) hv_store (hv, # name, sizeof (# name) - 1, sv, 0)
499# define setiv(name, val) hv_store (hv, # name, sizeof (# name) - 1, newSViv (val), 0)
500# undef set
501
502 setiv (type, xe->type);
503 setiv (send_event, xe->xany.send_event);
504 setiv (serial, xe->xany.serial);
505
506 switch (xe->type)
507 {
508 case KeyPress:
509 case KeyRelease:
510 case ButtonPress:
511 case ButtonRelease:
512 case MotionNotify:
513 setiv (time, xe->xmotion.time);
514 setiv (x, xe->xmotion.x);
515 setiv (y, xe->xmotion.y);
516 setiv (row, xe->xmotion.y / term->fheight);
517 setiv (col, xe->xmotion.x / term->fwidth);
518 setiv (x_root, xe->xmotion.x_root);
519 setiv (y_root, xe->xmotion.y_root);
520 setiv (state, xe->xmotion.state);
521 break;
522 }
523
524 switch (xe->type)
525 {
526 case KeyPress:
527 case KeyRelease:
528 setiv (keycode, xe->xkey.keycode);
529 break;
530
531 case ButtonPress:
532 case ButtonRelease:
533 setiv (button, xe->xbutton.button);
534 break;
535
536 case MotionNotify:
537 setiv (is_hint, xe->xmotion.is_hint);
538 break;
539 }
540
541 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv)));
542 }
253 break; 543 break;
254 544
255 case DT_END: 545 case DT_END:
256 { 546 {
257 va_end (ap); 547 va_end (ap);
273 if (SvTRUE (ERRSV)) 563 if (SvTRUE (ERRSV))
274 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV)); 564 rxvt_warn ("perl hook %d evaluation error: %s", htype, SvPV_nolen (ERRSV));
275 565
276 if (htype == HOOK_DESTROY) 566 if (htype == HOOK_DESTROY)
277 { 567 {
278 // TODO: clear magic
279 hv_clear ((HV *)SvRV ((SV *)term->self)); 568 clearSVptr ((SV *)term->perl.self);
280 SvREFCNT_dec ((SV *)term->self); 569 SvREFCNT_dec ((SV *)term->perl.self);
281 } 570 }
282 571
283 return count; 572 return count;
284 } 573 }
285 574
295 584
296PROTOTYPES: ENABLE 585PROTOTYPES: ENABLE
297 586
298BOOT: 587BOOT:
299{ 588{
300# define set_hookname(sym) av_store (hookname, PP_CONCAT(HOOK_, sym), newSVpv (PP_STRINGIFY(sym), 0)) 589 sv_setsv (get_sv ("urxvt::LIBDIR", 1), newSVpvn (LIBDIR, sizeof (LIBDIR) - 1));
301# define export_const(name) newCONSTSUB (gv_stashpv ("urxvt", 1), #name, newSViv (name)); 590
302 AV *hookname = get_av ("urxvt::HOOKNAME", 1); 591 AV *hookname = get_av ("urxvt::HOOKNAME", 1);
303 set_hookname (INIT); 592# define def(sym) av_store (hookname, HOOK_ ## sym, newSVpv (# sym, 0));
304 set_hookname (RESET); 593# include "hookinc.h"
305 set_hookname (START); 594# undef def
306 set_hookname (DESTROY);
307 set_hookname (SEL_BEGIN);
308 set_hookname (SEL_EXTEND);
309 set_hookname (SEL_MAKE);
310 set_hookname (SEL_GRAB);
311 set_hookname (FOCUS_IN);
312 set_hookname (FOCUS_OUT);
313 set_hookname (VIEW_CHANGE);
314 set_hookname (SCROLL_BACK);
315 set_hookname (TTY_ACTIVITY);
316 set_hookname (REFRESH_BEGIN);
317 set_hookname (REFRESH_END);
318 set_hookname (KEYBOARD_COMMAND);
319 595
596 HV *option = get_hv ("urxvt::OPTION", 1);
597# define def(name,val) hv_store (option, # name, sizeof (# name) - 1, newSVuv (Opt_ ## name), 0);
598# define nodef(name)
599# include "optinc.h"
600# undef nodef
601# undef def
602
603 HV *stash = gv_stashpv ("urxvt", 1);
604# define export_const_iv(name) newCONSTSUB (stash, # name, newSViv (name));
320 export_const (DEFAULT_RSTYLE); 605 export_const_iv (DEFAULT_RSTYLE);
321 export_const (OVERLAY_RSTYLE); 606 export_const_iv (OVERLAY_RSTYLE);
322 export_const (RS_Bold); 607 export_const_iv (RS_Bold);
323 export_const (RS_Italic); 608 export_const_iv (RS_Italic);
324 export_const (RS_Blink); 609 export_const_iv (RS_Blink);
325 export_const (RS_RVid); 610 export_const_iv (RS_RVid);
326 export_const (RS_Uline); 611 export_const_iv (RS_Uline);
327 612
328 sv_setpv (get_sv ("urxvt::LIBDIR", 1), LIBDIR); 613 export_const_iv (CurrentTime);
614 export_const_iv (ShiftMask);
615 export_const_iv (LockMask);
616 export_const_iv (ControlMask);
617 export_const_iv (Mod1Mask);
618 export_const_iv (Mod2Mask);
619 export_const_iv (Mod3Mask);
620 export_const_iv (Mod4Mask);
621 export_const_iv (Mod5Mask);
622 export_const_iv (Button1Mask);
623 export_const_iv (Button2Mask);
624 export_const_iv (Button3Mask);
625 export_const_iv (Button4Mask);
626 export_const_iv (Button5Mask);
627 export_const_iv (AnyModifier);
329} 628}
629
630SV *
631new (...)
632 CODE:
633{
634 stringvec *argv = new stringvec;
635 bool success;
636
637 for (int i = 0; i < items ;i++)
638 argv->push_back (strdup (SvPVbyte_nolen (ST (i))));
639
640 rxvt_term *term = new rxvt_term;
641
642 term->argv = argv;
643
644 try
645 {
646 if (!term->init (argv->size (), argv->begin ()))
647 term = 0;
648 }
649 catch (const class rxvt_failure_exception &e)
650 {
651 term->destroy ();
652 croak ("exception caught while initializing new terminal instance");
653 }
654
655 RETVAL = term && term->perl.self ? newSVterm (term) : &PL_sv_undef;
656}
657 OUTPUT:
658 RETVAL
330 659
331void 660void
332set_should_invoke (int htype, int value) 661set_should_invoke (int htype, int value)
333 CODE: 662 CODE:
334 rxvt_perl.should_invoke [htype] = value; 663 rxvt_perl.should_invoke [htype] = value;
363 RETVAL = GET_BASEBG (rend); 692 RETVAL = GET_BASEBG (rend);
364 OUTPUT: 693 OUTPUT:
365 RETVAL 694 RETVAL
366 695
367int 696int
368SET_FGCOLOR (int rend, int color) 697SET_FGCOLOR (int rend, int new_color)
369 CODE: 698 CODE:
370 RETVAL = SET_FGCOLOR (rend, color); 699 RETVAL = SET_FGCOLOR (rend, new_color);
371 OUTPUT: 700 OUTPUT:
372 RETVAL 701 RETVAL
373 702
374int 703int
375SET_BGCOLOR (int rend, int color) 704SET_BGCOLOR (int rend, int new_color)
376 CODE: 705 CODE:
377 RETVAL = SET_BGCOLOR (rend, color); 706 RETVAL = SET_BGCOLOR (rend, new_color);
378 OUTPUT: 707 OUTPUT:
379 RETVAL 708 RETVAL
380 709
710int
711GET_CUSTOM (int rend)
712 CODE:
713 RETVAL = (rend && RS_customMask) >> RS_customShift;
714 OUTPUT:
715 RETVAL
716
717int
718SET_CUSTOM (int rend, int new_value)
719 CODE:
720{
721 if (!IN_RANGE_EXC (new_value, 0, RS_customCount))
722 croak ("custom value out of range, must be 0..%d", RS_customCount - 1);
723
724 RETVAL = (rend & ~RS_customMask)
725 | ((new_value << RS_customShift) & RS_customMask);
726}
727 OUTPUT:
728 RETVAL
729
381MODULE = urxvt PACKAGE = urxvt::term 730MODULE = urxvt PACKAGE = urxvt::term
731
732void
733rxvt_term::destroy ()
734
735void
736rxvt_term::grab_button (int button, U32 modifiers)
737 CODE:
738 XGrabButton (THIS->display->display, button, modifiers, THIS->vt, 1,
739 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
740 GrabModeSync, GrabModeSync, None, None);
741
742bool
743rxvt_term::grab (U32 eventtime, int sync = 0)
744 CODE:
745{
746 int mode = sync ? GrabModeSync : GrabModeAsync;
747
748 THIS->perl.grabtime = 0;
749
750 if (!XGrabPointer (THIS->display->display, THIS->vt, 0,
751 ButtonPressMask | ButtonReleaseMask | EnterWindowMask | LeaveWindowMask | PointerMotionMask,
752 mode, mode, None, None, eventtime))
753 if (!XGrabKeyboard (THIS->display->display, THIS->vt, 0, mode, mode, eventtime))
754 THIS->perl.grabtime = eventtime;
755 else
756 XUngrabPointer (THIS->display->display, eventtime);
757
758 RETVAL = !!THIS->perl.grabtime;
759}
760 OUTPUT:
761 RETVAL
762
763void
764rxvt_term::allow_events_async (U32 eventtime = THIS->perl.grabtime)
765 CODE:
766 XAllowEvents (THIS->display->display, AsyncBoth, eventtime);
767
768void
769rxvt_term::allow_events_sync (U32 eventtime = THIS->perl.grabtime)
770 CODE:
771 XAllowEvents (THIS->display->display, SyncBoth, eventtime);
772
773void
774rxvt_term::allow_events_replay (U32 eventtime = THIS->perl.grabtime)
775 CODE:
776 XAllowEvents (THIS->display->display, ReplayPointer, eventtime);
777 XAllowEvents (THIS->display->display, ReplayKeyboard, eventtime);
778
779void
780rxvt_term::ungrab (U32 eventtime = THIS->perl.grabtime)
781 CODE:
782 THIS->perl.grabtime = 0;
783 XUngrabKeyboard (THIS->display->display, eventtime);
784 XUngrabPointer (THIS->display->display, eventtime);
382 785
383int 786int
384rxvt_term::strwidth (SV *str) 787rxvt_term::strwidth (SV *str)
385 CODE: 788 CODE:
386{ 789{
422 825
423 rxvt_push_locale (THIS->locale); 826 rxvt_push_locale (THIS->locale);
424 wchar_t *wstr = rxvt_mbstowcs (data, len); 827 wchar_t *wstr = rxvt_mbstowcs (data, len);
425 rxvt_pop_locale (); 828 rxvt_pop_locale ();
426 829
427 char *str = rxvt_wcstoutf8 (wstr); 830 RETVAL = wcs2sv (wstr);
428 free (wstr); 831 free (wstr);
429
430 RETVAL = newSVpv (str, 0);
431 SvUTF8_on (RETVAL);
432 free (str);
433} 832}
434 OUTPUT: 833 OUTPUT:
435 RETVAL 834 RETVAL
436 835
836#define TERM_OFFSET(sym) offsetof (TermWin_t, sym)
837
838#define TERM_OFFSET_width TERM_OFFSET(width)
839#define TERM_OFFSET_height TERM_OFFSET(height)
840#define TERM_OFFSET_fwidth TERM_OFFSET(fwidth)
841#define TERM_OFFSET_fheight TERM_OFFSET(fheight)
842#define TERM_OFFSET_fbase TERM_OFFSET(fbase)
843#define TERM_OFFSET_nrow TERM_OFFSET(nrow)
844#define TERM_OFFSET_ncol TERM_OFFSET(ncol)
845#define TERM_OFFSET_focus TERM_OFFSET(focus)
846#define TERM_OFFSET_mapped TERM_OFFSET(mapped)
847#define TERM_OFFSET_saveLines TERM_OFFSET(saveLines)
848#define TERM_OFFSET_total_rows TERM_OFFSET(total_rows)
849#define TERM_OFFSET_nsaved TERM_OFFSET(nsaved)
850
437int 851int
852rxvt_term::width ()
853 ALIAS:
854 width = TERM_OFFSET_width
855 height = TERM_OFFSET_height
856 fwidth = TERM_OFFSET_fwidth
857 fheight = TERM_OFFSET_fheight
858 fbase = TERM_OFFSET_fbase
859 nrow = TERM_OFFSET_nrow
860 ncol = TERM_OFFSET_ncol
861 focus = TERM_OFFSET_focus
862 mapped = TERM_OFFSET_mapped
863 saveLines = TERM_OFFSET_saveLines
864 total_rows = TERM_OFFSET_total_rows
865 nsaved = TERM_OFFSET_nsaved
866 CODE:
867 RETVAL = *(int *)((char *)THIS + ix);
868 OUTPUT:
869 RETVAL
870
871unsigned int
872rxvt_term::ModLevel3Mask ()
873 ALIAS:
874 ModLevel3Mask = 0
875 ModMetaMask = 1
876 ModNumLockMask = 2
877 CODE:
878 switch (ix)
879 {
880 case 0: RETVAL = THIS->ModLevel3Mask; break;
881 case 1: RETVAL = THIS->ModMetaMask; break;
882 case 2: RETVAL = THIS->ModNumLockMask; break;
883 }
884 OUTPUT:
885 RETVAL
886
887U32
888rxvt_term::parent ()
889 CODE:
890 RETVAL = (U32)THIS->parent [0];
891 OUTPUT:
892 RETVAL
893
894U32
438rxvt_term::nsaved () 895rxvt_term::vt ()
439 CODE: 896 CODE:
897 RETVAL = (U32)THIS->vt;
898 OUTPUT:
899 RETVAL
900
901U32
902rxvt_term::rstyle (U32 new_rstyle = THIS->rstyle)
903 CODE:
904{
440 RETVAL = THIS->nsaved; 905 RETVAL = THIS->rstyle;
906 THIS->rstyle = new_rstyle;
907}
441 OUTPUT: 908 OUTPUT:
442 RETVAL 909 RETVAL
443 910
444int 911int
445rxvt_term::view_start (int newval = -1) 912rxvt_term::view_start (int newval = -1)
446 CODE: 913 CODE:
447{ 914{
454 } 921 }
455} 922}
456 OUTPUT: 923 OUTPUT:
457 RETVAL 924 RETVAL
458 925
459int
460rxvt_term::nrow ()
461 CODE:
462 RETVAL = THIS->nrow;
463 OUTPUT:
464 RETVAL
465
466int
467rxvt_term::ncol ()
468 CODE:
469 RETVAL = THIS->ncol;
470 OUTPUT:
471 RETVAL
472
473void 926void
474rxvt_term::want_refresh () 927rxvt_term::want_refresh ()
475 CODE: 928 CODE:
476 THIS->want_refresh = 1; 929 THIS->want_refresh = 1;
477 930
478void 931void
479rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0) 932rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
480 PPCODE: 933 PPCODE:
481{ 934{
482 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 935 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
483 croak ("row_number number of out range"); 936 XSRETURN_EMPTY;
484 937
485 line_t &l = ROW(row_number); 938 line_t &l = ROW(row_number);
486 939
487 if (GIMME_V != G_VOID) 940 if (GIMME_V != G_VOID)
488 { 941 {
489 wchar_t *wstr = new wchar_t [THIS->ncol]; 942 wchar_t *wstr = new wchar_t [THIS->ncol];
490 943
491 for (int col = 0; col <THIS->ncol; col++) 944 for (int col = 0; col < THIS->ncol; col++)
492 wstr [col] = l.t [col]; 945 wstr [col] = l.t [col];
493 946
494 char *str = rxvt_wcstoutf8 (wstr, THIS->ncol);
495 free (wstr);
496
497 SV *sv = newSVpv (str, 0);
498 SvUTF8_on (sv);
499 XPUSHs (sv_2mortal (sv)); 947 XPUSHs (sv_2mortal (wcs2sv (wstr, THIS->ncol)));
500 free (str); 948
949 delete [] wstr;
501 } 950 }
502 951
503 if (new_text) 952 if (new_text)
504 { 953 {
505 STRLEN slen;
506 char *str = SvPVutf8 (new_text, slen); 954 wchar_t *wstr = sv2wcs (new_text);
507 wchar_t *wstr = rxvt_utf8towcs (str, slen);
508 955
509 int len = wcslen (wstr); 956 int len = min (wcslen (wstr) - start_ofs, max_len);
510 957
511 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len)) 958 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
512 { 959 {
513 free (wstr); 960 free (wstr);
514 croak ("new_text extends beyond horizontal margins"); 961 croak ("new_text extends beyond horizontal margins");
515 } 962 }
516 963
517 for (int col = start_col; col < start_col + len; col++) 964 for (int col = start_col; col < start_col + len; col++)
518 { 965 {
519 l.t [col] = wstr [col - start_col]; 966 l.t [col] = wstr [start_ofs + col - start_col];
520 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col])); 967 l.r [col] = SET_FONT (l.r [col], THIS->fontset [GET_STYLE (l.r [col])]->find_font (l.t [col]));
521 } 968 }
522 969
523 free (wstr); 970 free (wstr);
524 } 971 }
525} 972}
526 973
527void 974void
528rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0) 975rxvt_term::ROW_r (int row_number, SV *new_rend = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
529 PPCODE: 976 PPCODE:
530{ 977{
531 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 978 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
532 croak ("row_number number of out range"); 979 XSRETURN_EMPTY;
533 980
534 line_t &l = ROW(row_number); 981 line_t &l = ROW(row_number);
535 982
536 if (GIMME_V != G_VOID) 983 if (GIMME_V != G_VOID)
537 { 984 {
548 { 995 {
549 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV) 996 if (!SvROK (new_rend) || SvTYPE (SvRV (new_rend)) != SVt_PVAV)
550 croak ("new_rend must be arrayref"); 997 croak ("new_rend must be arrayref");
551 998
552 AV *av = (AV *)SvRV (new_rend); 999 AV *av = (AV *)SvRV (new_rend);
553 int len = av_len (av) + 1; 1000 int len = min (av_len (av) + 1 - start_ofs, max_len);
554 1001
555 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len)) 1002 if (!IN_RANGE_INC (start_col, 0, THIS->ncol - len))
556 croak ("new_rend array extends beyond horizontal margins"); 1003 croak ("new_rend array extends beyond horizontal margins");
557 1004
558 for (int col = start_col; col < start_col + len; col++) 1005 for (int col = start_col; col < start_col + len; col++)
559 { 1006 {
560 rend_t r = SvIV (*av_fetch (av, col - start_col, 1)) & ~RS_fontMask; 1007 rend_t r = SvIV (*av_fetch (av, start_ofs + col - start_col, 1)) & ~RS_fontMask;
561 1008
562 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col])); 1009 l.r [col] = SET_FONT (r, THIS->fontset [GET_STYLE (r)]->find_font (l.t [col]));
563 } 1010 }
564 } 1011 }
565} 1012}
566 1013
567int 1014int
568rxvt_term::ROW_l (int row_number, int new_length = -2) 1015rxvt_term::ROW_l (int row_number, int new_length = -1)
569 CODE: 1016 CODE:
570{ 1017{
571 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow)) 1018 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
572 croak ("row_number number of out range"); 1019 XSRETURN_EMPTY;
573 1020
574 line_t &l = ROW(row_number); 1021 line_t &l = ROW(row_number);
575 RETVAL = l.l; 1022 RETVAL = l.l;
576 1023
577 if (new_length >= -1) 1024 if (new_length >= 0)
578 l.l = new_length; 1025 l.l = new_length;
579} 1026}
580 OUTPUT: 1027 OUTPUT:
581 RETVAL 1028 RETVAL
582 1029
1030bool
1031rxvt_term::ROW_is_longer (int row_number, int new_is_longer = -1)
1032 CODE:
1033{
1034 if (!IN_RANGE_EXC (row_number, -THIS->nsaved, THIS->nrow))
1035 XSRETURN_EMPTY;
1036
1037 line_t &l = ROW(row_number);
1038 RETVAL = l.is_longer ();
1039
1040 if (new_is_longer >= 0)
1041 l.is_longer (new_is_longer);
1042}
1043 OUTPUT:
1044 RETVAL
1045
583SV * 1046SV *
584rxvt_term::special_encode (SV *str) 1047rxvt_term::special_encode (SV *string)
585 CODE: 1048 CODE:
586 abort ();//TODO 1049{
1050 wchar_t *wstr = sv2wcs (string);
1051 int wlen = wcslen (wstr);
1052 wchar_t *rstr = new wchar_t [wlen]; // cannot become longer
1053
1054 rxvt_push_locale (THIS->locale);
1055
1056 wchar_t *r = rstr;
1057 for (wchar_t *s = wstr; *s; s++)
1058 if (wcwidth (*s) == 0)
1059 {
1060 if (r == rstr)
1061 croak ("leading combining character unencodable");
1062
1063 unicode_t n = rxvt_compose (r[-1], *s);
1064 if (n == NOCHAR)
1065 n = rxvt_composite.compose (r[-1], *s);
1066
1067 r[-1] = n;
1068 }
1069#if !UNICODE_3
1070 else if (*s >= 0x10000)
1071 *r++ = rxvt_composite.compose (*s);
1072#endif
1073 else
1074 *r++ = *s;
1075
1076 rxvt_pop_locale ();
1077
1078 RETVAL = wcs2sv (rstr, r - rstr);
1079
1080 delete [] rstr;
1081}
1082 OUTPUT:
1083 RETVAL
587 1084
588SV * 1085SV *
589rxvt_term::special_decode (SV *str) 1086rxvt_term::special_decode (SV *text)
590 CODE: 1087 CODE:
591 abort ();//TODO 1088{
1089 wchar_t *wstr = sv2wcs (text);
1090 int wlen = wcslen (wstr);
1091 int dlen = 0;
1092
1093 // find length
1094 for (wchar_t *s = wstr; *s; s++)
1095 if (*s == NOCHAR)
1096 ;
1097 else if (IS_COMPOSE (*s))
1098 dlen += rxvt_composite.expand (*s, 0);
1099 else
1100 dlen++;
1101
1102 wchar_t *rstr = new wchar_t [dlen];
1103
1104 // decode
1105 wchar_t *r = rstr;
1106 for (wchar_t *s = wstr; *s; s++)
1107 if (*s == NOCHAR)
1108 ;
1109 else if (IS_COMPOSE (*s))
1110 r += rxvt_composite.expand (*s, r);
1111 else
1112 *r++ = *s;
1113
1114 RETVAL = wcs2sv (rstr, r - rstr);
1115
1116 delete [] rstr;
1117}
1118 OUTPUT:
1119 RETVAL
592 1120
593void 1121void
594rxvt_term::_resource (char *name, int index, SV *newval = 0) 1122rxvt_term::_resource (char *name, int index, SV *newval = 0)
595 PPCODE: 1123 PPCODE:
596{ 1124{
597 struct resval { const char *name; int value; } rslist [] = { 1125 struct resval { const char *name; int value; } rslist [] = {
598# define Rs_def(name) { # name, Rs_ ## name }, 1126# define def(name) { # name, Rs_ ## name },
599# define Rs_reserve(name,count) 1127# define reserve(name,count)
600# include "rsinc.h" 1128# include "rsinc.h"
601# undef Rs_def 1129# undef def
602# undef Rs_reserve 1130# undef reserve
603 }; 1131 };
604 1132
605 struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]); 1133 struct resval *rs = rslist + sizeof (rslist) / sizeof (rslist [0]);
606 1134
607 do { 1135 do {
628 else 1156 else
629 THIS->rs [index] = 0; 1157 THIS->rs [index] = 0;
630 } 1158 }
631} 1159}
632 1160
1161bool
1162rxvt_term::option (U32 optval, int set = -1)
1163 CODE:
1164{
1165 RETVAL = THIS->options & optval;
1166
1167 if (set >= 0)
1168 {
1169 if (set)
1170 THIS->options |= optval;
1171 else
1172 THIS->options &= ~optval;
1173
1174 switch (optval)
1175 {
1176 case Opt_skipBuiltinGlyphs:
1177 THIS->set_fonts ();
1178 THIS->scr_remap_chars ();
1179 THIS->scr_touch (true);
1180 THIS->want_refresh = 1;
1181 break;
1182
1183 case Opt_cursorUnderline:
1184 THIS->want_refresh = 1;
1185 break;
1186
1187# case Opt_scrollBar_floating:
1188# case Opt_scrollBar_right:
1189# THIS->resize_all_windows (THIS->width, THIS->height, 1);
1190# break;
1191 }
1192 }
1193}
1194 OUTPUT:
1195 RETVAL
1196
633void 1197void
634rxvt_term::selection_mark (...) 1198rxvt_term::cur (...)
635 PROTOTYPE: $;$$ 1199 PROTOTYPE: $;$$
636 ALIAS: 1200 ALIAS:
1201 screen_cur = 0
637 selection_beg = 1 1202 selection_beg = 1
638 selection_end = 2 1203 selection_end = 2
1204 selection_mark = 3
639 PPCODE: 1205 PPCODE:
640{ 1206{
641 row_col_t &sel = ix == 1 ? THIS->selection.beg 1207 row_col_t &rc = ix == 0 ? THIS->screen.cur
1208 : ix == 1 ? THIS->selection.beg
642 : ix == 2 ? THIS->selection.end 1209 : ix == 2 ? THIS->selection.end
643 : THIS->selection.mark; 1210 : THIS->selection.mark;
644 1211
645 if (GIMME_V != G_VOID) 1212 if (GIMME_V != G_VOID)
646 { 1213 {
647 EXTEND (SP, 2); 1214 EXTEND (SP, 2);
648 PUSHs (sv_2mortal (newSViv (sel.row))); 1215 PUSHs (sv_2mortal (newSViv (rc.row)));
649 PUSHs (sv_2mortal (newSViv (sel.col))); 1216 PUSHs (sv_2mortal (newSViv (rc.col)));
650 } 1217 }
651 1218
652 if (items == 3) 1219 if (items == 3)
653 { 1220 {
654 sel.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1); 1221 rc.row = clamp (SvIV (ST (1)), -THIS->nsaved, THIS->nrow - 1);
655 sel.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1); 1222 rc.col = clamp (SvIV (ST (2)), 0, THIS->ncol - 1);
656 1223
657 if (ix) 1224 if (ix)
658 THIS->want_refresh = 1; 1225 THIS->want_refresh = 1;
659 } 1226 }
660} 1227}
661 1228
662int 1229int
663rxvt_term::selection_grab (int eventtime) 1230rxvt_term::selection_grab (U32 eventtime)
664 1231
665void 1232void
666rxvt_term::selection (SV *newtext = 0) 1233rxvt_term::selection (SV *newtext = 0)
667 PPCODE: 1234 PPCODE:
668{ 1235{
669 if (GIMME_V != G_VOID) 1236 if (GIMME_V != G_VOID)
670 { 1237 XPUSHs (sv_2mortal (wcs2sv (THIS->selection.text, THIS->selection.len)));
671 char *sel = rxvt_wcstoutf8 (THIS->selection.text, THIS->selection.len);
672 SV *sv = newSVpv (sel, 0);
673 SvUTF8_on (sv);
674 free (sel);
675 XPUSHs (sv_2mortal (sv));
676 }
677 1238
678 if (newtext) 1239 if (newtext)
679 { 1240 {
680 free (THIS->selection.text); 1241 free (THIS->selection.text);
681 1242
682 THIS->selection.text = sv2wcs (newtext); 1243 THIS->selection.text = sv2wcs (newtext);
683 THIS->selection.len = wcslen (THIS->selection.text); 1244 THIS->selection.len = wcslen (THIS->selection.text);
684 } 1245 }
685} 1246}
686
687void
688rxvt_term::scr_overlay_new (int x, int y, int w, int h)
689 1247
690void 1248void
691rxvt_term::scr_overlay_off () 1249rxvt_term::scr_add_lines (SV *string)
692
693void
694rxvt_term::scr_overlay_set_char (int x, int y, U32 text, U32 rend = OVERLAY_RSTYLE)
695 CODE: 1250 CODE:
696 THIS->scr_overlay_set (x, y, text, rend);
697
698void
699rxvt_term::scr_overlay_set (int x, int y, SV *text)
700 CODE:
701{ 1251{
702 wchar_t *wtext = sv2wcs (text); 1252 wchar_t *wstr = sv2wcs (string);
703 THIS->scr_overlay_set (x, y, wtext); 1253 THIS->scr_add_lines (wstr, wcslen (wstr));
704 free (wtext); 1254 free (wstr);
705} 1255}
706 1256
707void 1257void
708rxvt_term::tt_write (SV *octets) 1258rxvt_term::tt_write (SV *octets)
709 INIT: 1259 INIT:
710 STRLEN len; 1260 STRLEN len;
711 char *str = SvPVbyte (octets, len); 1261 char *str = SvPVbyte (octets, len);
712 C_ARGS: 1262 C_ARGS:
713 (unsigned char *)str, len 1263 str, len
1264
1265void
1266rxvt_term::cmd_parse (SV *octets)
1267 CODE:
1268{
1269 STRLEN len;
1270 char *str = SvPVbyte (octets, len);
1271
1272 char *old_cmdbuf_ptr = THIS->cmdbuf_ptr;
1273 char *old_cmdbuf_endp = THIS->cmdbuf_endp;
1274
1275 THIS->cmdbuf_ptr = str;
1276 THIS->cmdbuf_endp = str + len;
1277
1278 rxvt_push_locale (THIS->locale);
1279 THIS->cmd_parse ();
1280 rxvt_pop_locale ();
1281
1282 THIS->cmdbuf_ptr = old_cmdbuf_ptr;
1283 THIS->cmdbuf_endp = old_cmdbuf_endp;
1284}
1285
1286SV *
1287rxvt_term::overlay (int x, int y, int w, int h, int rstyle = OVERLAY_RSTYLE, int border = 2)
1288 CODE:
1289{
1290 overlay *o = new overlay (THIS, x, y, w, h, rstyle, border);
1291 RETVAL = newSVptr ((void *)o, "urxvt::overlay");
1292 o->self = (HV *)SvRV (RETVAL);
1293}
1294 OUTPUT:
1295 RETVAL
1296
1297MODULE = urxvt PACKAGE = urxvt::overlay
1298
1299void
1300overlay::set (int x, int y, SV *text, SV *rend = 0)
1301
1302void
1303overlay::show ()
1304
1305void
1306overlay::hide ()
1307
1308void
1309overlay::DESTROY ()
714 1310
715MODULE = urxvt PACKAGE = urxvt::timer 1311MODULE = urxvt PACKAGE = urxvt::timer
716 1312
717SV * 1313SV *
718timer::new () 1314timer::new ()
719 CODE: 1315 CODE:
720 timer *w = new timer; 1316 timer *w = new timer;
1317 w->start (NOW);
721 RETVAL = newSVptr ((void *)w, "urxvt::timer"); 1318 RETVAL = newSVptr ((void *)w, "urxvt::timer");
722 w->self = (HV *)SvRV (RETVAL); 1319 w->self = (HV *)SvRV (RETVAL);
723 OUTPUT: 1320 OUTPUT:
724 RETVAL 1321 RETVAL
725 1322
733 1330
734NV 1331NV
735timer::at () 1332timer::at ()
736 CODE: 1333 CODE:
737 RETVAL = THIS->at; 1334 RETVAL = THIS->at;
1335 OUTPUT:
1336 RETVAL
1337
1338timer *
1339timer::interval (NV interval)
1340 CODE:
1341 THIS->interval = interval;
1342 RETVAL = THIS;
738 OUTPUT: 1343 OUTPUT:
739 RETVAL 1344 RETVAL
740 1345
741timer * 1346timer *
742timer::set (NV tstamp) 1347timer::set (NV tstamp)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines