HistoryView: Don't show the 'loading commit' thing until after 500 ms.
[GitX.git] / PBIconAndTextCell.h
blobb30cf1387fd07b8635c32caddc29156858d864fe
1 //
2 // PBIconAndTextCell.h
3 // GitX
4 //
5 // Created by CiarĂ¡n Walsh on 23/09/2008.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
12 @interface PBIconAndTextCell : NSTextFieldCell
14 NSImage *image;
15 BOOL mouseDownInButton;
16 BOOL mouseHoveredInButton;
18 @property (retain) NSImage *image;
20 - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
21 - (NSSize)cellSize;
22 @end