mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
2de41fd116
Conflicts: PBGitRepository.h PBGitSidebarController.m PBSourceViewCell.h PBSourceViewCell.m
25 lines
521 B
Objective-C
25 lines
521 B
Objective-C
//
|
|
// PBSourceViewCell.h
|
|
// GitX
|
|
//
|
|
// Created by Nathan Kinsinger on 1/7/10.
|
|
// Copyright 2010 Nathan Kinsinger. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBIconAndTextCell.h"
|
|
|
|
@interface PBSourceViewCell : PBIconAndTextCell {
|
|
NSString *badge;
|
|
BOOL showsActionButton;
|
|
|
|
BOOL iMouseDownInInfoButton;
|
|
BOOL iMouseHoveredInInfoButton;
|
|
SEL iInfoButtonAction;
|
|
}
|
|
@property (nonatomic) BOOL showsActionButton;
|
|
@property (nonatomic) SEL iInfoButtonAction;
|
|
@property (assign) NSString *badge;
|
|
|
|
@end
|