mirror of
https://github.com/textmate/textmate.git
synced 2026-02-14 16:34:57 -05:00
14 lines
363 B
Objective-C
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
|