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
c756a918
Commit
c756a918
authored
May 25, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: recognize more MCE commands
parent
506ef92b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
modules/gui/qt4/main_interface_win32.cpp
modules/gui/qt4/main_interface_win32.cpp
+14
-0
No files found.
modules/gui/qt4/main_interface_win32.cpp
View file @
c756a918
...
...
@@ -48,6 +48,8 @@
#define APPCOMMAND_MICROPHONE_VOLUME_MUTE 24
#define APPCOMMAND_MICROPHONE_VOLUME_DOWN 25
#define APPCOMMAND_MICROPHONE_VOLUME_UP 26
#define APPCOMMAND_HELP 27
#define APPCOMMAND_OPEN 30
#define APPCOMMAND_DICTATE_OR_COMMAND_CONTROL_TOGGLE 43
#define APPCOMMAND_MIC_ON_OFF_TOGGLE 44
#define APPCOMMAND_MEDIA_PLAY 46
...
...
@@ -225,6 +227,18 @@ bool MainInterface::winEvent ( MSG * msg, long * result )
case
APPCOMMAND_VOLUME_MUTE
:
THEAM
->
toggleMuteAudio
();
break
;
case
APPCOMMAND_MEDIA_FAST_FORWARD
:
THEMIM
->
getIM
()
->
faster
();
break
;
case
APPCOMMAND_MEDIA_REWIND
:
THEMIM
->
getIM
()
->
slower
();
break
;
case
APPCOMMAND_HELP
:
THEDP
->
mediaInfoDialog
();
break
;
case
APPCOMMAND_OPEN
:
THEDP
->
simpleOpenDialog
();
break
;
default:
msg_Dbg
(
p_intf
,
"unknown APPCOMMAND = %d"
,
cmd
);
*
result
=
FALSE
;
...
...
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