20 lines
345 B
Objective-C
20 lines
345 B
Objective-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 |