jens@20: #import jens@20: jens@20: /** Subclass of NSTextFieldCell which can display text and an image simultaneously. jens@20: Taken directly from Apple sample code. */ jens@20: @interface ImageAndTextCell : NSTextFieldCell jens@20: { jens@20: @private jens@20: NSImage *image; jens@20: } jens@20: jens@20: - (void)setImage:(NSImage *)anImage; jens@20: - (NSImage *)image; jens@20: jens@20: - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView; jens@20: - (NSSize)cellSize; jens@20: jens@20: @end