Files
gitx/PBGitGraphLine.m
T
Pieter de Bie a294d911b0 Grapher: Add colors to lane
This introduces a new object, PBGitLane that keeps track of the current lane.
We used to only need a sha for a lane, but now that more information is
needed, an extra object is in order. PBGitLane keeps a lane index number. This
number is later used to pick a color.
2008-08-28 00:25:33 +02:00

33 lines
667 B
Objective-C

//
// PBLine.m
// GitX
//
// Created by Pieter de Bie on 27-08-08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "PBGitGraphLine.h"
@implementation PBGitGraphLine
@synthesize upper, from, to, colorIndex;
- (id)initWithUpper: (int) u From: (int) f to: (int) t color: (int) c;
{
upper = u;
from = f;
to = t;
colorIndex = c;
return self;
}
+ (PBGitGraphLine*) lowerLineFrom:(int) f to: (int) t color: (int) c
{
return [[PBGitGraphLine alloc] initWithUpper:0 From:f to:t color:c];
}
+ (PBGitGraphLine*) upperLineFrom:(int) f to: (int) t color: (int) c
{
return [[PBGitGraphLine alloc] initWithUpper:1 From:f to:t color: c];
}
@end