mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
Media keys are pretty handy if you use mpv as a music player (yes I'm one of those people that do). These are the bindings (which lead to the same behaviour as iTunes): * NX_KEYTYPE_PLAY -> MP_KEY_PLAY * NX_KEYTYPE_FAST -> MP_KEY_NEXT * NX_KEYTYPE_REWIND -> MP_KEY_PREV I just handled these ones as the volume one would be pretty invasive. I could maybe change it to increase the application's volume instead of system volume only when mpv is frontmost (iTunes does this), but some users would probably hate it.
50 lines
1.6 KiB
Objective-C
50 lines
1.6 KiB
Objective-C
/*
|
|
* This file is part of mpv.
|
|
*
|
|
* mpv is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* mpv is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with mpv; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#include "osdep/macosx_application.h"
|
|
|
|
struct cocoa_input_queue;
|
|
|
|
@interface InputQueue : NSObject
|
|
- (void)push:(int)keycode;
|
|
- (int) pop;
|
|
@end
|
|
|
|
@interface EventsResponder : NSResponder
|
|
- (void)handleMediaKey:(int)key;
|
|
- (NSEvent *)handleKeyDown:(NSEvent *)event;
|
|
@end
|
|
|
|
@interface Application : NSApplication
|
|
- (void)initialize_menu;
|
|
- (void)registerSelector:(SEL)selector forKey:(MPMenuKey)key;
|
|
- (void)stopPlayback;
|
|
|
|
@property(nonatomic, assign) struct input_ctx *inputContext;
|
|
@property(nonatomic, assign) struct mp_fifo *keyFIFO;
|
|
@property(nonatomic, retain) InputQueue *iqueue;
|
|
@property(nonatomic, retain) EventsResponder *eventsResponder;
|
|
@property(nonatomic, retain) NSMutableDictionary *menuItems;
|
|
@property(nonatomic, retain) NSArray *files;
|
|
@property(nonatomic, retain) NSMutableArray *argumentsList;
|
|
@property(nonatomic, assign) BOOL willStopOnOpenEvent;
|
|
@end
|
|
|
|
Application *mpv_shared_app(void);
|