ResKnife/Cocoa/Classes/ResourceDocument.h

54 lines
1.8 KiB
C
Raw Normal View History

2001-10-19 19:41:13 +00:00
#import <Cocoa/Cocoa.h>
#import <Carbon/Carbon.h> // Actually I only need CarbonCore.framework
2002-03-31 12:00:02 +00:00
@class ResourceWindowController, ResourceDataSource, Resource;
2001-10-19 19:41:13 +00:00
@interface ResourceDocument : NSDocument
{
2002-02-23 03:40:24 +00:00
IBOutlet ResourceDataSource *dataSource;
IBOutlet NSWindow *mainWindow;
IBOutlet NSOutlineView *outlineView;
2001-10-19 19:41:13 +00:00
NSMutableArray *resources;
2002-03-21 04:02:26 +00:00
HFSUniStr255 *fork; // name of fork to save to, usually empty string (data fork) or 'RESOURCE_FORK' as returned from FSGetResourceForkName()
2002-03-31 12:00:02 +00:00
NSString *creator;
NSString *type;
2001-10-19 19:41:13 +00:00
}
2002-02-23 03:40:24 +00:00
- (void)setupToolbar:(NSWindowController *)windowController;
2002-02-07 03:45:43 +00:00
- (IBAction)showCreateResourceSheet:(id)sender;
2002-03-31 12:00:02 +00:00
- (IBAction)openResources:(id)sender;
- (IBAction)openResourcesInTemplate:(id)sender;
- (IBAction)openResourcesAsHex:(id)sender;
- (void)openResourceUsingEditor:(Resource *)resource;
- (void)openResource:(Resource *)resource usingTemplate:(NSString *)templateName;
- (void)openResourceAsHex:(Resource *)resource;
2002-02-07 03:45:43 +00:00
- (IBAction)playSound:(id)sender;
- (void)sound:(NSSound *)sound didFinishPlaying:(BOOL)finished;
2002-02-07 03:45:43 +00:00
- (IBAction)clear:(id)sender;
- (void)resourceNameWillChange:(NSNotification *)notification;
- (void)resourceIDWillChange:(NSNotification *)notification;
- (void)resourceTypeWillChange:(NSNotification *)notification;
- (void)resourceAttributesWillChange:(NSNotification *)notification;
2001-10-19 19:41:13 +00:00
- (BOOL)readResourceMap:(SInt16)fileRefNum;
- (BOOL)writeResourceMap:(SInt16)fileRefNum;
2002-02-23 03:40:24 +00:00
- (NSWindow *)mainWindow;
2001-10-19 19:41:13 +00:00
- (ResourceDataSource *)dataSource;
2002-02-23 03:40:24 +00:00
- (NSOutlineView *)outlineView;
- (NSArray *)resources; // return the array as non-mutable
2001-10-19 19:41:13 +00:00
2002-03-31 12:00:02 +00:00
- (NSString *)creator;
- (NSString *)type;
- (IBAction)creatorChanged:(id)sender;
- (IBAction)typeChanged:(id)sender;
- (void)setCreator:(NSString *)oldCreator;
- (void)setType:(NSString *)oldType;
- (void)setCreator:(NSString *)newCreator andType:(NSString *)newType;
@end