comparison src/buddy.c @ 875:450db0a5bbe4

[gaim-migrate @ 885] Bleh committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Mon, 11 Sep 2000 08:34:54 +0000
parents 69669b9b3e3b
children db5f5c33e83f
comparison
equal deleted inserted replaced
874:69669b9b3e3b 875:450db0a5bbe4
78 #include "pixmaps/about_small.xpm" 78 #include "pixmaps/about_small.xpm"
79 79
80 #include "pixmaps/tmp_send.xpm" 80 #include "pixmaps/tmp_send.xpm"
81 #include "pixmaps/tb_search.xpm" 81 #include "pixmaps/tb_search.xpm"
82 #include "pixmaps/join.xpm" 82 #include "pixmaps/join.xpm"
83 #include "pixmaps/gnome_add.xpm"
84 #include "pixmaps/gnome_remove.xpm"
85 #include "pixmaps/group.xpm"
83 86
84 static GtkTooltips *tips; 87 static GtkTooltips *tips;
85 static GtkWidget *editpane; 88 static GtkWidget *editpane;
86 static GtkWidget *buddypane; 89 static GtkWidget *buddypane;
87 static GtkWidget *imchatbox; 90 static GtkWidget *imchatbox;
242 245
243 246
244 void update_button_pix() 247 void update_button_pix()
245 { 248 {
246 249
247 if (display_options & OPT_DISP_DEVIL_PIXMAPS) { 250 adjust_pic(addbutton, _("Add"), (gchar **)gnome_add_xpm);
248 adjust_pic(addbutton, _("Add"), (gchar **)daemon_buddyadd_xpm); 251 adjust_pic(groupbutton, _("Group"), (gchar **)group_xpm);
249 adjust_pic(groupbutton, _("Group"), NULL); 252 adjust_pic(rembutton, _("Remove"), (gchar **)gnome_remove_xpm);
250 adjust_pic(rembutton, _("Remove"), (gchar **)daemon_buddydel_xpm); 253
251 } else {
252 adjust_pic(addbutton, _("Add"), (gchar **)buddyadd_xpm);
253 adjust_pic(groupbutton, _("Group"), NULL);
254 adjust_pic(rembutton, _("Remove"), (gchar **)buddydel_xpm);
255 }
256 if (!(display_options & OPT_DISP_NO_BUTTONS)) { 254 if (!(display_options & OPT_DISP_NO_BUTTONS)) {
257 adjust_pic(chatbutton, _("Chat"), (gchar **)join_xpm); 255 adjust_pic(chatbutton, _("Chat"), (gchar **)join_xpm);
258 adjust_pic(imbutton, _("IM"), (gchar **)tmp_send_xpm); 256 adjust_pic(imbutton, _("IM"), (gchar **)tmp_send_xpm);
259 adjust_pic(infobutton, _("Info"), (gchar **)tb_search_xpm); 257 adjust_pic(infobutton, _("Info"), (gchar **)tb_search_xpm);
260 } 258 }