2010-05-29 05:27:04 +00:00
|
|
|
/* <title>GSXibLoading</title>
|
|
|
|
|
|
|
|
<abstract>Xib (Cocoa XML) model loader</abstract>
|
|
|
|
|
|
|
|
Copyright (C) 2010 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Written by: Fred Kiefer <FredKiefer@gmx.de>
|
|
|
|
Created: March 2010
|
|
|
|
Refactored slightly by: Gregory Casamento <greg.casamento@gmail.com>
|
|
|
|
Created: May 2010
|
|
|
|
|
|
|
|
This file is part of the GNUstep Base Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with this library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GNUstep_H_GSXibLoading
|
|
|
|
#define _GNUstep_H_GSXibLoading
|
|
|
|
|
|
|
|
#import <Foundation/NSObject.h>
|
|
|
|
#import <Foundation/NSKeyedArchiver.h>
|
|
|
|
|
|
|
|
@class NSString, NSDictionary, NSArray, NSMutableDictionary, NSMutableArray;
|
2011-10-03 20:28:51 +00:00
|
|
|
@class NSNibBindingConnector;
|
2014-03-25 07:59:36 +00:00
|
|
|
@class GSXibElement;
|
2010-05-29 05:27:04 +00:00
|
|
|
|
|
|
|
// Hack: This allows the class name FirstResponder in NSCustomObject and
|
|
|
|
// correctly returns nil as the corresponding object.
|
|
|
|
@interface FirstResponder: NSObject
|
|
|
|
{
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface IBClassDescriptionSource: NSObject
|
|
|
|
{
|
|
|
|
NSString *majorKey;
|
|
|
|
NSString *minorKey;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface IBPartialClassDescription: NSObject
|
|
|
|
{
|
|
|
|
NSString *className;
|
|
|
|
NSString *superclassName;
|
|
|
|
NSMutableDictionary *actions;
|
|
|
|
NSMutableDictionary *outlets;
|
|
|
|
IBClassDescriptionSource *sourceIdentifier;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface IBClassDescriber: NSObject
|
|
|
|
{
|
|
|
|
NSMutableArray *referencedPartialClassDescriptions;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface IBConnection: NSObject <NSCoding>
|
|
|
|
{
|
|
|
|
NSString *label;
|
|
|
|
id source;
|
|
|
|
id destination;
|
|
|
|
}
|
2011-10-25 09:06:01 +00:00
|
|
|
- (NSString *) label;
|
|
|
|
- (id) source;
|
|
|
|
- (id) destination;
|
|
|
|
- (NSNibConnector *) nibConnector;
|
2010-05-29 05:27:04 +00:00
|
|
|
- (id) nibInstantiate;
|
|
|
|
- (void) establishConnection;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface IBActionConnection: IBConnection
|
|
|
|
{
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface IBOutletConnection: IBConnection
|
|
|
|
{
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2011-10-03 12:48:15 +00:00
|
|
|
@interface IBBindingConnection: IBConnection
|
|
|
|
{
|
|
|
|
NSNibBindingConnector *connector;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2010-05-29 05:27:04 +00:00
|
|
|
@interface IBConnectionRecord: NSObject
|
|
|
|
{
|
|
|
|
IBConnection *connection;
|
|
|
|
int connectionID;
|
|
|
|
}
|
2011-10-25 09:06:01 +00:00
|
|
|
- (IBConnection *) connection;
|
2010-05-29 05:27:04 +00:00
|
|
|
@end
|
|
|
|
|
2011-10-24 14:44:29 +00:00
|
|
|
@interface IBToolTipAttribute: NSObject
|
|
|
|
{
|
|
|
|
NSString *name;
|
|
|
|
id object;
|
|
|
|
NSString *toolTip;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2011-11-05 17:45:09 +00:00
|
|
|
@interface IBInitialTabViewItemAttribute: NSObject
|
|
|
|
{
|
|
|
|
NSString *name;
|
|
|
|
id object;
|
|
|
|
id initialTabViewItem;
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2010-05-29 05:27:04 +00:00
|
|
|
@interface IBObjectRecord: NSObject
|
|
|
|
{
|
2014-12-07 16:38:40 +00:00
|
|
|
id objectID;
|
2010-05-29 05:27:04 +00:00
|
|
|
id object;
|
|
|
|
id children;
|
|
|
|
id parent;
|
|
|
|
}
|
|
|
|
- (id) object;
|
2011-10-25 09:06:01 +00:00
|
|
|
- (id) parent;
|
2014-12-07 16:38:40 +00:00
|
|
|
- (id) objectID;
|
2010-05-29 05:27:04 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface IBMutableOrderedSet: NSObject
|
|
|
|
{
|
|
|
|
NSArray *orderedObjects;
|
|
|
|
}
|
|
|
|
- (NSArray *)orderedObjects;
|
2014-12-07 16:38:40 +00:00
|
|
|
- (id) objectWithObjectID: (id)objID;
|
2010-05-29 05:27:04 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface IBObjectContainer: NSObject <NSCoding>
|
|
|
|
{
|
|
|
|
NSMutableArray *connectionRecords;
|
|
|
|
IBMutableOrderedSet *objectRecords;
|
|
|
|
NSMutableDictionary *flattenedProperties;
|
|
|
|
NSMutableDictionary *unlocalizedProperties;
|
|
|
|
id activeLocalization;
|
|
|
|
NSMutableDictionary *localizations;
|
|
|
|
id sourceID;
|
|
|
|
int maxID;
|
|
|
|
}
|
|
|
|
- (id) nibInstantiate;
|
2011-10-25 09:06:01 +00:00
|
|
|
- (NSEnumerator *) connectionRecordEnumerator;
|
|
|
|
- (NSEnumerator *) objectRecordEnumerator;
|
2010-05-29 05:27:04 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface GSXibKeyedUnarchiver: NSKeyedUnarchiver
|
|
|
|
{
|
|
|
|
NSMutableDictionary *objects;
|
|
|
|
NSMutableArray *stack;
|
|
|
|
GSXibElement *currentElement;
|
|
|
|
NSMutableDictionary *decoded;
|
|
|
|
}
|
2011-10-24 14:44:29 +00:00
|
|
|
|
|
|
|
- (id) _decodeArrayOfObjectsForElement: (GSXibElement*)element;
|
|
|
|
- (id) _decodeDictionaryOfObjectsForElement: (GSXibElement*)element;
|
2010-05-29 05:27:04 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|