mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
90f80f01b4
The new cell handles:
- showing contextual menus
- drawing a badge for the checked out branch
Needed to add the reference to the ref controller to the history controller.
20 lines
316 B
Objective-C
20 lines
316 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 {
|
|
BOOL isCheckedOut;
|
|
}
|
|
|
|
@property (assign) BOOL isCheckedOut;
|
|
|
|
@end
|