comparison src/gtkconv.h @ 4421:31834b4598eb

[gaim-migrate @ 4694] (23:26:06) deryni: Black on Black is not the best color choice this should let you use custom colors again. thanks deryni! committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 26 Jan 2003 04:27:14 +0000
parents bdab2840ef4c
children 2054d8429925
comparison
equal deleted inserted replaced
4420:64d845f2a0fb 4421:31834b4598eb
105 */ 105 */
106 struct gaim_gtk_conversation 106 struct gaim_gtk_conversation
107 { 107 {
108 gboolean make_sound; 108 gboolean make_sound;
109 gboolean has_font; 109 gboolean has_font;
110 gboolean has_fg;
111 gboolean has_bg;
112 char fontface[128]; 110 char fontface[128];
113 GdkColor fg_color; 111 GdkColor fg_color;
114 GdkColor bg_color; 112 GdkColor bg_color;
115 113
116 GtkTooltips *tooltips; 114 GtkTooltips *tooltips;
251 * preferences. 249 * preferences.
252 */ 250 */
253 void gaim_gtkconv_update_font_buttons(void); 251 void gaim_gtkconv_update_font_buttons(void);
254 252
255 /** 253 /**
254 * Updates the font colors of each conversation to the new colors
255 * chosen in the prefs dialog.
256 */
257 void gaim_gtkconv_update_font_colors(struct gaim_conversation *conv);
258
259 /**
256 * Updates the tab positions on all conversation windows to reflect any 260 * Updates the tab positions on all conversation windows to reflect any
257 * changed preferences. 261 * changed preferences.
258 */ 262 */
259 void gaim_gtkconv_update_tabs(void); 263 void gaim_gtkconv_update_tabs(void);
260 264