mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-27 04:29:37 +00:00
18 lines
318 B
Objective-C
18 lines
318 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface ResourceNameCell : NSTextFieldCell
|
|
{
|
|
BOOL drawImage;
|
|
NSImage *image;
|
|
}
|
|
|
|
- (BOOL)drawsImage;
|
|
- (void)setDrawsImage:(BOOL)flag;
|
|
- (NSImage *)image;
|
|
- (void)setImage:(NSImage *)anImage;
|
|
|
|
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
|
|
- (NSSize)cellSize;
|
|
|
|
@end
|