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/benstiglitz/gitnub.git
Search Repo:
dustin (author)
Thu Mar 13 00:30:03 -0700 2008
commit  68febe8fcbfeaa28bce44e0c6d383444f20edd7e
tree    5df5c755f2c99e08bee4037bfe32183a82f83f5c
parent  1406db46586f15c38e9cf474e9e39357312b93f0
gitnub / CommitSummaryCell.h
100644 21 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
//
// 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