comparison src/prefs.c @ 1242:8cb5c1000ea9

[gaim-migrate @ 1252] i'm spiderman committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 12 Dec 2000 15:52:24 +0000
parents 1c4185a78183
children eaa0e2f5ace4
comparison
equal deleted inserted replaced
1241:1881b8c12350 1242:8cb5c1000ea9
179 179
180 label = gtk_label_new(_("All options take effect immediately unless otherwise noted.")); 180 label = gtk_label_new(_("All options take effect immediately unless otherwise noted."));
181 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5); 181 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5);
182 gtk_widget_show(label); 182 gtk_widget_show(label);
183 183
184 gaim_button(_("Show numbers in groups"), &display_options, OPT_DISP_SHOW_GRPNUM, box);
185 gaim_button(_("Hide groups with no online buddies"), &display_options, OPT_DISP_NO_MT_GRP, box);
186 gaim_button(_("Show idle times"), &display_options, OPT_DISP_SHOW_IDLETIME, box);
187 gaim_button(_("Show buddy type icons"), &display_options, OPT_DISP_SHOW_PIXMAPS, box);
188
189 sep = gtk_hseparator_new();
190 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
191 gtk_widget_show(sep);
192
193 gaim_button(_("Hide IM/Info/Chat buttons"), &display_options, OPT_DISP_NO_BUTTONS, box);
194 gaim_button(_("Show pictures on buttons"), &display_options, OPT_DISP_SHOW_BUTTON_XPM, box);
195
196 sep = gtk_hseparator_new();
197 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
198 gtk_widget_show(sep);
199
200 gaim_button(_("Save Window Size/Position"), &general_options, OPT_GEN_SAVED_WINDOWS, box); 184 gaim_button(_("Save Window Size/Position"), &general_options, OPT_GEN_SAVED_WINDOWS, box);
201 #ifdef USE_APPLET 185 #ifdef USE_APPLET
202 gaim_button(_("Automatically show buddy list on sign on"), &general_options, OPT_GEN_APP_BUDDY_SHOW, box); 186 gaim_button(_("Automatically show buddy list on sign on"), &general_options, OPT_GEN_APP_BUDDY_SHOW, box);
203 gaim_button(_("Display Buddy List near applet"), &general_options, OPT_GEN_NEAR_APPLET, box); 187 gaim_button(_("Display Buddy List near applet"), &general_options, OPT_GEN_NEAR_APPLET, box);
204 #endif 188 #endif
189
190 sep = gtk_hseparator_new();
191 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
192 gtk_widget_show(sep);
193
194 gaim_button(_("Hide groups with no online buddies"), &display_options, OPT_DISP_NO_MT_GRP, box);
195 gaim_button(_("Show numbers in groups"), &display_options, OPT_DISP_SHOW_GRPNUM, box);
196
197 sep = gtk_hseparator_new();
198 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
199 gtk_widget_show(sep);
200
201 gaim_button(_("Show buddy type icons"), &display_options, OPT_DISP_SHOW_PIXMAPS, box);
202 gaim_button(_("Show warning levels"), &display_options, OPT_DISP_SHOW_WARN, box);
203 gaim_button(_("Show idle times"), &display_options, OPT_DISP_SHOW_IDLETIME, box);
204
205 sep = gtk_hseparator_new();
206 gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 5);
207 gtk_widget_show(sep);
208
209 gaim_button(_("Hide IM/Info/Chat buttons"), &display_options, OPT_DISP_NO_BUTTONS, box);
210 gaim_button(_("Show pictures on buttons"), &display_options, OPT_DISP_SHOW_BUTTON_XPM, box);
205 211
206 gtk_widget_show(prefdialog); 212 gtk_widget_show(prefdialog);
207 } 213 }
208 214
209 static void convo_page() 215 static void convo_page()