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 18:06:20 -0700 2008
commit  d054f6d8a2f5bd2bf912f92b2acc122e959526c1
tree    94ed687061f80b4a21459ed63085f1a2d15330d8
parent  40708baadcc146c41c9912ddb40b230710a104ee
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