2002-04-29 00:05:34 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2002-02-02 11:48:54 +00:00
|
|
|
|
|
|
|
/* This protocol allows your plug to interrogate a resource to find out information about it. */
|
|
|
|
|
|
|
|
@protocol ResKnifeResourceProtocol
|
|
|
|
|
2002-10-04 19:54:05 +00:00
|
|
|
- (void)touch;
|
2002-02-14 23:24:53 +00:00
|
|
|
- (BOOL)isDirty;
|
2002-02-02 11:48:54 +00:00
|
|
|
- (NSString *)name;
|
|
|
|
- (void)setName:(NSString *)newName;
|
|
|
|
- (NSString *)type;
|
|
|
|
- (void)setType:(NSString *)newType;
|
|
|
|
- (NSNumber *)resID;
|
|
|
|
- (void)setResID:(NSNumber *)newResID;
|
|
|
|
- (NSNumber *)attributes;
|
|
|
|
- (void)setAttributes:(NSNumber *)newAttributes;
|
2002-02-14 23:24:53 +00:00
|
|
|
- (NSNumber *)size;
|
2002-02-02 11:48:54 +00:00
|
|
|
- (NSData *)data;
|
|
|
|
- (void)setData:(NSData *)newData;
|
|
|
|
|
2002-04-29 00:05:34 +00:00
|
|
|
// These methods are used to retrieve resources other than the one you're editing.
|
|
|
|
// Passing a document of nil will indicate to search in all open documents.
|
|
|
|
// There is currently no way to search in files which haven't been opened.
|
|
|
|
// All returned objects are auoreleased. Retain if you want to keep them.
|
|
|
|
|
|
|
|
// This method may return an empty array
|
|
|
|
+ (NSArray *)allResourcesOfType:(NSString *)typeValue inDocument:(NSDocument *)document;
|
|
|
|
// The next two return the first matching resource found, or nil.
|
|
|
|
+ (id)resourceOfType:(NSString *)typeValue andID:(NSNumber *)resIDValue inDocument:(NSDocument *)document;
|
|
|
|
+ (id)resourceOfType:(NSString *)typeValue withName:(NSString *)nameValue inDocument:(NSDocument *)document;
|
|
|
|
|
2002-02-06 20:57:56 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
// Resource notifications
|
2002-04-30 23:44:23 +00:00
|
|
|
// See note in Notifications.m about usage
|
2002-02-14 23:24:53 +00:00
|
|
|
extern NSString *ResourceWillChangeNotification;
|
|
|
|
extern NSString *ResourceNameWillChangeNotification;
|
|
|
|
extern NSString *ResourceTypeWillChangeNotification;
|
|
|
|
extern NSString *ResourceIDWillChangeNotification;
|
|
|
|
extern NSString *ResourceAttributesWillChangeNotification;
|
|
|
|
extern NSString *ResourceDataWillChangeNotification;
|
2002-12-31 19:06:40 +00:00
|
|
|
extern NSString *ResourceWillBeSavedNotification;
|
2002-02-14 23:24:53 +00:00
|
|
|
|
|
|
|
extern NSString *ResourceNameDidChangeNotification;
|
|
|
|
extern NSString *ResourceTypeDidChangeNotification;
|
|
|
|
extern NSString *ResourceIDDidChangeNotification;
|
|
|
|
extern NSString *ResourceAttributesDidChangeNotification;
|
|
|
|
extern NSString *ResourceDataDidChangeNotification;
|
2002-12-31 19:06:40 +00:00
|
|
|
extern NSString *ResourceDidChangeNotification;
|
|
|
|
extern NSString *ResourceWasSavedNotification;
|