forked from AuroraMiddleware/gtk
372c4d2627
1999-09-22 Damon Chaplin <damon@karuna.freeserve.co.uk> * gtk/tmpl/*.sgml: ran make templates, to fix problems with structs. * gtk/gtk-sections.txt: rearranged GtkCombo section. * gtk/tmpl/gtkvseparator.sgml: * gtk/tmpl/gtkhseparator.sgml: * gtk/tmpl/gtkgc.sgml: * gtk/tmpl/gtkfeatures.sgml: * gtk/tmpl/gtktipsquery.sgml: * gtk/tmpl/gtkitem.sgml: * gtk/tmpl/gtkinvisible.sgml: * gtk/tmpl/gtkgamma.sgml: * gtk/tmpl/gtkdata.sgml: * gtk/tmpl/gtkcurve.sgml: * gtk/tmpl/gtkcombo.sgml: * gtk/tmpl/gtkaccellabel.sgml: documented.
76 lines
1.9 KiB
Plaintext
76 lines
1.9 KiB
Plaintext
<!-- ##### SECTION Title ##### -->
|
|
GtkPixmap
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
a widget displaying a graphical image or icon.
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
The #GtkPixmap widget displays a graphical image or icon.
|
|
The icon is typically created using gdk_pixmap_colormap_create_from_xpm()
|
|
or gdk_pixmap_colormap_create_from_xpm_d().
|
|
</para>
|
|
<para>
|
|
The pixels in a #GtkPixmap cannot be manipulated by the application after
|
|
creation, since under the X Window system the pixel data is stored on the
|
|
X server and so is not available to the client application.
|
|
If you want to create graphical images which can be manipulated by the
|
|
application, look at #GtkImage and #GdkRGB.
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### STRUCT GtkPixmap ##### -->
|
|
<para>
|
|
The #GtkPixmap-struct struct contains private data only, and
|
|
should be accessed using the functions below.
|
|
</para>
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_pixmap_new ##### -->
|
|
<para>
|
|
Creates a new #GtkPixmap, using the given GDK pixmap and mask.
|
|
</para>
|
|
|
|
@pixmap: a #GDKPixmap.
|
|
@mask: a #GDKBitmap which indicates which parts of the @pixmap should be
|
|
transparent.
|
|
@Returns: a new #GtkPixmap.
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_pixmap_set ##### -->
|
|
<para>
|
|
Sets the #GdkPixmap and #GdkBitmap mask.
|
|
</para>
|
|
|
|
@pixmap: a #GtkPixmap.
|
|
@val: a #GdkPixmap.
|
|
@mask: a #GdkBitmap, which indicates which parts of the @pixmap should be
|
|
transparent. This can be NULL, in which case none of the @pixmap is
|
|
transparent.
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_pixmap_get ##### -->
|
|
<para>
|
|
Gets the current #GdkPixmap and #GdkBitmap mask.
|
|
</para>
|
|
|
|
@pixmap: a #GtkPixmap.
|
|
@val: returns the current #GdkPixmap.
|
|
@mask: returns the current #GdkBitmap mask.
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_pixmap_set_build_insensitive ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@pixmap: a #GtkPixmap.
|
|
@build: set to TRUE if an extra pixmap should be automatically created to use
|
|
when the pixmap is insensitive.
|
|
|
|
|