mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-17 12:05:12 +00:00
100 lines
2.4 KiB
Objective-C
100 lines
2.4 KiB
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
/*!
|
|
@header ApplicationDelegate.h
|
|
@abstract This class is the delegate object for NSApp.
|
|
*/
|
|
|
|
/*!
|
|
@class ApplicationDelegate
|
|
@abstract This class is the delegate object for NSApp.
|
|
*/
|
|
@class OpenPanelDelegate;
|
|
|
|
@interface ApplicationDelegate : NSObject
|
|
{
|
|
/*! @var openPanelDelegate Delegate for <tt>NSOpenPanels</tt>. */
|
|
IBOutlet OpenPanelDelegate *openPanelDelegate;
|
|
/*! @var icons A dictionary within which to cache icons. Keys are four-character <tt>NSStrings</tt> representing <tt>ResTypes</tt>. */
|
|
NSMutableDictionary *_icons;
|
|
}
|
|
|
|
/*!
|
|
@method showAbout:
|
|
@abstract Displays the about box located in <b>AboutPanel.nib</b>.
|
|
*/
|
|
- (IBAction)showAbout:(id)sender;
|
|
|
|
/*!
|
|
@method visitWebsite:
|
|
@abstract Takes the user to <i>http://web.nickshanks.com/resknife/</i>.
|
|
*/
|
|
- (IBAction)visitWebsite:(id)sender;
|
|
|
|
/*!
|
|
@method visitSourceforge:
|
|
@abstract Takes the user to <i>http://resknife.sourceforge.net/</i>.
|
|
*/
|
|
- (IBAction)visitSourceforge:(id)sender;
|
|
|
|
/*!
|
|
@method emailDeveloper:
|
|
@abstract Launches email client and inserts <i>resknife@nickshanks.com</i> into To field.
|
|
*/
|
|
- (IBAction)emailDeveloper:(id)sender;
|
|
|
|
/*!
|
|
@method showInfo:
|
|
@abstract Displays the Info panel stored in <b>InfoWindow.nib</b>
|
|
*/
|
|
- (IBAction)showInfo:(id)sender;
|
|
|
|
/*!
|
|
@method showPasteboard:
|
|
@abstract Displays the pasteboard document, a singleton instance of class <tt>PasteboardDocument</tt>
|
|
*/
|
|
- (IBAction)showPasteboard:(id)sender;
|
|
|
|
/*!
|
|
@method showPrefs:
|
|
@abstract Displays the preferences panel stored in <b>PrefsWindow.nib</b>
|
|
*/
|
|
- (IBAction)showPrefs:(id)sender;
|
|
|
|
/*!
|
|
@method initUserDefaults
|
|
@abstract Initalises any unset user preferences to default values as read in from <b>defaults.plist</b>.
|
|
*/
|
|
- (void)initUserDefaults;
|
|
|
|
/* accessors */
|
|
|
|
/*!
|
|
@method openPanelDelegate
|
|
@abstract Accessor method for the <tt>openPanelDelegate</tt> instance variable.
|
|
*/
|
|
- (OpenPanelDelegate *)openPanelDelegate;
|
|
|
|
/*!
|
|
@@method iconForResourceType:
|
|
@abstract Returns the icon to be used throughout the UI for any given resource type.
|
|
*/
|
|
- (NSImage *)iconForResourceType:(NSString *)resourceType;
|
|
|
|
/*!
|
|
@@method _icons
|
|
@abstract Private accessor method for the <tt>_icons</tt> instance variable.
|
|
*/
|
|
- (NSMutableDictionary *)_icons;
|
|
|
|
/*!
|
|
@method icons
|
|
@abstract Accessor method for the <tt>_icons</tt> instance variable. Returns an immutable dictionary.
|
|
*/
|
|
- (NSDictionary *)icons;
|
|
|
|
/* utility methods */
|
|
|
|
- (NSArray *)forksForFile:(FSRef *)fileRef;
|
|
|
|
@end |