comparison include/sys/win32/dark_theme.h @ 105:6d8da6e64d61

theme: add dark stylesheet, make it actually usable win32: make the titlebar black where available
author Paper <mrpapersonic@gmail.com>
date Sun, 05 Nov 2023 03:54:26 -0500
parents cde8f67a7c7d
children 3ec7804abf17
comparison
equal deleted inserted replaced
104:27455104ea37 105:6d8da6e64d61
1 #ifndef __sys__win32__dark_theme_h 1 #ifndef __sys__win32__dark_theme_h
2 #define __sys__win32__dark_theme_h 2 #define __sys__win32__dark_theme_h
3 3
4 class QWidget;
5
4 namespace win32 { 6 namespace win32 {
5 7
8 bool SetTitleBarToBlack(QWidget* win, bool enabled);
9 void SetTitleBarsToBlack(bool enabled);
6 bool DarkThemeAvailable(); 10 bool DarkThemeAvailable();
7 bool IsInDarkTheme(); 11 bool IsInDarkTheme();
8 12
9 } // namespace win32 13 } // namespace win32
10 14