-
Notifications
You must be signed in to change notification settings - Fork 0
/
MySvnRepositoryBrowserView.h
47 lines (35 loc) · 1.12 KB
/
MySvnRepositoryBrowserView.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
/* MySvnRepositoryBrowserView */
#import <Cocoa/Cocoa.h>
#import "MySvnView.h"
@class RepoItem;
@interface MySvnRepositoryBrowserView : MySvnView
{
IBOutlet NSBrowser* browser;
IBOutlet NSTextField* revisionTextField;
IBOutlet NSMenu* browserContextMenu; // Unused
BOOL showRoot;
BOOL disallowLeaves;
BOOL isSubBrowser;
NSString* browserPath;
int fNameLen;
}
- (void) unload;
- (BOOL) isFirstResponder;
- (void) onDoubleClick: (id) sender;
- (void) fetchSvn;
- (void) fetchSvnListForUrl: (NSString*) theURL
column: (int) column
matrix: (NSMatrix*) matrix;
- (void) displayResultArray: (NSArray*) resultArray
column: (int) column
matrix: (NSMatrix*) matrix;
- (void) setupForSubBrowser: (BOOL) showRoot_
allowsLeaves: (BOOL) allowsLeaves
allowsMultipleSelection: (BOOL) allowsMultiSel;
- (NSArray*) selectedItems;
- (RepoItem*) selectedItemOrNil;
- (void) reset;
- (NSString*) browserPath;
- (void) setBrowserPath: (NSString*) aBrowserPath;
- (NSString*) getCachePathForUrl: (NSURL*) theURL;
@end