Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
fe8a8c1b
Commit
fe8a8c1b
authored
Apr 15, 2003
by
Emmanuel Puig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed mouse leaving notification for windows
* Added mouse leaving notification for gdk
parent
b66ae74a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
12 deletions
+6
-12
modules/gui/skins/gtk2/gtk2_window.cpp
modules/gui/skins/gtk2/gtk2_window.cpp
+4
-10
modules/gui/skins/win32/win32_window.cpp
modules/gui/skins/win32/win32_window.cpp
+2
-2
No files found.
modules/gui/skins/gtk2/gtk2_window.cpp
View file @
fe8a8c1b
...
...
@@ -2,7 +2,7 @@
* gtk2_window.cpp: GTK2 implementation of the Window class
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: gtk2_window.cpp,v 1.1
1 2003/04/15 16:42:02
karibu Exp $
* $Id: gtk2_window.cpp,v 1.1
2 2003/04/15 16:47:20
karibu Exp $
*
* Authors: Cyril Deguet <asmax@videolan.org>
*
...
...
@@ -170,12 +170,6 @@ bool GTK2Window::ProcessOSEvent( Event *evt )
case
GDK_MOTION_NOTIFY
:
// TRACKMOUSEEVENT TrackEvent;
// TrackEvent.cbSize = sizeof( TRACKMOUSEEVENT );
// TrackEvent.dwFlags = TME_LEAVE;
// TrackEvent.hwndTrack = hWnd;
// TrackEvent.dwHoverTime = 1;
// TrackMouseEvent( &TrackEvent );
if
(
LButtonDown
)
MouseMove
(
(
int
)(
(
GdkEventButton
*
)
p2
)
->
x
,
(
int
)(
(
GdkEventButton
*
)
p2
)
->
y
,
1
);
...
...
@@ -233,6 +227,9 @@ bool GTK2Window::ProcessOSEvent( Event *evt )
}
return
true
;
case
GDK_LEAVE_NOTIFY
:
OSAPI_PostMessage
(
this
,
WINDOW_LEAVE
,
-
1
,
-
1
);
return
true
;
/*
case WM_RBUTTONDOWN:
MouseDown( LOWORD( p2 ), HIWORD( p2 ), 2 );
...
...
@@ -246,9 +243,6 @@ bool GTK2Window::ProcessOSEvent( Event *evt )
MouseDblClick( LOWORD( p2 ), HIWORD( p2 ), 1 );
return true;
case WM_MOUSELEAVE:
OSAPI_PostMessage( this, WINDOW_LEAVE, 0, 0 );
return true;
*/
default:
return
false
;
...
...
modules/gui/skins/win32/win32_window.cpp
View file @
fe8a8c1b
...
...
@@ -2,7 +2,7 @@
* win32_window.cpp: Win32 implementation of the Window class
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: win32_window.cpp,v 1.
4 2003/04/12 21:43:27 asmax
Exp $
* $Id: win32_window.cpp,v 1.
5 2003/04/15 16:47:20 karibu
Exp $
*
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* Emmanuel Puig <karibu@via.ecp.fr>
...
...
@@ -198,7 +198,7 @@ bool Win32Window::ProcessOSEvent( Event *evt )
return
true
;
case
WM_MOUSELEAVE
:
OSAPI_PostMessage
(
this
,
WINDOW_LEAVE
,
0
,
0
);
OSAPI_PostMessage
(
this
,
WINDOW_LEAVE
,
-
1
,
-
1
);
return
true
;
default:
...
...
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