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.238 by root, Sun May 18 18:15:04 2014 UTC vs.
Revision 1.243 by sf-exg, Sat Oct 11 22:02:50 2014 UTC

43 43
44Or by adding them to the resource for extensions loaded by default: 44Or by adding them to the resource for extensions loaded by default:
45 45
46 URxvt.perl-ext-common: default,selection-autotransform 46 URxvt.perl-ext-common: default,selection-autotransform
47 47
48Extensions that add command line parameters or resources on their own are 48Extensions may add resources on their own. Similarly to builtin
49loaded automatically when used. 49resources, these resources can also be specified on the command line
50as long options (with '.' replaced by '-'), in which case the
51corresponding extension is loaded automatically.
50 52
51=head1 API DOCUMENTATION 53=head1 API DOCUMENTATION
52 54
53=head2 General API Considerations 55=head2 General API Considerations
54 56
555no warnings 'utf8'; 557no warnings 'utf8';
556 558
557sub parse_resource { 559sub parse_resource {
558 my ($term, $name, $isarg, $longopt, $flag, $value) = @_; 560 my ($term, $name, $isarg, $longopt, $flag, $value) = @_;
559 561
560 $name =~ y/-/./ if $isarg;
561
562 $term->scan_extensions; 562 $term->scan_extensions;
563 563
564 my $r = $term->{meta}{resource}; 564 my $r = $term->{meta}{resource};
565 keys %$r; # reset iterator 565 keys %$r; # reset iterator
566 while (my ($pattern, $v) = each %$r) { 566 while (my ($k, $v) = each %$r) {
567 if ( 567 my $pattern = $k;
568 $pattern =~ y/./-/ if $isarg;
569 my $prefix = $name;
570 my $suffix;
568 $pattern =~ /\.$/ 571 if ($pattern =~ /\-$/) {
569 ? $pattern eq substr $name, 0, length $pattern 572 $prefix = substr $name, 0, length $pattern;
570 : $pattern eq $name 573 $suffix = substr $name, length $pattern;
571 ) { 574 }
575 if ($pattern eq $prefix) {
572 $name = "$urxvt::RESCLASS.$name"; 576 $name = "$urxvt::RESCLASS.$k$suffix";
573 577
574 push @{ $term->{perl_ext_3} }, $v->[0]; 578 push @{ $term->{perl_ext_3} }, $v->[0];
575 579
576 if ($v->[1] eq "boolean") { 580 if ($v->[1] eq "boolean") {
577 $term->put_option_db ($name, $flag ? "true" : "false"); 581 $term->put_option_db ($name, $flag ? "true" : "false");
675 @TERM_EXT = (); 679 @TERM_EXT = ();
676 $TERM->register_package ($_) for @pkg; 680 $TERM->register_package ($_) for @pkg;
677 } 681 }
678 682
679 for ( 683 for (
680 grep $_, map { split /,/, $TERM->resource ("perl_ext_$_") } 1, 2 684 (grep $_, map { split /,/, $TERM->resource ("perl_ext_$_") } 1, 2),
685 @{ delete $TERM->{perl_ext_3} }
681 ) { 686 ) {
682 if ($_ eq "default") { 687 if ($_ eq "default") {
683 688
684 $ext_arg{$_} = [] 689 $ext_arg{$_} = []
685 for 690 for
686 qw(selection option-popup selection-popup readline), 691 qw(selection option-popup selection-popup readline),
687 map $_->[0], values %{ $TERM->{meta}{binding} }, 692 map $_->[0], values %{ $TERM->{meta}{binding} };
688 @{ delete $TERM->{perl_ext_3} };
689 693
690 for ($TERM->_keysym_resources) { 694 for ($TERM->_keysym_resources) {
691 next if /^(?:string|command|builtin|builtin-string|perl)/; 695 next if /^(?:string|command|builtin|builtin-string|perl)/;
692 next unless /^([A-Za-z0-9_\-]+):/; 696 next unless /^([A-Za-z0-9_\-]+):/;
693 697
694 my $ext = $1; 698 my $ext = $1;
695 $ext =~ y/-/_/;
696 699
697 $ext_arg{$ext} = []; 700 $ext_arg{$ext} = [];
698 } 701 }
699 702
700 } elsif (/^-(.*)$/) { 703 } elsif (/^-(.*)$/) {
1272Returns the X-Resource for the given pattern, excluding the program or 1275Returns the X-Resource for the given pattern, excluding the program or
1273class name, i.e. C<< $term->x_resource ("boldFont") >> should return the 1276class name, i.e. C<< $term->x_resource ("boldFont") >> should return the
1274same value as used by this instance of rxvt-unicode. Returns C<undef> if no 1277same value as used by this instance of rxvt-unicode. Returns C<undef> if no
1275resource with that pattern exists. 1278resource with that pattern exists.
1276 1279
1277Extensions that define extra resource or command line arguments also need 1280Extensions that define extra resources also need to call this method
1278to call this method to access their values. 1281to access their values.
1279 1282
1280If the method is called on an extension object (basically, from an 1283If the method is called on an extension object (basically, from an
1281extension), then the special prefix C<%.> will be replaced by the name of 1284extension), then the special prefix C<%.> will be replaced by the name of
1282the extension and a dot, and the lone string C<%> will be replaced by the 1285the extension and a dot, and the lone string C<%> will be replaced by the
1283extension name itself. This makes it possible to code extensions so you 1286extension name itself. This makes it possible to code extensions so you
1499to the locale-specific encoding using C<< $term->locale_encode >>. 1502to the locale-specific encoding using C<< $term->locale_encode >>.
1500 1503
1501=item $term->tt_write_user_input ($octets) 1504=item $term->tt_write_user_input ($octets)
1502 1505
1503Like C<tt_write>, but should be used when writing strings in response to 1506Like C<tt_write>, but should be used when writing strings in response to
1504the user pressing a key, to invokes the additional actions requested by 1507the user pressing a key, to invoke the additional actions requested by
1505the user for that case (C<tt_write> doesn't do that). 1508the user for that case (C<tt_write> doesn't do that).
1506 1509
1507The typical use case would be inside C<on_action> hooks. 1510The typical use case would be inside C<on_action> hooks.
1508 1511
1509=item $term->tt_paste ($octets) 1512=item $term->tt_paste ($octets)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines