2007-09-16 01:02:06 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-02 16:55:05 +00:00
|
|
|
* Copyright (c) 2005-2008 Transmission authors and contributors
|
2007-09-16 01:02:06 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#import "PrefsController.h"
|
2007-10-29 20:57:36 +00:00
|
|
|
#import "NSApplicationAdditions.h"
|
2007-09-16 01:02:06 +00:00
|
|
|
#import "NSStringAdditions.h"
|
|
|
|
#import "UKKQueue.h"
|
|
|
|
|
|
|
|
#define DOWNLOAD_FOLDER 0
|
|
|
|
#define DOWNLOAD_TORRENT 2
|
|
|
|
|
|
|
|
#define UPDATE_SECONDS 86400
|
|
|
|
|
|
|
|
#define TOOLBAR_GENERAL @"TOOLBAR_GENERAL"
|
|
|
|
#define TOOLBAR_TRANSFERS @"TOOLBAR_TRANSFERS"
|
|
|
|
#define TOOLBAR_BANDWIDTH @"TOOLBAR_BANDWIDTH"
|
|
|
|
#define TOOLBAR_ADVANCED @"TOOLBAR_ADVANCED"
|
|
|
|
|
|
|
|
@interface PrefsController (Private)
|
|
|
|
|
|
|
|
- (void) setPrefView: (id) sender;
|
|
|
|
|
|
|
|
- (void) folderSheetClosed: (NSOpenPanel *) openPanel returnCode: (int) code contextInfo: (void *) info;
|
|
|
|
- (void) incompleteFolderSheetClosed: (NSOpenPanel *) openPanel returnCode: (int) code contextInfo: (void *) info;
|
|
|
|
- (void) importFolderSheetClosed: (NSOpenPanel *) openPanel returnCode: (int) code contextInfo: (void *) info;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation PrefsController
|
|
|
|
|
2007-10-07 12:24:26 +00:00
|
|
|
- (id) initWithHandle: (tr_handle *) handle
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2007-10-07 12:24:26 +00:00
|
|
|
if ((self = [super initWithWindowNibName: @"PrefsWindow"]))
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
fDefaults = [NSUserDefaults standardUserDefaults];
|
|
|
|
fHandle = handle;
|
|
|
|
|
2008-01-06 17:52:28 +00:00
|
|
|
//checks for old version speeds of -1
|
2007-09-16 01:02:06 +00:00
|
|
|
if ([fDefaults integerForKey: @"UploadLimit"] < 0)
|
|
|
|
{
|
|
|
|
[fDefaults setInteger: 20 forKey: @"UploadLimit"];
|
|
|
|
[fDefaults setBool: NO forKey: @"CheckUpload"];
|
|
|
|
}
|
2008-01-06 17:52:28 +00:00
|
|
|
if ([fDefaults integerForKey: @"DownloadLimit"] < 0)
|
|
|
|
{
|
|
|
|
[fDefaults setInteger: 20 forKey: @"DownloadLimit"];
|
|
|
|
[fDefaults setBool: NO forKey: @"CheckDownload"];
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-01-05 01:48:55 +00:00
|
|
|
//check for old version download location
|
2008-01-05 02:48:10 +00:00
|
|
|
NSString * choice;
|
|
|
|
if ((choice = [fDefaults stringForKey: @"DownloadChoice"]))
|
2008-01-05 01:48:55 +00:00
|
|
|
{
|
|
|
|
[fDefaults setBool: [choice isEqualToString: @"Constant"] forKey: @"DownloadLocationConstant"];
|
2008-01-05 04:18:07 +00:00
|
|
|
[fDefaults setBool: YES forKey: @"DownloadAsk"];
|
2008-01-05 01:48:55 +00:00
|
|
|
|
|
|
|
[fDefaults removeObjectForKey: @"DownloadChoice"];
|
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
//set check for update to right value
|
|
|
|
[self setCheckForUpdate: nil];
|
|
|
|
|
|
|
|
//set auto import
|
|
|
|
NSString * autoPath;
|
|
|
|
if ([fDefaults boolForKey: @"AutoImport"] && (autoPath = [fDefaults stringForKey: @"AutoImportDirectory"]))
|
|
|
|
[[UKKQueue sharedFileWatcher] addPath: [autoPath stringByExpandingTildeInPath]];
|
|
|
|
|
2007-09-20 11:46:30 +00:00
|
|
|
//set encryption
|
2007-11-08 23:12:07 +00:00
|
|
|
[self setEncryptionMode: nil];
|
2007-09-20 11:46:30 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
//actually set bandwidth limits
|
|
|
|
[self applySpeedSettings: nil];
|
|
|
|
}
|
2007-09-17 00:01:57 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) dealloc
|
|
|
|
{
|
2007-12-06 00:27:39 +00:00
|
|
|
if (fPortStatusTimer)
|
|
|
|
[fPortStatusTimer invalidate];
|
2007-12-18 20:59:55 +00:00
|
|
|
if (fPortChecker)
|
|
|
|
{
|
2007-12-25 19:14:45 +00:00
|
|
|
[fPortChecker cancelProbe];
|
2007-12-18 20:59:55 +00:00
|
|
|
[fPortChecker release];
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) awakeFromNib
|
|
|
|
{
|
|
|
|
fHasLoaded = YES;
|
|
|
|
|
|
|
|
NSToolbar * toolbar = [[NSToolbar alloc] initWithIdentifier: @"Preferences Toolbar"];
|
|
|
|
[toolbar setDelegate: self];
|
|
|
|
[toolbar setAllowsUserCustomization: NO];
|
|
|
|
[toolbar setDisplayMode: NSToolbarDisplayModeIconAndLabel];
|
|
|
|
[toolbar setSizeMode: NSToolbarSizeModeRegular];
|
|
|
|
[toolbar setSelectedItemIdentifier: TOOLBAR_GENERAL];
|
2007-11-09 15:06:32 +00:00
|
|
|
[[self window] setToolbar: toolbar];
|
|
|
|
[toolbar release];
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
[self setPrefView: nil];
|
|
|
|
|
|
|
|
//set download folder
|
2008-01-04 04:45:31 +00:00
|
|
|
[fFolderPopUp selectItemAtIndex: [fDefaults boolForKey: @"DownloadLocationConstant"] ? DOWNLOAD_FOLDER : DOWNLOAD_TORRENT];
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
//set stop ratio
|
|
|
|
[self updateRatioStopField];
|
|
|
|
|
|
|
|
//set limits
|
|
|
|
[self updateLimitFields];
|
|
|
|
|
|
|
|
//set speed limit
|
|
|
|
[fSpeedLimitUploadField setIntValue: [fDefaults integerForKey: @"SpeedLimitUploadLimit"]];
|
|
|
|
[fSpeedLimitDownloadField setIntValue: [fDefaults integerForKey: @"SpeedLimitDownloadLimit"]];
|
|
|
|
|
|
|
|
//set port
|
|
|
|
[fPortField setIntValue: [fDefaults integerForKey: @"BindPort"]];
|
|
|
|
fNatStatus = -1;
|
|
|
|
|
|
|
|
[self updatePortStatus];
|
2007-12-06 00:27:39 +00:00
|
|
|
fPortStatusTimer = [NSTimer scheduledTimerWithTimeInterval: 5.0 target: self
|
2007-09-16 01:02:06 +00:00
|
|
|
selector: @selector(updatePortStatus) userInfo: nil repeats: YES];
|
|
|
|
|
2007-12-21 05:56:34 +00:00
|
|
|
//set peer connections
|
2008-01-20 04:50:41 +00:00
|
|
|
[fPeersGlobalField setIntValue: [fDefaults integerForKey: @"PeersTotal"]];
|
2007-12-22 04:15:35 +00:00
|
|
|
[fPeersTorrentField setIntValue: [fDefaults integerForKey: @"PeersTorrent"]];
|
2007-12-21 05:56:34 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
//set queue values
|
|
|
|
[fQueueDownloadField setIntValue: [fDefaults integerForKey: @"QueueDownloadNumber"]];
|
|
|
|
[fQueueSeedField setIntValue: [fDefaults integerForKey: @"QueueSeedNumber"]];
|
|
|
|
[fStalledField setIntValue: [fDefaults integerForKey: @"StalledMinutes"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setUpdater: (SUUpdater *) updater
|
|
|
|
{
|
|
|
|
fUpdater = updater;
|
|
|
|
}
|
|
|
|
|
2007-09-16 15:51:25 +00:00
|
|
|
- (NSToolbarItem *) toolbar: (NSToolbar *) toolbar itemForItemIdentifier: (NSString *) ident willBeInsertedIntoToolbar: (BOOL) flag
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
NSToolbarItem * item;
|
|
|
|
item = [[NSToolbarItem alloc] initWithItemIdentifier: ident];
|
|
|
|
|
|
|
|
if ([ident isEqualToString: TOOLBAR_GENERAL])
|
|
|
|
{
|
|
|
|
[item setLabel: NSLocalizedString(@"General", "Preferences -> General toolbar item title")];
|
2007-10-29 20:57:36 +00:00
|
|
|
[item setImage: [NSImage imageNamed: [NSApp isOnLeopardOrBetter] ? NSImageNamePreferencesGeneral : @"Preferences.png"]];
|
2007-09-16 01:02:06 +00:00
|
|
|
[item setTarget: self];
|
|
|
|
[item setAction: @selector(setPrefView:)];
|
|
|
|
[item setAutovalidates: NO];
|
|
|
|
}
|
|
|
|
else if ([ident isEqualToString: TOOLBAR_TRANSFERS])
|
|
|
|
{
|
|
|
|
[item setLabel: NSLocalizedString(@"Transfers", "Preferences -> Transfers toolbar item title")];
|
|
|
|
[item setImage: [NSImage imageNamed: @"Transfers.png"]];
|
|
|
|
[item setTarget: self];
|
|
|
|
[item setAction: @selector(setPrefView:)];
|
|
|
|
[item setAutovalidates: NO];
|
|
|
|
}
|
|
|
|
else if ([ident isEqualToString: TOOLBAR_BANDWIDTH])
|
|
|
|
{
|
|
|
|
[item setLabel: NSLocalizedString(@"Bandwidth", "Preferences -> Bandwidth toolbar item title")];
|
|
|
|
[item setImage: [NSImage imageNamed: @"Bandwidth.png"]];
|
|
|
|
[item setTarget: self];
|
|
|
|
[item setAction: @selector(setPrefView:)];
|
|
|
|
[item setAutovalidates: NO];
|
|
|
|
}
|
|
|
|
else if ([ident isEqualToString: TOOLBAR_ADVANCED])
|
|
|
|
{
|
|
|
|
[item setLabel: NSLocalizedString(@"Advanced", "Preferences -> Advanced toolbar item title")];
|
2007-10-29 20:57:36 +00:00
|
|
|
[item setImage: [NSImage imageNamed: [NSApp isOnLeopardOrBetter] ? NSImageNameAdvanced : @"Advanced.png"]];
|
2007-09-16 01:02:06 +00:00
|
|
|
[item setTarget: self];
|
|
|
|
[item setAction: @selector(setPrefView:)];
|
|
|
|
[item setAutovalidates: NO];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[item release];
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
return [item autorelease];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSArray *) toolbarSelectableItemIdentifiers: (NSToolbar *) toolbar
|
|
|
|
{
|
|
|
|
return [self toolbarDefaultItemIdentifiers: toolbar];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSArray *) toolbarDefaultItemIdentifiers: (NSToolbar *) toolbar
|
|
|
|
{
|
|
|
|
return [self toolbarAllowedItemIdentifiers: toolbar];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSArray *) toolbarAllowedItemIdentifiers: (NSToolbar *) toolbar
|
|
|
|
{
|
2007-12-06 00:27:39 +00:00
|
|
|
return [NSArray arrayWithObjects: TOOLBAR_GENERAL, TOOLBAR_TRANSFERS, TOOLBAR_BANDWIDTH, TOOLBAR_ADVANCED, nil];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2007-12-24 03:48:42 +00:00
|
|
|
//used by ipc
|
|
|
|
- (void) updatePortField
|
|
|
|
{
|
|
|
|
[fPortField setIntValue: [fDefaults integerForKey: @"BindPort"]];
|
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) setPort: (id) sender
|
|
|
|
{
|
|
|
|
int port = [sender intValue];
|
2007-11-05 04:00:19 +00:00
|
|
|
[fDefaults setInteger: port forKey: @"BindPort"];
|
2007-09-16 01:02:06 +00:00
|
|
|
tr_setBindPort(fHandle, port);
|
|
|
|
|
|
|
|
fPublicPort = -1;
|
|
|
|
[self updatePortStatus];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setNat: (id) sender
|
|
|
|
{
|
|
|
|
tr_natTraversalEnable(fHandle, [fDefaults boolForKey: @"NatTraversal"]);
|
2007-12-18 20:59:55 +00:00
|
|
|
|
|
|
|
fNatStatus = -1;
|
2007-09-16 01:02:06 +00:00
|
|
|
[self updatePortStatus];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) updatePortStatus
|
|
|
|
{
|
2007-09-20 20:24:33 +00:00
|
|
|
tr_handle_status * stat = tr_handleStatus(fHandle);
|
2007-11-11 06:36:32 +00:00
|
|
|
if (fNatStatus != stat->natTraversalStatus || fPublicPort != stat->publicPort)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
fNatStatus = stat->natTraversalStatus;
|
|
|
|
fPublicPort = stat->publicPort;
|
|
|
|
|
|
|
|
[fPortStatusField setStringValue: [NSLocalizedString(@"Checking port status",
|
|
|
|
"Preferences -> Advanced -> port status") stringByAppendingEllipsis]];
|
|
|
|
[fPortStatusImage setImage: nil];
|
|
|
|
[fPortStatusProgress startAnimation: self];
|
|
|
|
|
2007-12-18 20:02:49 +00:00
|
|
|
if (fPortChecker)
|
|
|
|
{
|
2007-12-25 19:14:45 +00:00
|
|
|
[fPortChecker cancelProbe];
|
2007-12-18 20:02:49 +00:00
|
|
|
[fPortChecker release];
|
|
|
|
}
|
2007-12-18 20:10:23 +00:00
|
|
|
fPortChecker = [[PortChecker alloc] initForPort: fPublicPort withDelegate: self];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) portCheckerDidFinishProbing: (PortChecker *) portChecker
|
|
|
|
{
|
|
|
|
[fPortStatusProgress stopAnimation: self];
|
2007-12-18 20:59:55 +00:00
|
|
|
switch ([fPortChecker status])
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
case PORT_STATUS_OPEN:
|
|
|
|
[fPortStatusField setStringValue: NSLocalizedString(@"Port is open", "Preferences -> Advanced -> port status")];
|
2007-10-28 03:29:20 +00:00
|
|
|
[fPortStatusImage setImage: [NSImage imageNamed: @"GreenDot.png"]];
|
2007-09-16 01:02:06 +00:00
|
|
|
break;
|
|
|
|
case PORT_STATUS_CLOSED:
|
|
|
|
[fPortStatusField setStringValue: NSLocalizedString(@"Port is closed", "Preferences -> Advanced -> port status")];
|
2007-10-28 03:29:20 +00:00
|
|
|
[fPortStatusImage setImage: [NSImage imageNamed: @"RedDot.png"]];
|
2007-09-16 01:02:06 +00:00
|
|
|
break;
|
2007-12-31 02:17:27 +00:00
|
|
|
case PORT_STATUS_STEALTH:
|
|
|
|
[fPortStatusField setStringValue: NSLocalizedString(@"Port is stealth", "Preferences -> Advanced -> port status")];
|
|
|
|
[fPortStatusImage setImage: [NSImage imageNamed: @"RedDot.png"]];
|
|
|
|
break;
|
2007-09-16 01:02:06 +00:00
|
|
|
case PORT_STATUS_ERROR:
|
|
|
|
[fPortStatusField setStringValue: NSLocalizedString(@"Unable to check port status",
|
|
|
|
"Preferences -> Advanced -> port status")];
|
2007-10-28 03:29:20 +00:00
|
|
|
[fPortStatusImage setImage: [NSImage imageNamed: @"YellowDot.png"]];
|
2007-09-16 01:02:06 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-12-18 20:02:49 +00:00
|
|
|
[fPortChecker release];
|
|
|
|
fPortChecker = nil;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2007-09-17 00:01:57 +00:00
|
|
|
- (NSArray *) sounds
|
|
|
|
{
|
2007-10-24 16:50:10 +00:00
|
|
|
NSMutableArray * sounds = [NSMutableArray array];
|
2007-09-17 00:01:57 +00:00
|
|
|
|
2007-10-24 21:33:04 +00:00
|
|
|
//until Apple can fix soundNamed to not crash on invalid sound files, don't use custom sounds
|
2007-09-17 00:01:57 +00:00
|
|
|
NSArray * directories = [NSArray arrayWithObjects: @"/System/Library/Sounds", @"/Library/Sounds",
|
2007-10-24 21:33:04 +00:00
|
|
|
/*[NSHomeDirectory() stringByAppendingPathComponent: @"Library/Sounds"],*/ nil];
|
2007-09-17 00:01:57 +00:00
|
|
|
BOOL isDirectory;
|
|
|
|
NSEnumerator * soundEnumerator;
|
|
|
|
NSString * sound;
|
|
|
|
|
|
|
|
NSString * directory;
|
|
|
|
NSEnumerator * enumerator = [directories objectEnumerator];
|
|
|
|
while ((directory = [enumerator nextObject]))
|
|
|
|
if ([[NSFileManager defaultManager] fileExistsAtPath: directory isDirectory: &isDirectory] && isDirectory)
|
|
|
|
{
|
|
|
|
soundEnumerator = [[[NSFileManager defaultManager] directoryContentsAtPath: directory] objectEnumerator];
|
|
|
|
while ((sound = [soundEnumerator nextObject]))
|
|
|
|
{
|
|
|
|
sound = [sound stringByDeletingPathExtension];
|
|
|
|
if ([NSSound soundNamed: sound])
|
|
|
|
[sounds addObject: sound];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sounds;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setSound: (id) sender
|
|
|
|
{
|
|
|
|
//play sound when selecting
|
|
|
|
NSSound * sound;
|
|
|
|
if ((sound = [NSSound soundNamed: [sender titleOfSelectedItem]]))
|
|
|
|
[sound play];
|
|
|
|
}
|
|
|
|
|
2007-12-21 05:56:34 +00:00
|
|
|
- (void) setPeersGlobal: (id) sender
|
|
|
|
{
|
|
|
|
int count = [sender intValue];
|
2008-01-20 04:50:41 +00:00
|
|
|
[fDefaults setInteger: count forKey: @"PeersTotal"];
|
2007-12-21 05:56:34 +00:00
|
|
|
tr_setGlobalPeerLimit(fHandle, count);
|
|
|
|
}
|
|
|
|
|
2007-12-22 04:15:35 +00:00
|
|
|
- (void) setPeersTorrent: (id) sender
|
|
|
|
{
|
|
|
|
int count = [sender intValue];
|
|
|
|
[fDefaults setInteger: count forKey: @"PeersTorrent"];
|
|
|
|
}
|
|
|
|
|
2007-12-24 05:05:56 +00:00
|
|
|
- (void) setPEX: (id) sender
|
|
|
|
{
|
|
|
|
tr_setPexEnabled(fHandle, [fDefaults boolForKey: @"PEXGlobal"]);
|
|
|
|
}
|
|
|
|
|
2007-11-08 23:12:07 +00:00
|
|
|
- (void) setEncryptionMode: (id) sender
|
2007-09-20 11:46:30 +00:00
|
|
|
{
|
2007-11-08 23:12:07 +00:00
|
|
|
tr_setEncryptionMode(fHandle, [fDefaults boolForKey: @"EncryptionPrefer"] ?
|
|
|
|
([fDefaults boolForKey: @"EncryptionRequire"] ? TR_ENCRYPTION_REQUIRED : TR_ENCRYPTION_PREFERRED) : TR_PLAINTEXT_PREFERRED);
|
2007-09-20 11:46:30 +00:00
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) applySpeedSettings: (id) sender
|
|
|
|
{
|
|
|
|
if ([fDefaults boolForKey: @"SpeedLimit"])
|
2007-12-21 05:56:34 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
tr_setUseGlobalSpeedLimit(fHandle, TR_UP, 1);
|
|
|
|
tr_setGlobalSpeedLimit(fHandle, TR_UP, [fDefaults integerForKey: @"SpeedLimitUploadLimit"]);
|
|
|
|
|
|
|
|
tr_setUseGlobalSpeedLimit(fHandle, TR_DOWN, 1);
|
|
|
|
tr_setGlobalSpeedLimit(fHandle, TR_DOWN, [fDefaults integerForKey: @"SpeedLimitDownloadLimit"]);
|
|
|
|
}
|
|
|
|
else
|
2007-12-21 05:56:34 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
tr_setUseGlobalSpeedLimit(fHandle, TR_UP, [fDefaults boolForKey: @"CheckUpload"]);
|
|
|
|
tr_setGlobalSpeedLimit(fHandle, TR_UP, [fDefaults integerForKey: @"UploadLimit"]);
|
|
|
|
|
|
|
|
tr_setUseGlobalSpeedLimit(fHandle, TR_DOWN, [fDefaults boolForKey: @"CheckDownload"]);
|
|
|
|
tr_setGlobalSpeedLimit(fHandle, TR_DOWN, [fDefaults integerForKey: @"DownloadLimit"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) applyRatioSetting: (id) sender
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateUI" object: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) updateRatioStopField
|
|
|
|
{
|
|
|
|
if (!fHasLoaded)
|
|
|
|
return;
|
|
|
|
|
|
|
|
[fRatioStopField setFloatValue: [fDefaults floatForKey: @"RatioLimit"]];
|
|
|
|
|
|
|
|
[self applyRatioSetting: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setRatioStop: (id) sender
|
|
|
|
{
|
2007-12-06 00:27:39 +00:00
|
|
|
[fDefaults setFloat: [sender floatValue] forKey: @"RatioLimit"];
|
2007-09-16 01:02:06 +00:00
|
|
|
[self applyRatioSetting: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) updateLimitFields
|
|
|
|
{
|
|
|
|
if (!fHasLoaded)
|
|
|
|
return;
|
|
|
|
|
|
|
|
[fUploadField setIntValue: [fDefaults integerForKey: @"UploadLimit"]];
|
|
|
|
[fDownloadField setIntValue: [fDefaults integerForKey: @"DownloadLimit"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setGlobalLimit: (id) sender
|
|
|
|
{
|
2007-12-06 00:27:39 +00:00
|
|
|
[fDefaults setInteger: [sender intValue] forKey: sender == fUploadField ? @"UploadLimit" : @"DownloadLimit"];
|
2007-09-16 01:02:06 +00:00
|
|
|
[self applySpeedSettings: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setSpeedLimit: (id) sender
|
|
|
|
{
|
2007-12-06 00:27:39 +00:00
|
|
|
[fDefaults setInteger: [sender intValue] forKey: sender == fSpeedLimitUploadField
|
|
|
|
? @"SpeedLimitUploadLimit" : @"SpeedLimitDownloadLimit"];
|
2007-09-16 01:02:06 +00:00
|
|
|
[self applySpeedSettings: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setAutoSpeedLimit: (id) sender
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"AutoSpeedLimitChange" object: self];
|
|
|
|
}
|
|
|
|
|
2007-12-06 00:27:39 +00:00
|
|
|
- (BOOL) control: (NSControl *) control textShouldBeginEditing: (NSText *) fieldEditor
|
|
|
|
{
|
2007-12-06 01:07:56 +00:00
|
|
|
[fInitialString release];
|
2007-12-06 00:27:39 +00:00
|
|
|
fInitialString = [[control stringValue] retain];
|
2007-12-06 01:07:56 +00:00
|
|
|
|
|
|
|
return YES;
|
2007-12-06 00:27:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) control: (NSControl *) control didFailToFormatString: (NSString *) string errorDescription: (NSString *) error
|
|
|
|
{
|
|
|
|
NSBeep();
|
|
|
|
if (fInitialString)
|
2007-12-06 01:07:56 +00:00
|
|
|
{
|
2007-12-06 00:27:39 +00:00
|
|
|
[control setStringValue: fInitialString];
|
2007-12-06 01:07:56 +00:00
|
|
|
[fInitialString release];
|
|
|
|
fInitialString = nil;
|
|
|
|
}
|
2007-12-06 00:27:39 +00:00
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) setBadge: (id) sender
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"DockBadgeChange" object: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) resetWarnings: (id) sender
|
|
|
|
{
|
|
|
|
[fDefaults setBool: YES forKey: @"WarningDuplicate"];
|
|
|
|
[fDefaults setBool: YES forKey: @"WarningRemainingSpace"];
|
2008-01-11 19:54:08 +00:00
|
|
|
[fDefaults setBool: YES forKey: @"WarningFolderDataSameName"];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setCheckForUpdate: (id) sender
|
|
|
|
{
|
|
|
|
NSTimeInterval seconds = [fDefaults boolForKey: @"CheckForUpdates"] ? UPDATE_SECONDS : 0;
|
|
|
|
[fDefaults setInteger: seconds forKey: @"SUScheduledCheckInterval"];
|
|
|
|
if (fUpdater)
|
|
|
|
[fUpdater scheduleCheckWithInterval: seconds];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setQueue: (id) sender
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setQueueNumber: (id) sender
|
|
|
|
{
|
2007-12-06 00:27:39 +00:00
|
|
|
[fDefaults setInteger: [sender intValue] forKey: sender == fQueueDownloadField ? @"QueueDownloadNumber" : @"QueueSeedNumber"];
|
2007-09-16 01:02:06 +00:00
|
|
|
[self setQueue: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setStalled: (id) sender
|
|
|
|
{
|
2007-12-31 04:18:40 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setStalledMinutes: (id) sender
|
|
|
|
{
|
2007-12-06 00:27:39 +00:00
|
|
|
[fDefaults setInteger: [sender intValue] forKey: @"StalledMinutes"];
|
2007-09-16 01:02:06 +00:00
|
|
|
[self setStalled: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setDownloadLocation: (id) sender
|
|
|
|
{
|
2008-01-04 04:45:31 +00:00
|
|
|
[fDefaults setBool: [fFolderPopUp indexOfSelectedItem] == DOWNLOAD_FOLDER forKey: @"DownloadLocationConstant"];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) folderSheetShow: (id) sender
|
|
|
|
{
|
|
|
|
NSOpenPanel * panel = [NSOpenPanel openPanel];
|
|
|
|
|
2008-01-03 06:36:38 +00:00
|
|
|
[panel setPrompt: NSLocalizedString(@"Select", "Preferences -> Open panel prompt")];
|
2007-09-16 01:02:06 +00:00
|
|
|
[panel setAllowsMultipleSelection: NO];
|
|
|
|
[panel setCanChooseFiles: NO];
|
|
|
|
[panel setCanChooseDirectories: YES];
|
|
|
|
[panel setCanCreateDirectories: YES];
|
|
|
|
|
|
|
|
[panel beginSheetForDirectory: nil file: nil types: nil
|
|
|
|
modalForWindow: [self window] modalDelegate: self didEndSelector:
|
|
|
|
@selector(folderSheetClosed:returnCode:contextInfo:) contextInfo: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) incompleteFolderSheetShow: (id) sender
|
|
|
|
{
|
|
|
|
NSOpenPanel * panel = [NSOpenPanel openPanel];
|
|
|
|
|
2008-01-03 06:36:38 +00:00
|
|
|
[panel setPrompt: NSLocalizedString(@"Select", "Preferences -> Open panel prompt")];
|
2007-09-16 01:02:06 +00:00
|
|
|
[panel setAllowsMultipleSelection: NO];
|
|
|
|
[panel setCanChooseFiles: NO];
|
|
|
|
[panel setCanChooseDirectories: YES];
|
|
|
|
[panel setCanCreateDirectories: YES];
|
|
|
|
|
|
|
|
[panel beginSheetForDirectory: nil file: nil types: nil
|
|
|
|
modalForWindow: [self window] modalDelegate: self didEndSelector:
|
|
|
|
@selector(incompleteFolderSheetClosed:returnCode:contextInfo:) contextInfo: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setAutoImport: (id) sender
|
|
|
|
{
|
|
|
|
NSString * path;
|
|
|
|
if ((path = [fDefaults stringForKey: @"AutoImportDirectory"]))
|
|
|
|
{
|
|
|
|
path = [path stringByExpandingTildeInPath];
|
|
|
|
if ([fDefaults boolForKey: @"AutoImport"])
|
|
|
|
[[UKKQueue sharedFileWatcher] addPath: path];
|
|
|
|
else
|
|
|
|
[[UKKQueue sharedFileWatcher] removePathFromQueue: path];
|
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"AutoImportSettingChange" object: self];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
[self importFolderSheetShow: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) importFolderSheetShow: (id) sender
|
|
|
|
{
|
|
|
|
NSOpenPanel * panel = [NSOpenPanel openPanel];
|
|
|
|
|
2008-01-03 06:36:38 +00:00
|
|
|
[panel setPrompt: NSLocalizedString(@"Select", "Preferences -> Open panel prompt")];
|
2007-09-16 01:02:06 +00:00
|
|
|
[panel setAllowsMultipleSelection: NO];
|
|
|
|
[panel setCanChooseFiles: NO];
|
|
|
|
[panel setCanChooseDirectories: YES];
|
|
|
|
[panel setCanCreateDirectories: YES];
|
|
|
|
|
|
|
|
[panel beginSheetForDirectory: nil file: nil types: nil
|
|
|
|
modalForWindow: [self window] modalDelegate: self didEndSelector:
|
|
|
|
@selector(importFolderSheetClosed:returnCode:contextInfo:) contextInfo: nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setAutoSize: (id) sender
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"AutoSizeSettingChange" object: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) helpForNetwork: (id) sender
|
|
|
|
{
|
|
|
|
[[NSHelpManager sharedHelpManager] openHelpAnchor: @"PortForwarding"
|
|
|
|
inBook: [[NSBundle mainBundle] objectForInfoDictionaryKey: @"CFBundleHelpBookName"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation PrefsController (Private)
|
|
|
|
|
|
|
|
- (void) setPrefView: (id) sender
|
|
|
|
{
|
|
|
|
NSView * view = fGeneralView;
|
|
|
|
if (sender)
|
|
|
|
{
|
|
|
|
NSString * identifier = [sender itemIdentifier];
|
|
|
|
if ([identifier isEqualToString: TOOLBAR_TRANSFERS])
|
|
|
|
view = fTransfersView;
|
|
|
|
else if ([identifier isEqualToString: TOOLBAR_BANDWIDTH])
|
|
|
|
view = fBandwidthView;
|
|
|
|
else if ([identifier isEqualToString: TOOLBAR_ADVANCED])
|
|
|
|
view = fAdvancedView;
|
|
|
|
else;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSWindow * window = [self window];
|
|
|
|
if ([window contentView] == view)
|
|
|
|
return;
|
|
|
|
|
|
|
|
NSRect windowRect = [window frame];
|
|
|
|
float difference = ([view frame].size.height - [[window contentView] frame].size.height) * [window userSpaceScaleFactor];
|
|
|
|
windowRect.origin.y -= difference;
|
|
|
|
windowRect.size.height += difference;
|
|
|
|
|
|
|
|
[view setHidden: YES];
|
|
|
|
[window setContentView: view];
|
|
|
|
[window setFrame: windowRect display: YES animate: YES];
|
|
|
|
[view setHidden: NO];
|
|
|
|
|
|
|
|
//set title label
|
|
|
|
if (sender)
|
|
|
|
[window setTitle: [sender label]];
|
|
|
|
else
|
|
|
|
{
|
|
|
|
NSToolbar * toolbar = [window toolbar];
|
|
|
|
NSString * itemIdentifier = [toolbar selectedItemIdentifier];
|
|
|
|
NSEnumerator * enumerator = [[toolbar items] objectEnumerator];
|
|
|
|
NSToolbarItem * item;
|
|
|
|
while ((item = [enumerator nextObject]))
|
|
|
|
if ([[item itemIdentifier] isEqualToString: itemIdentifier])
|
|
|
|
{
|
|
|
|
[window setTitle: [item label]];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//for advanced view make sure progress indicator hides itself
|
|
|
|
if (view == fAdvancedView && [fPortStatusImage image])
|
|
|
|
[fPortStatusProgress setDisplayedWhenStopped: NO];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) folderSheetClosed: (NSOpenPanel *) openPanel returnCode: (int) code contextInfo: (void *) info
|
|
|
|
{
|
|
|
|
if (code == NSOKButton)
|
|
|
|
{
|
|
|
|
[fFolderPopUp selectItemAtIndex: DOWNLOAD_FOLDER];
|
|
|
|
[fDefaults setObject: [[openPanel filenames] objectAtIndex: 0] forKey: @"DownloadFolder"];
|
|
|
|
[fDefaults setObject: @"Constant" forKey: @"DownloadChoice"];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//reset if cancelled
|
2008-01-04 04:45:31 +00:00
|
|
|
[fFolderPopUp selectItemAtIndex: [fDefaults boolForKey: @"DownloadLocationConstant"] ? DOWNLOAD_FOLDER : DOWNLOAD_TORRENT];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) incompleteFolderSheetClosed: (NSOpenPanel *) openPanel returnCode: (int) code contextInfo: (void *) info
|
|
|
|
{
|
|
|
|
if (code == NSOKButton)
|
|
|
|
[fDefaults setObject: [[openPanel filenames] objectAtIndex: 0] forKey: @"IncompleteDownloadFolder"];
|
|
|
|
[fIncompleteFolderPopUp selectItemAtIndex: 0];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) importFolderSheetClosed: (NSOpenPanel *) openPanel returnCode: (int) code contextInfo: (void *) info
|
|
|
|
{
|
|
|
|
NSString * path = [fDefaults stringForKey: @"AutoImportDirectory"];
|
|
|
|
if (code == NSOKButton)
|
|
|
|
{
|
|
|
|
UKKQueue * sharedQueue = [UKKQueue sharedFileWatcher];
|
|
|
|
if (path)
|
|
|
|
[sharedQueue removePathFromQueue: [path stringByExpandingTildeInPath]];
|
|
|
|
|
|
|
|
path = [[openPanel filenames] objectAtIndex: 0];
|
|
|
|
[fDefaults setObject: path forKey: @"AutoImportDirectory"];
|
|
|
|
[sharedQueue addPath: [path stringByExpandingTildeInPath]];
|
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"AutoImportSettingChange" object: self];
|
|
|
|
}
|
|
|
|
else if (!path)
|
|
|
|
[fDefaults setBool: NO forKey: @"AutoImport"];
|
|
|
|
|
|
|
|
[fImportFolderPopUp selectItemAtIndex: 0];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|