mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 20:30:11 +00:00
icon-theme: Update the docs
This commit is contained in:
parent
f7cd2a782b
commit
2ec51b7010
@ -376,6 +376,7 @@ gdk_cairo_region
|
|||||||
gdk_cairo_region_create_from_surface
|
gdk_cairo_region_create_from_surface
|
||||||
gdk_cairo_draw_from_gl
|
gdk_cairo_draw_from_gl
|
||||||
gdk_cairo_surface_upload_to_gl
|
gdk_cairo_surface_upload_to_gl
|
||||||
|
gdk_cairo_image_surface_recolor
|
||||||
</SECTION>
|
</SECTION>
|
||||||
|
|
||||||
<SECTION>
|
<SECTION>
|
||||||
|
@ -4991,6 +4991,8 @@ GtkIcon
|
|||||||
GtkIconTheme
|
GtkIconTheme
|
||||||
GtkIconLookupFlags
|
GtkIconLookupFlags
|
||||||
GTK_ICON_THEME_ERROR
|
GTK_ICON_THEME_ERROR
|
||||||
|
GTK_TYPE_ICON_THEME_ERROR
|
||||||
|
GTK_TYPE_ICON_LOOKUP_FLAGS
|
||||||
GtkIconThemeError
|
GtkIconThemeError
|
||||||
gtk_icon_theme_new
|
gtk_icon_theme_new
|
||||||
gtk_icon_theme_get_default
|
gtk_icon_theme_get_default
|
||||||
@ -5004,29 +5006,20 @@ gtk_icon_theme_add_resource_path
|
|||||||
gtk_icon_theme_set_custom_theme
|
gtk_icon_theme_set_custom_theme
|
||||||
gtk_icon_theme_has_icon
|
gtk_icon_theme_has_icon
|
||||||
gtk_icon_theme_lookup_icon
|
gtk_icon_theme_lookup_icon
|
||||||
gtk_icon_theme_lookup_icon_for_scale
|
|
||||||
gtk_icon_theme_choose_icon
|
gtk_icon_theme_choose_icon
|
||||||
gtk_icon_theme_choose_icon_for_scale
|
gtk_icon_theme_choose_icon_async
|
||||||
|
gtk_icon_theme_choose_icon_finish
|
||||||
gtk_icon_theme_lookup_by_gicon
|
gtk_icon_theme_lookup_by_gicon
|
||||||
gtk_icon_theme_lookup_by_gicon_for_scale
|
|
||||||
gtk_icon_theme_load_icon
|
|
||||||
gtk_icon_theme_load_icon_for_scale
|
|
||||||
gtk_icon_theme_list_icons
|
gtk_icon_theme_list_icons
|
||||||
gtk_icon_theme_get_icon_sizes
|
gtk_icon_theme_get_icon_sizes
|
||||||
gtk_icon_theme_rescan_if_needed
|
gtk_icon_theme_rescan_if_needed
|
||||||
gtk_icon_get_base_size
|
gtk_icon_get_base_size
|
||||||
gtk_icon_get_base_scale
|
gtk_icon_get_base_scale
|
||||||
gtk_icon_get_filename
|
gtk_icon_get_filename
|
||||||
gtk_icon_load_icon
|
|
||||||
gtk_icon_load_icon_async
|
|
||||||
gtk_icon_load_icon_finish
|
|
||||||
gtk_icon_load_symbolic
|
|
||||||
gtk_icon_load_symbolic_async
|
|
||||||
gtk_icon_load_symbolic_finish
|
|
||||||
gtk_icon_load_symbolic_for_context
|
|
||||||
gtk_icon_load_symbolic_for_context_async
|
|
||||||
gtk_icon_load_symbolic_for_context_finish
|
|
||||||
gtk_icon_is_symbolic
|
gtk_icon_is_symbolic
|
||||||
|
gtk_icon_snapshot_with_colors
|
||||||
|
gtk_icon_download_colored_texture
|
||||||
|
gtk_icon_download_texture
|
||||||
<SUBSECTION Standard>
|
<SUBSECTION Standard>
|
||||||
GtkIconClass
|
GtkIconClass
|
||||||
GTK_ICON_THEME
|
GTK_ICON_THEME
|
||||||
@ -5037,12 +5030,12 @@ GTK_ICON_THEME_CLASS
|
|||||||
GTK_IS_ICON_THEME_CLASS
|
GTK_IS_ICON_THEME_CLASS
|
||||||
GTK_ICON_THEME_GET_CLASS
|
GTK_ICON_THEME_GET_CLASS
|
||||||
gtk_icon_get_type
|
gtk_icon_get_type
|
||||||
GTK_TYPE_ICON_INFO
|
GTK_ICON
|
||||||
GTK_ICON_INFO
|
GTK_IS_ICON
|
||||||
GTK_ICON_INFO_CLASS
|
GTK_TYPE_ICON
|
||||||
GTK_ICON_INFO_GET_CLASS
|
GTK_ICON_CLASS
|
||||||
GTK_IS_ICON_INFO
|
GTK_ICON_GET_CLASS
|
||||||
GTK_IS_ICON_INFO_CLASS
|
GTK_IS_ICON_CLASS
|
||||||
<SUBSECTION Private>
|
<SUBSECTION Private>
|
||||||
GtkIconThemePrivate
|
GtkIconThemePrivate
|
||||||
gtk_icon_theme_error_quark
|
gtk_icon_theme_error_quark
|
||||||
|
@ -457,6 +457,18 @@ gdk_cairo_region_from_clip (cairo_t *cr)
|
|||||||
return region;
|
return region;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gdk_cairo_image_surface_recolor:
|
||||||
|
* @image_surface: a cairo image surface
|
||||||
|
* @color_matrix: the color matrix to use
|
||||||
|
* @color_offset: the color offset to use
|
||||||
|
*
|
||||||
|
* Modifies the colors of an surfaceimage by applying an affine transformation
|
||||||
|
* in RGB space.
|
||||||
|
*
|
||||||
|
* This is the same operation as in gtk_snapshot_push_color_matrix() but
|
||||||
|
* always done on the cpu.
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
gdk_cairo_image_surface_recolor (cairo_surface_t *image_surface,
|
gdk_cairo_image_surface_recolor (cairo_surface_t *image_surface,
|
||||||
const graphene_matrix_t *color_matrix,
|
const graphene_matrix_t *color_matrix,
|
||||||
|
@ -82,25 +82,24 @@
|
|||||||
* so that the icon information is shared with other people
|
* so that the icon information is shared with other people
|
||||||
* looking up icons.
|
* looking up icons.
|
||||||
* |[<!-- language="C" -->
|
* |[<!-- language="C" -->
|
||||||
* GError *error = NULL;
|
|
||||||
* GtkIconTheme *icon_theme;
|
* GtkIconTheme *icon_theme;
|
||||||
* GdkPaintable *paintable;
|
* GtkIcon *icon;
|
||||||
*
|
*
|
||||||
* icon_theme = gtk_icon_theme_get_default ();
|
* icon_theme = gtk_icon_theme_get_default ();
|
||||||
* paintable = gtk_icon_theme_load_icon (icon_theme,
|
* icon = gtk_icon_theme_lookup_icon (icon_theme,
|
||||||
* "my-icon-name", // icon name
|
* "my-icon-name", // icon name
|
||||||
* 48, // icon size
|
* 48, // icon size
|
||||||
* 0, // flags
|
* 1, // scale
|
||||||
* &error);
|
* 0, // flags);
|
||||||
* if (!paintable)
|
* if (!icon)
|
||||||
* {
|
* {
|
||||||
* g_warning ("Couldn’t load icon: %s", error->message);
|
* g_warning ("No icon '%s' in theme");
|
||||||
* g_error_free (error);
|
|
||||||
* }
|
* }
|
||||||
* else
|
* else
|
||||||
* {
|
* {
|
||||||
* // Use the icon
|
* GdkPaintable *paintable = GDK_PAINTABLE (icon);
|
||||||
* g_object_unref (paintable);
|
* // Use the paintable
|
||||||
|
* g_object_unref (icon);
|
||||||
* }
|
* }
|
||||||
* ]|
|
* ]|
|
||||||
*/
|
*/
|
||||||
@ -268,7 +267,7 @@ G_LOCK_DEFINE_STATIC(icon_cache);
|
|||||||
* GtkIcon:
|
* GtkIcon:
|
||||||
*
|
*
|
||||||
* Contains information found when looking up an icon in
|
* Contains information found when looking up an icon in
|
||||||
* an icon theme.
|
* an icon theme and supports painting it as a #GdkPaintable.
|
||||||
*/
|
*/
|
||||||
struct _GtkIcon
|
struct _GtkIcon
|
||||||
{
|
{
|
||||||
@ -2186,18 +2185,33 @@ choose_icon (GtkIconTheme *self,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gtk_icon_theme_lookup_icon_scale:
|
* gtk_icon_theme_lookup_icon:
|
||||||
* @self: a #GtkIconTheme
|
* @self: a #GtkIconTheme
|
||||||
* @icon_name: the name of the icon to lookup
|
* @icon_name: the name of the icon to lookup
|
||||||
* @size: desired icon size
|
* @size: desired icon size. The resulting icon may not be exactly this size.
|
||||||
* @scale: the desired scale
|
* @scale: the window scale this will be displayed on
|
||||||
* @flags: flags modifying the behavior of the icon lookup
|
* @flags: flags modifying the behavior of the icon lookup
|
||||||
*
|
*
|
||||||
* Looks up a named icon for a particular window scale and returns a
|
* Looks up a named icon for a desired size and window scale, returning a
|
||||||
* #GtkIcon containing information such as the filename of the
|
* #GtkIcon. The icon can then be rendered by using it as a #GdkPaintable,
|
||||||
* icon. The icon can then be rendered into a pixbuf using
|
* or you can get information such as the filename and size. The pixels
|
||||||
* gtk_icon_load_icon(). (gtk_icon_theme_load_icon() combines
|
* of the texture can be access by using gtk_icon_download_texture().
|
||||||
* these two steps if all you need is the pixbuf.)
|
*
|
||||||
|
* The icon icon size will be based on the requested @size, but may
|
||||||
|
* not be exactly this size; an icon theme may have icons that differ
|
||||||
|
* slightly from their nominal sizes, and in addition GTK+ will avoid
|
||||||
|
* scaling icons that it considers sufficiently close to the requested
|
||||||
|
* size or for which the source image would have to be scaled up too
|
||||||
|
* far. (This maintains sharpness.). This behaviour can be changed by
|
||||||
|
* passing the %GTK_ICON_LOOKUP_FORCE_SIZE flag, which causes the icon
|
||||||
|
* to be scaled to the exact size.
|
||||||
|
*
|
||||||
|
* Note that you probably want to listen for icon theme changes and
|
||||||
|
* update the icon. This is usually done by connecting to the
|
||||||
|
* GtkWidget::style-updated signal.
|
||||||
|
*
|
||||||
|
* Often you want to look up multiple icons at the same time, as fallbacks.
|
||||||
|
* For this use the gtk_icon_theme_choose_icon() method is a better option.
|
||||||
*
|
*
|
||||||
* Returns: (nullable) (transfer full): a #GtkIcon object
|
* Returns: (nullable) (transfer full): a #GtkIcon object
|
||||||
* containing information about the icon, or %NULL if the
|
* containing information about the icon, or %NULL if the
|
||||||
@ -2294,20 +2308,36 @@ gtk_icon_theme_lookup_icon (GtkIconTheme *self,
|
|||||||
* @self: a #GtkIconTheme
|
* @self: a #GtkIconTheme
|
||||||
* @icon_names: (array zero-terminated=1): %NULL-terminated
|
* @icon_names: (array zero-terminated=1): %NULL-terminated
|
||||||
* array of icon names to lookup
|
* array of icon names to lookup
|
||||||
* @size: desired icon size
|
* @size: desired icon size. The resulting icon may not be exactly this size.
|
||||||
* @scale: desired scale
|
* @scale: the window scale this will be displayed on
|
||||||
* @flags: flags modifying the behavior of the icon lookup
|
* @flags: flags modifying the behavior of the icon lookup
|
||||||
*
|
*
|
||||||
* Looks up a named icon for a particular window scale and returns
|
* Looks up a named icon for a desired size and window scale, returning a
|
||||||
* a #GtkIcon containing information such as the filename of the
|
* #GtkIcon. The icon can then be rendered by using it as a #GdkPaintable,
|
||||||
* icon. The icon can then be rendered into a pixbuf using
|
* or you can get information such as the filename and size. The pixels
|
||||||
* gtk_icon_load_icon(). (gtk_icon_theme_load_icon()
|
* of the texture can be access by using gtk_icon_download_texture().
|
||||||
* combines these two steps if all you need is the pixbuf.)
|
|
||||||
*
|
*
|
||||||
* If @icon_names contains more than one name, this function
|
* If @icon_names contains more than one name, this function
|
||||||
* tries them all in the given order before falling back to
|
* tries them all in the given order before falling back to
|
||||||
* inherited icon themes.
|
* inherited icon themes.
|
||||||
*
|
*
|
||||||
|
* The icon icon size will be based on the requested @size, but may
|
||||||
|
* not be exactly this size; an icon theme may have icons that differ
|
||||||
|
* slightly from their nominal sizes, and in addition GTK+ will avoid
|
||||||
|
* scaling icons that it considers sufficiently close to the requested
|
||||||
|
* size or for which the source image would have to be scaled up too
|
||||||
|
* far. (This maintains sharpness.). This behaviour can be changed by
|
||||||
|
* passing the %GTK_ICON_LOOKUP_FORCE_SIZE flag, which causes the icon
|
||||||
|
* to be scaled to the exact size.
|
||||||
|
*
|
||||||
|
* Note that you probably want to listen for icon theme changes and
|
||||||
|
* update the icon. This is usually done by connecting to the
|
||||||
|
* GtkWidget::style-updated signal.
|
||||||
|
*
|
||||||
|
* This function does not support the flag
|
||||||
|
* GTK_ICON_LOOKUP_GENERIC_FALLBACK, that only works with the simpler
|
||||||
|
* gtk_icon_theme_lookup_icon() method.
|
||||||
|
*
|
||||||
* Returns: (nullable) (transfer full): a #GtkIcon object
|
* Returns: (nullable) (transfer full): a #GtkIcon object
|
||||||
* containing information about the icon, or %NULL if the
|
* containing information about the icon, or %NULL if the
|
||||||
* icon wasn’t found.
|
* icon wasn’t found.
|
||||||
@ -2422,8 +2452,8 @@ load_icon_thread (GTask *task,
|
|||||||
* @self: a #GtkIconTheme
|
* @self: a #GtkIconTheme
|
||||||
* @icon_names: (array zero-terminated=1): %NULL-terminated array of
|
* @icon_names: (array zero-terminated=1): %NULL-terminated array of
|
||||||
* icon names to lookup
|
* icon names to lookup
|
||||||
* @size: desired icon size
|
* @size: desired icon size.
|
||||||
* @scale: desired scale
|
* @scale: the window scale this will be displayed on
|
||||||
* @flags: flags modifying the behavior of the icon lookup
|
* @flags: flags modifying the behavior of the icon lookup
|
||||||
* @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
|
* @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
|
||||||
* @callback: (scope async): a #GAsyncReadyCallback to call when the
|
* @callback: (scope async): a #GAsyncReadyCallback to call when the
|
||||||
@ -2434,10 +2464,6 @@ load_icon_thread (GTask *task,
|
|||||||
*
|
*
|
||||||
* For more details, see gtk_icon_theme_choose_icon() which is the synchronous
|
* For more details, see gtk_icon_theme_choose_icon() which is the synchronous
|
||||||
* version of this call.
|
* version of this call.
|
||||||
*
|
|
||||||
* Returns: (nullable) (transfer full): a #GtkIcon object
|
|
||||||
* containing information about the icon, or %NULL if the
|
|
||||||
* icon wasn’t found.
|
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_icon_theme_choose_icon_async (GtkIconTheme *self,
|
gtk_icon_theme_choose_icon_async (GtkIconTheme *self,
|
||||||
@ -2515,11 +2541,11 @@ gtk_icon_theme_choose_icon_async (GtkIconTheme *self,
|
|||||||
/**
|
/**
|
||||||
* gtk_icon_theme_choose_icon_finish:
|
* gtk_icon_theme_choose_icon_finish:
|
||||||
* @self: a #GtkIconTheme
|
* @self: a #GtkIconTheme
|
||||||
* @res: a #GAsyncResult
|
* @result: a #GAsyncResult
|
||||||
* @error: (allow-none): location to store error information on failure,
|
* @error: (allow-none): location to store error information on failure,
|
||||||
* or %NULL.
|
* or %NULL.
|
||||||
*
|
*
|
||||||
* Finishes an async icon load, see gtk_icon_load_icon_async().
|
* Finishes an async icon load, see gtk_icon_theme_choose_icon_async().
|
||||||
*
|
*
|
||||||
* Returns: (transfer full): the rendered icon; this may be a newly
|
* Returns: (transfer full): the rendered icon; this may be a newly
|
||||||
* created icon or a new reference to an internal icon, so you must
|
* created icon or a new reference to an internal icon, so you must
|
||||||
@ -3901,6 +3927,17 @@ icon_ensure_scale_and_texture__locked (GtkIcon *icon)
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_icon_download_texture:
|
||||||
|
* @self: a #GtkIcon
|
||||||
|
* @error: (allow-none): location to store error information on failure,
|
||||||
|
* or %NULL.
|
||||||
|
*
|
||||||
|
* Tries to access the pixels of an icon. This can fail if the icon file is missing or
|
||||||
|
* there is some kind of problem loading the icon file.
|
||||||
|
*
|
||||||
|
* Returns: (transfer full): An texture with the contents of the icon, or %NULL on failure.
|
||||||
|
*/
|
||||||
GdkTexture *
|
GdkTexture *
|
||||||
gtk_icon_download_texture (GtkIcon *self,
|
gtk_icon_download_texture (GtkIcon *self,
|
||||||
GError **error)
|
GError **error)
|
||||||
@ -3962,6 +3999,26 @@ init_color_matrix (graphene_matrix_t *color_matrix,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_icon_download_colored_texture:
|
||||||
|
* @self: a #GtkIcon
|
||||||
|
* @foreground_color: (allow-none): a #GdkRGBA representing the foreground color
|
||||||
|
* of the icon or %NULL to use the default color.
|
||||||
|
* @success_color: (allow-none): a #GdkRGBA representing the warning color
|
||||||
|
* of the icon or %NULL to use the default color
|
||||||
|
* @warning_color: (allow-none): a #GdkRGBA representing the warning color
|
||||||
|
* of the icon or %NULL to use the default color
|
||||||
|
* @error_color: (allow-none): a #GdkRGBA representing the error color
|
||||||
|
* of the icon or %NULL to use the default color (allow-none)
|
||||||
|
* @error: (allow-none): location to store error information on failure,
|
||||||
|
* or %NULL.
|
||||||
|
*
|
||||||
|
* Tries to access the pixels of an icon, with colors applied to a
|
||||||
|
* symbolic icon. This can fail if the icon file is missing or there
|
||||||
|
* is some kind of problem loading the icon file.
|
||||||
|
*
|
||||||
|
* Returns: (transfer full): An texture with the contents of the icon, or %NULL on failure.
|
||||||
|
*/
|
||||||
GdkTexture *
|
GdkTexture *
|
||||||
gtk_icon_download_colored_texture (GtkIcon *self,
|
gtk_icon_download_colored_texture (GtkIcon *self,
|
||||||
const GdkRGBA *foreground_color,
|
const GdkRGBA *foreground_color,
|
||||||
@ -4021,6 +4078,24 @@ icon_paintable_snapshot (GdkPaintable *paintable,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gtk_icon_snapshot_with_colors:
|
||||||
|
* @icon: a #GtkIcon
|
||||||
|
* @snapshot: a #GdkSnapshot to snapshot to
|
||||||
|
* @width: width to snapshot in
|
||||||
|
* @height: height to snapshot in
|
||||||
|
* @foreground_color: (allow-none): a #GdkRGBA representing the foreground color
|
||||||
|
* of the icon or %NULL to use the default color.
|
||||||
|
* @success_color: (allow-none): a #GdkRGBA representing the warning color
|
||||||
|
* of the icon or %NULL to use the default color
|
||||||
|
* @warning_color: (allow-none): a #GdkRGBA representing the warning color
|
||||||
|
* of the icon or %NULL to use the default color
|
||||||
|
* @error_color: (allow-none): a #GdkRGBA representing the error color
|
||||||
|
* of the icon or %NULL to use the default color (allow-none)
|
||||||
|
*
|
||||||
|
* This is similar to the implementation of gdk_paintable_snapshot(), but if the icon is
|
||||||
|
* symbolic it will be recolored with the specified colors (which ususally comes from the theme).
|
||||||
|
*/
|
||||||
void
|
void
|
||||||
gtk_icon_snapshot_with_colors (GtkIcon *icon,
|
gtk_icon_snapshot_with_colors (GtkIcon *icon,
|
||||||
GtkSnapshot *snapshot,
|
GtkSnapshot *snapshot,
|
||||||
@ -4165,9 +4240,9 @@ gtk_icon_new_for_pixbuf (GtkIconTheme *icon_theme,
|
|||||||
* @scale: the desired scale
|
* @scale: the desired scale
|
||||||
* @flags: flags modifying the behavior of the icon lookup
|
* @flags: flags modifying the behavior of the icon lookup
|
||||||
*
|
*
|
||||||
* Looks up an icon and returns a #GtkIcon containing information
|
* Looks up a icon for a desired size and window scale, returning a
|
||||||
* such as the filename of the icon. The icon can then be rendered into
|
* #GtkIcon. The icon can then be rendered by using it as a #GdkPaintable,
|
||||||
* a pixbuf using gtk_icon_load_icon().
|
* or you can get information such as the filename and size.
|
||||||
*
|
*
|
||||||
* Returns: (nullable) (transfer full): a #GtkIcon containing
|
* Returns: (nullable) (transfer full): a #GtkIcon containing
|
||||||
* information about the icon, or %NULL if the icon wasn’t
|
* information about the icon, or %NULL if the icon wasn’t
|
||||||
|
Loading…
Reference in New Issue
Block a user