comparison src/prefs.c @ 1573:3a8bd72f431f

[gaim-migrate @ 1583] tabbed conversation window, optional. you can toggle it and it will work like you'd expect. i still think that was an evil hack. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 15 Mar 2001 12:58:06 +0000
parents ba8e6e211af5
children 427e1409917c
comparison
equal deleted inserted replaced
1572:d60672672a13 1573:3a8bd72f431f
504 504
505 label = gtk_label_new(_("All options take effect immediately unless otherwise noted.")); 505 label = gtk_label_new(_("All options take effect immediately unless otherwise noted."));
506 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5); 506 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5);
507 gtk_widget_show(label); 507 gtk_widget_show(label);
508 508
509 gaim_button(_("Show all conversations in one tabbed window"), &display_options, OPT_DISP_ONE_WINDOW, box);
509 gaim_button(_("Show logins in window"), &display_options, OPT_DISP_SHOW_LOGON, box); 510 gaim_button(_("Show logins in window"), &display_options, OPT_DISP_SHOW_LOGON, box);
510 511
511 hbox = gtk_hbox_new(FALSE, 0); 512 hbox = gtk_hbox_new(FALSE, 0);
512 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 5); 513 gtk_box_pack_start(GTK_BOX(box), hbox, FALSE, FALSE, 5);
513 gtk_widget_show(hbox); 514 gtk_widget_show(hbox);
2126 toggle_smileys(); 2127 toggle_smileys();
2127 2128
2128 if ((int)option == OPT_DISP_SHOW_TIME) 2129 if ((int)option == OPT_DISP_SHOW_TIME)
2129 toggle_timestamps(); 2130 toggle_timestamps();
2130 2131
2132 if ((int)option == OPT_DISP_ONE_WINDOW)
2133 tabize();
2134
2131 #ifdef USE_APPLET 2135 #ifdef USE_APPLET
2132 update_pixmaps(); 2136 update_pixmaps();
2133 #endif 2137 #endif
2134 2138
2135 save_prefs(); 2139 save_prefs();