* Headers/AppKit/NSController.h: Added new ivar.

* Headers/AppKit/NSObjectController.h: Added new ivar.
        * Source/GNUmakefile: Added NSManagedObjectContext.[hm].
        * Source/NSController.m: Add keys for nib encoding/decoding.
        * Source/NSObjectController.m: Add keys for nib encoding/decoding.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25391 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2007-08-15 03:24:37 +00:00
parent 37edf8c87d
commit e806acc75d
6 changed files with 103 additions and 7 deletions

View file

@ -43,14 +43,20 @@
@interface NSObjectController : NSController
{
@protected
Class _object_class;
NSString *_object_class_name;
NSString *_entity_name_key;
id _managed_proxy;
id _content;
NSMutableArray *_selection;
NSString *_entity_name_key;
NSPredicate *_fetch_predicate;
NSManagedObjectContext *_managed_object_context;
BOOL _is_editable;
BOOL _automatically_prepares_content;
BOOL _is_using_managed_proxy;
}
- (id) initWithContent: (id)content;