// // PBSourceViewCell.h // GitX // // Created by Nathan Kinsinger on 1/7/10. // Copyright 2010 Nathan Kinsinger. All rights reserved. // #import #import "PBIconAndTextCell.h" @interface PBSourceViewCell : PBIconAndTextCell { NSString *badge; BOOL showsActionButton; BOOL iMouseDownInInfoButton; BOOL iMouseHoveredInInfoButton; SEL iInfoButtonAction; } @property (nonatomic) BOOL showsActionButton; @property (nonatomic) SEL iInfoButtonAction; @property (assign) NSString *badge; @end