Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal/gtk nameres_prefs.c nameres_prefs.h Makefile

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxxxxxxxxxxx>
Date: Sun, 13 Jan 2002 14:35:14 -0600 (CST)
guy         2002/01/13 14:35:14 CST

  Modified files:
    gtk                  Makefile.am Makefile.nmake capture_dlg.c 
                         capture_prefs.c display_opts.c file_dlg.c 
                         gui_prefs.c main.c menu.c prefs_dlg.c 
                         prefs_dlg.h print_prefs.c 
  Added files:
    gtk                  nameres_prefs.c nameres_prefs.h 
  Log:
  Add a preferences page for the name resolution flags.
  
  Separate the preferences value for those flags and the name resolution
  code's value into separate variables; this means that the resolution
  code no longer depends on the preferences code, and may let us
  eventually have the current setting and the preference setting differ
  (so that a user can temporarily override the preference setting without
  causing subsequent saves of the preferences to save the temporary
  value).
  
  Add routines to create various types of widgets for preferences, and to
  fetch the values for "enumerated" preferences, and use them both in the
  code to handle hardwired preference pages and table-driven preference
  pages.
  
  Revision  Changes    Path
  1.38      +3 -1      ethereal/gtk/Makefile.am
  1.24      +1 -0      ethereal/gtk/Makefile.nmake
  1.56      +8 -8      ethereal/gtk/capture_dlg.c
  1.7       +11 -30    ethereal/gtk/capture_prefs.c
  1.24      +8 -10     ethereal/gtk/display_opts.c
  1.47      +8 -9      ethereal/gtk/file_dlg.c
  1.32      +33 -91    ethereal/gtk/gui_prefs.c
  1.229     +11 -8     ethereal/gtk/main.c
  1.61      +2 -2      ethereal/gtk/menu.c
  1.38      +226 -79   ethereal/gtk/prefs_dlg.c
  1.7       +13 -3     ethereal/gtk/prefs_dlg.h
  1.10      +44 -103   ethereal/gtk/print_prefs.c