jessegrosjean / bdocuments

This URL has Read+Write access

bdocuments / BDocumentDifferencesWindowController.h
100644 27 lines (20 sloc) 0.583 kb
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
//
// BDocumentDifferencesWindowController.h
// BDocuments
//
// Created by Jesse Grosjean on 1/7/09.
// Copyright 2009 Hog Bay Software. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface BDocumentDifferencesWindowController : NSWindowController {
IBOutlet NSTextView *textView;
NSString *text1;
NSString *text2;
}
 
- (id)initWithText1:(NSString *)text1 text2:(NSString *)text2;
 
- (IBAction)nextChange:(id)sender;
- (IBAction)previousChange:(id)sender;
- (IBAction)acceptChange:(id)sender;
- (IBAction)rejectChange:(id)sender;
- (IBAction)close:(id)sender;
 
@end