/usr/lib/perl5/Gtk2/ImageView/Anim.pod is in libgtk2-imageview-perl 0.05-1build2.
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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | =head1 NAME
Gtk2::ImageView::Anim - Subclass of Gtk2::ImageView capable of playing
=cut
=for position DESCRIPTION
=head1 DESCRIPTION
Gtk2::ImageView::Anim is a subclass of Gtk2::ImageView that provies facilities
for displaying and controlling an animation.
=cut
=head1 HIERARCHY
Glib::Object
+----Glib::InitiallyUnowned
+----Gtk2::Object
+----Gtk2::Widget
+----Gtk2::ImageView
+----Gtk2::ImageView::Anim
=cut
=head1 INTERFACES
Glib::Object::_Unregistered::AtkImplementorIface
Gtk2::Buildable
=cut
=for object Gtk2::ImageView::Anim Subclass of Gtk2::ImageView capable of playing
GIF animations.
=cut
=head1 METHODS
=head2 widget or undef = Gtk2::ImageView::Anim-E<gt>B<new>
Returns a new Gtk2::ImageView::Anim with the following default values:
=over
=item anim : NULL
=item is_playing : FALSE
=back
=head2 pixbufanimation or undef = $aview-E<gt>B<get_anim>
Returns the current animation of the view.
=head2 $aview-E<gt>B<set_anim> ($anim)
=over
=item * $anim (Gtk2::Gdk::PixbufAnimation)
=back
Sets the pixbuf animation to play, or NULL to not play any animation.
The effect of this method is analoguous to Gtk2::ImageView::set_pixbuf(). Fit
mode is reset to GTK_FIT_SIZE_IF_LARGER so that the whole area of the animation
fits in the view. Three signals are emitted, first the Gtk2::ImageView will emit
zoom-changed and then pixbuf-changed, second, Gtk2::ImageView::Anim itself will
emit anim-changed.
The default pixbuf animation is NULL.
=over
=item aview : a Gtk2::ImageView::Anim.
=item anim : A pixbuf animation to play.
=back
=head2 boolean = $aview-E<gt>B<get_is_playing>
Returns TRUE if the animation is playing, FALSE otherwise. If there is no
current animation, this method will always return FALSE.
=head2 $aview-E<gt>B<set_is_playing> ($playing)
=over
=item * $playing (boolean)
=back
Sets whether the animation should play or not. If there is no current animation
this method does not have any effect.
=over
=item aview : a Gtk2::ImageView::Anim.
=item playing : TRUE to play the animation, FALSE otherwise
=back
=head2 $aview-E<gt>B<step>
Steps the animation one frame forward. If the animation is playing it will be
stopped. Will it wrap around if the animation is at its last frame?
=over
=item aview : a Gtk2::ImageView::Anim.
=back
=cut
=head1 SIGNALS
=over
=item B<toggle-running> (Gtk2::ImageView::Anim)
=item B<step> (Gtk2::ImageView::Anim)
=back
=cut
=head1 SEE ALSO
L<Gtk2::ImageView>, L<Glib::Object>, L<Glib::InitiallyUnowned>, L<Gtk2::Object>, L<Gtk2::Widget>, L<Gtk2::ImageView>
=cut
=head1 COPYRIGHT
Copyright (C) 2007 by Jeffrey Ratcliffe.
This software is licensed under the GPL-3; see L<Gtk2::ImageView> for a full notice.
=cut
|