Mercurial > minori
annotate src/sys/win32/dark_theme.cc @ 101:c537996cf67b
*: multitude of config changes
1. theme is now configurable from the settings menu
(but you have to restart for it to apply)
2. config is now stored in an INI file, with no method of
conversion from json (this repo is private-ish anyway)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 03 Nov 2023 14:06:02 -0400 |
parents | 9b2b41f83a5e |
children | 6d8da6e64d61 |
rev | line source |
---|---|
9 | 1 #include "sys/win32/dark_theme.h" |
2 | 2 #include <QOperatingSystemVersion> |
9 | 3 #include <QSettings> |
4 | |
5 namespace win32 { | |
6 | |
7 bool DarkThemeAvailable() { | |
8 // dark mode supported Windows 10 1809 10.0.17763 onward | |
9 // https://stackoverflow.com/questions/53501268/win10-dark-theme-how-to-use-in-winapi | |
66
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
10 const auto& ver = QOperatingSystemVersion::current(); |
6481c5aed3e1
posters: add poster widget...
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
11 return (ver.majorVersion() > 10) ? true : (ver.majorVersion() == 10 && ver.microVersion() >= 17763); |
2 | 12 } |
13 | |
9 | 14 bool IsInDarkTheme() { |
15 | 15 QSettings settings("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Themes\\Personalize", |
16 QSettings::NativeFormat); | |
9 | 17 return settings.value("AppsUseLightTheme", 1).toInt() == 0; |
2 | 18 } |
9 | 19 |
20 } // namespace win32 |