diff options
author | Brian Cully <bjc@kublai.com> | 2008-04-14 21:45:08 -0400 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2008-04-14 21:45:08 -0400 |
commit | 17349a5e426dc7acf1216a3767a22f69974cbca0 (patch) | |
tree | 20029d02f07ab6257cccec36d34fb312f796e1d1 /Plugins/BuiltInFunctions/InspectorViewController.h | |
download | liaison-17349a5e426dc7acf1216a3767a22f69974cbca0.tar.gz liaison-17349a5e426dc7acf1216a3767a22f69974cbca0.zip |
Initial commit.
Diffstat (limited to 'Plugins/BuiltInFunctions/InspectorViewController.h')
-rw-r--r-- | Plugins/BuiltInFunctions/InspectorViewController.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/Plugins/BuiltInFunctions/InspectorViewController.h b/Plugins/BuiltInFunctions/InspectorViewController.h new file mode 100644 index 0000000..bba68ef --- /dev/null +++ b/Plugins/BuiltInFunctions/InspectorViewController.h @@ -0,0 +1,52 @@ +// +// InspectorViewController.h +// Liaison +// +// Created by Brian Cully on Wed May 21 2003. +// Copyright (c) 2003 Brian Cully. All rights reserved. +// + +@interface LiFileHandle (LiLocationStuff) +- (NSString *)location; +@end + +@interface InspectorViewController : NSObject +{ + IBOutlet NSView *theFileTabView; + IBOutlet NSView *theHFSTabView; + + IBOutlet NSTextField *theFilenameField; + IBOutlet NSTextField *theTypeField; + IBOutlet NSPopUpButton *theApplicationButton; + + IBOutlet NSImageView *iconView; + IBOutlet NSTextField *pathField; + IBOutlet NSTextField *hfsTypeField; + IBOutlet NSTextField *hfsCreatorField; + + LiFileHandle *theFile; +} +- (IBAction)setIcon:(id)sender; +- (IBAction)setFilename:(id)sender; +- (IBAction)setType:(id)sender; +- (IBAction)setApplication:(id)sender; +- (IBAction)setHFSTypeField:(id)sender; +- (IBAction)setHFSCreatorField:(id)sender; +@property (retain) NSPopUpButton *theApplicationButton; +@property (retain) NSImageView *iconView; +@property (retain) NSTextField *hfsCreatorField; +@property (retain,getter=hfsView) NSView *theHFSTabView; +@property (retain) NSTextField *theTypeField; +@property (retain,getter=fileView) NSView *theFileTabView; +@property (retain,getter=file) LiFileHandle *theFile; +@property (retain) NSTextField *pathField; +@property (retain) NSTextField *theFilenameField; +@property (retain) NSTextField *hfsTypeField; +@end + +@interface InspectorViewController (Accessors) +- (NSView *)fileView; +- (NSView *)hfsView; +- (LiFileHandle *)file; +- (void)setFile: (LiFileHandle *)aFile; +@end |