comparison src/prefs.c @ 864:4a6ab6995439

[gaim-migrate @ 874] Yo ho ho and a bottle of Rum! committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 08 Sep 2000 08:13:39 +0000
parents 3de6e98e8898
children 789df4b47508
comparison
equal deleted inserted replaced
863:55194c5f338f 864:4a6ab6995439
674 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5); 674 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5);
675 gtk_widget_show(label); 675 gtk_widget_show(label);
676 676
677 gaim_button(_("Show logins in window"), &display_options, OPT_DISP_SHOW_LOGON, box); 677 gaim_button(_("Show logins in window"), &display_options, OPT_DISP_SHOW_LOGON, box);
678 gaim_button(_("Show buttons with text"), &display_options, OPT_DISP_CONV_SHOW_TEXT, box); 678 gaim_button(_("Show buttons with text"), &display_options, OPT_DISP_CONV_SHOW_TEXT, box);
679 gaim_button(_("Show larger entry box on new windows"), &display_options, OPT_DISP_CONV_BIG_ENTRY, box);
679 gaim_button(_("Raise windows on events"), &general_options, OPT_GEN_POPUP_WINDOWS, box); 680 gaim_button(_("Raise windows on events"), &general_options, OPT_GEN_POPUP_WINDOWS, box);
680 gaim_button(_("Ignore new conversations when away"), &general_options, OPT_GEN_DISCARD_WHEN_AWAY, box); 681 gaim_button(_("Ignore new conversations when away"), &general_options, OPT_GEN_DISCARD_WHEN_AWAY, box);
681 gaim_button(_("Ignore TiK Automated Messages"), &general_options, OPT_GEN_TIK_HACK, box); 682 gaim_button(_("Ignore TiK Automated Messages"), &general_options, OPT_GEN_TIK_HACK, box);
682 683
683 gtk_widget_show(prefdialog); 684 gtk_widget_show(prefdialog);
703 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5); 704 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5);
704 gtk_widget_show(label); 705 gtk_widget_show(label);
705 706
706 gaim_button(_("Show people joining/leaving in window"), &display_options, OPT_DISP_CHAT_LOGON, box); 707 gaim_button(_("Show people joining/leaving in window"), &display_options, OPT_DISP_CHAT_LOGON, box);
707 gaim_button(_("Show buttons with text"), &display_options, OPT_DISP_CHAT_SHOW_TEXT, box); 708 gaim_button(_("Show buttons with text"), &display_options, OPT_DISP_CHAT_SHOW_TEXT, box);
709 gaim_button(_("Show larger entry box on new windows"), &display_options, OPT_DISP_CHAT_BIG_ENTRY, box);
708 gaim_button(_("Raise windows on events"), &general_options, OPT_GEN_POPUP_CHAT, box); 710 gaim_button(_("Raise windows on events"), &general_options, OPT_GEN_POPUP_CHAT, box);
709 711
710 gtk_widget_show(prefdialog); 712 gtk_widget_show(prefdialog);
711 } 713 }
712 714