author | snej@snej-mbp.mtv.corp.google.com |
Wed Apr 08 16:31:19 2009 -0700 (2009-04-08) | |
changeset 24 | 629c7605ab2a |
permissions | -rw-r--r-- |
1 #import <Cocoa/Cocoa.h>
3 /** Subclass of NSTextFieldCell which can display text and an image simultaneously.
4 Taken directly from Apple sample code. */
5 @interface ImageAndTextCell : NSTextFieldCell
6 {
7 @private
8 NSImage *image;
9 }
11 - (void)setImage:(NSImage *)anImage;
12 - (NSImage *)image;
14 - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
15 - (NSSize)cellSize;
17 @end