2014-04-15 23:51:40 +00:00
|
|
|
/*
|
|
|
|
* Cocoa Application Event Handling
|
|
|
|
*
|
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
2017-06-24 14:08:17 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2014-04-15 23:51:40 +00:00
|
|
|
*
|
|
|
|
* 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
|
2017-06-24 14:08:17 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2014-04-15 23:51:40 +00:00
|
|
|
*
|
2017-06-24 14:08:17 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2014-04-15 23:51:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2024-02-27 15:55:29 +00:00
|
|
|
#include "osdep/mac/events.h"
|
2014-04-15 23:51:40 +00:00
|
|
|
|
2020-02-15 15:13:37 +00:00
|
|
|
@class RemoteCommandCenter;
|
2024-03-09 14:48:54 +00:00
|
|
|
@class InputHelper;
|
2014-04-15 23:51:40 +00:00
|
|
|
struct input_ctx;
|
|
|
|
|
2019-11-16 15:54:07 +00:00
|
|
|
@interface EventsResponder : NSObject
|
2014-04-15 23:51:40 +00:00
|
|
|
|
|
|
|
+ (EventsResponder *)sharedInstance;
|
2017-02-25 20:56:59 +00:00
|
|
|
- (void)setIsApplication:(BOOL)isApplication;
|
|
|
|
|
2020-02-15 15:13:37 +00:00
|
|
|
@property(nonatomic, retain) RemoteCommandCenter *remoteCommandCenter;
|
2024-03-09 14:48:54 +00:00
|
|
|
@property(nonatomic, retain) InputHelper *inputHelper;
|
2020-02-15 15:13:37 +00:00
|
|
|
|
2014-04-15 23:51:40 +00:00
|
|
|
@end
|