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/andrewlmurray/gitnub.git
Search Repo:
Caged (author)
Wed Mar 12 19:42:07 -0700 2008
commit  8494bf0414ed77c3208968594780ee359c0548d2
tree    a432028552dcbdb9cc7b662b3c4cd80f7689ddce
parent  91ae25d506fc4ed98f6674e694bd0617f25065ce
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