Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
87626923
Commit
87626923
authored
Dec 05, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add left and right wheel buttons
parent
938d8c45
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
include/vlc_mouse.h
include/vlc_mouse.h
+2
-0
src/video_output/event.h
src/video_output/event.h
+9
-9
No files found.
include/vlc_mouse.h
View file @
87626923
...
...
@@ -34,6 +34,8 @@ enum
MOUSE_BUTTON_RIGHT
,
MOUSE_BUTTON_WHEEL_UP
,
MOUSE_BUTTON_WHEEL_DOWN
,
MOUSE_BUTTON_WHEEL_LEFT
,
MOUSE_BUTTON_WHEEL_RIGHT
,
MOUSE_BUTTON_MAX
};
...
...
src/video_output/event.h
View file @
87626923
...
...
@@ -56,6 +56,7 @@ static inline void vout_SendEventMouseMoved(vout_thread_t *vout, int x, int y)
}
static
inline
void
vout_SendEventMousePressed
(
vout_thread_t
*
vout
,
int
button
)
{
int
key
;
var_OrInteger
(
vout
,
"mouse-button-down"
,
1
<<
button
);
switch
(
button
)
...
...
@@ -67,21 +68,20 @@ static inline void vout_SendEventMousePressed(vout_thread_t *vout, int button)
var_GetCoords
(
vout
,
"mouse-moved"
,
&
x
,
&
y
);
var_SetCoords
(
vout
,
"mouse-clicked"
,
x
,
y
);
var_SetBool
(
vout
->
p_libvlc
,
"intf-popupmenu"
,
false
);
break
;
return
;
}
case
MOUSE_BUTTON_CENTER
:
var_ToggleBool
(
vout
->
p_libvlc
,
"intf-show"
);
break
;
return
;
case
MOUSE_BUTTON_RIGHT
:
var_SetBool
(
vout
->
p_libvlc
,
"intf-popupmenu"
,
true
);
break
;
case
MOUSE_BUTTON_WHEEL_UP
:
vout_SendEventKey
(
vout
,
KEY_MOUSEWHEELUP
);
break
;
case
MOUSE_BUTTON_WHEEL_DOWN
:
vout_SendEventKey
(
vout
,
KEY_MOUSEWHEELDOWN
);
break
;
return
;
case
MOUSE_BUTTON_WHEEL_UP
:
key
=
KEY_MOUSEWHEELUP
;
break
;
case
MOUSE_BUTTON_WHEEL_DOWN
:
key
=
KEY_MOUSEWHEELDOWN
;
break
;
case
MOUSE_BUTTON_WHEEL_LEFT
:
key
=
KEY_MOUSEWHEELLEFT
;
break
;
case
MOUSE_BUTTON_WHEEL_RIGHT
:
key
=
KEY_MOUSEWHEELRIGHT
;
break
;
}
vout_SendEventKey
(
vout
,
key
);
}
static
inline
void
vout_SendEventMouseReleased
(
vout_thread_t
*
vout
,
int
button
)
{
...
...
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