Commit b0856974 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* added some buttons for apple remote controlling. Save for backporting, but...

* added some buttons for apple remote controlling. Save for backporting, but needs some usability testing
parent fd78f83a
...@@ -718,6 +718,21 @@ static VLCMain *_o_sharedMainInstance = nil; ...@@ -718,6 +718,21 @@ static VLCMain *_o_sharedMainInstance = nil;
case kRemoteButtonVolume_Minus: case kRemoteButtonVolume_Minus:
[o_controls volumeDown: self]; [o_controls volumeDown: self];
break; break;
case kRemoteButtonRight:
[o_controls next: self];
break;
case kRemoteButtonLeft:
[o_controls prev: self];
break;
case kRemoteButtonRight_Hold:
[o_controls forward: self];
break;
case kRemoteButtonLeft_Hold:
[o_controls backward: self];
break;
case kRemoteButtonMenu:
[o_controls windowAction: self];
break;
default: default:
/* Add here whatever you want other buttons to do */ /* Add here whatever you want other buttons to do */
......
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