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

16 lines
372 B
Objective-C

@interface FFFilePathCell : NSCell
{
NSImage* icon;
NSString* path;
NSString* base;
NSUInteger count;
BOOL mouseDownInIcon;
}
@property (nonatomic, retain) NSImage* icon;
@property (nonatomic, retain) NSString* path;
@property (nonatomic, retain) NSString* base;
@property (nonatomic, assign) NSUInteger count;
- (NSRect)iconFrameInCellFrame:(NSRect)cellFrame;
@end