@import var _CPCibWindowTemplateMinSizeKey = @"_CPCibWindowTemplateMinSizeKey", _CPCibWindowTemplateMaxSizeKey = @"_CPCibWindowTemplateMaxSizeKey", _CPCibWindowTemplateViewClassKey = @"_CPCibWindowTemplateViewClassKey", _CPCibWindowTemplateWindowClassKey = @"_CPCibWindowTemplateWindowClassKey", _CPCibWindowTemplateWindowRectKey = @"_CPCibWindowTemplateWindowRectKey", _CPCibWindowTemplateWindowStyleMaskKey = @"_CPCibWindowTempatStyleMaskKey", _CPCibWindowTemplateWindowTitleKey = @"_CPCibWindowTemplateWindowTitleKey", _CPCibWindowTemplateWindowViewKey = @"_CPCibWindowTemplateWindowViewKey", _CPCibWindowTemplateWindowIsFullBridgeKey = @"_CPCibWindowTemplateWindowIsFullBridgeKey"; @implementation _CPCibWindowTemplate : CPObject { CGSize _minSize; CGSize _maxSize; //CGSize _screenRect; id _viewClass; //unsigned _wtFlags; CPString _windowClass; CGRect _windowRect; unsigned _windowStyleMask; CPString _windowTitle; CPView _windowView; BOOL _windowIsFullBridge; } - (id)init { self = [super init]; if (self) { _windowClass = @"CPWindow"; _windowRect = CGRectMake(0.0, 0.0, 400.0, 200.0); _windowStyleMask = CPTitledWindowMask | CPClosableWindowMask | CPMiniaturizableWindowMask | CPResizableWindowMask; _windowTitle = @"Window"; _windowView = [[CPView alloc] initWithFrame:CGRectMake(0.0, 0.0, 400.0, 200.0)]; _windowIsFullBridge = NO; } return self; } - (id)initWithCoder:(CPCoder)aCoder { self = [super init]; if (self) { if ([aCoder containsValueForKey:_CPCibWindowTemplateMinSizeKey]) _minSize = [aCoder decodeSizeForKey:_CPCibWindowTemplateMinSizeKey]; if ([aCoder containsValueForKey:_CPCibWindowTemplateMaxSizeKey]) _maxSize = [aCoder decodeSizeForKey:_CPCibWindowTemplateMaxSizeKey]; _viewClass = [aCoder decodeObjectForKey:_CPCibWindowTemplateViewClassKey]; _windowClass = [aCoder decodeObjectForKey:_CPCibWindowTemplateWindowClassKey]; _windowRect = [aCoder decodeRectForKey:_CPCibWindowTemplateWindowRectKey]; _windowStyleMask = [aCoder decodeIntForKey:_CPCibWindowTemplateWindowStyleMaskKey]; _windowTitle = [aCoder decodeObjectForKey:_CPCibWindowTemplateWindowTitleKey]; _windowView = [aCoder decodeObjectForKey:_CPCibWindowTemplateWindowViewKey]; _windowIsFullBridge = [aCoder decodeObjectForKey:_CPCibWindowTemplateWindowIsFullBridgeKey]; } return self; } - (void)encodeWithCoder:(CPCoder)aCoder { if (_minSize) [aCoder encodeSize:_minSize forKey:_CPCibWindowTemplateMinSizeKey]; if (_maxSize) [aCoder encodeSize:_maxSize forKey:_CPCibWindowTemplateMaxSizeKey]; [aCoder encodeObject:_viewClass forKey:_CPCibWindowTemplateViewClassKey]; [aCoder encodeObject:_windowClass forKey:_CPCibWindowTemplateWindowClassKey]; [aCoder encodeRect:_windowRect forKey:_CPCibWindowTemplateWindowRectKey]; [aCoder encodeInt:_windowStyleMask forKey:_CPCibWindowTemplateWindowStyleMaskKey]; [aCoder encodeObject:_windowTitle forKey:_CPCibWindowTemplateWindowTitleKey]; [aCoder encodeObject:_windowView forKey:_CPCibWindowTemplateWindowViewKey]; [aCoder encodeObject:_windowIsFullBridge forKey:_CPCibWindowTemplateWindowIsFullBridgeKey]; } - (CPString)customClassName { return _windowClass; } - (void)setCustomClassName:(CPString)aClassName { _windowClass = aClassName; } - (CPString)windowClass { return _windowClass; } - (id)_cibInstantiate { var windowClass = CPClassFromString([self windowClass]); /* if (!windowClass) [NSException raise:NSInvalidArgumentException format:@"Unable to locate NSWindow class %@, using NSWindow",_windowClass]; class=[NSWindow class];*/ var theWindow = [[windowClass alloc] initWithContentRect:_windowRect styleMask:_windowStyleMask]; if (_minSize) [theWindow setMinSize:_minSize]; if (_maxSize) [theWindow setMaxSize:_maxSize]; [theWindow setLevel:CPFloatingWindowLevel]; //[result setHidesOnDeactivate:(_wtFlags&0x80000000)?YES:NO]; [theWindow setTitle:_windowTitle]; // FIXME: we can't autoresize yet... [_windowView setAutoresizesSubviews:NO]; [theWindow setContentView:_windowView]; [_windowView setAutoresizesSubviews:YES]; if ([_viewClass isKindOfClass:[CPToolbar class]]) { [theWindow setToolbar:_viewClass]; } [theWindow setFullBridge:_windowIsFullBridge]; return theWindow; } @end