-
Notifications
You must be signed in to change notification settings - Fork 1
/
ImageAndTextCell.h
50 lines (36 loc) · 941 Bytes
/
ImageAndTextCell.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// ImageAndTextCell.h
//
// Copyright (c) 2001-2002, Apple. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface ImageAndTextCell : NSTextFieldCell {
BOOL separatorCell;
BOOL updating;
BOOL dim;
BOOL selected;
BOOL boldsWhenSelected;
int contentCount;
NSSize imageSize;
NSImage *image;
NSMutableParagraphStyle *_paragraph;
}
- (BOOL) dim;
- (void) setDim:(BOOL)isDim;
- (BOOL) updating;
- (void) setUpdating:(BOOL)isUpdating;
- (BOOL) isSeparatorCell;
- (void) setIsSeparatorCell:(BOOL)separator;
- (BOOL) isSelected;
- (void) setSelected:(BOOL)isSelected;
- (BOOL) boldsWhenSelected;
- (void) setBoldsWhenSelected:(BOOL)doesBold;
- (int) contentCount;
- (void) setContentCount:(int)count;
- (NSSize) imageSize;
- (void) setImageSize:(NSSize)aSize;
- (NSImage *)image;
- (void)setImage:(NSImage *)anImage;
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
- (NSSize)cellSize;
@end