Zhiyi Zhang : uxtheme: Support parsing more rebar parts and states.

Alexandre Julliard julliard at winehq.org
Wed Jun 22 16:12:09 CDT 2022


Module: wine
Branch: master
Commit: f38d5b31444a01db32880b8903fdbfdf3ade172d
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f38d5b31444a01db32880b8903fdbfdf3ade172d

Author: Zhiyi Zhang <zzhang at codeweavers.com>
Date:   Mon Jun  6 15:56:27 2022 +0800

uxtheme: Support parsing more rebar parts and states.

Signed-off-by: Zhiyi Zhang <zzhang at codeweavers.com>

---

 dlls/uxtheme/stylemap.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/dlls/uxtheme/stylemap.c b/dlls/uxtheme/stylemap.c
index fa79c9d8840..2d8ea05bb5c 100644
--- a/dlls/uxtheme/stylemap.c
+++ b/dlls/uxtheme/stylemap.c
@@ -808,6 +808,18 @@ static const MSSTYLES_CLASS_MAP classRebar[] = {
     {RP_CHEVRON, CHEVS_HOT, L"HOT"},
     {RP_CHEVRON, CHEVS_PRESSED, L"PRESSED"},
     {RP_CHEVRONVERT, 0, L"CHEVRONVERT"},
+    {RP_CHEVRONVERT, CHEVSV_NORMAL, L"NORMAL"},
+    {RP_CHEVRONVERT, CHEVSV_HOT, L"HOT"},
+    {RP_CHEVRONVERT, CHEVSV_PRESSED, L"PRESSED"},
+    {RP_BACKGROUND, 0, L"BACKGROUND"},
+    {RP_SPLITTER, 0, L"SPLITTER"},
+    {RP_SPLITTER, SPLITS_NORMAL, L"NORMAL"},
+    {RP_SPLITTER, SPLITS_HOT, L"HOT"},
+    {RP_SPLITTER, SPLITS_PRESSED, L"PRESSED"},
+    {RP_SPLITTERVERT, 0, L"SPLITTERVERT"},
+    {RP_SPLITTERVERT, SPLITSV_NORMAL, L"NORMAL"},
+    {RP_SPLITTERVERT, SPLITSV_HOT, L"HOT"},
+    {RP_SPLITTERVERT, SPLITSV_PRESSED, L"PRESSED"},
     {0, 0, L""}
 };
 




More information about the wine-cvs mailing list