GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of Caged/gitnub
Description: A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for downloads and screenshots.
Homepage: http://alternateidea.com
Clone URL: git://github.com/auser/gitnub.git
kballard (author)
Fri Mar 21 17:20:34 -0700 2008
commit  98b5ff64c13c0ff1c1822237d5468186cdb0087b
tree    baa309fd797e739313c6e1aac4617050d762bff3
parent  cd89473f5e13a271cae42f605cd70a9c3793d98e
gitnub / CommitSummaryCell.h
100644 22 lines (16 sloc) 0.404 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// CommitSummaryCell.h
// GitNub
//
// Created by local22 on 3/12/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface CommitSummaryCell : NSTextFieldCell {
    NSTextFieldCell *titleCell;
    NSTextFieldCell *subtitleCell;
    NSImageCell *gravatarCell;
}
 
- (void)setGravatarImage:(NSImage *)image;
- (void)setSubtitle:(NSString *)string;
 
@end