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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines