| 16 | #include <oclero/qlementine.hpp> |
| 17 | |
| 18 | MainAdaptix::MainAdaptix() |
| 19 | { |
| 20 | storage = new Storage(); |
| 21 | settings = new Settings(this); |
| 22 | |
| 23 | ConsoleThemeManager::instance().loadTheme(settings->data.ConsoleTheme); |
| 24 | |
| 25 | this->SetApplicationTheme(); |
| 26 | |
| 27 | mainUI = new MainUI(); |
| 28 | extender = new Extender(this); |
| 29 | |
| 30 | TitleBarStyle::applyForTheme(mainUI, settings->data.MainTheme); |
| 31 | } |
| 32 | |
| 33 | MainAdaptix::~MainAdaptix() |
| 34 | { |
nothing calls this directly
no test coverage detected