soc.2008.themes: b7d7eef1: flushed out blist themes a bit with lots...

ffdragon at soc.pidgin.im ffdragon at soc.pidgin.im
Fri Jul 11 12:15:58 EDT 2008


-----------------------------------------------------------------
Revision: b7d7eef147136cbaae9c4b02d87b17d1bad15074
Ancestor: 0db205a258bf14814c7087fe47de444f60c1042a
Author: ffdragon at soc.pidgin.im
Date: 2008-07-11T08:54:34
Branch: im.pidgin.soc.2008.themes
URL: http://d.pidgin.im/viewmtn/revision/info/b7d7eef147136cbaae9c4b02d87b17d1bad15074

Modified files:
        pidgin/gtkblist-theme.c pidgin/gtkblist-theme.h
        pidgin/gtkblist.c

ChangeLog: 

flushed out blist themes a bit with lots of properties and get methods

-------------- next part --------------
============================================================
--- pidgin/gtkblist-theme.c	ae28bdee7b375f4939c6a97a9bbd3235039f201a
+++ pidgin/gtkblist-theme.c	3a7a3c0c5857a42355be182f86bce6c5f5c45b3a
@@ -26,7 +26,10 @@
 #define PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(Gobject) \
 	((PidginBuddyListThemePrivate *) ((PIDGIN_BUDDY_LIST_THEME(Gobject))->priv))
 
-
+#define free_font_and_color(font_color_pair) \
+	g_free(font_color_pair->font); \
+	g_free(font_color_pair->color); \
+	g_free(font_color_pair)
 /******************************************************************************
  * Structs
  *****************************************************************************/
@@ -34,42 +37,27 @@ typedef struct {
 	gchar *icon_theme;
 
 	/* Buddy list */
-	gchar *blist_color;
+	gchar *bgcolor;
 	gdouble opacity;
+	blist_layout *layout;
 	
 	/* groups */
-	gchar *expanded_bgcolor;
-	gchar *expanded_tcolor;
-	gchar *expanded_font;
+	gchar *expanded_color;
+	font_color_pair *expanded;
 
-	gchar *minimized_bgcolor;
-	gchar *minimized_tcolor;
-	gchar *minimized_font;
+	gchar *minimized_color;
+	font_color_pair *minimized;
 
 	/* buddy */
 	gchar *buddy_bgcolor1;
 	gchar *buddy_bgcolor2;
-	
-	gint icon;
-	gint text;
-	gint status_icon;
-	gboolean status; 
 
-	gchar *online_font;
-	gchar *online_color;
-	
-	gchar *away_font;
-	gchar *away_color;
+	font_color_pair *online;
+	font_color_pair *away;
+	font_color_pair *offline;
+	font_color_pair *message;
+	font_color_pair *status;
 
-	gchar *offline_font;
-	gchar *offline_color;
-
-	gchar *message_font;
-	gchar *message_color;
-
-	gchar *status_font;
-	gchar *status_color;
-
 } PidginBuddyListThemePrivate;
 
 /******************************************************************************
@@ -81,7 +69,24 @@ static GObjectClass *parent_class = NULL
 /******************************************************************************
  * Enums
  *****************************************************************************/
-
+enum {
+	PROP_ZERO = 0,
+	PROP_ICON_THEME,
+	PROP_BACKGROUND_COLOR,
+	PROP_OPACITY,
+	PROP_LAYOUT,
+	PROP_EXPANDED_COLOR,
+	PROP_EXPANDED_TEXT,
+	PROP_MINIMIZED_COLOR,
+	PROP_MINIMIZED_TEXT,
+	PROP_BGCOLOR1,
+	PROP_BGCOLOR2,
+	PROP_ONLINE,
+	PROP_AWAY,
+	PROP_OFFLINE,
+	PROP_MESSAGE,
+	PROP_STATUS,
+};
 /******************************************************************************
  * GObject Stuff                                                              
  *****************************************************************************/
