2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2008-2022 Transmission authors and contributors.
|
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2008-01-04 00:29:13 +00:00
|
|
|
|
2022-06-29 00:15:52 +00:00
|
|
|
#import <Foundation/Foundation.h>
|
2008-01-04 00:29:13 +00:00
|
|
|
|
|
|
|
@class Torrent;
|
|
|
|
@class FileOutlineView;
|
|
|
|
|
|
|
|
@interface FileOutlineController : NSObject
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) FileOutlineView* outlineView;
|
2022-02-22 16:04:20 +00:00
|
|
|
@property(nonatomic) Torrent* torrent;
|
|
|
|
@property(nonatomic) NSString* filterText;
|
2008-12-07 18:20:14 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)refresh;
|
2008-01-04 00:29:13 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setCheck:(id)sender;
|
|
|
|
- (void)setOnlySelectedCheck:(id)sender;
|
|
|
|
- (void)checkAll;
|
|
|
|
- (void)uncheckAll;
|
|
|
|
- (void)setPriority:(id)sender;
|
2008-01-04 00:29:13 +00:00
|
|
|
|
2022-11-15 16:50:16 +00:00
|
|
|
- (IBAction)revealFile:(id)sender;
|
2008-01-04 00:29:13 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)renameSelected:(id)sender;
|
2013-01-22 00:09:48 +00:00
|
|
|
|
2008-01-04 00:29:13 +00:00
|
|
|
@end
|