transmission/macosx/InfoWindowController.h

26 lines
654 B
C
Raw Normal View History

// This file Copyright © 2006-2023 Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
2007-09-16 01:02:06 +00:00
#import <AppKit/AppKit.h>
2007-09-16 01:02:06 +00:00
2022-04-29 22:51:40 +00:00
@class Torrent;
@interface InfoWindowController : NSWindowController
2007-09-16 01:02:06 +00:00
2022-04-29 22:51:40 +00:00
@property(nonatomic, readonly) NSArray<NSURL*>* quickLookURLs;
@property(nonatomic, readonly) BOOL canQuickLook;
2007-09-16 01:02:06 +00:00
2022-04-29 22:51:40 +00:00
- (void)setInfoForTorrents:(NSArray<Torrent*>*)torrents;
- (void)updateInfoStats;
- (void)updateOptions;
2007-09-16 01:02:06 +00:00
2022-11-15 16:50:16 +00:00
- (IBAction)setTab:(id)sender;
- (void)setNextTab;
- (void)setPreviousTab;
2007-09-16 01:02:06 +00:00
- (NSRect)quickLookSourceFrameForPreviewItem:(id<QLPreviewItem>)item;
2007-09-16 01:02:06 +00:00
@end