Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
7d5c3cfd
Commit
7d5c3cfd
authored
Jul 17, 2002
by
Stéphane Borel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in the computation of the mouse coordinates sent to interface.
parent
a2447211
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
10 deletions
+25
-10
plugins/x11/xcommon.c
plugins/x11/xcommon.c
+25
-10
No files found.
plugins/x11/xcommon.c
View file @
7d5c3cfd
...
...
@@ -2,7 +2,7 @@
* xcommon.c: Functions common to the X11 and XVideo plugins
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: xcommon.c,v 1.4
2 2002/07/02 19:14:59 sam
Exp $
* $Id: xcommon.c,v 1.4
3 2002/07/17 21:34:57 stef
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -749,10 +749,16 @@ static int vout_Manage( vout_thread_t *p_vout )
/* Mouse click */
else
if
(
xevent
.
type
==
ButtonPress
)
{
p_vout
->
i_mouse_x
=
(
int
)(
(
float
)
xevent
.
xmotion
.
x
/
p_vout
->
p_sys
->
p_win
->
i_width
*
p_vout
->
render
.
i_width
);
p_vout
->
i_mouse_y
=
(
int
)(
(
float
)
xevent
.
xmotion
.
y
/
p_vout
->
p_sys
->
p_win
->
i_height
*
p_vout
->
render
.
i_height
);
int
i_width
,
i_height
,
i_x
,
i_y
;
vout_PlacePicture
(
p_vout
,
p_vout
->
p_sys
->
p_win
->
i_width
,
p_vout
->
p_sys
->
p_win
->
i_height
,
&
i_x
,
&
i_y
,
&
i_width
,
&
i_height
);
p_vout
->
i_mouse_x
=
(
xevent
.
xmotion
.
x
-
i_x
)
*
p_vout
->
render
.
i_width
/
i_width
;
p_vout
->
i_mouse_y
=
(
xevent
.
xmotion
.
y
-
i_y
)
*
p_vout
->
render
.
i_height
/
i_height
;
p_vout
->
i_mouse_button
=
1
;
switch
(
((
XButtonEvent
*
)
&
xevent
)
->
button
)
...
...
@@ -803,16 +809,25 @@ static int vout_Manage( vout_thread_t *p_vout )
/* Mouse move */
else
if
(
xevent
.
type
==
MotionNotify
)
{
int
i_width
,
i_height
,
i_x
,
i_y
;
/* somewhat different use for vout_PlacePicture:
* here the values are needed to give to mouse coordinates
* in the original picture space */
vout_PlacePicture
(
p_vout
,
p_vout
->
p_sys
->
p_win
->
i_width
,
p_vout
->
p_sys
->
p_win
->
i_height
,
&
i_x
,
&
i_y
,
&
i_width
,
&
i_height
);
p_vout
->
i_mouse_x
=
(
xevent
.
xmotion
.
x
-
i_x
)
*
p_vout
->
render
.
i_width
/
i_width
;
p_vout
->
i_mouse_y
=
(
xevent
.
xmotion
.
y
-
i_y
)
*
p_vout
->
render
.
i_height
/
i_height
;
p_vout
->
p_sys
->
i_time_mouse_last_moved
=
mdate
();
if
(
!
p_vout
->
p_sys
->
b_mouse_pointer_visible
)
{
ToggleCursor
(
p_vout
);
}
p_vout
->
i_mouse_x
=
(
int
)(
(
float
)
xevent
.
xmotion
.
x
/
p_vout
->
p_sys
->
p_win
->
i_width
*
p_vout
->
render
.
i_width
);
p_vout
->
i_mouse_y
=
(
int
)(
(
float
)
xevent
.
xmotion
.
y
/
p_vout
->
p_sys
->
p_win
->
i_height
*
p_vout
->
render
.
i_height
);
}
/* Reparent move -- XXX: why are we getting this ? */
else
if
(
xevent
.
type
==
ReparentNotify
)
...
...
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