mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
e02ee5231c
That's why it's there, after all. This also makes the system more robust and catches some more errors. The next thing this enables is to also allow right-clicking on refs in the commit list.
29 lines
611 B
Objective-C
29 lines
611 B
Objective-C
//
|
|
// PBWebGitController.h
|
|
// GitTest
|
|
//
|
|
// Created by Pieter de Bie on 14-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBWebController.h"
|
|
|
|
#import "PBGitCommit.h"
|
|
#import "PBGitHistoryController.h"
|
|
#import "PBRefController.h"
|
|
|
|
@interface PBWebHistoryController : PBWebController {
|
|
IBOutlet PBGitHistoryController* historyController;
|
|
IBOutlet PBRefController *refController;
|
|
|
|
NSString* currentSha;
|
|
NSString* diff;
|
|
}
|
|
|
|
- (void) changeContentTo: (PBGitCommit *) content;
|
|
- (void) sendKey: (NSString*) key;
|
|
|
|
@property (readonly) NSString* diff;
|
|
@end
|