summaryrefslogtreecommitdiffstats
path: root/Liaison/ImageAndTextCell.h
blob: 5c39369ec9be91c63d6424f1334f84ee797be2ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  ImageAndTextCell.h
//
//  Copyright (c) 2001-2002, Apple. All rights reserved.
//

@interface ImageAndTextCell : NSTextFieldCell
{
@private
    NSImage	*image;
}

- (void)drawWithFrame: (NSRect)cellFrame inView: (NSView *)controlView;
- (NSSize)cellSize;
@end

@interface ImageAndTextCell (Accessors)
- (NSImage *)image;
- (void)setImage: (NSImage *)anImage;
@end