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
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.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
|
|
|
|
2012-04-29 00:53:34 +00:00
|
|
|
@class WebSeedTableView;
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@interface InfoPeersViewController : NSViewController<InfoViewController>
|
2010-03-06 23:12:30 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSArray* fTorrents;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-03-09 02:26:52 +00:00
|
|
|
BOOL fSet;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableArray* fPeers;
|
|
|
|
NSMutableArray* fWebSeeds;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
IBOutlet NSTableView* fPeerTable;
|
|
|
|
IBOutlet WebSeedTableView* fWebSeedTable;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
IBOutlet NSTextField* fConnectedPeersField;
|
2016-02-27 20:29:57 +00:00
|
|
|
|
2016-03-03 22:27:45 +00:00
|
|
|
CGFloat fViewTopMargin;
|
2021-08-15 09:41:48 +00:00
|
|
|
IBOutlet NSLayoutConstraint* fWebSeedTableTopConstraint;
|
2010-03-06 23:12:30 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setInfoForTorrents:(NSArray*)torrents;
|
|
|
|
- (void)updateInfo;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)saveViewSize;
|
|
|
|
- (void)clearView;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
|
|
|
@end
|