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
760dae9a
Commit
760dae9a
authored
Dec 22, 2004
by
Russ Andersson
Committed by
Alexandre Julliard
Dec 22, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The WM_MOUSEWHEEL message is specified to have absolute screen
coordinates.
parent
417fde8d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
message.c
windows/message.c
+6
-2
No files found.
windows/message.c
View file @
760dae9a
...
...
@@ -375,7 +375,9 @@ static void process_raw_mouse_message( MSG *msg, BOOL remove )
pt
=
msg
->
pt
;
/* Note: windows has no concept of a non-client wheel message */
if
(
hittest
!=
HTCLIENT
&&
msg
->
message
!=
WM_MOUSEWHEEL
)
if
(
msg
->
message
!=
WM_MOUSEWHEEL
)
{
if
(
hittest
!=
HTCLIENT
)
{
msg
->
message
+=
WM_NCMOUSEMOVE
-
WM_MOUSEMOVE
;
msg
->
wParam
=
hittest
;
...
...
@@ -384,7 +386,9 @@ static void process_raw_mouse_message( MSG *msg, BOOL remove )
{
/* coordinates don't get translated while tracking a menu */
/* FIXME: should differentiate popups and top-level menus */
if
(
!
(
info
.
flags
&
GUI_INMENUMODE
))
ScreenToClient
(
msg
->
hwnd
,
&
pt
);
if
(
!
(
info
.
flags
&
GUI_INMENUMODE
))
ScreenToClient
(
msg
->
hwnd
,
&
pt
);
}
}
msg
->
lParam
=
MAKELONG
(
pt
.
x
,
pt
.
y
);
}
...
...
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