forked from ImageOptim/ImageOptim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilesController.h
More file actions
44 lines (34 loc) · 1.35 KB
/
FilesController.h
File metadata and controls
44 lines (34 loc) · 1.35 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
//
// FilesController.h
//
// Created by porneL on 23.wrz.07.
//
#import <Cocoa/Cocoa.h>
#import <Quartz/Quartz.h>
@class File, ResultsDb;
extern NSString *const kFilesQueueFinished;
@interface FilesController : NSArrayController <NSTableViewDelegate,NSTableViewDataSource>
-(void)configureWithTableView:(NSTableView*)a;
- (NSString *)tableView:(NSTableView *)aTableView toolTipForCell:(NSCell *)aCell rect:(NSRectPointer)rect tableColumn:(NSTableColumn *)aTableColumn row:(int)row mouseLocation:(NSPoint)mouseLocation;
-(void)addURLsBelowSelection:(NSArray *)paths;
-(BOOL)addURLs:(NSArray *)paths;
-(BOOL)addPaths:(NSArray *)paths;
-(BOOL)addURLs:(NSArray *)paths filesOnly:(BOOL)t;
-(void) moveObjectsInArrangedObjectsFromIndexes:(NSIndexSet*)indexSet
toIndex:(NSUInteger)insertIndex;
- (NSUInteger)rowsAboveRow:(NSUInteger)row inIndexSet:(NSIndexSet *)indexSet;
- (NSUInteger)numberOfRowsInTableView:(NSTableView *)tableview;
-(void)startAgainOptimized:(BOOL)optimized;
-(BOOL)canStartAgainOptimized:(BOOL)optimized;
-(void)clearComplete;
@property (readonly) BOOL canClearComplete;
-(void)revert;
@property (readonly) BOOL canRevert;
-(void)cleanup;
-(void)setRow:(NSInteger)row;
-(void)stopSelected;
-(void)updateStoppableState;
-(NSNumber *)queueCount;
@property (readonly, copy) NSArray *fileTypes;
@property (readonly) BOOL isBusy, isStoppable;
@end