aboutsummaryrefslogtreecommitdiffstats
path: root/src/settings_interface.cpp
Commit message (Collapse)AuthorAge
* Implement Recent files list and menuConfuSomu2024-06-01
|
* Make quick_read_setting() a templated methodConfuSomu2023-08-16
| | | | | This allows terser usage and removes the need for manually invoking QVariant's .value<T>() method.
* Create convinence method for reading settingsConfuSomu2023-08-15
| | | | | | | | | | This method avoids having to create a SettingsInterface object that will be only used to read a small number of settings before being destroyed. It creates a static object that persists between invocations. Through the use of QSettings for reading a value, we are assured of always reading the most up to date version of settings as this class guaranties that changes done to one QSettings object will be immediately visible in other QSettings objects.
* Implement settings dialogConfuSomu2023-08-15