mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
58 lines
1.6 KiB
Objective-C
58 lines
1.6 KiB
Objective-C
/*
|
|
Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
which should be included with this package. The terms are also available at
|
|
http://www.hardcoded.net/licenses/bsd_license
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PyApp.h"
|
|
|
|
@interface PyDupeGuruBase : PyApp
|
|
//Actions
|
|
- (NSNumber *)addDirectory:(NSString *)name;
|
|
- (void)removeDirectory:(NSNumber *)index;
|
|
- (void)loadResultsFrom:(NSString *)filename;
|
|
- (void)saveResultsAs:(NSString *)filename;
|
|
- (void)loadSession;
|
|
- (void)saveSession;
|
|
- (void)clearIgnoreList;
|
|
- (void)purgeIgnoreList;
|
|
- (NSString *)exportToXHTMLwithColumns:(NSArray *)aColIds;
|
|
- (void)invokeCommand:(NSString *)cmd;
|
|
|
|
- (NSNumber *)doScan;
|
|
|
|
- (void)toggleSelectedMark;
|
|
- (void)markAll;
|
|
- (void)markInvert;
|
|
- (void)markNone;
|
|
|
|
- (void)addSelectedToIgnoreList;
|
|
- (void)openSelected;
|
|
- (void)revealSelected;
|
|
- (void)makeSelectedReference;
|
|
- (void)applyFilter:(NSString *)filter;
|
|
|
|
- (void)copyOrMove:(NSNumber *)aCopy markedTo:(NSString *)destination recreatePath:(NSNumber *)aRecreateType;
|
|
- (void)deleteMarked;
|
|
- (void)hardlinkMarked;
|
|
- (void)removeMarked;
|
|
|
|
//Data
|
|
- (NSNumber *)getIgnoreListCount;
|
|
- (NSNumber *)getMarkCount;
|
|
- (BOOL)scanWasProblematic;
|
|
- (BOOL)resultsAreModified;
|
|
- (NSArray *)deltaColumns;
|
|
|
|
//Scanning options
|
|
- (void)setMinMatchPercentage:(NSNumber *)percentage;
|
|
- (void)setMixFileKind:(BOOL)mix_file_kind;
|
|
- (void)setEscapeFilterRegexp:(BOOL)escape_filter_regexp;
|
|
- (void)setRemoveEmptyFolders:(BOOL)remove_empty_folders;
|
|
- (void)setIgnoreHardlinkMatches:(BOOL)ignore_hardlink_matches;
|
|
- (void)setSizeThreshold:(NSInteger)size_threshold;
|
|
@end
|