Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-commits: [Wireshark-commits] rev 21066: /trunk/ /trunk/epan/: prefs-int.h prefs.c prefs.h

Date: Mon, 19 Mar 2007 19:08:23 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=21066

User: gal
Date: 2007/03/19 07:08 PM

Log:
 This change allows a structure to be created under the "Protocols" section of the preferences.
 
 A new function is introduced, prefs_register_protocol_subtree(), that allows the subtree the protocol should appear under to be specified. The subtree is specified as a string, with a '/' delimiting each subtree element. For example,
 	prefs_register_protocol(proto_dap, prefs_register_dap);
 becomes
 	prefs_register_protocol_subtree("OSI/X.500", proto_dap, prefs_register_dap);
 
 The function will create all the intermediate subtree nodes that are required, if they don't already exist. 
 This allows the grouping of procotols which should make the list of protocols more manageable as even more are added. The current aim is to group by protocol family e.g. 
 + OSI
   + X.400
       X.411
       X.420
   + X.500
       DISP
       DAP
       DOP
       DSP
   + X.509
       X509AF
       X509CE
       ...
 
 but others grouping could be envisioned (e.g. by first letter). 
 
 As the intermediate nodes may already have preferences (e.g. OSI), then modules are now allowed to have submodules. Previously each node was either a subtree or held preferences. This is consistent with the "User Interface" node.
 
 The subtree structure has no effect on how the preferences are saved to file, and the "Protocol Preferences..." menu option will bring up the preferences expanded to the correct node.
 
 In addition, a new "blank page" has been introduced for intermediate nodes that have no preferences (and is also used when the "Protocols" node itself is chosen). This prevents confusion when the user moves from a node with preferences to a node without preferences, but the page old page is still shown.
 
 There is also a change to prevent '#' characters in a value being treated as a comment when parsing the preferences file. (There is nothing that adds comments when writing the preferences file.)

Directory: /trunk/epan/
  Changes    Path           Action
  +2 -2      prefs-int.h    Modified
  +92 -9     prefs.c        Modified
  +8 -0      prefs.h        Modified

Directory: /trunk/gtk/
  Changes    Path           Action
  +65 -27    prefs_dlg.c    Modified