mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 17:30:15 +00:00
21 lines
584 B
C
21 lines
584 B
C
|
#import <Cocoa/Cocoa.h>
|
||
|
#import "ResourceDataSource.h"
|
||
|
|
||
|
@interface CreateResourceSheetController : NSWindowController
|
||
|
{
|
||
|
IBOutlet ResourceDataSource *dataSource;
|
||
|
IBOutlet NSMatrix *attributesMatrix;
|
||
|
IBOutlet NSButton *cancelButton;
|
||
|
IBOutlet NSButton *createButton;
|
||
|
IBOutlet NSTextField *nameView;
|
||
|
IBOutlet NSTextField *resIDView;
|
||
|
IBOutlet NSTextField *typeView;
|
||
|
IBOutlet NSPopUpButton *typePopup;
|
||
|
IBOutlet NSWindow *parent;
|
||
|
}
|
||
|
|
||
|
- (IBAction)showCreateResourceSheet:(id)sender;
|
||
|
- (IBAction)hideCreateResourceSheet:(id)sender;
|
||
|
- (IBAction)typePopupSelection:(id)sender;
|
||
|
|
||
|
@end
|