Mercurial > pidgin.yaz
comparison src/gtkprefs.c @ 5667:18f7a2abc3fc
[gaim-migrate @ 6084]
Can set tab position now.
Still need to add callbacks for this (and many other prefs) so it takes
effect immediately, but at least now I don't have to have my tabs on top ;-)
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Mon, 02 Jun 2003 12:44:32 +0000 |
parents | 1693a3027dc8 |
children | 30316c5b13da |
comparison
equal
deleted
inserted
replaced
5666:44870684dba3 | 5667:18f7a2abc3fc |
---|---|
971 prefs_checkbox(_("Send _URLs as Links"), | 971 prefs_checkbox(_("Send _URLs as Links"), |
972 "/core/conversations/send_urls_as_links", vbox); | 972 "/core/conversations/send_urls_as_links", vbox); |
973 | 973 |
974 vbox = gaim_gtk_make_frame (ret, _("Tab Options")); | 974 vbox = gaim_gtk_make_frame (ret, _("Tab Options")); |
975 | 975 |
976 names = NULL; | |
977 names = g_list_append(names, _("Top")); | |
978 names = g_list_append(names, GINT_TO_POINTER(GTK_POS_TOP)); | |
979 names = g_list_append(names, _("Bottom")); | |
980 names = g_list_append(names, GINT_TO_POINTER(GTK_POS_BOTTOM)); | |
981 names = g_list_append(names, _("Left")); | |
982 names = g_list_append(names, GINT_TO_POINTER(GTK_POS_LEFT)); | |
983 names = g_list_append(names, _("Right")); | |
984 names = g_list_append(names, GINT_TO_POINTER(GTK_POS_RIGHT)); | |
985 | |
986 label = prefs_dropdown_from_list(vbox, _("_Tab Placement:"), GAIM_PREF_INT, | |
987 "/gaim/gtk/conversations/tab_side", | |
988 names); | |
989 | |
990 g_list_free(names); | |
991 | |
992 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); | |
993 gtk_size_group_add_widget(sg, label); | |
994 | |
976 button = prefs_checkbox(_("Show IMs and chats in _tabbed windows"), | 995 button = prefs_checkbox(_("Show IMs and chats in _tabbed windows"), |
977 "/gaim/gtk/conversations/tabs", vbox); | 996 "/gaim/gtk/conversations/tabs", vbox); |
978 | 997 |
979 close_checkbox = prefs_checkbox(_("Show _close button on tabs."), | 998 close_checkbox = prefs_checkbox(_("Show _close button on tabs."), |
980 "/gaim/gtk/conversations/close_on_tabs", | 999 "/gaim/gtk/conversations/close_on_tabs", |