Move the the logic to persist the "Options" settings group to the Options class instead of the OptionsDlg
Add a "wrapText" setting that stores the state of the "Wrap text" checkbox in the Value Dialog. It is under the "ValueDlg" settings group (just like other settings for that dialog)
The intention of the first code change was to make adding support for "Wrap text" option more easy... but it turned out that it was not needed. It is still useful though, the refactored code is better (the OptionsDlg is not handling the settings file directly anymore) so I left it.
Addressing request #57. Persist Wrap text option
There are 2 code changes:
Options
class instead of theOptionsDlg
The intention of the first code change was to make adding support for "Wrap text" option more easy... but it turned out that it was not needed. It is still useful though, the refactored code is better (the OptionsDlg is not handling the settings file directly anymore) so I left it.