From 4860e692b18ef271889633faa978d546221e8d7b Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Tue, 15 Jul 2008 18:56:34 +0200 Subject: Add skelet of Adium theme using webkit. --- libempathy-gtk/empathy-theme-manager.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libempathy-gtk/empathy-theme-manager.c') diff --git a/libempathy-gtk/empathy-theme-manager.c b/libempathy-gtk/empathy-theme-manager.c index 0186b5eb7..fe4e241e6 100644 --- a/libempathy-gtk/empathy-theme-manager.c +++ b/libempathy-gtk/empathy-theme-manager.c @@ -35,6 +35,7 @@ #include "empathy-chat-view.h" #include "empathy-conf.h" #include "empathy-chat-text-view.h" +#include "empathy-theme-adium.h" #include "empathy-theme-boxes.h" #include "empathy-theme-irc.h" @@ -61,6 +62,7 @@ static const gchar *themes[] = { "simple", N_("Simple"), "clean", N_("Clean"), "blue", N_("Blue"), + "adium", N_("Adium"), NULL }; @@ -321,6 +323,9 @@ empathy_theme_manager_create_view (EmpathyThemeManager *manager) if (strcmp (priv->name, "classic") == 0) { return EMPATHY_CHAT_VIEW (theme_manager_create_irc_view (manager)); } + if (strcmp (priv->name, "adium") == 0) { + return EMPATHY_CHAT_VIEW (empathy_theme_adium_new ()); + } theme = theme_manager_create_boxes_view (manager); theme_manager_update_boxes_theme (manager, theme); -- cgit v1.2.3