Commit 5327b847 authored by Gildas Bazin's avatar Gildas Bazin

* modules/video_output/directx/directx.c: I think I finally have the mouse...

* modules/video_output/directx/directx.c: I think I finally have the mouse autohiding feature right.
parent ae30c0c4
...@@ -566,15 +566,12 @@ static int Manage( vout_thread_t *p_vout ) ...@@ -566,15 +566,12 @@ static int Manage( vout_thread_t *p_vout )
(mdate() - p_vout->p_sys->i_lastmoved) > 5000000 ) (mdate() - p_vout->p_sys->i_lastmoved) > 5000000 )
{ {
POINT point; POINT point;
RECT rect; HWND hwnd;
/* Hide the cursor only if it is inside our window */ /* Hide the cursor only if it is inside our window */
GetClientRect( p_vout->p_sys->hwnd, &rect );
point.x = point.y = 0;
ClientToScreen( p_vout->p_sys->hwnd, &point );
OffsetRect( &rect, point.x, point.y );
GetCursorPos( &point ); GetCursorPos( &point );
if( PtInRect( &rect, point ) ) hwnd = WindowFromPoint(point);
if( hwnd == p_vout->p_sys->hwnd || hwnd == p_vout->p_sys->hvideownd )
{ {
PostMessage( p_vout->p_sys->hwnd, WM_VLC_HIDE_MOUSE, 0, 0 ); PostMessage( p_vout->p_sys->hwnd, WM_VLC_HIDE_MOUSE, 0, 0 );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment