mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
36 lines
911 B
Objective-C
36 lines
911 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 "PBRefContextDelegate.h"
|
|
|
|
|
|
@class PBGitSHA;
|
|
|
|
@interface PBWebHistoryController : PBWebController {
|
|
IBOutlet PBGitHistoryController* historyController;
|
|
IBOutlet id<PBRefContextDelegate> contextMenuDelegate;
|
|
|
|
PBGitSHA* currentSha;
|
|
NSString* diff;
|
|
}
|
|
|
|
- (void) changeContentTo: (PBGitCommit *) content;
|
|
- (void) sendKey: (NSString*) key;
|
|
- (NSString *)parseHeader:(NSString *)txt withRefs:(NSString *)badges;
|
|
- (NSMutableDictionary *)parseStats:(NSString *)txt;
|
|
- (NSString *) someMethodThatReturnsSomeHashForSomeString:(NSString*)concat;
|
|
- (void) openFileMerge:(NSString*)file sha:(NSString *)sha;
|
|
|
|
@property (readonly) NSString* diff;
|
|
@end
|