2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2010-2022 Transmission authors and contributors.
|
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2022-06-29 00:15:52 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
2018-09-30 10:37:30 +00:00
|
|
|
|
2010-03-14 01:42:49 +00:00
|
|
|
#import "InfoViewController.h"
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@interface InfoFileViewController : NSViewController<InfoViewController>
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2022-04-29 22:51:40 +00:00
|
|
|
@property(nonatomic, readonly) NSArray<NSURL*>* quickLookURLs;
|
2022-02-22 16:04:20 +00:00
|
|
|
@property(nonatomic, readonly) BOOL canQuickLook;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2022-04-29 22:51:40 +00:00
|
|
|
- (void)setInfoForTorrents:(NSArray<Torrent*>*)torrents;
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)updateInfo;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)saveViewSize;
|
2010-03-14 02:53:22 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)setFileFilterText:(id)sender;
|
|
|
|
- (IBAction)checkAll:(id)sender;
|
|
|
|
- (IBAction)uncheckAll:(id)sender;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSRect)quickLookSourceFrameForPreviewItem:(id<QLPreviewItem>)item;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
|
|
|
@end
|