mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
21 lines
434 B
Objective-C
21 lines
434 B
Objective-C
//
|
|
// PBSourceViewBadge.h
|
|
// GitX
|
|
//
|
|
// Created by Nathan Kinsinger on 2/13/10.
|
|
// Copyright 2010 Nathan Kinsinger. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface PBSourceViewBadge : NSObject {
|
|
|
|
}
|
|
|
|
+ (NSImage *) badge:(NSString *)badge forCell:(NSTextFieldCell *)cell;
|
|
+ (NSImage *) checkedOutBadgeForCell:(NSTextFieldCell *)cell;
|
|
+ (NSImage *) numericBadge:(NSInteger)number forCell:(NSTextFieldCell *)cell;
|
|
|
|
@end
|