comparison src/gtkprefs.c @ 10349:655c48791b3c

[gaim-migrate @ 11563] Removed "Use remote alias when no alias is set" Defaulted to: Conversation titles: No Conversation messages: Yes Buddy list: Yes I barely use MSN, and I use ICQ even less, so if someone thinks of better defaults let me know. These seem to be the best for me. The trick is that on MSN, the server alias usually is less helpful than the screenname and on ICQ, it's more helpful. An alternative is to have the prpl specify which to use, but that's dumb. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 13 Dec 2004 00:52:07 +0000
parents 2ac21bf20e04
children 7fcdd669eb49
comparison
equal deleted inserted replaced
10348:64bc206c7473 10349:655c48791b3c
386 } 386 }
387 } 387 }
388 } 388 }
389 } 389 }
390 390
391 /* These are the pages in the preferences notebook */
392 GtkWidget *interface_page() {
393 GtkWidget *ret;
394 GtkWidget *vbox;
395 ret = gtk_vbox_new(FALSE, 18);
396 gtk_container_set_border_width (GTK_CONTAINER (ret), 12);
397
398 vbox = gaim_gtk_make_frame(ret, _("Interface Options"));
399
400 gaim_gtk_prefs_checkbox(_("D_isplay remote nicknames if no alias is set"),
401 "/core/buddies/use_server_alias", vbox);
402
403
404 gtk_widget_show_all(ret);
405 return ret;
406 }
407
408 static void smiley_sel (GtkTreeSelection *sel, GtkTreeModel *model) { 391 static void smiley_sel (GtkTreeSelection *sel, GtkTreeModel *model) {
409 GtkTreeIter iter; 392 GtkTreeIter iter;
410 const char *filename; 393 const char *filename;
411 GValue val = { 0, }; 394 GValue val = { 0, };
412 395
2172 2155
2173 void prefs_notebook_init() { 2156 void prefs_notebook_init() {
2174 GtkTreeIter p, c, c2; 2157 GtkTreeIter p, c, c2;
2175 GList *l; 2158 GList *l;
2176 GaimPlugin *plug; 2159 GaimPlugin *plug;
2177 prefs_notebook_add_page(_("Interface"), NULL, interface_page(), &p, NULL, notebook_page++);
2178 prefs_notebook_add_page(_("Buddy List"), NULL, list_page(), &c, &p, notebook_page++); 2160 prefs_notebook_add_page(_("Buddy List"), NULL, list_page(), &c, &p, notebook_page++);
2179 prefs_notebook_add_page(_("Conversations"), NULL, conv_page(), &c, &p, notebook_page++); 2161 prefs_notebook_add_page(_("Conversations"), NULL, conv_page(), &c, &p, notebook_page++);
2180 prefs_notebook_add_page(_("Message Text"), NULL, messages_page(), &c2, &c, notebook_page++); 2162 prefs_notebook_add_page(_("Message Text"), NULL, messages_page(), &c2, &c, notebook_page++);
2181 prefs_notebook_add_page(_("Shortcuts"), NULL, hotkeys_page(), &c2, &c, notebook_page++); 2163 prefs_notebook_add_page(_("Shortcuts"), NULL, hotkeys_page(), &c2, &c, notebook_page++);
2182 prefs_notebook_add_page(_("Smiley Themes"), NULL, theme_page(), &c2, &c, notebook_page++); 2164 prefs_notebook_add_page(_("Smiley Themes"), NULL, theme_page(), &c2, &c, notebook_page++);