diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-06-22 22:06:29 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-06-22 22:06:29 +0800 |
commit | 69989d77d169f08d9d5d702cd22f3cda4c2b2ce2 (patch) | |
tree | 98cb2136f563537675e8e3bcbdf5f1be5b81d0e5 /libempathy-gtk/empathy-theme-adium.h | |
parent | 4c782007bf100a3820dc265bca6fceda17991a77 (diff) | |
download | gsoc2013-empathy-69989d77d169f08d9d5d702cd22f3cda4c2b2ce2.tar gsoc2013-empathy-69989d77d169f08d9d5d702cd22f3cda4c2b2ce2.tar.gz gsoc2013-empathy-69989d77d169f08d9d5d702cd22f3cda4c2b2ce2.tar.bz2 gsoc2013-empathy-69989d77d169f08d9d5d702cd22f3cda4c2b2ce2.tar.lz gsoc2013-empathy-69989d77d169f08d9d5d702cd22f3cda4c2b2ce2.tar.xz gsoc2013-empathy-69989d77d169f08d9d5d702cd22f3cda4c2b2ce2.tar.zst gsoc2013-empathy-69989d77d169f08d9d5d702cd22f3cda4c2b2ce2.zip |
Add helper API to read info.plist file of an adium theme. Will be useful for upcoming theme selector
Diffstat (limited to 'libempathy-gtk/empathy-theme-adium.h')
-rw-r--r-- | libempathy-gtk/empathy-theme-adium.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-theme-adium.h b/libempathy-gtk/empathy-theme-adium.h index 868703073..a8ed19de4 100644 --- a/libempathy-gtk/empathy-theme-adium.h +++ b/libempathy-gtk/empathy-theme-adium.h @@ -52,15 +52,19 @@ GType empathy_theme_adium_get_type (void) G_GNUC_CONST; EmpathyThemeAdium *empathy_theme_adium_new (EmpathyAdiumData *data); gboolean empathy_adium_path_is_valid (const gchar *path); +GHashTable *empathy_adium_info_new (const gchar *path); #define EMPATHY_TYPE_ADIUM_DATA (empathy_adium_data_get_type ()) GType empathy_adium_data_get_type (void) G_GNUC_CONST; EmpathyAdiumData *empathy_adium_data_new (const gchar *path); +EmpathyAdiumData *empathy_adium_data_new_with_info (const gchar *path, + GHashTable *info); EmpathyAdiumData *empathy_adium_data_ref (EmpathyAdiumData *data); void empathy_adium_data_unref (EmpathyAdiumData *data); GHashTable *empathy_adium_data_get_info (EmpathyAdiumData *data); const gchar *empathy_adium_data_get_path (EmpathyAdiumData *data); + G_END_DECLS #endif /* __EMPATHY_THEME_ADIUM_H__ */ |