This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.24/Pango/AttrList.pod is in libpango-perl 1.227-1+b1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
=head1 NAME

Pango::AttrList - holds attributes that apply to a section of text

=cut

=for position DESCRIPTION

=head1 DESCRIPTION

Pango::AttrList is a collection of Pango::Attributes.  These
attributes annotate text with styles.

=cut



=head1 HIERARCHY

  Glib::Boxed
  +----Pango::AttrList



=cut

=for object Pango::AttrList - holds attributes that apply to a section of text

=cut




=head1 METHODS

=head2 attrlist = Pango::AttrList-E<gt>B<new> 

=head2 $list-E<gt>B<change> ($attr)

=over

=item * $attr (Pango::Attribute) 

=back

=head2 attrlist or undef = $list-E<gt>B<filter> ($func, $data=undef)

=over

=item * $func (scalar) 

=item * $data (scalar) 

=back

Since: pango 1.2

=head2 $list-E<gt>B<insert> ($attr)

=over

=item * $attr (Pango::Attribute) 

=back

=head2 $list-E<gt>B<insert_before> ($attr)

=over

=item * $attr (Pango::Attribute) 

=back

=head2 attriterator = $list-E<gt>B<get_iterator> 

=head2 ($attr_list, $text, $accel_char) = Pango->B<parse_markup> ($markup_text, $accel_marker)

=over

=item * $markup_text (string) 

=item * $accel_marker (character) 

=back

Parses marked-up text to create a plaintext string and an attribute list.

If I<$accel_marker> is supplied and nonzero, the given character will mark the
character following it as an accelerator.  For example, the accel marker might
be an ampersand or underscore.  All characters marked as an acclerator will
receive a PANGO_UNDERLINE_LOW attribute, and the first character so marked will
be returned in I<$accel_char>.  Two I<$accel_marker> characters following each
other reduce to a single literal I<$accel_marker> character.

May croak with a L<Glib::Error> in $@ on failure.

=head2 $list-E<gt>B<splice> ($other, $pos, $len)

=over

=item * $other (Pango::AttrList) 

=item * $pos (integer) 

=item * $len (integer) 

=back



=cut


=head1 SEE ALSO

L<Pango>, L<Glib::Boxed>


=cut


=head1 COPYRIGHT

Copyright (C) 2003-2011 by the gtk2-perl team.

This software is licensed under the LGPL.  See L<Pango> for a full notice.



=cut