Add theme selector

This commit is contained in:
Gericom
2026-06-13 20:26:14 +02:00
parent f90d0a1aae
commit d31a15c315
82 changed files with 1474 additions and 196 deletions

View File

@@ -0,0 +1,11 @@
#include "common.h"
#include "settings/ISettingsController.h"
#include "ThemeListViewModel.h"
ThemeListViewModel::ThemeListViewModel(ISettingsController* settingsController)
: _settingsController(settingsController) { }
void ThemeListViewModel::NavigateUp() const
{
_settingsController->NavigateUp();
}