20 lines
345 B
C
20 lines
345 B
C
|
//
|
||
|
// ImageAndTextCell.h
|
||
|
//
|
||
|
// Copyright (c) 2001-2002, Apple. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface ImageTextCell : NSTextFieldCell {
|
||
|
@private
|
||
|
NSImage *image;
|
||
|
}
|
||
|
|
||
|
- (void)setImage:(NSImage *)anImage;
|
||
|
- (NSImage *)image;
|
||
|
|
||
|
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
|
||
|
- (NSSize)cellSize;
|
||
|
|
||
|
@end
|