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.117 by root, Thu Dec 13 18:24:36 2007 UTC vs.
Revision 1.125 by root, Fri Aug 22 15:36:45 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-2006 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.
39#include "rxvtutil.h" 39#include "rxvtutil.h"
40#include "rxvtperl.h" 40#include "rxvtperl.h"
41 41
42#include "perlxsi.c" 42#include "perlxsi.c"
43 43
44#ifdef HAVE_SCROLLBARS
45# define GRAB_CURSOR THIS->leftptr_cursor 44#define GRAB_CURSOR THIS->scrollBar.leftptr_cursor
46#else
47# define GRAB_CURSOR None
48#endif
49 45
50#undef LINENO 46#undef LINENO
51#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)
52#undef ROW 48#undef ROW
53#define ROW(n) THIS->row_buf [LINENO (n)] 49#define ROW(n) THIS->row_buf [LINENO (n)]
214 *hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0) 210 *hv_fetch ((HV *)SvRV ((SV *)THIS->perl.self), "_overlay", 8, 0)
215 )); 211 ));
216 av_push (overlay_av, newSViv ((long)this)); 212 av_push (overlay_av, newSViv ((long)this));
217 213
218 THIS->want_refresh = 1; 214 THIS->want_refresh = 1;
215 THIS->refresh_check ();
219} 216}
220 217
221void 218void
222overlay::hide () 219overlay::hide ()
223{ 220{
237 234
238 SvREFCNT_dec (overlay_av); 235 SvREFCNT_dec (overlay_av);
239 overlay_av = 0; 236 overlay_av = 0;
240 237
241 THIS->want_refresh = 1; 238 THIS->want_refresh = 1;
239 THIS->refresh_check ();
242} 240}
243 241
244void overlay::swap () 242void overlay::swap ()
245{ 243{
246 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));
291 for (int col = min (AvFILL (av) + 1, w - x - border); col--; ) 289 for (int col = min (AvFILL (av) + 1, w - x - border); col--; )
292 this->rend [y][x + col] = SvIV (*av_fetch (av, col, 1)); 290 this->rend [y][x + col] = SvIV (*av_fetch (av, col, 1));
293 } 291 }
294 292
295 THIS->want_refresh = 1; 293 THIS->want_refresh = 1;
294 THIS->refresh_check ();
296} 295}
297 296
298///////////////////////////////////////////////////////////////////////////// 297/////////////////////////////////////////////////////////////////////////////
299 298
300#define IOM_CLASS "urxvt" 299#define IOM_CLASS "urxvt"
301#define IOM_WARN rxvt_warn 300#define IOM_WARN rxvt_warn
302#include <iom_perl.h> 301#include "iom_perl.h"
303 302
304///////////////////////////////////////////////////////////////////////////// 303/////////////////////////////////////////////////////////////////////////////
305 304
306struct rxvt_perl_interp rxvt_perl; 305struct rxvt_perl_interp rxvt_perl;
307 306
311{ 310{
312 if (perl) 311 if (perl)
313 { 312 {
314 perl_destruct (perl); 313 perl_destruct (perl);
315 perl_free (perl); 314 perl_free (perl);
315 PERL_SYS_TERM ();
316 } 316 }
317} 317}
318 318
319void 319void
320rxvt_perl_interp::init (rxvt_term *term) 320rxvt_perl_interp::init (rxvt_term *term)
324 rxvt_push_locale (""); // perl init destroys current locale 324 rxvt_push_locale (""); // perl init destroys current locale
325 325
326 perl_environ = rxvt_environ; 326 perl_environ = rxvt_environ;
327 swap (perl_environ, environ); 327 swap (perl_environ, environ);
328 328
329 char *argv[] = { 329 char *args[] = {
330 "", 330 "",
331 "-e" 331 "-e"
332 "BEGIN {" 332 "BEGIN {"
333 " urxvt->bootstrap;" 333 " urxvt->bootstrap;"
334 " unshift @INC, '" LIBDIR "';" 334 " unshift @INC, '" LIBDIR "';"
335 "}" 335 "}"
336 "" 336 ""
337 "use urxvt;" 337 "use urxvt;"
338 }; 338 };
339 int argc = sizeof (args) / sizeof (args[0]);
340 char **argv = args;
339 341
342 PERL_SYS_INIT3 (&argc, &argv, &environ);
340 perl = perl_alloc (); 343 perl = perl_alloc ();
341 perl_construct (perl); 344 perl_construct (perl);
342 345
343 if (perl_parse (perl, xs_init, 2, argv, (char **)NULL) 346 if (perl_parse (perl, xs_init, argc, argv, (char **)NULL)
344 || perl_run (perl)) 347 || perl_run (perl))
345 { 348 {
346 rxvt_warn ("unable to initialize perl-interpreter, continuing without.\n"); 349 rxvt_warn ("unable to initialize perl-interpreter, continuing without.\n");
347 350
348 perl_destruct (perl); 351 perl_destruct (perl);
640 static const struct { 643 static const struct {
641 const char *name; 644 const char *name;
642 IV iv; 645 IV iv;
643 } *civ, const_iv[] = { 646 } *civ, const_iv[] = {
644# define const_iv(name) { # name, (IV)name } 647# define const_iv(name) { # name, (IV)name }
648 const_iv (NUM_RESOURCES),
645 const_iv (DEFAULT_RSTYLE), 649 const_iv (DEFAULT_RSTYLE),
646 const_iv (OVERLAY_RSTYLE), 650 const_iv (OVERLAY_RSTYLE),
647 const_iv (RS_Bold), 651 const_iv (RS_Bold),
648 const_iv (RS_Italic), 652 const_iv (RS_Italic),
649 const_iv (RS_Blink), 653 const_iv (RS_Blink),
1097 { 1101 {
1098 case 0: RETVAL = THIS->ModLevel3Mask; break; 1102 case 0: RETVAL = THIS->ModLevel3Mask; break;
1099 case 1: RETVAL = THIS->ModMetaMask; break; 1103 case 1: RETVAL = THIS->ModMetaMask; break;
1100 case 2: RETVAL = THIS->ModNumLockMask; break; 1104 case 2: RETVAL = THIS->ModNumLockMask; break;
1101 case 3: RETVAL = THIS->current_screen; break; 1105 case 3: RETVAL = THIS->current_screen; break;
1106#ifdef CURSOR_BLINK
1102 case 4: RETVAL = THIS->hidden_cursor; break; 1107 case 4: RETVAL = THIS->hidden_cursor; break;
1108#endif
1103 } 1109 }
1104 OUTPUT: 1110 OUTPUT:
1105 RETVAL 1111 RETVAL
1106 1112
1107char * 1113char *
1224 1230
1225void 1231void
1226rxvt_term::want_refresh () 1232rxvt_term::want_refresh ()
1227 CODE: 1233 CODE:
1228 THIS->want_refresh = 1; 1234 THIS->want_refresh = 1;
1235 THIS->refresh_check ();
1229 1236
1230void 1237void
1231rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS) 1238rxvt_term::ROW_t (int row_number, SV *new_text = 0, int start_col = 0, int start_ofs = 0, int max_len = MAX_COLS)
1232 PPCODE: 1239 PPCODE:
1233{ 1240{
1430# undef reserve 1437# undef reserve
1431 }; 1438 };
1432 1439
1433 rs = rslist + sizeof (rslist) / sizeof (rslist [0]); 1440 rs = rslist + sizeof (rslist) / sizeof (rslist [0]);
1434 1441
1442 if (*name)
1435 do { 1443 {
1444 do {
1436 if (rs-- == rslist) 1445 if (rs-- == rslist)
1437 croak ("no such resource '%s', requested", name); 1446 croak ("no such resource '%s', requested", name);
1438 } while (strcmp (name, rs->name)); 1447 } while (strcmp (name, rs->name));
1439 1448
1440 index += rs->value; 1449 index += rs->value;
1450 }
1451 else
1452 {
1453 --rs;
1454 name = "";
1455 }
1441 1456
1442 if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES)) 1457 if (!IN_RANGE_EXC (index, 0, NUM_RESOURCES))
1443 croak ("requested out-of-bound resource %s+%d,", name, index - rs->value); 1458 croak ("requested out-of-bound resource %s+%d,", name, index - rs->value);
1444 1459
1445 if (GIMME_V != G_VOID) 1460 if (GIMME_V != G_VOID)
1469 1484
1470 if (set >= 0) 1485 if (set >= 0)
1471 { 1486 {
1472 THIS->set_option (optval, set); 1487 THIS->set_option (optval, set);
1473 1488
1474 if (THIS->prepare_ev.is_active ()) // avoid doing this before START 1489 if (THIS->env_colorfgbg [0]) // avoid doing this before START
1475 switch (optval) 1490 switch (optval)
1476 { 1491 {
1477 case Opt_skipBuiltinGlyphs: 1492 case Opt_skipBuiltinGlyphs:
1478 THIS->set_fonts (); 1493 THIS->set_fonts ();
1479 THIS->scr_remap_chars (); 1494 THIS->scr_remap_chars ();
1480 THIS->scr_touch (true); 1495 THIS->scr_touch (true);
1481 THIS->want_refresh = 1; 1496 THIS->want_refresh = 1;
1497 THIS->refresh_check ();
1482 break; 1498 break;
1483 1499
1484 case Opt_cursorUnderline: 1500 case Opt_cursorUnderline:
1485 THIS->want_refresh = 1; 1501 THIS->want_refresh = 1;
1502 THIS->refresh_check ();
1486 break; 1503 break;
1487 1504
1488# case Opt_scrollBar_floating: 1505# case Opt_scrollBar_floating:
1489# case Opt_scrollBar_right: 1506# case Opt_scrollBar_right:
1490# THIS->resize_all_windows (THIS->width, THIS->height, 1); 1507# THIS->resize_all_windows (THIS->width, THIS->height, 1);
1548 1565
1549 clamp_it (rc.col, 0, THIS->ncol); 1566 clamp_it (rc.col, 0, THIS->ncol);
1550 clamp_it (rc.row, THIS->top_row, THIS->nrow - 1); 1567 clamp_it (rc.row, THIS->top_row, THIS->nrow - 1);
1551 1568
1552 if (ix) 1569 if (ix)
1570 {
1553 THIS->want_refresh = 1; 1571 THIS->want_refresh = 1;
1572 THIS->refresh_check ();
1573 }
1554 } 1574 }
1555} 1575}
1556 1576
1557char 1577char
1558rxvt_term::cur_charset () 1578rxvt_term::cur_charset ()
1698 XFree (prop); 1718 XFree (prop);
1699 } 1719 }
1700} 1720}
1701 1721
1702void 1722void
1703rxvt_term::XChangeWindowProperty (Window window, Atom property, Atom type, int format, SV *data) 1723rxvt_term::XChangeProperty (Window window, Atom property, Atom type, int format, SV *data)
1704 CODE: 1724 CODE:
1705{ 1725{
1706 STRLEN len; 1726 STRLEN len;
1707 char *data_ = SvPVbyte (data, len); 1727 char *data_ = SvPVbyte (data, len);
1708 1728

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines