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.78 by root, Wed Jan 11 01:01:52 2006 UTC vs.
Revision 1.85 by root, Thu Jan 12 03:32:56 2006 UTC

84 84
85Displays a digital clock using the built-in overlay. 85Displays a digital clock using the built-in overlay.
86 86
87=item mark-urls 87=item mark-urls
88 88
89Uses per-line display filtering (C<on_line_update>) to underline urls. 89Uses per-line display filtering (C<on_line_update>) to underline urls and
90make them clickable. When middle-clicked, the program specified in the
91resource C<urlLauncher> (default C<x-www-browser>) will be started.
90 92
91=item block-graphics-to-ascii 93=item block-graphics-to-ascii
92 94
93A not very useful example of filtering all text output to the terminal, 95A not very useful example of filtering all text output to the terminal,
94by replacing all line-drawing characters (U+2500 .. U+259F) by a 96by replacing all line-drawing characters (U+2500 .. U+259F) by a
228=item on_sel_extend $term 230=item on_sel_extend $term
229 231
230Called whenever the user tries to extend the selection (e.g. with a double 232Called whenever the user tries to extend the selection (e.g. with a double
231click) and is either supposed to return false (normal operation), or 233click) and is either supposed to return false (normal operation), or
232should extend the selection itelf and return true to suppress the built-in 234should extend the selection itelf and return true to suppress the built-in
233processing. 235processing. This can happen multiple times, as long as the callback
236returns true, it will be called on every further click by the user and is
237supposed to enlarge the selection more and more, if possible.
234 238
235See the F<selection> example extension. 239See the F<selection> example extension.
236 240
237=item on_view_change $term, $offset 241=item on_view_change $term, $offset
238 242
494 $msg .= "\n" 498 $msg .= "\n"
495 unless $msg =~ /\n$/; 499 unless $msg =~ /\n$/;
496 urxvt::warn ($msg); 500 urxvt::warn ($msg);
497 }; 501 };
498 502
503 # %ENV is the original startup environment
499 delete $ENV{IFS}; 504 delete $ENV{IFS};
500 delete $ENV{CDPATH}; 505 delete $ENV{CDPATH};
501 delete $ENV{BASH_ENV}; 506 delete $ENV{BASH_ENV};
502 $ENV{PATH} = "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin:/opt/sbin"; 507 $ENV{PATH} = "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin:/opt/sbin";
503} 508}
592 if ($@) { 597 if ($@) {
593 $TERM->ungrab; # better to lose the grab than the session 598 $TERM->ungrab; # better to lose the grab than the session
594 warn $@; 599 warn $@;
595 } 600 }
596 } 601 }
602
603 verbose 11, "$HOOKNAME[$htype] returning <$retval>"
604 if $verbosity >= 11;
597 } 605 }
598 606
599 if ($htype == 1) { # DESTROY 607 if ($htype == 1) { # DESTROY
600 if (my $hook = delete $TERM->{_hook}) { 608 if (my $hook = delete $TERM->{_hook}) {
601 for my $htype (0..$#$hook) { 609 for my $htype (0..$#$hook) {
610 # clear package 618 # clear package
611 %$TERM = (); 619 %$TERM = ();
612 } 620 }
613 621
614 $retval 622 $retval
623}
624
625sub exec_async(@) {
626 my $pid = fork;
627
628 return
629 if !defined $pid or $pid;
630
631 %ENV = %{ $TERM->env };
632
633 exec @_;
634 _exit 255;
615} 635}
616 636
617# urxvt::term::extension 637# urxvt::term::extension
618 638
619package urxvt::term::extension; 639package urxvt::term::extension;
860 my ($self, $name) = (shift, shift); 880 my ($self, $name) = (shift, shift);
861 unshift @_, $self, $name, ($name =~ s/\s*\+\s*(\d+)$// ? $1 : 0); 881 unshift @_, $self, $name, ($name =~ s/\s*\+\s*(\d+)$// ? $1 : 0);
862 &urxvt::term::_resource 882 &urxvt::term::_resource
863} 883}
864 884
885=item $value = $term->x_resource ($pattern)
886
887Returns the X-Resource for the given pattern, excluding the program or
888class name, i.e. C<< $term->x_resource ("boldFont") >> should return the
889same value as used by this instance of rxvt-unicode. Returns C<undef> if no
890resource with that pattern exists.
891
892This method should only be called during the C<on_start> hook, as there is
893only one resource database per display, and later invocations might return
894the wrong resources.
895
865=item $success = $term->parse_keysym ($keysym_spec, $command_string) 896=item $success = $term->parse_keysym ($keysym_spec, $command_string)
866 897
867Adds a keymap translation exactly as specified via a resource. See the 898Adds a keymap translation exactly as specified via a resource. See the
868C<keysym> resource in the @@RXVT_NAME@@(1) manpage. 899C<keysym> resource in the @@RXVT_NAME@@(1) manpage.
869 900
1192Return the row number of the first/last row of the line, respectively. 1223Return the row number of the first/last row of the line, respectively.
1193 1224
1194=item $offset = $line->offset_of ($row, $col) 1225=item $offset = $line->offset_of ($row, $col)
1195 1226
1196Returns the character offset of the given row|col pair within the logical 1227Returns the character offset of the given row|col pair within the logical
1197line. 1228line. Works for rows outside the line, too, and returns corresponding
1229offsets outside the string.
1198 1230
1199=item ($row, $col) = $line->coord_of ($offset) 1231=item ($row, $col) = $line->coord_of ($offset)
1200 1232
1201Translates a string offset into terminal coordinates again. 1233Translates a string offset into terminal coordinates again.
1202 1234
1557 1589
1558=item == 0 - fatal messages 1590=item == 0 - fatal messages
1559 1591
1560=item >= 3 - script loading and management 1592=item >= 3 - script loading and management
1561 1593
1562=item >=10 - all events received 1594=item >=10 - all called hooks
1595
1596=item >=11 - hook reutrn values
1563 1597
1564=back 1598=back
1565 1599
1566=head1 AUTHOR 1600=head1 AUTHOR
1567 1601

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines