Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
84c83af0
Commit
84c83af0
authored
Jun 06, 2022
by
Zhiyi Zhang
Committed by
Alexandre Julliard
Jun 23, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Support parsing more tooltip parts and states.
Signed-off-by:
Zhiyi Zhang
<
zzhang@codeweavers.com
>
parent
f6f07e0c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
stylemap.c
dlls/uxtheme/stylemap.c
+11
-0
vsstyle.h
include/vsstyle.h
+7
-0
No files found.
dlls/uxtheme/stylemap.c
View file @
84c83af0
...
...
@@ -1179,6 +1179,17 @@ static const MSSTYLES_CLASS_MAP classTooltip[] = {
{
TTP_CLOSE
,
TTCS_NORMAL
,
L"NORMAL"
},
{
TTP_CLOSE
,
TTCS_HOT
,
L"HOT"
},
{
TTP_CLOSE
,
TTCS_PRESSED
,
L"PRESSED"
},
{
TTP_BALLOONSTEM
,
0
,
L"BALLOONSTEM"
},
{
TTP_BALLOONSTEM
,
TTBSS_POINTINGUPLEFTWALL
,
L"POINTINGUPLEFTWALL"
},
{
TTP_BALLOONSTEM
,
TTBSS_POINTINGUPCENTERED
,
L"POINTINGUPCENTERED"
},
{
TTP_BALLOONSTEM
,
TTBSS_POINTINGUPRIGHTWALL
,
L"POINTINGUPRIGHTWALL"
},
{
TTP_BALLOONSTEM
,
TTBSS_POINTINGDOWNRIGHTWALL
,
L"POINTINGDOWNRIGHTWALL"
},
{
TTP_BALLOONSTEM
,
TTBSS_POINTINGDOWNCENTERED
,
L"POINTINGDOWNCENTERED"
},
{
TTP_BALLOONSTEM
,
TTBSS_POINTINGDOWNLEFTWALL
,
L"POINTINGDOWNLEFTWALL"
},
{
TTP_WRENCH
,
0
,
L"WRENCH"
},
{
TTP_WRENCH
,
TTWS_NORMAL
,
L"NORMAL"
},
{
TTP_WRENCH
,
TTWS_HOT
,
L"HOT"
},
{
TTP_WRENCH
,
TTWS_PRESSED
,
L"PRESSED"
},
{
0
,
0
,
L""
}
};
...
...
include/vsstyle.h
View file @
84c83af0
...
...
@@ -1376,6 +1376,7 @@ enum TOOLTIPPARTS {
TTP_BALLOONTITLE
=
4
,
TTP_CLOSE
=
5
,
TTP_BALLOONSTEM
=
6
,
TTP_WRENCH
=
7
,
};
#define TOOLTIPSTYLEPARTS TOOLTIPPARTS;
...
...
@@ -1405,6 +1406,12 @@ enum BALLOONSTEMSTATES {
TTBSS_POINTINGDOWNLEFTWALL
=
6
,
};
enum
WRENCHSTATES
{
TTWS_NORMAL
=
1
,
TTWS_HOT
=
2
,
TTWS_PRESSED
=
3
,
};
/* TRACKBARSTYLE class */
#if defined(_MSC_VER) || defined(__MINGW32__)
#define VSCLASS_TRACKBARSTYLE L"TRACKBARSTYLE"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment