Files
transmission/macosx/FileOutlineController.h
Dzmitry Neviadomski d1985b05c6 macos: View-based FileOutlineView (#7760)
Signed-off-by: Dzmitry Neviadomski <nevack.d@gmail.com>
2025-11-09 12:21:42 -05:00

29 lines
684 B
Objective-C

// This file Copyright © Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
#import <Foundation/Foundation.h>
@class Torrent;
@class FileOutlineView;
@interface FileOutlineController : NSObject
@property(nonatomic, readonly) FileOutlineView* outlineView;
@property(nonatomic) Torrent* torrent;
@property(nonatomic) NSString* filterText;
- (void)reloadVisibleRows;
- (void)setCheck:(id)sender;
- (void)setOnlySelectedCheck:(id)sender;
- (void)checkAll;
- (void)uncheckAll;
- (void)setPriority:(id)sender;
- (IBAction)revealFile:(id)sender;
- (void)renameSelected:(id)sender;
@end