From 234da9fe865d31dc90ebaa5488170eb2d72d6da7 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 27 Nov 2021 22:20:04 -0500 Subject: [PATCH] convenience method for win32 --- color.d | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/color.d b/color.d index 927827a..df6bd57 100644 --- a/color.d +++ b/color.d @@ -162,6 +162,38 @@ struct Color { uint asUint; /// The components as a single 32 bit value (beware of endian issues!) } + /++ + Returns a value compatible with [https://docs.microsoft.com/en-us/windows/win32/gdi/colorref|a Win32 COLORREF]. + + Please note that the alpha value is lost in translation. + + History: + Added November 27, 2021 (dub v10.4) + See_Also: + [fromWindowsColorRef] + +/ + nothrow pure @nogc + uint asWindowsColorRef() { + uint cr; + cr |= b << 16; + cr |= g << 8; + cr |= r; + return cr; + } + + /++ + Constructs a Color from [https://docs.microsoft.com/en-us/windows/win32/gdi/colorref|a Win32 COLORREF]. + + History: + Added November 27, 2021 (dub v10.4) + See_Also: + [asWindowsColorRef] + +/ + nothrow pure @nogc + static Color fromWindowsColorRef(uint cr) { + return Color(cr & 0xff, (cr >> 8) & 0xff, (cr >> 16) & 0xff); + } + /++ Like the constructor, but this makes sure they are in range before casting. If they are out of range, it saturates: anything less than zero becomes zero and anything greater than 255 becomes 255. +/