forked from AuroraMiddleware/gtk
5f91b6fca6
2000-11-04 Havoc Pennington <hp@pobox.com> * gtk/gtk-sections.txt: Added a bunch of stuff from unused 2000-11-04 Havoc Pennington <hp@pobox.com> * gtk/gtkenums.h: remove trailing comma from GtkDeleteType member list * docs/Changes-2.0.txt: Add note about gtk_container_get_toplevels() * gtk/gtktextview.h: formatting * gtk/gtktextview.c: don't start descriptions with "Returns", confuses gtk-doc
235 lines
3.1 KiB
Plaintext
235 lines
3.1 KiB
Plaintext
<!-- ##### SECTION Title ##### -->
|
|
GtkImage
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
A widget displaying a graphical image
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
The #GtkImage widget displays a graphical image. The image is typically created
|
|
using gdk_image_new.
|
|
</para>
|
|
<para>
|
|
The pixels in a #GtkImage may be manipulated by the application after creation,
|
|
as #GtkImage store the pixel data on the client side. If you wish to store the
|
|
pixel data on the server side (thus not allowing manipulation of the data after
|
|
creation) you should use #GtkPixmap.
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
#GtkPixmap, #GdkRgb
|
|
</para>
|
|
|
|
<!-- ##### STRUCT GtkImage ##### -->
|
|
<para>
|
|
This struct contain private data only and should be accessed by the functions
|
|
below.
|
|
</para>
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_get_icon_set ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@icon_set:
|
|
@size:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_get_image ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@gdk_image:
|
|
@mask:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_get_pixbuf ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_get_pixmap ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@pixmap:
|
|
@mask:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_get_stock ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@stock_id:
|
|
@size:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_get_storage_type ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_new_from_file ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@filename:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_new_from_icon_set ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@icon_set:
|
|
@size:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_new_from_image ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@mask:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_new_from_pixbuf ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@pixbuf:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_new_from_pixmap ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@pixmap:
|
|
@mask:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_new_from_stock ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@stock_id:
|
|
@size:
|
|
@Returns:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_set_from_file ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@filename:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_set_from_icon_set ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@icon_set:
|
|
@size:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_set_from_image ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@gdk_image:
|
|
@mask:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_set_from_pixbuf ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@pixbuf:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_set_from_pixmap ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@pixmap:
|
|
@mask:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_set_from_stock ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@image:
|
|
@stock_id:
|
|
@size:
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_new ##### -->
|
|
<para>
|
|
Creates the new GtkImage using the value and the mask.
|
|
</para>
|
|
|
|
@val:
|
|
@mask: a GDKBitmap that indicates which parts of the image should be transparent.
|
|
@Returns: the GtkImage
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_set ##### -->
|
|
<para>
|
|
Sets the GtkImage
|
|
</para>
|
|
|
|
@image: a #GdkPixmap
|
|
@val:
|
|
@mask: a GDKBitmap that indicates which parts of the image should be transparent.
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_image_get ##### -->
|
|
<para>
|
|
Gets the GtkImage
|
|
</para>
|
|
|
|
@image: a #GdkPixmap
|
|
@val:
|
|
@mask: a GDKBitmap that indicates which parts of the image should be transparent.
|
|
|
|
|