Added MacOS 10.4 methods for NSDocument, NSDocumentController,

NSPrintOperation, NSResponder and NSCell.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24378 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2007-01-17 12:09:41 +00:00
parent 6f754401c4
commit 9a71af08ad
25 changed files with 1902 additions and 521 deletions

View file

@ -38,17 +38,17 @@
{
@private
NSWindow *_window;
NSString *_windowNibName;
NSString *_windowNibPath;
NSString *_windowFrameAutosaveName;
NSString *_window_nib_name;
NSString *_window_nib_path;
NSString *_window_frame_autosave_name;
NSDocument *_document;
NSArray *_topLevelObjects;
NSArray *_top_level_objects;
id _owner;
struct ___wcFlags
{
unsigned int shouldCloseDocument:1;
unsigned int shouldCascade:1;
unsigned int nibIsLoaded:1;
unsigned int should_close_document:1;
unsigned int should_cascade:1;
unsigned int nib_is_loaded:1;
unsigned int RESERVED:29;
} _wcFlags;
void *_reserved1;