-
Notifications
You must be signed in to change notification settings - Fork 0
/
MySvnView.h
52 lines (37 loc) · 1.12 KB
/
MySvnView.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
#import <Foundation/Foundation.h>
#import "MySvn.h"
@class MyRepository;
@interface MySvnView : NSView
{
@protected
IBOutlet NSView* fView;
IBOutlet id progress;
IBOutlet id refetch;
IBOutlet MyRepository* fRepository; // Only valid in repository window
NSInvocation* fOptionsInvocation;
NSURL* fURL;
NSString* fRevision;
id pendingTask;
BOOL isFetching;
}
- (IBAction) refetch: (id) sender;
- (void) unload;
- (void) fetchSvn;
- (void) svnCommandComplete: (id) taskObj;
- (void) svnError: (NSString*) errorString;
- (void) fetchSvnReceiveDataFinished: (id) taskObj;
- (NSInvocation*) makeCallbackInvocationOfKind: (int) callbackKind;
- (NSInvocation*) svnOptionsInvocation;
- (void) setSvnOptionsInvocation: (NSInvocation*) aSvnOptionsInvocation;
- (NSURL*) url;
- (void) setUrl: (NSURL*) anUrl;
- (NSString*) revision;
- (void) setRevision: (NSString*) aRevision;
- (BOOL) isFetching;
- (void) setIsFetching: (BOOL) flag;
- (id) pendingTask;
- (void) setPendingTask: (id) aPendingTask;
- (MyRepository*) repository;
- (void) setRepository: (MyRepository*) repository;
- (NSDictionary*) documentNameDict;
@end