-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSVNProgress.h
32 lines (27 loc) · 928 Bytes
/
SVNProgress.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
#import "ui.h"
@interface SVNProgress : SVNWindowController {
IBOutlet NSScrollView *scroll;
IBOutlet NSTableView *table;
NSMutableArray *data;
NSString *status;
bool cancelled;
IBOutlet NSButton *button;
NSString *title;
NSTimeInterval start_time, prog_time;
apr_off_t transferred;
bool finished;
int num_conflicts;
@public
ref_ptr<SVNcontext> svn;
}
@property(retain) IBOutlet NSMutableArray *data;
@property(retain) IBOutlet NSString *status;
@property(retain) IBOutlet NSString *title;
@property bool cancelled;
-(id)initWithTitle:(NSString*)init_title;
-(void)addentry:(NSString*)action path:(NSString*)path;
-(void)addentry:(NSString*)action path:(NSString*)path colour:(NSColor*)colour;
-(void)addentry:(NSString*)action path:(NSString*)path type:(NSString*)type colour:(NSColor*)colour;
-(void)addentry:(NSString*)action;
-(void)finishedWithError:(svn_error_t*)err;
@end