mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
b4d7816be7
This simply draws the ref names in the cell, without any markup or correct rect.
25 lines
452 B
Objective-C
25 lines
452 B
Objective-C
//
|
|
// PBGraphCellInfo.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 27-08-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBGraphCellInfo : NSObject
|
|
{
|
|
int position;
|
|
NSArray* lines;
|
|
int numColumns;
|
|
NSArray* refs;
|
|
}
|
|
@property(readonly) NSArray* lines;
|
|
@property(retain) NSArray* refs;
|
|
@property(assign) int position, numColumns;
|
|
|
|
- (id)initWithPosition: (int) p andLines: (NSArray*) l;
|
|
|
|
@end |