1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:27:35 +00:00

DisplaySettings: Add theme selection and preview

This commit is contained in:
MacDue 2022-03-27 20:32:32 +01:00 committed by Andreas Kling
parent 8fa0409ae1
commit 04b6a060ca
7 changed files with 208 additions and 0 deletions

View file

@ -8,6 +8,7 @@ compile_gml(MonitorSettings.gml MonitorSettingsGML.h monitor_settings_window_gml
compile_gml(BackgroundSettings.gml BackgroundSettingsGML.h background_settings_gml)
compile_gml(DesktopSettings.gml DesktopSettingsGML.h desktop_settings_gml)
compile_gml(FontSettings.gml FontSettingsGML.h font_settings_gml)
compile_gml(ThemesSettings.gml ThemesSettingsGML.h themes_settings_gml)
set(SOURCES
BackgroundSettingsGML.h
@ -19,6 +20,11 @@ set(SOURCES
MonitorSettingsWidget.cpp
MonitorSettingsGML.h
MonitorWidget.cpp
ThemePreviewWidget.h
ThemePreviewWidget.cpp
ThemesSettingsWidget.h
ThemesSettingsWidget.cpp
ThemesSettingsGML.h
main.cpp
)