Merge branch 'fix_interspacing'
[GitX.git] / PBGitGrapher.h
blob58311ad07a10964afc296085c0b3e4e399b38957
1 //
2 // PBGitGrapher.h
3 // GitX
4 //
5 // Created by Pieter de Bie on 17-06-08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import "PBGitCommit.h"
11 #import "PBLine.h"
12 #import "PBGraphCellInfo.h"
14 struct PBGitGraphColumn {
15 NSString* commit; // Commit that we're looking for
16 int color;
20 #define PBGitMaxColumns 100
22 @interface PBGitGrapher : NSObject {
23 NSMutableArray* cellsInfo;
26 - (void) parseCommits: (NSArray *) array;
27 - (PBGraphCellInfo*) cellInfoForRow: (int) row;
28 @end