mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 18:11:06 +00:00
New access methods
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@14986 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
14c4427f75
commit
43c5671dd0
4 changed files with 18 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-11-13 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Model/IMLoading.m ([GMModel -objects]): New.
|
||||
([GMModel -connections]): Idem.
|
||||
|
||||
2002-11-12 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Headers/gnustep/gui/AppKit.h: Add NSDocumentController.
|
||||
|
|
|
@ -41,6 +41,8 @@
|
|||
+ (BOOL)loadIMFile:(NSString*)path owner:(id)owner bundle:(NSBundle*)bundle;
|
||||
- (void)_makeConnections;
|
||||
- (void)_setObjects:objects connections:connections;
|
||||
- (NSArray *) objects;
|
||||
- (NSArray *) connections;
|
||||
@end
|
||||
|
||||
#endif /* _GNUstep_H_IMLoading */
|
||||
|
|
|
@ -190,6 +190,16 @@ BOOL _fileOwnerDecoded = NO;
|
|||
return self;
|
||||
}
|
||||
|
||||
- (NSArray *) objects
|
||||
{
|
||||
return objects;
|
||||
}
|
||||
|
||||
- (NSArray *) connections
|
||||
{
|
||||
return connections;
|
||||
}
|
||||
|
||||
@end /* GMModel */
|
||||
|
||||
|
||||
|
|
|
@ -834,4 +834,4 @@
|
|||
RootObject = {Connections = "ConnectionArray"; Objects = "ObjectArray"; isa = GMModel; };
|
||||
TopLevelObjects = (RootObject);
|
||||
Version = 1;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue