2013-02-23 17:28:22 +00:00
|
|
|
/*
|
|
|
|
* 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
|
2015-04-13 07:36:54 +00:00
|
|
|
* with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2013-02-23 17:28:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#include "osdep/macosx_application.h"
|
2013-06-02 15:39:05 +00:00
|
|
|
|
2017-02-25 20:56:59 +00:00
|
|
|
struct mpv_event;
|
|
|
|
|
2013-06-02 15:39:05 +00:00
|
|
|
@interface Application : NSApplication
|
2017-02-25 20:56:59 +00:00
|
|
|
|
2013-02-23 17:28:22 +00:00
|
|
|
- (void)initialize_menu;
|
|
|
|
- (void)registerSelector:(SEL)selector forKey:(MPMenuKey)key;
|
|
|
|
- (void)stopPlayback;
|
2017-02-25 20:56:59 +00:00
|
|
|
- (void)processEvent:(struct mpv_event *)event;
|
|
|
|
- (void)queueCommand:(char *)cmd;
|
2013-02-23 17:28:22 +00:00
|
|
|
|
|
|
|
@property(nonatomic, retain) NSMutableDictionary *menuItems;
|
|
|
|
@property(nonatomic, retain) NSArray *files;
|
2014-12-07 20:39:26 +00:00
|
|
|
@property(nonatomic, assign) size_t openCount;
|
2013-02-23 17:28:22 +00:00
|
|
|
@end
|