Reorg dirs: disentangle dependency of `GUI/utils` on `GUI/Models`
To resolve the dependency of GUI/utils
on GUI/Models
the following has been made:
- Split the Code of
GUI/utils/GUIHelpers.*
intoGUI/utils/Helpers.*
andGUI/Views/GUIHelpers.*
.GUI/utils/Helpers.*
now only contains utility functions not dependent on models or GUI elements. On the other handGUI/Views/GUIHelpers.*
contains GUI related utility functions. -
GUI/utils/ImportDataInfo.*
has been moved toGUI/Models/
because of the close relationship with the classes contained therein.