mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
52d9402513
This implements some sort of graph shower like Gitk has. However, it still has bugs and can't do color very well.
19 lines
334 B
Objective-C
19 lines
334 B
Objective-C
//
|
|
// PBGitRevisionCell.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 17-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitGrapher.h"
|
|
|
|
@interface PBGitRevisionCell : NSTextFieldCell {
|
|
PBGitCellInfo cellInfo;
|
|
BOOL isReady;
|
|
}
|
|
|
|
@property(assign) PBGitCellInfo cellInfo;
|
|
@end
|