Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e6f01981
Commit
e6f01981
authored
Feb 10, 2004
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 10, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add partial support for some undocumented toolbar messages.
parent
ad5ff7ce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
1 deletion
+28
-1
toolbar.c
dlls/comctl32/toolbar.c
+28
-1
No files found.
dlls/comctl32/toolbar.c
View file @
e6f01981
...
...
@@ -4634,6 +4634,11 @@ TOOLBAR_SetVersion (HWND hwnd, INT iVersion)
return
iOldVersion
;
}
static
LRESULT
TOOLBAR_Unkwn45D
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
{
FIXME
(
"hwnd=%p wParam %08x lParam %08lx stub!
\n
"
,
hwnd
,
wParam
,
lParam
);
return
0
;
}
/*********************************************************************/
/* */
...
...
@@ -4687,6 +4692,13 @@ TOOLBAR_Unkwn45E (HWND hwnd, WPARAM wParam, LPARAM lParam)
return
(
LRESULT
)
nOldHotItem
;
}
static
LRESULT
TOOLBAR_Unkwn460
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
{
TRACE
(
"hwnd=%p wParam %08x lParam %08lx
\n
"
,
hwnd
,
wParam
,
lParam
);
InvalidateRect
(
hwnd
,
NULL
,
TRUE
);
return
0
;
}
static
LRESULT
TOOLBAR_Unkwn463
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
...
...
@@ -4717,7 +4729,6 @@ TOOLBAR_Unkwn463 (HWND hwnd, WPARAM wParam, LPARAM lParam)
RECT
rc
;
HWND
hwndParent
=
GetParent
(
hwnd
);
InvalidateRect
(
hwnd
,
0
,
1
);
GetWindowRect
(
hwnd
,
&
rc
);
MapWindowPoints
(
0
,
hwndParent
,
(
LPPOINT
)
&
rc
,
2
);
TRACE
(
"mapped to (%ld,%ld)-(%ld,%ld)
\n
"
,
...
...
@@ -4743,6 +4754,14 @@ TOOLBAR_Unkwn463 (HWND hwnd, WPARAM wParam, LPARAM lParam)
return
1
;
}
static
LRESULT
TOOLBAR_Unkwn464
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
{
TRACE
(
"hwnd=%p wParam %08x lParam %08lx
\n
"
,
hwnd
,
wParam
,
lParam
);
InvalidateRect
(
hwnd
,
NULL
,
TRUE
);
return
1
;
}
static
LRESULT
TOOLBAR_Create
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
...
...
@@ -5966,12 +5985,20 @@ ToolbarWindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case
TB_SETUNICODEFORMAT
:
return
TOOLBAR_SetUnicodeFormat
(
hwnd
,
wParam
,
lParam
);
case
TB_UNKWN45D
:
return
TOOLBAR_Unkwn45D
(
hwnd
,
wParam
,
lParam
);
case
TB_UNKWN45E
:
return
TOOLBAR_Unkwn45E
(
hwnd
,
wParam
,
lParam
);
case
TB_UNKWN460
:
return
TOOLBAR_Unkwn460
(
hwnd
,
wParam
,
lParam
);
case
TB_UNKWN463
:
return
TOOLBAR_Unkwn463
(
hwnd
,
wParam
,
lParam
);
case
TB_UNKWN464
:
return
TOOLBAR_Unkwn464
(
hwnd
,
wParam
,
lParam
);
/* Common Control Messages */
...
...
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