comparison src/prefs.c @ 702:056ed55962e0

[gaim-migrate @ 712] whoops, forgot these. need to make an applet page too committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 16 Aug 2000 20:01:17 +0000
parents 8a9e9e694ba4
children dcf672c5a1ff
comparison
equal deleted inserted replaced
701:8a9e9e694ba4 702:056ed55962e0
307 static void buddy_page() 307 static void buddy_page()
308 { 308 {
309 GtkWidget *parent; 309 GtkWidget *parent;
310 GtkWidget *box; 310 GtkWidget *box;
311 GtkWidget *label; 311 GtkWidget *label;
312 GtkWidget *sep;
312 313
313 parent = prefdialog->parent; 314 parent = prefdialog->parent;
314 gtk_widget_destroy(prefdialog); 315 gtk_widget_destroy(prefdialog);
315 316
316 prefdialog = gtk_frame_new(_("Buddy List Options")); 317 prefdialog = gtk_frame_new(_("Buddy List Options"));
325 gtk_widget_show(label); 326 gtk_widget_show(label);
326 327
327 gaim_button(_("Show numbers in groups"), &display_options, OPT_DISP_SHOW_GRPNUM, box); 328 gaim_button(_("Show numbers in groups"), &display_options, OPT_DISP_SHOW_GRPNUM, box);
328 gaim_button(_("Show idle times"), &display_options, OPT_DISP_SHOW_IDLETIME, box); 329 gaim_button(_("Show idle times"), &display_options, OPT_DISP_SHOW_IDLETIME, box);
329 gaim_button(_("Show buddy type icons"), &display_options, OPT_DISP_SHOW_PIXMAPS, box); 330 gaim_button(_("Show buddy type icons"), &display_options, OPT_DISP_SHOW_PIXMAPS, box);
331
332 sep = gtk_hseparator_new();
333 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
334 gtk_widget_show(sep);
335
330 gaim_button(_("Hide IM/Info/Chat buttons"), &display_options, OPT_DISP_NO_BUTTONS, box); 336 gaim_button(_("Hide IM/Info/Chat buttons"), &display_options, OPT_DISP_NO_BUTTONS, box);
331 gaim_button(_("Show pictures on buttons"), &display_options, OPT_DISP_SHOW_BUTTON_XPM, box); 337 gaim_button(_("Show pictures on buttons"), &display_options, OPT_DISP_SHOW_BUTTON_XPM, box);
332 gaim_button(_("Use Daemon pictures"), &display_options, OPT_DISP_DEVIL_PIXMAPS, box); 338 gaim_button(_("Use Daemon pictures"), &display_options, OPT_DISP_DEVIL_PIXMAPS, box);
339
340 sep = gtk_hseparator_new();
341 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
342 gtk_widget_show(sep);
343
344 gaim_button(_("Save Window Size/Position"), &general_options, OPT_GEN_SAVED_WINDOWS, box);
333 345
334 gtk_widget_show(prefdialog); 346 gtk_widget_show(prefdialog);
335 } 347 }
336 348
337 static GtkWidget *permtree = NULL; 349 static GtkWidget *permtree = NULL;
607 619
608 gaim_button(_("Show graphical smileys"), &display_options, OPT_DISP_SHOW_SMILEY, box); 620 gaim_button(_("Show graphical smileys"), &display_options, OPT_DISP_SHOW_SMILEY, box);
609 gaim_button(_("Ignore incoming colors"), &display_options, OPT_DISP_IGNORE_COLOUR, box); 621 gaim_button(_("Ignore incoming colors"), &display_options, OPT_DISP_IGNORE_COLOUR, box);
610 gaim_button(_("Ignore white backgrounds"), &display_options, OPT_DISP_IGN_WHITE, box); 622 gaim_button(_("Ignore white backgrounds"), &display_options, OPT_DISP_IGN_WHITE, box);
611 gaim_button(_("Show timestamp on messages"), &display_options, OPT_DISP_SHOW_TIME, box); 623 gaim_button(_("Show timestamp on messages"), &display_options, OPT_DISP_SHOW_TIME, box);
624
625 sep = gtk_hseparator_new();
626 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
627 gtk_widget_show(sep);
628
629 gaim_button(_("Log all conversations"), &general_options, OPT_GEN_LOG_ALL, box);
630 gaim_button(_("Strip HTML from logs"), &general_options, OPT_GEN_STRIP_HTML, box);
612 631
613 sep = gtk_hseparator_new(); 632 sep = gtk_hseparator_new();
614 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5); 633 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
615 gtk_widget_show(sep); 634 gtk_widget_show(sep);
616 635