mirror of
https://github.com/libretro/Play-.git
synced 2024-12-12 11:05:36 +00:00
21 lines
387 B
Objective-C
21 lines
387 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@protocol OutputWindowDelegate
|
|
|
|
-(void)outputWindowDidResize: (NSSize)size;
|
|
|
|
@end
|
|
|
|
@interface OutputWindowController : NSWindowController
|
|
{
|
|
NSOpenGLView* _openGlView;
|
|
id<OutputWindowDelegate> _delegate;
|
|
}
|
|
|
|
@property(assign, nonatomic) IBOutlet NSOpenGLView* openGlView;
|
|
|
|
-(void)setDelegate: (id<OutputWindowDelegate>)delegate;
|
|
-(NSSize)contentSize;
|
|
|
|
@end
|