1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

uxtheme: Support parsing more clock states.

Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
This commit is contained in:
Zhiyi Zhang 2022-06-06 11:39:49 +08:00 committed by Alexandre Julliard
parent 22adfc67b4
commit f1aa061d8f
2 changed files with 4 additions and 0 deletions

View File

@ -431,6 +431,8 @@ static const MSSTYLES_CLASS_MAP classButton[] = {
static const MSSTYLES_CLASS_MAP classClock[] = {
{CLP_TIME, 0, L"TIME"},
{CLP_TIME, CLS_NORMAL, L"NORMAL"},
{CLP_TIME, CLS_HOT, L"HOT"},
{CLP_TIME, CLS_PRESSED, L"PRESSED"},
{0, 0, L""}
};

View File

@ -522,6 +522,8 @@ enum CLOCKPARTS {
enum CLOCKSTATES {
CLS_NORMAL = 1,
CLS_HOT = 2,
CLS_PRESSED = 3,
};
/* TRAYNOTIFY class */