-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUCChangesWindowController.h
More file actions
44 lines (33 loc) · 1020 Bytes
/
UCChangesWindowController.h
File metadata and controls
44 lines (33 loc) · 1020 Bytes
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
//
// UCChangesWindowController.h
// Changes
//
// Created by Christoph on 26.02.2010.
// Copyright 2010 Useless Coding. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class UCChangesDocument;
@interface UCChangesWindowController : NSWindowController <NSToolbarDelegate, NSTableViewDataSource>
{
NSView * activePane;
IBOutlet NSView * historyView;
IBOutlet NSView * diffView;
IBOutlet NSView * contentImageView;
IBOutlet NSView * contentTextView;
IBOutlet NSTableView * versionsTable;
IBOutlet NSTableColumn * versionsColumn;
IBOutlet NSTableColumn * subjectColumn;
IBOutlet NSTableColumn * dateColumn;
IBOutlet NSImageView * contentPreview;
IBOutlet NSTextView * contentText;
}
- (UCChangesDocument *)document;
- (void)setPreviewImage:(NSImage *)image;
- (void)showPane:(NSView *)pane;
- (IBAction)commit:(id)sender;
- (IBAction)restore:(id)sender;
- (IBAction)showHistory:(id)sender;
- (IBAction)showDiff:(id)sender;
- (IBAction)showContent:(id)sender;
- (IBAction)refresh:(id)sender;
@end