Home | History | Annotate | Download | only in gio

Lines Matching refs:GIcon

35 #define G_ICON(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_ICON, GIcon))
40 * GIcon:
49 * @hash: A hash for a given #GIcon.
50 * @equal: Checks if two #GIcon<!-- -->s are equal.
51 * @to_tokens: Serializes a #GIcon into tokens. The tokens must not
52 * contain any whitespace. Don't implement if the #GIcon can't be
54 * @from_tokens: Constructs a #GIcon from tokens. Set the #GError if
55 * the tokens are malformed. Don't implement if the #GIcon can't be
58 * GIconIface is used to implement GIcon types for various
68 guint (* hash) (GIcon *icon);
69 gboolean (* equal) (GIcon *icon1,
70 GIcon *icon2);
71 gboolean (* to_tokens) (GIcon *icon,
74 GIcon * (* from_tokens) (gchar **tokens,
83 gboolean g_icon_equal (GIcon *icon1,
84 GIcon *icon2);
85 gchar *g_icon_to_string (GIcon *icon);
86 GIcon *g_icon_new_for_string (const gchar *str,