From 0ab9634eb3f3005c37a0346d9035dbc4d4abd144 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 3 Sep 2013 21:18:28 +0200 Subject: cocoa_common: split the code, refactoring and cleanups Split the code to several files. The GUI elements now each have they own files and private state. The original code was a mess to respect the retarded mplayer convention of having everything in a single file. This commit also seems to fix the long running bug of artifacts showing randomly when going fullscreen using nVidia GPUs. --- video/out/cocoa/mpvadapter.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 video/out/cocoa/mpvadapter.h (limited to 'video/out/cocoa/mpvadapter.h') diff --git a/video/out/cocoa/mpvadapter.h b/video/out/cocoa/mpvadapter.h new file mode 100644 index 0000000000..eafeefce9f --- /dev/null +++ b/video/out/cocoa/mpvadapter.h @@ -0,0 +1,32 @@ +/* + * 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, see . + */ + +#import +#include "video/out/vo.h" + +@interface MpvCocoaAdapter : NSObject +- (void)setNeedsResize; +- (void)signalMouseMovement:(NSPoint)point; +- (void)putKey:(int)mpkey withModifiers:(int)modifiers; +- (void)putAxis:(int)mpkey delta:(float)delta; +- (void)performAsyncResize:(NSSize)size; + +- (BOOL)isInFullScreenMode; +- (NSSize)videoSize; +- (NSScreen *)fsScreen; +@property(nonatomic, assign) struct vo *vout; +@end -- cgit v1.2.3