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

Comparing rxvt-unicode/src/urxvt.pm (file contents):
Revision 1.76 by root, Tue Jan 10 19:46:28 2006 UTC vs.
Revision 1.77 by root, Wed Jan 11 00:59:58 2006 UTC

343 343
344subwindow. 344subwindow.
345 345
346=back 346=back
347 347
348=head2 Variables in the C<urxvt> Package
349
350=over 4
351
352=item $urxvt::LIBDIR
353
354The rxvt-unicode library directory, where, among other things, the perl
355modules and scripts are stored.
356
357=item $urxvt::RESCLASS, $urxvt::RESCLASS
358
359The resource class and name rxvt-unicode uses to look up X resources.
360
361=item $urxvt::RXVTNAME
362
363The basename of the installed binaries, usually C<urxvt>.
364
365=item $urxvt::TERM
366
367The current terminal. This variable stores the current C<urxvt::term>
368object, whenever a callback/hook is executing.
369
370=item
371
372=back
373
374=head2 Functions in the C<urxvt> Package
375
376=over 4
377
378=item $term = new urxvt [arg...]
379
380Creates a new terminal, very similar as if you had started it with
381C<system $binfile, arg...>. Croaks (and probably outputs an error message)
382if the new instance couldn't be created. Returns C<undef> if the new
383instance didn't initialise perl, and the terminal object otherwise. The
384C<init> and C<start> hooks will be called during the call.
385
386=item urxvt::fatal $errormessage
387
388Fatally aborts execution with the given error message. Avoid at all
389costs! The only time this is acceptable is when the terminal process
390starts up.
391
392=item urxvt::warn $string
393
394Calls C<rxvt_warn> with the given string which should not include a
395newline. The module also overwrites the C<warn> builtin with a function
396that calls this function.
397
398Using this function has the advantage that its output ends up in the
399correct place, e.g. on stderr of the connecting urxvtc client.
400
401=item $is_safe = urxvt::safe
402
403Returns true when it is safe to do potentially unsafe things, such as
404evaluating perl code specified by the user. This is true when urxvt was
405started setuid or setgid.
406
407=item $time = urxvt::NOW
408
409Returns the "current time" (as per the event loop).
410
411=item urxvt::CurrentTime
412
413=item urxvt::ShiftMask, LockMask, ControlMask, Mod1Mask, Mod2Mask,
414Mod3Mask, Mod4Mask, Mod5Mask, Button1Mask, Button2Mask, Button3Mask,
415Button4Mask, Button5Mask, AnyModifier
416
417Various constants for use in X calls and event processing.
418
419=back
420
421=head2 RENDITION
422
423Rendition bitsets contain information about colour, font, font styles and
424similar information for each screen cell.
425
426The following "macros" deal with changes in rendition sets. You should
427never just create a bitset, you should always modify an existing one,
428as they contain important information required for correct operation of
429rxvt-unicode.
430
431=over 4
432
433=item $rend = urxvt::DEFAULT_RSTYLE
434
435Returns the default rendition, as used when the terminal is starting up or
436being reset. Useful as a base to start when creating renditions.
437
438=item $rend = urxvt::OVERLAY_RSTYLE
439
440Return the rendition mask used for overlays by default.
441
442=item $rendbit = urxvt::RS_Bold, RS_Italic, RS_Blink, RS_RVid, RS_Uline
443
444Return the bit that enabled bold, italic, blink, reverse-video and
445underline, respectively. To enable such a style, just logically OR it into
446the bitset.
447
448=item $foreground = urxvt::GET_BASEFG $rend
449
450=item $background = urxvt::GET_BASEBG $rend
451
452Return the foreground/background colour index, respectively.
453
454=item $rend = urxvt::SET_FGCOLOR $rend, $new_colour
455
456=item $rend = urxvt::SET_BGCOLOR $rend, $new_colour
457
458Replace the foreground/background colour in the rendition mask with the
459specified one.
460
461=item $value = urxvt::GET_CUSTOM $rend
462
463Return the "custom" value: Every rendition has 5 bits for use by
464extensions. They can be set and changed as you like and are initially
465zero.
466
467=item $rend = urxvt::SET_CUSTOM $rend, $new_value
468
469Change the custom value.
470
471=back
472
473=cut 348=cut
474 349
475package urxvt; 350package urxvt;
476 351
477use utf8; 352use utf8;
488 363
489our $LIBDIR; 364our $LIBDIR;
490our $RESNAME; 365our $RESNAME;
491our $RESCLASS; 366our $RESCLASS;
492our $RXVTNAME; 367our $RXVTNAME;
368
369=head2 Variables in the C<urxvt> Package
370
371=over 4
372
373=item $urxvt::LIBDIR
374
375The rxvt-unicode library directory, where, among other things, the perl
376modules and scripts are stored.
377
378=item $urxvt::RESCLASS, $urxvt::RESCLASS
379
380The resource class and name rxvt-unicode uses to look up X resources.
381
382=item $urxvt::RXVTNAME
383
384The basename of the installed binaries, usually C<urxvt>.
385
386=item $urxvt::TERM
387
388The current terminal. This variable stores the current C<urxvt::term>
389object, whenever a callback/hook is executing.
390
391=item
392
393=back
394
395=head2 Functions in the C<urxvt> Package
396
397=over 4
398
399=item urxvt::fatal $errormessage
400
401Fatally aborts execution with the given error message. Avoid at all
402costs! The only time this is acceptable is when the terminal process
403starts up.
404
405=item urxvt::warn $string
406
407Calls C<rxvt_warn> with the given string which should not include a
408newline. The module also overwrites the C<warn> builtin with a function
409that calls this function.
410
411Using this function has the advantage that its output ends up in the
412correct place, e.g. on stderr of the connecting urxvtc client.
413
414Messages have a size limit of 1023 bytes currently.
415
416=item $is_safe = urxvt::safe
417
418Returns true when it is safe to do potentially unsafe things, such as
419evaluating perl code specified by the user. This is true when urxvt was
420started setuid or setgid.
421
422=item $time = urxvt::NOW
423
424Returns the "current time" (as per the event loop).
425
426=item urxvt::CurrentTime
427
428=item urxvt::ShiftMask, LockMask, ControlMask, Mod1Mask, Mod2Mask,
429Mod3Mask, Mod4Mask, Mod5Mask, Button1Mask, Button2Mask, Button3Mask,
430Button4Mask, Button5Mask, AnyModifier
431
432Various constants for use in X calls and event processing.
433
434=back
435
436=head2 RENDITION
437
438Rendition bitsets contain information about colour, font, font styles and
439similar information for each screen cell.
440
441The following "macros" deal with changes in rendition sets. You should
442never just create a bitset, you should always modify an existing one,
443as they contain important information required for correct operation of
444rxvt-unicode.
445
446=over 4
447
448=item $rend = urxvt::DEFAULT_RSTYLE
449
450Returns the default rendition, as used when the terminal is starting up or
451being reset. Useful as a base to start when creating renditions.
452
453=item $rend = urxvt::OVERLAY_RSTYLE
454
455Return the rendition mask used for overlays by default.
456
457=item $rendbit = urxvt::RS_Bold, RS_Italic, RS_Blink, RS_RVid, RS_Uline
458
459Return the bit that enabled bold, italic, blink, reverse-video and
460underline, respectively. To enable such a style, just logically OR it into
461the bitset.
462
463=item $foreground = urxvt::GET_BASEFG $rend
464
465=item $background = urxvt::GET_BASEBG $rend
466
467Return the foreground/background colour index, respectively.
468
469=item $rend = urxvt::SET_FGCOLOR $rend, $new_colour
470
471=item $rend = urxvt::SET_BGCOLOR $rend, $new_colour
472
473Replace the foreground/background colour in the rendition mask with the
474specified one.
475
476=item $value = urxvt::GET_CUSTOM $rend
477
478Return the "custom" value: Every rendition has 5 bits for use by
479extensions. They can be set and changed as you like and are initially
480zero.
481
482=item $rend = urxvt::SET_CUSTOM $rend, $new_value
483
484Change the custom value.
485
486=back
487
488=cut
493 489
494BEGIN { 490BEGIN {
495 urxvt->bootstrap; 491 urxvt->bootstrap;
496 492
497 # overwrite perl's warn 493 # overwrite perl's warn
781 for my $name (@HOOKNAME) { 777 for my $name (@HOOKNAME) {
782 if (my $ref = $pkg->can ("on_" . lc $name)) { 778 if (my $ref = $pkg->can ("on_" . lc $name)) {
783 $proxy->enable ($name => $ref); 779 $proxy->enable ($name => $ref);
784 } 780 }
785 } 781 }
782}
783
784=item $term = new urxvt::term $envhashref, $rxvtname, [arg...]
785
786Creates a new terminal, very similar as if you had started it with system
787C<$rxvtname, arg...>. C<$envhashref> must be a reference to a %ENV>-like
788C<hash which defines the environment of the new terminal.
789
790Croaks (and probably outputs an error message) if the new instance
791couldn't be created. Returns C<undef> if the new instance didn't
792initialise perl, and the terminal object otherwise. The C<init> and
793C<start> hooks will be called during this call.
794
795=cut
796
797sub new {
798 my ($class, $env, @args) = @_;
799
800 _new ([ map "$_=$env->{$_}", keys %$env ], @args);
786} 801}
787 802
788=item $term->destroy 803=item $term->destroy
789 804
790Destroy the terminal object (close the window, free resources 805Destroy the terminal object (close the window, free resources
1055 1070
1056=item $lines_in_scrollback = $term->nsaved 1071=item $lines_in_scrollback = $term->nsaved
1057 1072
1058Return various integers describing terminal characteristics. 1073Return various integers describing terminal characteristics.
1059 1074
1075=item $x_display = $term->display_id
1076
1077Return the DISPLAY used by rxvt-unicode.
1078
1060=item $lc_ctype = $term->locale 1079=item $lc_ctype = $term->locale
1061 1080
1062Returns the LC_CTYPE category string used by this rxvt-unicode. 1081Returns the LC_CTYPE category string used by this rxvt-unicode.
1063 1082
1064=item $x_display = $term->display_id 1083=item $env = $term->env
1065 1084
1066Return the DISPLAY used by rxvt-unicode. 1085Returns a copy of the environment in effect for the terminal as a hashref
1086similar to C<\%ENV>.
1087
1088=cut
1089
1090sub env {
1091 if (my $env = $_[0]->_env) {
1092 +{ map /^([^=]+)(?:=(.*))?$/s && ($1 => $2), @$env }
1093 } else {
1094 +{ %ENV }
1095 }
1096}
1067 1097
1068=item $modifiermask = $term->ModLevel3Mask 1098=item $modifiermask = $term->ModLevel3Mask
1069 1099
1070=item $modifiermask = $term->ModMetaMask 1100=item $modifiermask = $term->ModMetaMask
1071 1101
1392sub show { 1422sub show {
1393 my ($self) = @_; 1423 my ($self) = @_;
1394 1424
1395 local $urxvt::popup::self = $self; 1425 local $urxvt::popup::self = $self;
1396 1426
1427 my $env = $self->{term}->env;
1428 # we can't hope to reproduce the locale algorithm, so nuke LC_ALL and set LC_CTYPE.
1429 delete $env->{LC_ALL};
1397 local $ENV{LC_ALL} = $self->{term}->locale; 1430 $env->{LC_CTYPE} = $self->{term}->locale;
1398 1431
1432 urxvt::term->new ($env, $self->{term}->resource ("name"),
1399 urxvt->new ("--perl-lib" => "", "--perl-ext-common" => "", "-pty-fd" => -1, "-sl" => 0, "-b" => 0, 1433 "--perl-lib" => "", "--perl-ext-common" => "", "-pty-fd" => -1, "-sl" => 0, "-b" => 0,
1400 "--transient-for" => $self->{term}->parent, 1434 "--transient-for" => $self->{term}->parent,
1401 "-display" => $self->{term}->display_id, 1435 "-display" => $self->{term}->display_id,
1402 "-pe" => "urxvt-popup") 1436 "-pe" => "urxvt-popup")
1403 or die "unable to create popup window\n"; 1437 or die "unable to create popup window\n";
1404} 1438}
1405 1439
1406sub DESTROY { 1440sub DESTROY {
1407 my ($self) = @_; 1441 my ($self) = @_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines