mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
@@ -12,6 +12,10 @@
|
||||
|
||||
@class PBWebHistoryController;
|
||||
|
||||
// Displays the list of commits. Additional behavior includes special key
|
||||
// handling and hiliting search results.
|
||||
// dataSource: PBRefController
|
||||
// delegate: PBGitHistoryController
|
||||
@interface PBCommitList : NSTableView {
|
||||
IBOutlet WebView* webView;
|
||||
IBOutlet PBWebHistoryController *webController;
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
// Adds the column guide displayed in the commit message field
|
||||
@interface PBCommitMessageView : NSTextView {
|
||||
|
||||
}
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
|
||||
// File list used in both the staged and unstaged sides of the commit view.
|
||||
// datasource and deletage are PBGitIndexController.
|
||||
@interface PBFileChangesTableView : NSTableView {
|
||||
}
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
#define MIN_GIT_VERSION "1.6.0"
|
||||
|
||||
// Returns information about the git binary used to execute commands.
|
||||
@interface PBGitBinary : NSObject {
|
||||
|
||||
}
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
|
||||
@class PBHistorySearchController;
|
||||
|
||||
// Controls the split history view from PBGitHistoryView.xib
|
||||
@interface PBGitHistoryController : PBViewController PROTOCOL_10_6(NSOutlineViewDelegate){
|
||||
IBOutlet PBRefController *refController;
|
||||
IBOutlet NSSearchField *searchField;
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
|
||||
@class PBViewController, PBGitSidebarController, PBGitCommitController;
|
||||
|
||||
// Controls the main repository window from RepositoryWindow.xib
|
||||
@interface PBGitWindowController : NSWindowController PROTOCOL_10_6(NSWindowDelegate){
|
||||
__weak PBGitRepository* repository;
|
||||
|
||||
|
||||
+1
-1
@@ -36,7 +36,7 @@
|
||||
- (void)removeChild:(PBSourceViewItem *)child;
|
||||
|
||||
// This adds the ref to the path, which should match the item's title,
|
||||
// so "refs/heads/pu/pb/sidebar" would have the path [@"pu", @"pb", @"sidebare"]
|
||||
// so "refs/heads/pu/pb/sidebar" would have the path [@"pu", @"pb", @"sidebar"]
|
||||
// to the 'local' branch thing
|
||||
- (void)addRev:(PBGitRevSpecifier *)revSpecifier toPath:(NSArray *)path;
|
||||
- (PBSourceViewItem *)findRev:(PBGitRevSpecifier *)rev;
|
||||
|
||||
Reference in New Issue
Block a user