-
Notifications
You must be signed in to change notification settings - Fork 0
/
SvnLogReport.h
32 lines (25 loc) · 959 Bytes
/
SvnLogReport.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
//----------------------------------------------------------------------------------------
// SvnLogReport.h - Generate & display in HTML a Subversion log report
//
// Copyright © Chris, 2008 - 2010. All rights reserved.
//----------------------------------------------------------------------------------------
#import <Cocoa/Cocoa.h>
#import "Tasks.h"
@class MyRepository, WebView;
@interface SvnLogReport : NSResponder<TaskDelegate>
{
IBOutlet NSWindow* fWindow;
IBOutlet WebView* fLogView;
}
+ (void) createFor: (MyRepository*) document
url: (NSString*) fileURL
logItems: (NSArray*) logItems
revision: (NSString*) revision
limit: (int) limit
pageLength: (int) pageLength
verbose: (BOOL) verbose
stopOnCopy: (BOOL) stopOnCopy
relativeDates: (BOOL) relativeDates
reverseOrder: (BOOL) reverseOrder;
- (NSWindow*) window;
@end // SvnLogReport