1999-11-04 07:30:04 +00:00
|
|
|
<!-- ##### SECTION Title ##### -->
|
|
|
|
GdkPixbufLoader
|
|
|
|
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
2000-01-07 16:51:10 +00:00
|
|
|
Application-driven progressive image loading.
|
1999-11-04 07:30:04 +00:00
|
|
|
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
1999-11-09 20:59:30 +00:00
|
|
|
<para>
|
1999-11-11 15:52:19 +00:00
|
|
|
#GdkPixbufLoader provides a way for applications to drive the
|
2000-01-07 16:51:10 +00:00
|
|
|
process of loading an image, by letting them send the image data
|
2000-04-13 01:18:41 +00:00
|
|
|
directly to the loader instead of having the loader read the data
|
|
|
|
from a file. Applications can use this functionality instead of
|
2002-04-23 22:22:44 +00:00
|
|
|
gdk_pixbuf_new_from_file() or gdk_pixbuf_animation_new_from_file()
|
|
|
|
when they need to parse image data in
|
2000-04-13 01:18:41 +00:00
|
|
|
small chunks. For example, it should be used when reading an
|
|
|
|
image from a (potentially) slow network connection, or when
|
|
|
|
loading an extremely large file.
|
1999-11-09 20:59:30 +00:00
|
|
|
</para>
|
2000-04-13 01:18:41 +00:00
|
|
|
|
2000-01-07 16:51:10 +00:00
|
|
|
<para>
|
2000-04-13 01:18:41 +00:00
|
|
|
To use #GdkPixbufLoader to load an image, just create a new one,
|
|
|
|
and call gdk_pixbuf_loader_write() to send the data to it. When
|
|
|
|
done, gdk_pixbuf_loader_close() should be called to end the stream
|
2002-07-06 23:10:46 +00:00
|
|
|
and finalize everything. The loader will emit three important
|
2000-04-13 01:18:41 +00:00
|
|
|
signals throughout the process. The first, "<link
|
2002-07-06 23:10:46 +00:00
|
|
|
linkend="GdkPixbufLoader-size-prepared">size_prepared</link>",
|
2000-04-13 01:18:41 +00:00
|
|
|
will be called as soon as the image has enough information to
|
2002-07-06 23:10:46 +00:00
|
|
|
determine the size of the image to be used. If you want to scale
|
|
|
|
the image while loading it, you can call gdk_pixbuf_loader_set_size()
|
|
|
|
in response to this signal.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>The second signal, "<link
|
|
|
|
linkend="GdkPixbufLoader-area-prepared">area_prepared</link>",
|
|
|
|
will be called as soon as the pixbuf of the desired has been
|
|
|
|
allocated. You can obtain it by calling gdk_pixbuf_loader_get_pixbuf().
|
|
|
|
If you want to use it, simply ref it.
|
|
|
|
In addition, no actual information will be passed in yet, so the
|
2000-04-13 01:18:41 +00:00
|
|
|
pixbuf can be safely filled with any temporary graphics (or an
|
2002-07-06 23:10:46 +00:00
|
|
|
initial color) as needed. You can also call
|
|
|
|
gdk_pixbuf_loader_get_pixbuf() later and get the same pixbuf.
|
2000-01-07 16:51:10 +00:00
|
|
|
</para>
|
2000-04-13 01:18:41 +00:00
|
|
|
|
2000-01-07 16:51:10 +00:00
|
|
|
<para>
|
2002-07-06 23:10:46 +00:00
|
|
|
The last signal, "<link
|
2000-04-13 01:18:41 +00:00
|
|
|
linkend="GdkPixbufLoader-area-updated">area_updated</link>" gets
|
|
|
|
called every time a region is updated. This way you can update a
|
|
|
|
partially completed image. Note that you do not know anything
|
|
|
|
about the completeness of an image from the area updated. For
|
|
|
|
example, in an interlaced image, you need to make several passes
|
|
|
|
before the image is done loading.
|
2000-01-07 16:51:10 +00:00
|
|
|
</para>
|
2000-04-13 01:18:41 +00:00
|
|
|
|
2000-01-07 16:51:10 +00:00
|
|
|
<refsect2>
|
2000-04-13 01:18:41 +00:00
|
|
|
<title>Loading an animation</title>
|
|
|
|
|
2000-01-07 16:51:10 +00:00
|
|
|
<para>
|
2002-04-23 22:22:44 +00:00
|
|
|
Loading an animation is almost as easy as loading an
|
|
|
|
image. Once the first "<link
|
|
|
|
linkend="GdkPixbufLoader-area-prepared">area_prepared</link>" signal
|
2000-01-07 16:51:10 +00:00
|
|
|
has been emitted, you can call gdk_pixbuf_loader_get_animation()
|
2002-04-23 22:22:44 +00:00
|
|
|
to get the #GdkPixbufAnimation struct and gdk_pixbuf_animation_get_iter()
|
|
|
|
to get an #GdkPixbufAnimationIter for displaying it.
|
2000-04-13 01:18:41 +00:00
|
|
|
</para>
|
2000-01-07 16:51:10 +00:00
|
|
|
</refsect2>
|
2000-01-17 01:48:21 +00:00
|
|
|
|
1999-11-04 07:30:04 +00:00
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
1999-11-10 22:48:46 +00:00
|
|
|
<para>
|
2002-04-23 22:22:44 +00:00
|
|
|
gdk_pixbuf_new_from_file(), gdk_pixbuf_animation_new_from_file()
|
1999-11-10 22:48:46 +00:00
|
|
|
</para>
|
1999-11-04 07:30:04 +00:00
|
|
|
|
2005-06-20 22:06:27 +00:00
|
|
|
<!-- ##### SECTION Stability_Level ##### -->
|
|
|
|
|
|
|
|
|
2002-11-08 19:41:50 +00:00
|
|
|
<!-- ##### STRUCT GdkPixbufLoader ##### -->
|
|
|
|
<para>
|
2002-12-09 18:37:59 +00:00
|
|
|
The <structname>GdkPixbufLoader</structname> struct contains only private
|
|
|
|
fields.
|
2002-11-08 19:41:50 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
|
2004-07-20 02:26:06 +00:00
|
|
|
<!-- ##### SIGNAL GdkPixbufLoader::area-prepared ##### -->
|
|
|
|
<para>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@gdkpixbufloader:
|
|
|
|
|
|
|
|
<!-- ##### SIGNAL GdkPixbufLoader::area-updated ##### -->
|
|
|
|
<para>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@gdkpixbufloader:
|
|
|
|
@arg1:
|
|
|
|
@arg2:
|
|
|
|
@arg3:
|
|
|
|
@arg4:
|
|
|
|
|
|
|
|
<!-- ##### SIGNAL GdkPixbufLoader::closed ##### -->
|
|
|
|
<para>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@gdkpixbufloader:
|
|
|
|
|
|
|
|
<!-- ##### SIGNAL GdkPixbufLoader::size-prepared ##### -->
|
|
|
|
<para>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@gdkpixbufloader:
|
|
|
|
@arg1:
|
|
|
|
@arg2:
|
|
|
|
|
2000-09-07 18:17:06 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_new ##### -->
|
|
|
|
<para>
|
1999-11-04 07:30:04 +00:00
|
|
|
|
2000-09-07 18:17:06 +00:00
|
|
|
</para>
|
|
|
|
|
|
|
|
@Returns:
|
1999-11-04 07:30:04 +00:00
|
|
|
|
|
|
|
|
2000-09-07 18:17:06 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_new_with_type ##### -->
|
1999-11-04 07:30:04 +00:00
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
2000-09-07 18:17:06 +00:00
|
|
|
@image_type:
|
2000-10-18 18:42:54 +00:00
|
|
|
@error:
|
1999-11-04 07:30:04 +00:00
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2003-07-28 16:08:20 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_new_with_mime_type ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@mime_type:
|
|
|
|
@error:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
Documentation fixes.
Sun Oct 13 18:50:14 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtkmenu.c, gtkmenu.sgml, gtkitemfactory.c, gdkwindow.c,
gtkwindow.c, gtkpaned.sgml, gtkdialog.c, gtkbox.h, gtkbutton.sgml,
gtktreemodel.sgml,gtktable.sgml, gtktable.c:
Documentation fixes.
#85719, #90759, #95169, Owen Taylor;
#89221, Yao Zhang, Matthias Clasen;
#95592, Joost Faassen;
#92637, Vitaly Tishkov;
#94616, Ben Martin;
#94772, sbaillie@bigpond.net.au;
2002-10-13 17:17:14 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_get_format ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@loader:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
1999-11-04 07:30:04 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_write ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@loader:
|
|
|
|
@buf:
|
|
|
|
@count:
|
2000-10-18 18:42:54 +00:00
|
|
|
@error:
|
1999-11-04 07:30:04 +00:00
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
Minor documentation fixes
2002-08-10 Soren Sandmann <sandmann@daimi.au.dk>
* docs/reference/gtk/tree_widget.sgml,
docs/reference/gtk/tmpl/gtkdialog.sgml,
docs/reference/gtk/tmpl/gtkentry.sgml,
docs/reference/gtk/tmpl/gtkfilesel.sgml,
docs/reference/gtk/tmpl/gtkfontsel.sgml,
docs/reference/gtk/tmpl/gtkfontseldlg.sgml,
docs/reference/gtk/tmpl/gtktreemodel.sgml,
docs/reference/gtk/tmpl/gtkwidget.sgml, gdk/x11/gdkdisplay-x11.c,
gtk/gtkbbox.c, gtk/gtkbox.c, gtk/gtkbutton.c, gtk/gtkcellrenderer.c,
gtk/gtkcellrendererpixbuf.c, gtk/gtkcellrenderertext.c,
gtk/gtkcheckmenuitem.c, gtk/gtkcontainer.c, gtk/gtkcurve.c,
gtk/gtkdialog.h, gtk/gtkentry.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c,
gtk/gtkframe.c, gtk/gtkhandlebox.c, gtk/gtkiconfactory.c,
gtk/gtkimage.c, gtk/gtkinvisible.c, gtk/gtkitemfactory.c,
gtk/gtklabel.c, gtk/gtklayout.c, gtk/gtkmenu.c, gtk/gtkprogress.c,
gtk/gtkprogressbar.c, gtk/gtkscrolledwindow.c, gtk/gtksizegroup.c,
gtk/gtktable.c, gtk/gtktextiter.c, gtk/gtktexttag.c,
gtk/gtktexttag.h, gtk/gtktextview.c, gtk/gtktogglebutton.c,
gtk/gtktoolbar.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c,
gtk/gtktreestore.c, gtk/gtktreeview.c, gtk/gtktreeviewcolumn.c,
gtk/gtkviewport.c, gtk/gtkwidget.c, gtk/gtkwidget.h,
gtk/gtkwindow.c:
Minor documentation fixes
(#89254, patch from Brett Nash;
#85809, patch from daten@dnetc.org;
#76391, patch from Ross Burton;
#74559, Manuel Clos;
#73569, #72005, Alexey A. Malyshev;
#70061, patch from Dennis Bj"orklund;
#64566, #63388, #58328, #57499, #81007, #77349, Vitaly Tishkov;
#78932, Vitaly Tishkov, patch from Ross Burton;
#73306)
2002-08-10 09:55:41 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_set_size ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@loader:
|
|
|
|
@width:
|
|
|
|
@height:
|
|
|
|
|
|
|
|
|
1999-11-04 07:30:04 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_get_pixbuf ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@loader:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_get_animation ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@loader:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
1999-11-04 07:30:04 +00:00
|
|
|
<!-- ##### FUNCTION gdk_pixbuf_loader_close ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@loader:
|
2001-02-20 02:59:30 +00:00
|
|
|
@error:
|
|
|
|
@Returns:
|
1999-11-04 07:30:04 +00:00
|
|
|
|
2003-12-11 00:57:20 +00:00
|
|
|
<!--
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-parent-document: ("../gdk-pixbuf.sgml" "book" "refsect2" "")
|
|
|
|
End:
|
|
|
|
-->
|
|
|
|
|
2000-12-04 23:04:17 +00:00
|
|
|
|