mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 15:42:53 +08:00

* fix: fix go test errors * Add flags to mac test * Run on all branches * Update PR workflow Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
120 lines
3.2 KiB
Go
120 lines
3.2 KiB
Go
//go:build windows
|
|
|
|
package win32
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"golang.org/x/sys/windows/registry"
|
|
)
|
|
|
|
type DWMWINDOWATTRIBUTE int32
|
|
|
|
const DwmwaUseImmersiveDarkModeBefore20h1 DWMWINDOWATTRIBUTE = 19
|
|
const DwmwaUseImmersiveDarkMode DWMWINDOWATTRIBUTE = 20
|
|
const DwmwaBorderColor DWMWINDOWATTRIBUTE = 34
|
|
const DwmwaCaptionColor DWMWINDOWATTRIBUTE = 35
|
|
const DwmwaTextColor DWMWINDOWATTRIBUTE = 36
|
|
const DwmwaSystemBackdropType DWMWINDOWATTRIBUTE = 38
|
|
|
|
const SPI_GETHIGHCONTRAST = 0x0042
|
|
const HCF_HIGHCONTRASTON = 0x00000001
|
|
|
|
// BackdropType defines the type of translucency we wish to use
|
|
type BackdropType int32
|
|
|
|
func dwmSetWindowAttribute(hwnd uintptr, dwAttribute DWMWINDOWATTRIBUTE, pvAttribute unsafe.Pointer, cbAttribute uintptr) {
|
|
ret, _, err := procDwmSetWindowAttribute.Call(
|
|
hwnd,
|
|
uintptr(dwAttribute),
|
|
uintptr(pvAttribute),
|
|
cbAttribute)
|
|
if ret != 0 {
|
|
_ = err
|
|
// println(err.Error())
|
|
}
|
|
}
|
|
|
|
func SupportsThemes() bool {
|
|
// We can't support Windows versions before 17763
|
|
return IsWindowsVersionAtLeast(10, 0, 17763)
|
|
}
|
|
|
|
func SupportsCustomThemes() bool {
|
|
return IsWindowsVersionAtLeast(10, 0, 17763)
|
|
}
|
|
|
|
func SupportsBackdropTypes() bool {
|
|
return IsWindowsVersionAtLeast(10, 0, 22621)
|
|
}
|
|
|
|
func SupportsImmersiveDarkMode() bool {
|
|
return IsWindowsVersionAtLeast(10, 0, 18985)
|
|
}
|
|
|
|
func SetTheme(hwnd uintptr, useDarkMode bool) {
|
|
if SupportsThemes() {
|
|
attr := DwmwaUseImmersiveDarkModeBefore20h1
|
|
if SupportsImmersiveDarkMode() {
|
|
attr = DwmwaUseImmersiveDarkMode
|
|
}
|
|
var winDark int32
|
|
if useDarkMode {
|
|
winDark = 1
|
|
}
|
|
dwmSetWindowAttribute(hwnd, attr, unsafe.Pointer(&winDark), unsafe.Sizeof(winDark))
|
|
}
|
|
}
|
|
|
|
func EnableTranslucency(hwnd uintptr, backdrop BackdropType) {
|
|
if SupportsBackdropTypes() {
|
|
dwmSetWindowAttribute(hwnd, DwmwaSystemBackdropType, unsafe.Pointer(&backdrop), unsafe.Sizeof(backdrop))
|
|
} else {
|
|
println("Warning: Translucency type unavailable on Windows < 22621")
|
|
}
|
|
}
|
|
|
|
func SetTitleBarColour(hwnd uintptr, titleBarColour int32) {
|
|
dwmSetWindowAttribute(hwnd, DwmwaCaptionColor, unsafe.Pointer(&titleBarColour), unsafe.Sizeof(titleBarColour))
|
|
}
|
|
|
|
func SetTitleTextColour(hwnd uintptr, titleTextColour int32) {
|
|
dwmSetWindowAttribute(hwnd, DwmwaTextColor, unsafe.Pointer(&titleTextColour), unsafe.Sizeof(titleTextColour))
|
|
}
|
|
|
|
func SetBorderColour(hwnd uintptr, titleBorderColour int32) {
|
|
dwmSetWindowAttribute(hwnd, DwmwaBorderColor, unsafe.Pointer(&titleBorderColour), unsafe.Sizeof(titleBorderColour))
|
|
}
|
|
|
|
func IsCurrentlyDarkMode() bool {
|
|
key, err := registry.OpenKey(registry.CURRENT_USER, `SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize`, registry.QUERY_VALUE)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
defer key.Close()
|
|
|
|
AppsUseLightTheme, _, err := key.GetIntegerValue("AppsUseLightTheme")
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return AppsUseLightTheme == 0
|
|
}
|
|
|
|
type highContrast struct {
|
|
CbSize uint32
|
|
DwFlags uint32
|
|
LpszDefaultScheme *int16
|
|
}
|
|
|
|
func IsCurrentlyHighContrastMode() bool {
|
|
var result highContrast
|
|
result.CbSize = uint32(unsafe.Sizeof(result))
|
|
res, _, err := procSystemParametersInfo.Call(SPI_GETHIGHCONTRAST, uintptr(result.CbSize), uintptr(unsafe.Pointer(&result)), 0)
|
|
if res == 0 {
|
|
_ = err
|
|
return false
|
|
}
|
|
r := result.DwFlags&HCF_HIGHCONTRASTON == HCF_HIGHCONTRASTON
|
|
return r
|
|
}
|