* Headers/AppKit/NSWindow.h: Declaration for attachedSheet.

* Source/NSWindow.m: Added skeleton implementation of attachedSheet.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27137 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-11-26 21:29:32 +00:00
parent 28b86a0bae
commit 7683c739eb
3 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2008-11-26 16:27-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Headers/AppKit/NSWindow.h: Declaration for attachedSheet.
* Source/NSWindow.m: Added skeleton implementation of attachedSheet.
2008-11-25 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/NSAttributedString.m (-doubleClickAtIndex:): Double

View file

@ -803,6 +803,9 @@ APPKIT_EXPORT NSSize NSTokenSize;
willPositionSheet: (NSWindow *)sheet
usingRect: (NSRect)rect;
#endif
#if OS_API_VERSION(MAC_OS_X_VERSION_10_1, GS_API_LATEST)
- (NSWindow *) attachedSheet;
#endif
- (NSSize) windowWillResize: (NSWindow*)sender
toSize: (NSSize)frameSize;
- (id) windowWillReturnFieldEditor: (NSWindow*)sender

View file

@ -4978,6 +4978,12 @@ current key view.<br />
// Should only be defined on MS Windows
return (void *)(intptr_t)_windowNum;
}
- (NSWindow *) attachedSheet
{
return nil;
}
@end
/*