comparison src/prefs.c @ 3278:30ca1b76ad0c

[gaim-migrate @ 3296] Aliases in buddy ticker, inspired by Jeff Stuart. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 29 May 2002 00:24:41 +0000
parents 20769d05df16
children 37a4f90bcedb
comparison
equal deleted inserted replaced
3277:ec20536eaeb0 3278:30ca1b76ad0c
963 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_sensitive), opt); 963 gtk_signal_connect(GTK_OBJECT(button), "clicked", GTK_SIGNAL_FUNC(toggle_sensitive), opt);
964 } else 964 } else
965 gtk_widget_set_sensitive(opt, FALSE); 965 gtk_widget_set_sensitive(opt, FALSE);
966 gaim_button(_("Raise windows on events"), &im_options, OPT_IM_POPUP, vbox2); 966 gaim_button(_("Raise windows on events"), &im_options, OPT_IM_POPUP, vbox2);
967 gaim_button(_("Show logins in window"), &im_options, OPT_IM_LOGON, vbox2); 967 gaim_button(_("Show logins in window"), &im_options, OPT_IM_LOGON, vbox2);
968 gaim_button(_("Show aliases in tabs/titles"), &im_options, OPT_IM_ALIAS_TAB, vbox2); 968 gaim_button(_("Show aliases in tabs/titles/ticker"), &im_options, OPT_IM_ALIAS_TAB, vbox2);
969 gaim_button(_("Hide window on send"), &im_options, OPT_IM_POPDOWN, vbox2); 969 gaim_button(_("Hide window on send"), &im_options, OPT_IM_POPDOWN, vbox2);
970 970
971 frame = gtk_frame_new(_("Window Sizes")); 971 frame = gtk_frame_new(_("Window Sizes"));
972 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 5); 972 gtk_box_pack_start(GTK_BOX(box), frame, FALSE, FALSE, 5);
973 gtk_widget_show(frame); 973 gtk_widget_show(frame);
2748 im_tabize(); 2748 im_tabize();
2749 2749
2750 if (option == OPT_IM_HIDE_ICONS) 2750 if (option == OPT_IM_HIDE_ICONS)
2751 set_hide_icons(); 2751 set_hide_icons();
2752 2752
2753 if (option == OPT_IM_ALIAS_TAB) 2753 if (option == OPT_IM_ALIAS_TAB) {
2754 set_convo_titles(); 2754 set_convo_titles();
2755 BuddyTickerSetNames();
2756 }
2755 2757
2756 if (option == OPT_IM_NO_ANIMATION) 2758 if (option == OPT_IM_NO_ANIMATION)
2757 set_anim(); 2759 set_anim();
2758 2760
2759 save_prefs(); 2761 save_prefs();