mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-08 21:35:59 +00:00
15 lines
247 B
Objective-C
15 lines
247 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface ResourceNameCell : NSTextFieldCell
|
|
{
|
|
NSImage *image;
|
|
}
|
|
|
|
- (void)setImage:(NSImage *)anImage;
|
|
- (NSImage *)image;
|
|
|
|
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
|
|
- (NSSize)cellSize;
|
|
|
|
@end
|