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
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@interface InfoOptionsViewController : 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
|
|
|
IBOutlet NSPopUpButton* fPriorityPopUp;
|
|
|
|
IBOutlet NSPopUpButton* fRatioPopUp;
|
|
|
|
IBOutlet NSPopUpButton* fIdlePopUp;
|
|
|
|
IBOutlet NSButton* fUploadLimitCheck;
|
|
|
|
IBOutlet NSButton* fDownloadLimitCheck;
|
|
|
|
IBOutlet NSButton* fGlobalLimitCheck;
|
|
|
|
IBOutlet NSButton* fRemoveSeedingCompleteCheck;
|
|
|
|
IBOutlet NSTextField* fUploadLimitField;
|
|
|
|
IBOutlet NSTextField* fDownloadLimitField;
|
|
|
|
IBOutlet NSTextField* fRatioLimitField;
|
|
|
|
IBOutlet NSTextField* fIdleLimitField;
|
|
|
|
IBOutlet NSTextField* fUploadLimitLabel;
|
|
|
|
IBOutlet NSTextField* fDownloadLimitLabel;
|
|
|
|
IBOutlet NSTextField* fIdleLimitLabel;
|
|
|
|
IBOutlet NSTextField* fRatioLimitGlobalLabel;
|
|
|
|
IBOutlet NSTextField* fIdleLimitGlobalLabel;
|
|
|
|
IBOutlet NSTextField* fPeersConnectLabel;
|
|
|
|
IBOutlet NSTextField* fPeersConnectField;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-09-08 18:09:02 +00:00
|
|
|
//remove when we switch to auto layout on 10.7
|
2021-08-15 09:41:48 +00:00
|
|
|
IBOutlet NSTextField* fTransferBandwidthSectionLabel;
|
|
|
|
IBOutlet NSTextField* fPrioritySectionLabel;
|
|
|
|
IBOutlet NSTextField* fPriorityLabel;
|
|
|
|
IBOutlet NSTextField* fSeedingLimitsSectionLabel;
|
|
|
|
IBOutlet NSTextField* fRatioLabel;
|
|
|
|
IBOutlet NSTextField* fInactivityLabel;
|
|
|
|
IBOutlet NSTextField* fAdvancedSectionLabel;
|
|
|
|
IBOutlet NSTextField* fMaxConnectionsLabel;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* fInitialString;
|
2010-03-06 23:12:30 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setInfoForTorrents:(NSArray*)torrents;
|
|
|
|
- (void)updateInfo;
|
|
|
|
- (void)updateOptions;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)setUseSpeedLimit:(id)sender;
|
|
|
|
- (IBAction)setSpeedLimit:(id)sender;
|
|
|
|
- (IBAction)setUseGlobalSpeedLimit:(id)sender;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)setRatioSetting:(id)sender;
|
|
|
|
- (IBAction)setRatioLimit:(id)sender;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)setIdleSetting:(id)sender;
|
|
|
|
- (IBAction)setIdleLimit:(id)sender;
|
2010-07-16 03:12:57 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)setRemoveWhenSeedingCompletes:(id)sender;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)setPriority:(id)sender;
|
2012-07-07 01:47:12 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (IBAction)setPeersConnectLimit:(id)sender;
|
2010-03-06 23:12:30 +00:00
|
|
|
|
|
|
|
@end
|