]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-theme-adium.h
factor out start_gnome_contacts()
[empathy.git] / libempathy-gtk / empathy-theme-adium.h
index b626756808a639a47b83f19ae3b7d45044734113..6f7573b04ad486331a2b94be4b189e146452d811 100644 (file)
@@ -37,6 +37,7 @@ G_BEGIN_DECLS
 
 typedef struct _EmpathyThemeAdium      EmpathyThemeAdium;
 typedef struct _EmpathyThemeAdiumClass EmpathyThemeAdiumClass;
+typedef struct _EmpathyAdiumData       EmpathyAdiumData;
 
 struct _EmpathyThemeAdium {
        WebKitWebView parent;
@@ -48,8 +49,28 @@ struct _EmpathyThemeAdiumClass {
 };
 
 GType              empathy_theme_adium_get_type (void) G_GNUC_CONST;
-EmpathyThemeAdium *empathy_theme_adium_new      (const gchar *path);
-gboolean           empathy_theme_adium_is_valid (const gchar *path);
+EmpathyThemeAdium *empathy_theme_adium_new      (EmpathyAdiumData *data,
+                                                const gchar *variant);
+void               empathy_theme_adium_set_variant (EmpathyThemeAdium *theme,
+                                                   const gchar *variant);
+void               empathy_theme_adium_show_inspector (EmpathyThemeAdium *theme);
+
+gboolean           empathy_adium_path_is_valid (const gchar *path);
+
+GHashTable        *empathy_adium_info_new (const gchar *path);
+const gchar *      empathy_adium_info_get_default_variant (GHashTable *info);
+GPtrArray *        empathy_adium_info_get_available_variants (GHashTable *info);
+
+#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