Files
textmate/Frameworks/OakAppKit/src/OakImageAndTextCell.h
Allan Odgaard 9894969e67 Initial commit
2012-08-09 16:25:56 +02:00

14 lines
363 B
Objective-C

enum {
OakImageAndTextCellHitImage = (1 << 10),
OakImageAndTextCellHitText = (1 << 11),
};
@interface OakImageAndTextCell : NSTextFieldCell
{
NSImage* image;
}
@property (nonatomic, retain) NSImage* image;
- (NSRect)imageFrameWithFrame:(NSRect)aRect inControlView:(NSView*)aView;
- (NSRect)textFrameWithFrame:(NSRect)aRect inControlView:(NSView*)aView;
@end