@@ -90,14 +95,139 @@ pidgin_buddy_list_theme_init(GTypeInstan
 pidgin_buddy_list_theme_init(GTypeInstance *instance,
 			gpointer klass)
 {
-	PidginBuddyListThemePrivate *priv;
-
 	(PIDGIN_BUDDY_LIST_THEME(instance))->priv = g_new0(PidginBuddyListThemePrivate, 1);
+	
+}
 
-	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(instance);
+static void
+pidgin_buddy_list_theme_get_property(GObject *obj, guint param_id, GValue *value,
+						 GParamSpec *psec)
+{
+	PidginBuddyListThemePrivate *priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(obj);
 
+	switch(param_id) {
+		case PROP_ICON_THEME:
+			g_value_set_string(value, priv->icon_theme);
+			break;
+		case PROP_BACKGROUND_COLOR:
+			g_value_set_pointer(value, priv->bgcolor);
+			break;
+		case PROP_OPACITY:
+			g_value_set_double(value, priv->opacity);
+			break;
+		case PROP_LAYOUT:
+			g_value_set_pointer(value, priv->layout);
+			break;
+		case PROP_EXPANDED_COLOR:
+			g_value_set_string(value, priv->expanded_color);
+			break;
+		case PROP_EXPANDED_TEXT:
+			g_value_set_pointer(value, priv->expanded);
+			break;
+		case PROP_MINIMIZED_COLOR:
+			g_value_set_string(value, priv->minimized_color);
+			break;
+		case PROP_MINIMIZED_TEXT:
+			g_value_set_pointer(value, priv->minimized);
+			break;
+		case PROP_BGCOLOR1:
+			g_value_set_string(value, priv->buddy_bgcolor1);
+			break;
+		case PROP_BGCOLOR2:
+			g_value_set_string(value, priv->buddy_bgcolor2);
+			break;
+		case PROP_ONLINE:
+			g_value_set_pointer(value, priv->online);
+			break;
+		case PROP_AWAY:
+			g_value_set_pointer(value, priv->away);
+			break;
+		case PROP_OFFLINE:
+			g_value_set_pointer(value, priv->offline);
+			break;
+		case PROP_MESSAGE:
+			g_value_set_pointer(value, priv->message);
+			break;
+		case PROP_STATUS:
+			g_value_set_pointer(value, priv->status);
+			break;
+		default:
+			G_OBJECT_WARN_INVALID_PROPERTY_ID(obj, param_id, psec);
+			break;
+	}
 }
 
+static void
+pidgin_buddy_list_theme_set_property(GObject *obj, guint param_id, const GValue *value,
+						 GParamSpec *psec)
+{
+	PidginBuddyListThemePrivate *priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(obj);
+
+	switch(param_id) {
+		case PROP_ICON_THEME:
+			g_free(priv->icon_theme);
+			priv->icon_theme = g_strdup(g_value_get_string(value));
+			break;
+		case PROP_BACKGROUND_COLOR:
+			g_free(priv->bgcolor);
+			priv->bgcolor = g_strdup(g_value_get_string(value));
+			break;
+		case PROP_OPACITY:
+			priv->opacity = g_value_get_double(value);
+			break;
+		case PROP_LAYOUT:
+			g_free(priv->layout);
+			priv->layout = g_value_get_pointer(value);
+			break;
+		case PROP_EXPANDED_COLOR:
+			g_free(priv->expanded_color);
+			priv->expanded_color = g_strdup(g_value_get_string(value));
+			break;
+		case PROP_EXPANDED_TEXT:
+			free_font_and_color(priv->expanded);
+			priv->expanded = g_value_get_pointer(value);
+			break;
+		case PROP_MINIMIZED_COLOR:
+			g_free(priv->minimized_color);
+			priv->minimized_color = g_strdup(g_value_get_string(value));
+			break;
+		case PROP_MINIMIZED_TEXT:
+			free_font_and_color(priv->minimized);
+			priv->minimized = g_value_get_pointer(value);
+			break;
+		case PROP_BGCOLOR1:
+			g_free(priv->buddy_bgcolor1);
+			priv->buddy_bgcolor1 = g_strdup(g_value_get_string(value));
+			break;
+		case PROP_BGCOLOR2:
+			g_free(priv->buddy_bgcolor2);
+			priv->buddy_bgcolor2 = g_strdup(g_value_get_string(value));
+			break;
+		case PROP_ONLINE:
+			free_font_and_color(priv->online);
+			priv->online = g_value_get_pointer(value);
+			break;
+		case PROP_AWAY:
+			free_font_and_color(priv->away);
+			priv->away = g_value_get_pointer(value);
+			break;
+		case PROP_OFFLINE:
+			free_font_and_color(priv->offline);
+			priv->offline = g_value_get_pointer(value);
+			break;
+		case PROP_MESSAGE:
+			free_font_and_color(priv->message);
+			priv->message = g_value_get_pointer(value);
+			break;
+		case PROP_STATUS:
+			free_font_and_color(priv->status);
+			priv->status = g_value_get_pointer(value);
+			break;
+		default:
+			G_OBJECT_WARN_INVALID_PROPERTY_ID(obj, param_id, psec);
+			break;
+	}
+}
 static void 
 pidgin_buddy_list_theme_finalize (GObject *obj)
 {
@@ -105,6 +235,29 @@ pidgin_buddy_list_theme_finalize (GObjec
 
 	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(obj);
 
+	/* Buddy List */
+	g_free(priv->icon_theme);
+	g_free(priv->bgcolor);
+	g_free(priv->layout);
+	
+	/* Group */
+	g_free(priv->expanded_color);
+	free_font_and_color(priv->expanded);
+	g_free(priv->minimized_color);
+	free_font_and_color(priv->minimized);
+
+	/* Buddy */
+	g_free(priv->buddy_bgcolor1);
+	g_free(priv->buddy_bgcolor2);
+
+	free_font_and_color(priv->online);
+	free_font_and_color(priv->away);
+	free_font_and_color(priv->offline);
+	free_font_and_color(priv->message);
+	free_font_and_color(priv->status);
+
+	g_free(priv);
+
 	parent_class->finalize (obj);
 }
 
@@ -112,10 +265,101 @@ pidgin_buddy_list_theme_class_init (Pidg
 pidgin_buddy_list_theme_class_init (PidginBuddyListThemeClass *klass)
 {
 	GObjectClass *obj_class = G_OBJECT_CLASS(klass);
+	GParamSpec *pspec;
 
 	parent_class = g_type_class_peek_parent (klass);
 
-        obj_class->finalize = pidgin_buddy_list_theme_finalize;
+	obj_class->get_property = pidgin_buddy_list_theme_get_property;
+	obj_class->set_property = pidgin_buddy_list_theme_set_property;
+	obj_class->finalize = pidgin_buddy_list_theme_finalize;
+
+	/* Icon Theme */
+	pspec = g_param_spec_string("icon-theme", "Icon Theme",
+				    "The icon theme to go with this buddy list theme",
+				    NULL,
+				    G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_ICON_THEME, pspec);
+
+	/* Buddy List */
+	pspec = g_param_spec_string("background-color", "Background Color",
+				    "The background color for the buddy list",
+				    NULL,
+				    G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_BACKGROUND_COLOR, pspec);
+
+	pspec = g_param_spec_double("opacity","Opacity",
+                	            "The transparency of the buddy list",
+                	            0.0, 1.0,
+                	            1.0,
+                	            G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_OPACITY, pspec);
+
+	pspec = g_param_spec_pointer("layout", "Layout",
+                                     "The layout of icons, name, and status of the blist",
+                                     G_PARAM_READWRITE);
+
+	g_object_class_install_property(obj_class, PROP_LAYOUT, pspec);
+
+	/* Group */
+	pspec = g_param_spec_string("expanded-color", "Expanded Background Color",
+				    "The background color of an expanded group",
+				    NULL,
+				    G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_EXPANDED_COLOR, pspec);
+
+	pspec = g_param_spec_pointer("expanded-text", "Expanded Text",
+                                     "The text information for when a group is expanded",
+                                     G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_EXPANDED_TEXT, pspec);
+
+	pspec = g_param_spec_string("minimized-color", "Minimized Background Color",
+				    "The background color of a minimized group",
+				    NULL,
+				    G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_EXPANDED_COLOR, pspec);
+
+	pspec = g_param_spec_pointer("minimized-text", "Minimized Text",
+                                     "The text information for when a group is minimized",
+                                     G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_EXPANDED_TEXT, pspec);
+
+	/* Buddy */
+	pspec = g_param_spec_string("buddy-bgcolor1", "Buddy Background Color 1",
+				    "The background color of a buddy",
+				    NULL,
+				    G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_BGCOLOR1, pspec);
+
+	pspec = g_param_spec_string("buddy-bgcolor2", "Buddy Background Color 2",
+				    "The background color of a buddy",
+				    NULL,
+				    G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_BGCOLOR2, pspec);
+
+	pspec = g_param_spec_pointer("online", "On-line Text",
+                                     "The text information for when a buddy is online",
+                                     G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_ONLINE, pspec);
+
+	pspec = g_param_spec_pointer("away", "Away Text",
+                                     "The text information for when a buddy is away",
+                                     G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_AWAY, pspec);
+
+	pspec = g_param_spec_pointer("offline", "Off-line Text",
+                                     "The text information for when a buddy is off-line",
+                                     G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_OFFLINE, pspec);
+
+	pspec = g_param_spec_pointer("message", "Meggage Text",
+                                     "The text information for when a buddy is has an unread message",
+                                     G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_MESSAGE, pspec);
+
+	pspec = g_param_spec_pointer("status", "Status Text",
+                                     "The text information for a buddy's status",
+                                     G_PARAM_READWRITE);
+	g_object_class_install_property(obj_class, PROP_STATUS, pspec);
 }
 
 GType 
@@ -147,3 +391,171 @@ pidgin_buddy_list_theme_get_type (void)
  * Public API functions                                                      
  *****************************************************************************/
 
+const gchar *
+pidgin_buddy_list_theme_get_icon_theme(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->icon_theme;
+}
+
+gdouble
+pidgin_buddy_list_theme_get_opacity(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), 1.0);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->opacity;
+}
+
+const blist_layout *
+pidgin_buddy_list_theme_get_layout(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->layout;
+}
+
+const gchar *
+pidgin_buddy_list_theme_get_expanded_background_color(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->expanded_color;
+}
+
+const font_color_pair *
+pidgin_buddy_list_theme_get_expanded_text_info(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->expanded;
+}
+
+const gchar *
+pidgin_buddy_list_theme_get_minimized_background_color(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->minimized_color;
+}
+
+const font_color_pair *
+pidgin_buddy_list_theme_get_minimized_text_info(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->minimized;
+}
+
+const gchar *
+pidgin_buddy_list_theme_get_buddy_color_1(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->buddy_bgcolor1;
+}
+
+const gchar *
+pidgin_buddy_list_theme_get_buddy_color_2(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->buddy_bgcolor2;
+}
+
+const font_color_pair *
+pidgin_buddy_list_theme_get_online_text_info(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->online;
+}
+
+const font_color_pair *
+pidgin_buddy_list_theme_get_away_text_info(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->away;
+}
+
+const font_color_pair *
+pidgin_buddy_list_theme_get_offline_text_info(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->offline;
+}
+
+const font_color_pair *
+pidgin_buddy_list_theme_get_unread_message_text_info(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->message;
+}
+
+const font_color_pair *
+pidgin_buddy_list_theme_get_status_text_info(PidginBuddyListTheme *theme)
+{
+	PidginBuddyListThemePrivate *priv;
+
+	g_return_val_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme), NULL);
+
+	priv = PIDGIN_BUDDY_LIST_THEME_GET_PRIVATE(G_OBJECT(theme));
+
+	return priv->status;
+}
+
============================================================
--- pidgin/gtkblist-theme.h	06bde3bf86371952d182b962ab9f8dc6688396a9
+++ pidgin/gtkblist-theme.h	5e54e4409a22cdf18fb90c0c505ea11fa2f1adb5
@@ -59,6 +59,25 @@ struct _PidginBuddyListThemeClass
 	PurpleThemeClass parent_class;
 };
 
