aboutsummaryrefslogtreecommitdiffstats
path: root/gtk2/display_opts.c
AgeCommit message (Collapse)AuthorFilesLines
2002-09-05Include cleanups in gtk and gtk2:Jörg Mayer1-15/+1
Remove unneded includes Add include wrappers where missing svn path=/trunk/; revision=6191
2002-09-01Fix accelarators/mnemonics in dialogs containing radio or check buttons.Olivier Abad1-27/+18
The GTK+ v2 documentation says accelarators should only be used with menus. For text entries or buttons, we must use mnemonics. Replace dlg_check_button_new_with_label_with_mnemonic() and dlg_radio_button_new_with_label_with_mnemonic() with gtk_check_button_new_with_mnemonic() and gtk_radio_button_new_with_mnemonic() For radio buttons, gtk_radio_button_group is deprecated. Use gtk_radio_button_new_with_mnemonic_from_widget() to create a new button in an existing group. svn path=/trunk/; revision=6165
2002-08-31GTK+ v2 port.Olivier Abad1-0/+337
All the deprecated widgets have not been replaced yet : GtkList and GtkCList ==> GtkTreeView conversion : - color_dlg.c - column_prefs.c - decode_as_dlg.c : done - dfilter_expr_dialog - filter_prefs.c - main.c - plugins_dlg.c : done GtkCTree ==> GtkTreeView conversion : done GtkText ==> GtkTextView conversion : done Remaining problems : - gtk_font_selection_dialog_set_filter doesn't exist anymore (but hasn't been removed from the documentation). I don't know how to filter the font selection dialog to get only fixed width fonts ; - we have to remove GUI prefs which are not usefule anymore : tree line style and tree expander style. svn path=/trunk/; revision=6153