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/window.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 video/out/cocoa/window.h (limited to 'video/out/cocoa/window.h') diff --git a/video/out/cocoa/window.h b/video/out/cocoa/window.h new file mode 100644 index 0000000000..d6c753cc1b --- /dev/null +++ b/video/out/cocoa/window.h @@ -0,0 +1,34 @@ +/* + * 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 +#import "video/out/cocoa/mpvadapter.h" + +@interface MpvVideoWindow : NSWindow +@property(nonatomic, retain) MpvCocoaAdapter *adapter; +- (void)setFullScreen:(BOOL)willBeFullscreen; +- (BOOL)canBecomeKeyWindow; +- (BOOL)canBecomeMainWindow; +- (void)mulSize:(float)multiplier; +- (void)setCenteredContentSize:(NSSize)newSize; + +- (void)queueNewVideoSize:(NSSize)newSize; +- (void)dispatchNewVideoSize; + +// This really needs to use KVO +- (void)didChangeFullScreenState; +@end -- cgit v1.2.3