X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgicon.h;h=5a0986487f5c22ad8291502f21f567452887cccc;hb=853692bdfd9f8a87aed70d21f643dc13b57c92d1;hp=81e32acccab6a3e78f689e3f7e8b93d4c02f5060;hpb=0156092a4203d1c40dcd0df7515fc7eeaebba9ac;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gicon.h b/gio/gicon.h index 81e32ac..5a09864 100644 --- a/gio/gicon.h +++ b/gio/gicon.h @@ -13,9 +13,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Author: Alexander Larsson */ @@ -47,7 +45,7 @@ typedef struct _GIconIface GIconIface; * GIconIface: * @g_iface: The parent interface. * @hash: A hash for a given #GIcon. - * @equal: Checks if two #GIcons are equal. + * @equal: Checks if two #GIcons are equal. * @to_tokens: Serializes a #GIcon into tokens. The tokens must not * contain any whitespace. Don't implement if the #GIcon can't be * serialized (Since 2.20). @@ -75,6 +73,8 @@ struct _GIconIface gint num_tokens, gint version, GError **error); + + GVariant * (* serialize) (GIcon *icon); }; GLIB_AVAILABLE_IN_ALL @@ -91,6 +91,11 @@ GLIB_AVAILABLE_IN_ALL GIcon *g_icon_new_for_string (const gchar *str, GError **error); +GLIB_AVAILABLE_IN_2_38 +GVariant * g_icon_serialize (GIcon *icon); +GLIB_AVAILABLE_IN_2_38 +GIcon * g_icon_deserialize (GVariant *value); + G_END_DECLS #endif /* __G_ICON_H__ */