Merge branch 'pu/pb/index_refactor'
[GitX.git] / PBWebHistoryController.h
blob749725a43e8a1134d2f62368c7bfebd64cb5f602
1 //
2 // PBWebGitController.h
3 // GitTest
4 //
5 // Created by Pieter de Bie on 14-06-08.
6 // Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import "PBWebController.h"
12 #import "PBGitCommit.h"
13 #import "PBGitHistoryController.h"
14 #import "PBRefContextDelegate.h"
16 @interface PBWebHistoryController : PBWebController {
17 IBOutlet PBGitHistoryController* historyController;
18 IBOutlet id<PBRefContextDelegate> contextMenuDelegate;
20 NSString* currentSha;
21 NSString* diff;
24 - (void) changeContentTo: (PBGitCommit *) content;
25 - (void) sendKey: (NSString*) key;
27 @property (readonly) NSString* diff;
28 @end