blob: 6eee03f52b33c334cc6954898b51dbd992d96980 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#import <Cocoa/Cocoa.h>
@interface EcoreCocoaWindow: NSWindow <NSWindowDelegate>
{
void *ecore_window_data;
int _live_resize;
}
@property (nonatomic, assign) void *ecore_window_data;
- (id) initWithContentRect: (NSRect) contentRect
styleMask: (unsigned int) aStyle
backing: (NSBackingStoreType) bufferingType
defer: (BOOL) flag;
- (BOOL)isFullScreen;
- (BOOL) requestResize: (NSSize) size;
@end
|