mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-14 15:30:00 +00:00
25 lines
642 B
Objective-C
25 lines
642 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import <Carbon/Carbon.h>
|
|
|
|
@class ResourceDocument;
|
|
|
|
@interface CreateResourceSheetController : NSWindowController
|
|
{
|
|
IBOutlet NSMatrix *attributesMatrix;
|
|
IBOutlet NSButton *cancelButton;
|
|
IBOutlet NSButton *createButton;
|
|
IBOutlet NSTextField *nameView;
|
|
IBOutlet NSTextField *resIDView;
|
|
IBOutlet NSTextField *typeView;
|
|
IBOutlet NSPopUpButton *typePopup;
|
|
|
|
ResourceDocument *document;
|
|
}
|
|
|
|
- (void)controlTextDidChange:(NSNotification *)notification;
|
|
|
|
- (void)showCreateResourceSheet:(ResourceDocument *)sheetDoc;
|
|
- (IBAction)hideCreateResourceSheet:(id)sender;
|
|
- (IBAction)typePopupSelection:(id)sender;
|
|
|
|
@end |