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
8f9fa7ab
Commit
8f9fa7ab
authored
Aug 16, 2005
by
Frank Richter
Committed by
Alexandre Julliard
Aug 16, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add theming for combo boxes.
parent
a228baf8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
329 additions
and
4 deletions
+329
-4
Makefile.in
dlls/comctl32/Makefile.in
+3
-2
theme_combo.c
dlls/comctl32/theme_combo.c
+319
-0
theming.c
dlls/comctl32/theming.c
+7
-2
No files found.
dlls/comctl32/Makefile.in
View file @
8f9fa7ab
...
...
@@ -31,12 +31,13 @@ C_SRCS = \
propsheet.c
\
rebar.c
\
smoothscroll.c
\
string.c
\
status.c
\
string.c
\
syslink.c
\
tab.c
\
them
ing
.c
\
them
e_combo
.c
\
theme_edit.c
\
theming.c
\
toolbar.c
\
tooltips.c
\
trackbar.c
\
...
...
dlls/comctl32/theme_combo.c
0 → 100644
View file @
8f9fa7ab
This diff is collapsed.
Click to expand it.
dlls/comctl32/theming.c
View file @
8f9fa7ab
...
...
@@ -33,8 +33,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(theming);
typedef
LRESULT
(
CALLBACK
*
THEMING_SUBCLASSPROC
)(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
ULONG_PTR
);
extern
LRESULT
CALLBACK
THEMING_ComboSubclassProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
ULONG_PTR
);
extern
LRESULT
CALLBACK
THEMING_EditSubclassProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
ULONG_PTR
);
ULONG_PTR
);
static
const
struct
ThemingSubclass
{
...
...
@@ -42,6 +44,7 @@ static const struct ThemingSubclass
THEMING_SUBCLASSPROC
subclassProc
;
}
subclasses
[]
=
{
/* Note: list must be sorted by class name */
{
WC_COMBOBOXW
,
THEMING_ComboSubclassProc
},
{
WC_EDITW
,
THEMING_EditSubclassProc
}
};
...
...
@@ -88,9 +91,11 @@ static LRESULT CALLBACK subclass_stub ## N (HWND wnd, UINT msg, \
}
MAKE_SUBCLASS_STUB
(
0
)
MAKE_SUBCLASS_STUB
(
1
)
const
static
WNDPROC
subclassStubs
[
NUM_SUBCLASSES
]
=
{
subclass_stub0
subclass_stub0
,
subclass_stub1
};
/***********************************************************************
...
...
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