+typedef struct
+{
+	gchar *font;
+	gchar *color;
+
+} font_color_pair;
+
+typedef struct
+{
+	gint icon;
+	gint text;
+	gint status_icon;
+	gint protocol_icon;
+	gint emblem;
+	gboolean show_status; 
+
+} blist_layout;
+
+
 /**************************************************************************/
 /** @name Purple Sound Theme API                                          */
 /**************************************************************************/
@@ -70,6 +89,104 @@ GType pidgin_buddy_list_theme_get_type(v
  */
 GType pidgin_buddy_list_theme_get_type(void);
 
+/**
+ * Returns the icon theme to be used with the buddy list theme
+ *
+ * @returns 	the icon theme
+ */
+const gchar *pidgin_buddy_list_theme_get_icon_theme(PidginBuddyListTheme *theme);
 
+/**
+ * Returns the opacity of the buddy list window
+ * (0.0 or clear to 1.0 fully Opaque)
+ *
+ * @returns 	the opacity
+ */
+gdouble pidgin_buddy_list_theme_get_opacity(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the layout to be used with the buddy list
+ *
+ * @returns 	the buddy list layout
+ */
+const blist_layout *pidgin_buddy_list_theme_get_layout(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the background color to be used with expanded groups
+ *
+ * @returns 	a color
+ */
+const gchar *pidgin_buddy_list_theme_get_expanded_background_color(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the text font and color to be used with expanded groups
+ *
+ * @returns 	a font and color pair
+ */
+const font_color_pair *pidgin_buddy_list_theme_get_expanded_text_info(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the background color to be used with minimized groups
+ *
+ * @returns 	a color
+ */
+const gchar *pidgin_buddy_list_theme_get_minimized_background_color(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the text font and color to be used with minimized groups
+ *
+ * @returns 	a font and color pair
+ */
+const font_color_pair *pidgin_buddy_list_theme_get_minimized_text_info(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the 1st color to be used for buddys
+ *
+ * @returns 	a color
+ */
+const gchar *pidgin_buddy_list_theme_get_buddy_color_1(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the 2nd color to be used for buddies
+ *
+ * @returns 	a color
+ */
+const gchar *pidgin_buddy_list_theme_get_buddy_color_2(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the text font and color to be used for online buddies
+ *
+ * @returns 	a font and color pair
+ */
+const font_color_pair *pidgin_buddy_list_theme_get_online_text_info(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the text font and color to be used for away and idle buddies
+ *
+ * @returns 	a font and color pair
+ */
+const font_color_pair *pidgin_buddy_list_theme_get_away_text_info(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the text font and color to be used for offline buddies
+ *
+ * @returns 	a font and color pair
+ */
+const font_color_pair *pidgin_buddy_list_theme_get_offline_text_info(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the text font and color to be used for buddies with unread messages
+ *
+ * @returns 	a font and color pair
+ */
+const font_color_pair *pidgin_buddy_list_theme_get_unread_message_text_info(PidginBuddyListTheme *theme);
+
+/**
+ * Returns the text font and color to be used for a buddy's status message 
+ *
+ * @returns 	a font and color pair
+ */
+const font_color_pair *pidgin_buddy_list_theme_get_status_text_info(PidginBuddyListTheme *theme);
+
 G_END_DECLS
 #endif /* _PIDGIN_BUDDY_LIST_THEME_H_ */
============================================================
--- pidgin/gtkblist.c	7b7dca12ba9c24bfbe02117fe9779ef15dd14421
+++ pidgin/gtkblist.c	16386879029019bd66491aa0e6054f6f0e324e91
@@ -7185,6 +7185,8 @@ pidgin_blist_set_theme(PidginBuddyListTh
 	
 	g_return_if_fail(PIDGIN_IS_BUDDY_LIST_THEME(theme));	
 	
+	purple_prefs_set_string(PIDGIN_PREFS_ROOT "/blist/theme", 
+				purple_theme_get_name(PURPLE_THEME(theme)));
 	priv->current_theme = theme;
 }
 


More information about the Commits mailing list