1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-04 18:48:06 +00:00
transmission/macosx/InfoTrackersViewController.h

20 lines
487 B
C
Raw Normal View History

// 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.
#import <AppKit/AppKit.h>
#import "InfoViewController.h"
@interface InfoTrackersViewController : NSViewController<InfoViewController>
2022-04-30 06:51:40 +08:00
- (void)setInfoForTorrents:(NSArray<Torrent*>*)torrents;
- (void)updateInfo;
- (void)saveViewSize;
- (void)clearView;
2022-11-16 00:50:16 +08:00
- (IBAction)addRemoveTracker:(id)sender;
@end