mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 17:30:15 +00:00
103 lines
3.4 KiB
Objective-C
103 lines
3.4 KiB
Objective-C
#import "InfoWindowController.h"
|
|
#import <Carbon/Carbon.h> // Actually I only need CarbonCore.framework, but <Carbon/CarbonCore.h> and <CarbonCore/CarbonCore.h> don't work, so I don't know what else to do
|
|
#import "ResourceDocument.h"
|
|
#import "Resource.h"
|
|
|
|
@implementation InfoWindowController
|
|
|
|
- (id)init
|
|
{
|
|
self = [self initWithWindowNibName:@"InfoWindow"];
|
|
if( self ) [self setWindowFrameAutosaveName:@"InfoWindow"];
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
[super dealloc];
|
|
}
|
|
|
|
- (void)windowDidLoad
|
|
{
|
|
[super windowDidLoad];
|
|
|
|
// retain views for swapping in and out
|
|
[documentView retain];
|
|
[documentView removeFromSuperview];
|
|
[resourceView retain];
|
|
[resourceView removeFromSuperview];
|
|
|
|
[self setMainWindow:[NSApp mainWindow]];
|
|
[self updateInfoWindow];
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(mainWindowChanged:) name:NSWindowDidBecomeMainNotification object:nil];
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(selectedResourceChanged:) name:NSOutlineViewSelectionDidChangeNotification object:nil];
|
|
}
|
|
|
|
- (void)updateInfoWindow
|
|
{
|
|
if( selectedResource )
|
|
{
|
|
[[self window] setTitle:@"Resource Info"];
|
|
[placeholderView setContentView:resourceView];
|
|
[nameView setStringValue:[selectedResource name]];
|
|
[[attributesMatrix cellAtRow:changedBox column:0] setState:[[selectedResource attributes] shortValue] & resChanged];
|
|
[[attributesMatrix cellAtRow:preloadBox column:0] setState:[[selectedResource attributes] shortValue] & resPreload];
|
|
[[attributesMatrix cellAtRow:protectedBox column:0] setState:[[selectedResource attributes] shortValue] & resProtected];
|
|
[[attributesMatrix cellAtRow:lockedBox column:0] setState:[[selectedResource attributes] shortValue] & resLocked];
|
|
[[attributesMatrix cellAtRow:purgableBox column:0] setState:[[selectedResource attributes] shortValue] & resPurgeable];
|
|
[[attributesMatrix cellAtRow:systemHeapBox column:0] setState:[[selectedResource attributes] shortValue] & resSysHeap];
|
|
}
|
|
else
|
|
{
|
|
[[self window] setTitle:@"Document Info"];
|
|
[placeholderView setContentView:documentView];
|
|
[nameView setStringValue:[currentDocument fileName]? [[currentDocument fileName] lastPathComponent]:[currentDocument displayName]];
|
|
}
|
|
}
|
|
|
|
- (void)setMainWindow:(NSWindow *)mainWindow
|
|
{
|
|
NSWindowController *controller = [mainWindow windowController];
|
|
|
|
if( [[controller document] isKindOfClass:[ResourceDocument class]] )
|
|
currentDocument = [controller document];
|
|
else currentDocument = nil;
|
|
|
|
selectedResource = [[currentDocument outlineView] itemAtRow:[[currentDocument outlineView] selectedRow]];
|
|
[self updateInfoWindow];
|
|
}
|
|
|
|
- (void)mainWindowChanged:(NSNotification *)notification
|
|
{
|
|
[self setMainWindow:[notification object]];
|
|
}
|
|
|
|
- (void)selectedResourceChanged:(NSNotification *)notification
|
|
{
|
|
selectedResource = [[notification object] itemAtRow:[[notification object] selectedRow]];
|
|
[self updateInfoWindow];
|
|
}
|
|
|
|
- (IBAction)attributesChanged:(id)sender
|
|
{
|
|
short attr = 0x0001 << [sender selectedRow]+1;
|
|
short number = ([[selectedResource attributes] shortValue] ^ attr);
|
|
[selectedResource setAttributes:[NSNumber numberWithShort:number]];
|
|
[self updateInfoWindow];
|
|
}
|
|
|
|
+ (id)sharedInfoWindowController
|
|
{
|
|
static InfoWindowController *sharedInfoWindowController = nil;
|
|
|
|
if( !sharedInfoWindowController )
|
|
{
|
|
sharedInfoWindowController = [[InfoWindowController allocWithZone:[self zone]] init];
|
|
}
|
|
return sharedInfoWindowController;
|
|
}
|
|
|
|
@end
|