mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 17:30:15 +00:00
53 lines
1.2 KiB
Objective-C
53 lines
1.2 KiB
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@class ResourceDocument, Resource;
|
|
|
|
extern NSString *DocumentInfoWillChangeNotification;
|
|
extern NSString *DocumentInfoDidChangeNotification;
|
|
|
|
enum Attributes
|
|
{
|
|
changedBox = 0,
|
|
preloadBox,
|
|
protectedBox,
|
|
lockedBox,
|
|
purgableBox,
|
|
systemHeapBox
|
|
};
|
|
|
|
@interface InfoWindowController : NSWindowController
|
|
{
|
|
IBOutlet NSImageView *iconView;
|
|
IBOutlet NSTextField *nameView;
|
|
|
|
IBOutlet NSBox *placeholderView;
|
|
IBOutlet NSBox *resourceView;
|
|
IBOutlet NSBox *documentView;
|
|
|
|
IBOutlet NSMatrix *attributesMatrix;
|
|
IBOutlet NSForm *filePropertyForm;
|
|
|
|
@private
|
|
ResourceDocument *currentDocument;
|
|
Resource *selectedResource;
|
|
}
|
|
|
|
- (void)updateInfoWindow;
|
|
- (void)setMainWindow:(NSWindow *)mainWindow;
|
|
- (IBAction)attributesChanged:(id)sender;
|
|
- (IBAction)nameDidChange:(id)sender;
|
|
- (void)resourceAttributesDidChange:(NSNotification *)notification;
|
|
- (void)documentInfoDidChange:(NSNotification *)notification;
|
|
|
|
+ (id)sharedInfoWindowController;
|
|
|
|
@end
|
|
|
|
@interface NSWindowController (InfoWindowAdditions)
|
|
|
|
/*! @function resource
|
|
@discussion Your plug-in should override this method to return the primary resource it's editing. Default implementation returns nil.
|
|
*/
|
|
- (Resource *)resource;
|
|
|
|
@end |