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
4d42d20e
Commit
4d42d20e
authored
Jun 01, 2022
by
Zhiyi Zhang
Committed by
Alexandre Julliard
Jun 23, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uxtheme: Support parsing taskdialog class.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53066
Signed-off-by:
Zhiyi Zhang
<
zzhang@codeweavers.com
>
parent
c75b4604
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
stylemap.c
dlls/uxtheme/stylemap.c
+35
-0
vsstyle.h
include/vsstyle.h
+2
-0
No files found.
dlls/uxtheme/stylemap.c
View file @
4d42d20e
...
...
@@ -1061,6 +1061,40 @@ static const MSSTYLES_CLASS_MAP classTaskbar[] = {
{
0
,
0
,
L""
}
};
static
const
MSSTYLES_CLASS_MAP
classTaskdialog
[]
=
{
{
TDLG_PRIMARYPANEL
,
0
,
L"PRIMARYPANEL"
},
{
TDLG_MAININSTRUCTIONPANE
,
0
,
L"MAININSTRUCTIONPANE"
},
{
TDLG_MAINICON
,
0
,
L"MAINICON"
},
{
TDLG_CONTENTPANE
,
0
,
L"CONTENTPANE"
},
{
TDLG_CONTENTICON
,
0
,
L"CONTENTICON"
},
{
TDLG_EXPANDEDCONTENT
,
0
,
L"EXPANDEDCONTENT"
},
{
TDLG_COMMANDLINKPANE
,
0
,
L"COMMANDLINKPANE"
},
{
TDLG_SECONDARYPANEL
,
0
,
L"SECONDARYPANEL"
},
{
TDLG_CONTROLPANE
,
0
,
L"CONTROLPANE"
},
{
TDLG_CONTROLPANE
,
TDLGCPS_STANDALONE
,
L"STANDALONE"
},
{
TDLG_BUTTONSECTION
,
0
,
L"BUTTONSECTION"
},
{
TDLG_BUTTONWRAPPER
,
0
,
L"BUTTONWRAPPER"
},
{
TDLG_EXPANDOTEXT
,
0
,
L"EXPANDOTEXT"
},
{
TDLG_EXPANDOBUTTON
,
0
,
L"EXPANDOBUTTON"
},
{
TDLG_EXPANDOBUTTON
,
TDLGEBS_NORMAL
,
L"NORMAL"
},
{
TDLG_EXPANDOBUTTON
,
TDLGEBS_HOVER
,
L"HOVER"
},
{
TDLG_EXPANDOBUTTON
,
TDLGEBS_PRESSED
,
L"PRESSED"
},
{
TDLG_EXPANDOBUTTON
,
TDLGEBS_EXPANDEDNORMAL
,
L"EXPANDEDNORMAL"
},
{
TDLG_EXPANDOBUTTON
,
TDLGEBS_EXPANDEDHOVER
,
L"EXPANDEDHOVER"
},
{
TDLG_EXPANDOBUTTON
,
TDLGEBS_EXPANDEDPRESSED
,
L"EXPANDEDPRESSED"
},
{
TDLG_EXPANDOBUTTON
,
TDLGEBS_NORMALDISABLED
,
L"NORMALDISABLED"
},
{
TDLG_EXPANDOBUTTON
,
TDLGEBS_EXPANDEDDISABLED
,
L"EXPANDEDDISABLED"
},
{
TDLG_VERIFICATIONTEXT
,
0
,
L"VERIFICATIONTEXT"
},
{
TDLG_FOOTNOTEPANE
,
0
,
L"FOOTNOTEPANE"
},
{
TDLG_FOOTNOTEAREA
,
0
,
L"FOOTNOTEAREA"
},
{
TDLG_FOOTNOTESEPARATOR
,
0
,
L"FOOTNOTESEPARATOR"
},
{
TDLG_EXPANDEDFOOTERAREA
,
0
,
L"EXPANDEDFOOTERAREA"
},
{
TDLG_PROGRESSBAR
,
0
,
L"PROGRESSBAR"
},
{
TDLG_IMAGEALIGNMENT
,
0
,
L"IMAGEALIGNMENT"
},
{
TDLG_RADIOBUTTONPANE
,
0
,
L"RADIOBUTTONPANE"
},
{
0
,
0
,
L""
}
};
static
const
MSSTYLES_CLASS_MAP
classToolbar
[]
=
{
{
TP_BUTTON
,
0
,
L"BUTTON"
},
{
TP_BUTTON
,
TS_NORMAL
,
L"NORMAL"
},
...
...
@@ -1352,6 +1386,7 @@ static const MSSTYLES_CLASS_NAME mapClass[] = {
{
classTab
,
L"TAB"
},
{
classTaskband
,
L"TASKBAND"
},
{
classTaskbar
,
L"TASKBAR"
},
{
classTaskdialog
,
L"TASKDIALOG"
},
{
classToolbar
,
L"TOOLBAR"
},
{
classTooltip
,
L"TOOLTIP"
},
{
classTrackbar
,
L"TRACKBAR"
},
...
...
include/vsstyle.h
View file @
4d42d20e
...
...
@@ -1293,6 +1293,8 @@ enum EXPANDOBUTTONSTATES {
TDLGEBS_EXPANDEDNORMAL
=
4
,
TDLGEBS_EXPANDEDHOVER
=
5
,
TDLGEBS_EXPANDEDPRESSED
=
6
,
TDLGEBS_NORMALDISABLED
=
7
,
TDLGEBS_EXPANDEDDISABLED
=
8
,
};
/* TEXTSTYLE class */
...
...
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