// // PBGitRevisionCell.h // GitX // // Created by Pieter de Bie on 17-06-08. // Copyright 2008 __MyCompanyName__. All rights reserved. // #import #import "PBGitGrapher.h" #import "PBGraphCellInfo.h" #import "PBGitHistoryController.h" #import "PBRefContextDelegate.h" @interface PBGitRevisionCell : NSActionCell { PBGitCommit *objectValue; PBGraphCellInfo *cellInfo; NSTextFieldCell *textCell; IBOutlet PBGitHistoryController *controller; IBOutlet id contextMenuDelegate; } - (int) indexAtX:(float)x; - (NSRect) rectAtIndex:(int)index; - (void) drawLabelAtIndex:(int)index inRect:(NSRect)rect; @property(retain) PBGitCommit* objectValue; @end