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
Caged (author)
Wed Mar 12 17:05:28 -0700 2008
commit  91ae25d506fc4ed98f6674e694bd0617f25065ce
tree    eeebb195973a01479957433f545b442315482ee6
parent  fc10de3ca1dc09f64d5f1522026599786e214a3e
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