Commit 70526ce2 authored by Kaarlo Raiha's avatar Kaarlo Raiha Committed by Jean-Baptiste Kempf

support mce remote controllers record button in QT4 GUI win32

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent e61ba5a7
...@@ -85,11 +85,11 @@ public slots: ...@@ -85,11 +85,11 @@ public slots:
void AudioUp(); void AudioUp();
void AudioDown(); void AudioDown();
void play(); void play();
void record();
protected slots: protected slots:
void fullscreen(); void fullscreen();
void snapshot(); void snapshot();
void playlist(); void playlist();
void record();
void frame(); void frame();
virtual void doAction( int ); virtual void doAction( int );
......
...@@ -203,6 +203,9 @@ bool MainInterface::winEvent ( MSG * msg, long * result ) ...@@ -203,6 +203,9 @@ bool MainInterface::winEvent ( MSG * msg, long * result )
case APPCOMMAND_MEDIA_STOP: case APPCOMMAND_MEDIA_STOP:
THEMIM->stop(); THEMIM->stop();
break; break;
case APPCOMMAND_MEDIA_RECORD:
THEAM->record();
break;
case APPCOMMAND_VOLUME_DOWN: case APPCOMMAND_VOLUME_DOWN:
THEAM->AudioDown(); THEAM->AudioDown();
break; break;
......
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