forked from laullon/gitx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPBGitSidebarController.h
58 lines (44 loc) · 1.67 KB
/
PBGitSidebarController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// PBGitSidebar.h
// GitX
//
// Created by Pieter de Bie on 9/8/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PBViewController.h"
@class PBSourceViewItem;
@class PBGitHistoryController;
@class PBGitCommitController;
@class PBStashContentController;
@interface PBGitSidebarController : PBViewController PROTOCOL_10_6(NSOutlineViewDelegate, NSMenuDelegate){
IBOutlet NSWindow *window;
IBOutlet NSOutlineView *sourceView;
IBOutlet NSPopUpButton *actionButton;
IBOutlet NSSegmentedControl *remoteControls;
IBOutlet NSButton* svnFetchButton;
IBOutlet NSButton* svnRebaseButton;
IBOutlet NSButton* svnDcommitButton;
/* Specific things */
PBSourceViewItem *stage;
PBSourceViewItem *branches, *remotes, *tags, *others, *stashes, *submodules;
PBGitHistoryController *historyViewController;
PBGitCommitController *commitViewController;
PBStashContentController *stashViewController;
}
- (void) selectStage;
- (void) selectCurrentBranch;
- (NSMenu *) menuForRow:(NSInteger)row;
- (IBAction) fetchPullPushAction:(id)sender;
- (IBAction) svnFetch:(id)sender;
- (IBAction) svnRebase:(id)sender;
- (IBAction) svnDcommit:(id)sender;
- (void)setHistorySearch:(NSString *)searchString mode:(NSInteger)mode;
-(NSNumber *)countCommitsOf:(NSString *)range;
-(bool)remoteNeedFetch:(NSString *)remote;
@property(strong, readonly) NSMutableArray *items;
@property(strong, readonly) NSView *sourceListControlsView;
@property(strong, readonly) PBGitHistoryController *historyViewController;
@property(strong, readonly) PBGitCommitController *commitViewController;
@property(strong, readonly) PBStashContentController *stashViewController;
@end