-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUCFileBrowser.h
More file actions
53 lines (40 loc) · 1.52 KB
/
UCFileBrowser.h
File metadata and controls
53 lines (40 loc) · 1.52 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//
// UCFileBrowser.h
// Chain
//
// Created by Christoph on 11.06.2009.
// Copyright 2009-2010 Useless Coding. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "UCFileList.h"
#import "UCFolderOperations.h"
@interface UCFileBrowser : NSDocument
{
UCFolderOperations * folderOperations;
UCFileList * fileList;
}
- (void)setCurrentFile:(NSString *)filePath;
- (void)currentFileDidChange;
- (NSUInteger)fileCount;
- (NSInteger)currentFileIndex;
- (NSArray *)filterTypes;
- (UCFolderOperations *)folderOperations;
- (void)copy:(BOOL)copying confirmedFileTo:(NSString *)aFolder withName:(NSString *)newName;
- (void)moveConfirmedFileTo:(NSString *)aFolder withName:(NSString *)newName;
- (void)copyConfirmedFileTo:(NSString *)aFolder withName:(NSString *)newName;
- (void)moveFileTo:(NSString *)aFolder withName:(NSString *)newName;
- (void)copyFileTo:(NSString *)aFolder withName:(NSString *)newName;
- (IBAction)gotoFirst:(id)sender;
- (IBAction)gotoPrevious:(id)sender;
- (IBAction)gotoNext:(id)sender;
- (IBAction)gotoLast:(id)sender;
- (IBAction)gotoIndex:(id)sender;
- (IBAction)moveTo:(id)sender;
- (IBAction)copyTo:(id)sender;
- (IBAction)moveAgain:(id)sender;
- (IBAction)moveToTrash:(id)sender;
- (IBAction)rename:(id)sender;
- (void)renameDidEnd:(NSAlert *)alert returnCode:(int)returnCode contextInfo:(void *)contextInfo;
- (void)conflictDidEnd:(NSAlert *)alert returnCode:(int)returnCode contextInfo:(NSDictionary *)contextInfo;
- (void)chooseDidEnd:(NSOpenPanel *)panel returnCode:(int)returnCode copying:(BOOL)copying;
@end