blob: a30240fc692d150af978e06b2194be4afe38b4e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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;
@end
|