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
153f3e27
Commit
153f3e27
authored
Jun 19, 2013
by
Ken Thomases
Committed by
Alexandre Julliard
Jun 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemac: Forcibly release mouse capture for clicks in Mac menu bar or app deactivation.
parent
1d10457a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
63 additions
and
0 deletions
+63
-0
cocoa_app.m
dlls/winemac.drv/cocoa_app.m
+34
-0
event.c
dlls/winemac.drv/event.c
+5
-0
macdrv_cocoa.h
dlls/winemac.drv/macdrv_cocoa.h
+1
-0
mouse.c
dlls/winemac.drv/mouse.c
+23
-0
No files found.
dlls/winemac.drv/cocoa_app.m
View file @
153f3e27
...
...
@@ -1719,6 +1719,7 @@ int macdrv_err_on;
{
NSNotificationCenter
*
nc
=
[
NSNotificationCenter
defaultCenter
];
NSNotificationCenter
*
wsnc
=
[[
NSWorkspace
sharedWorkspace
]
notificationCenter
];
NSDistributedNotificationCenter
*
dnc
=
[
NSDistributedNotificationCenter
defaultCenter
];
[
nc
addObserverForName
:
NSWindowDidBecomeKeyNotification
object
:
nil
...
...
@@ -1760,6 +1761,17 @@ int macdrv_err_on;
selector
:
@selector
(
activeSpaceDidChange
)
name
:
NSWorkspaceActiveSpaceDidChangeNotification
object
:
nil
];
[
nc
addObserver
:
self
selector
:
@selector
(
releaseMouseCapture
)
name
:
NSMenuDidBeginTrackingNotification
object
:
nil
];
[
dnc
addObserver
:
self
selector
:
@selector
(
releaseMouseCapture
)
name
:
@"com.apple.HIToolbox.beginMenuTrackingNotification"
object
:
nil
suspensionBehavior
:
NSNotificationSuspensionBehaviorDrop
];
}
-
(
BOOL
)
inputSourceIsInputMethod
...
...
@@ -1781,6 +1793,26 @@ int macdrv_err_on;
return
inputSourceIsInputMethod
;
}
-
(
void
)
releaseMouseCapture
{
// This might be invoked on a background thread by the distributed
// notification center. Shunt it to the main thread.
if
(
!
[
NSThread
isMainThread
])
{
dispatch_async
(
dispatch_get_main_queue
(),
^
{
[
self
releaseMouseCapture
];
});
return
;
}
if
(
mouseCaptureWindow
)
{
macdrv_event
*
event
;
event
=
macdrv_create_event
(
RELEASE_CAPTURE
,
mouseCaptureWindow
);
[
mouseCaptureWindow
.
queue
postEvent
:
event
];
macdrv_release_event
(
event
);
}
}
/*
* ---------- NSApplicationDelegate methods ----------
...
...
@@ -1850,6 +1882,8 @@ int macdrv_err_on;
[
eventQueuesLock
unlock
];
macdrv_release_event
(
event
);
[
self
releaseMouseCapture
];
}
-
(
NSApplicationTerminateReply
)
applicationShouldTerminate
:
(
NSApplication
*
)
sender
...
...
dlls/winemac.drv/event.c
View file @
153f3e27
...
...
@@ -44,6 +44,7 @@ static const char *dbgstr_event(int type)
"MOUSE_MOVED_ABSOLUTE"
,
"MOUSE_SCROLL"
,
"QUERY_EVENT"
,
"RELEASE_CAPTURE"
,
"STATUS_ITEM_CLICKED"
,
"WINDOW_CLOSE_REQUESTED"
,
"WINDOW_DID_MINIMIZE"
,
...
...
@@ -104,6 +105,7 @@ static macdrv_event_mask get_event_mask(DWORD mask)
if
(
mask
&
QS_SENDMESSAGE
)
{
event_mask
|=
event_mask_for_type
(
QUERY_EVENT
);
event_mask
|=
event_mask_for_type
(
RELEASE_CAPTURE
);
}
return
event_mask
;
...
...
@@ -202,6 +204,9 @@ void macdrv_handle_event(const macdrv_event *event)
case
QUERY_EVENT
:
macdrv_query_event
(
hwnd
,
event
);
break
;
case
RELEASE_CAPTURE
:
macdrv_release_capture
(
hwnd
,
event
);
break
;
case
STATUS_ITEM_CLICKED
:
macdrv_status_item_clicked
(
event
);
break
;
...
...
dlls/winemac.drv/macdrv_cocoa.h
View file @
153f3e27
...
...
@@ -175,6 +175,7 @@ enum {
MOUSE_MOVED_ABSOLUTE
,
MOUSE_SCROLL
,
QUERY_EVENT
,
RELEASE_CAPTURE
,
STATUS_ITEM_CLICKED
,
WINDOW_CLOSE_REQUESTED
,
WINDOW_DID_MINIMIZE
,
...
...
dlls/winemac.drv/mouse.c
View file @
153f3e27
...
...
@@ -918,3 +918,26 @@ void macdrv_mouse_scroll(HWND hwnd, const macdrv_event *event)
event
->
mouse_scroll
.
x
,
event
->
mouse_scroll
.
y
,
event
->
mouse_scroll
.
x_scroll
,
FALSE
,
event
->
mouse_scroll
.
time_ms
);
}
/***********************************************************************
* macdrv_release_capture
*
* Handler for RELEASE_CAPTURE events.
*/
void
macdrv_release_capture
(
HWND
hwnd
,
const
macdrv_event
*
event
)
{
struct
macdrv_thread_data
*
thread_data
=
macdrv_thread_data
();
HWND
capture
=
GetCapture
();
HWND
capture_top
=
GetAncestor
(
capture
,
GA_ROOT
);
TRACE
(
"win %p/%p thread_data->capture_window %p GetCapture() %p in %p
\n
"
,
hwnd
,
event
->
window
,
thread_data
->
capture_window
,
capture
,
capture_top
);
if
(
event
->
window
==
thread_data
->
capture_window
&&
hwnd
==
capture_top
)
{
ReleaseCapture
();
if
(
!
PostMessageW
(
capture
,
WM_CANCELMODE
,
0
,
0
))
WARN
(
"failed to post WM_CANCELMODE; error 0x%08x
\n
"
,
GetLastError
());
}
}
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