comparison src/buddy.c @ 870:9b8b83592bb6

[gaim-migrate @ 880] Here's a story, of a man named Brady .. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sun, 10 Sep 2000 21:38:38 +0000
parents 789b2f0bb133
children 0532f6f85fac
comparison
equal deleted inserted replaced
869:6cca24db6137 870:9b8b83592bb6
75 #include "pixmaps/exit_small.xpm" 75 #include "pixmaps/exit_small.xpm"
76 #include "pixmaps/pounce_small.xpm" 76 #include "pixmaps/pounce_small.xpm"
77 77
78 #include "pixmaps/tmp_send.xpm" 78 #include "pixmaps/tmp_send.xpm"
79 #include "pixmaps/tb_search.xpm" 79 #include "pixmaps/tb_search.xpm"
80 #include "pixmaps/join.xpm"
80 81
81 static GtkTooltips *tips; 82 static GtkTooltips *tips;
82 static GtkWidget *editpane; 83 static GtkWidget *editpane;
83 static GtkWidget *buddypane; 84 static GtkWidget *buddypane;
84 static GtkWidget *imchatbox; 85 static GtkWidget *imchatbox;
249 adjust_pic(addbutton, _("Add"), (gchar **)buddyadd_xpm); 250 adjust_pic(addbutton, _("Add"), (gchar **)buddyadd_xpm);
250 adjust_pic(groupbutton, _("Group"), NULL); 251 adjust_pic(groupbutton, _("Group"), NULL);
251 adjust_pic(rembutton, _("Remove"), (gchar **)buddydel_xpm); 252 adjust_pic(rembutton, _("Remove"), (gchar **)buddydel_xpm);
252 } 253 }
253 if (!(display_options & OPT_DISP_NO_BUTTONS)) { 254 if (!(display_options & OPT_DISP_NO_BUTTONS)) {
254 adjust_pic(chatbutton, _("Chat"), (gchar **)tb_search_xpm); 255 adjust_pic(chatbutton, _("Chat"), (gchar **)join_xpm);
255 adjust_pic(imbutton, _("IM"), (gchar **)tmp_send_xpm); 256 adjust_pic(imbutton, _("IM"), (gchar **)tmp_send_xpm);
256 adjust_pic(infobutton, _("Info"), (gchar **)tb_search_xpm); 257 adjust_pic(infobutton, _("Info"), (gchar **)tb_search_xpm);
257 } 258 }
258 gtk_widget_hide(addbutton->parent); 259 gtk_widget_hide(addbutton->parent);
259 gtk_widget_show(addbutton->parent); 260 gtk_widget_show(addbutton->parent);
1774 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), menu); 1775 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), menu);
1775 gtk_menu_bar_append(GTK_MENU_BAR(menubar), menuitem); 1776 gtk_menu_bar_append(GTK_MENU_BAR(menubar), menuitem);
1776 1777
1777 // gaim_new_item(menu, _("Add A Buddy"), GTK_SIGNAL_FUNC(add_buddy_callback)); 1778 // gaim_new_item(menu, _("Add A Buddy"), GTK_SIGNAL_FUNC(add_buddy_callback));
1778 gaim_new_item_with_pixmap(menu, _("Add A Buddy"), add_small_xpm, GTK_SIGNAL_FUNC(add_buddy_callback)); 1779 gaim_new_item_with_pixmap(menu, _("Add A Buddy"), add_small_xpm, GTK_SIGNAL_FUNC(add_buddy_callback));
1779 gaim_new_item_with_pixmap(menu, _("Join A Chat"), add_small_xpm, GTK_SIGNAL_FUNC(chat_callback)); 1780 gaim_new_item_with_pixmap(menu, _("Join A Chat"), pounce_small_xpm, GTK_SIGNAL_FUNC(chat_callback));
1780 gaim_seperator(menu); 1781 gaim_seperator(menu);
1781 gaim_new_item_with_pixmap(menu, _("Import Buddy List"), import_small_xpm, GTK_SIGNAL_FUNC(import_callback)); 1782 gaim_new_item_with_pixmap(menu, _("Import Buddy List"), import_small_xpm, GTK_SIGNAL_FUNC(import_callback));
1782 gaim_new_item_with_pixmap(menu, _("Export Buddy List"), export_small_xpm,GTK_SIGNAL_FUNC(export_callback)); 1783 gaim_new_item_with_pixmap(menu, _("Export Buddy List"), export_small_xpm,GTK_SIGNAL_FUNC(export_callback));
1783 if (!(general_options & OPT_GEN_REGISTERED)) 1784 if (!(general_options & OPT_GEN_REGISTERED))
1784 { 1785 {