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