macOS add full screen support (#3305)

This commit is contained in:
SweetPPro 2022-06-16 21:59:54 +02:00 committed by GitHub
parent c6b49e99d8
commit 06e5767234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 2004 additions and 1760 deletions

View File

@ -166,11 +166,15 @@ typedef NS_ENUM(unsigned int, addType) { //
- (void)allToolbarClicked:(id)sender;
- (void)selectedToolbarClicked:(id)sender;
- (void)updateMainWindow;
- (void)setWindowSizeToFit;
@property(nonatomic, readonly) NSRect sizedWindowFrame;
- (void)updateForAutoSize;
- (void)setWindowMinMaxToCurrent;
@property(nonatomic, readonly) CGFloat minWindowContentSizeAllowed;
- (void)removeWindowMinMax;
- (void)setMinWindowContentSizeAllowed;
- (void)setMaxWindowContentSizeAllowed;
- (void)removeStackViewHeightConstraints;
- (void)updateForExpandCollapse;

View File

@ -103,10 +103,10 @@ typedef NS_ENUM(unsigned int, sortOrderTag) { //
#define ROW_HEIGHT_REGULAR 62.0
#define ROW_HEIGHT_SMALL 22.0
#define WINDOW_REGULAR_WIDTH 468.0
#define STATUS_BAR_HEIGHT 21.0
#define FILTER_BAR_HEIGHT 23.0
#define BOTTOM_BAR_HEIGHT 24.0
#define UPDATE_UI_SECONDS 1.0
@ -230,6 +230,8 @@ static void removeKeRangerRansomware()
@interface Controller ()
@property(nonatomic) IBOutlet NSWindow* fWindow;
@property(nonatomic) IBOutlet NSStackView* fStackView;
@property(nonatomic) NSArray* fStackViewHeightConstraints;
@property(nonatomic) IBOutlet TorrentTableView* fTableView;
@property(nonatomic) IBOutlet NSMenuItem* fOpenIgnoreDownloadFolder;
@ -562,12 +564,12 @@ static void removeKeRangerRansomware()
self.fWindow.delegate = self; //do manually to avoid placement issue
//disable fullscreen support
[self.fWindow setCollectionBehavior:NSWindowCollectionBehaviorFullScreenNone];
[self.fWindow makeFirstResponder:self.fTableView];
self.fWindow.excludedFromWindowsMenu = YES;
//make window primary view in fullscreen
[self.fWindow setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
//set table size
BOOL const small = [self.fDefaults boolForKey:@"SmallView"];
if (small)
@ -581,12 +583,6 @@ static void removeKeRangerRansomware()
self.fTotalTorrentsField.cell.backgroundStyle = NSBackgroundStyleRaised;
//set up filter bar
[self showFilterBar:[self.fDefaults boolForKey:@"FilterBar"] animate:NO];
//set up status bar
[self showStatusBar:[self.fDefaults boolForKey:@"StatusBar"] animate:NO];
self.fActionButton.toolTip = NSLocalizedString(@"Shortcuts for changing global settings.", "Main window -> 1st bottom left button (action) tooltip");
self.fSpeedLimitButton.toolTip = NSLocalizedString(
@"Speed Limit overrides the total bandwidth limits with its own limits.",
@ -634,9 +630,6 @@ static void removeKeRangerRansomware()
//this must be called after showStatusBar:
[self.fStatusBar updateWithDownload:0.0 upload:0.0];
//this should also be after the rest of the setup
[self updateForAutoSize];
//register for sleep notifications
IONotificationPortRef notify;
io_object_t iterator;
@ -758,6 +751,8 @@ static void removeKeRangerRansomware()
[nc addObserver:self selector:@selector(applyFilter) name:@"UpdateGroups" object:nil];
[self updateMainWindow];
//timer to update the interface every second
[self updateUI];
self.fTimer = [NSTimer scheduledTimerWithTimeInterval:UPDATE_UI_SECONDS target:self selector:@selector(updateUI)
@ -766,14 +761,15 @@ static void removeKeRangerRansomware()
[NSRunLoop.currentRunLoop addTimer:self.fTimer forMode:NSModalPanelRunLoopMode];
[NSRunLoop.currentRunLoop addTimer:self.fTimer forMode:NSEventTrackingRunLoopMode];
[self applyFilter];
[self.fWindow makeKeyAndOrderFront:nil];
if ([self.fDefaults boolForKey:@"InfoVisible"])
{
[self showInfo:nil];
}
//redraw filterbar to avoid clipping
[NSNotificationCenter.defaultCenter postNotificationName:@"ResizeBar" object:nil];
}
- (void)applicationDidFinishLaunching:(NSNotification*)notification
@ -969,9 +965,6 @@ static void removeKeRangerRansomware()
[window close];
}
[self showStatusBar:NO animate:NO];
[self showFilterBar:NO animate:NO];
//save history
[self updateTorrentHistory];
[self.fTableView saveCollapsedGroups];
@ -1818,6 +1811,8 @@ static void removeKeRangerRansomware()
{
[torrent closeRemoveTorrent:deleteData];
}
[self fullUpdateUI];
};
[self.fTableView beginUpdates];
@ -1860,8 +1855,6 @@ static void removeKeRangerRansomware()
[torrent closeRemoveTorrent:deleteData];
}
}
[self fullUpdateUI];
}
- (void)removeNoDelete:(id)sender
@ -3155,10 +3148,11 @@ static void removeKeRangerRansomware()
{
[self.fTableView endUpdates];
}
self.fTableView.needsDisplay = YES;
[NSAnimationContext endGrouping];
//reloaddata, otherwise the tableview has a bunch of empty cells
[self.fTableView reloadData];
[self resetInfo]; //if group is already selected, but the torrents in it change
[self setBottomCountText:groupRows || filterStatus || filterGroup || searchStrings];
@ -3818,30 +3812,9 @@ static void removeKeRangerRansomware()
noteHeightOfRowsWithIndexesChanged:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, self.fTableView.numberOfRows)]];
[self.fTableView endUpdates];
//resize for larger min height if not set to auto size
if (![self.fDefaults boolForKey:@"AutoSize"])
{
NSSize const contentSize = self.fWindow.contentView.frame.size;
NSSize contentMinSize = self.fWindow.contentMinSize;
contentMinSize.height = self.minWindowContentSizeAllowed;
self.fWindow.contentMinSize = contentMinSize;
//make sure the window already isn't too small
if (!makeSmall && contentSize.height < contentMinSize.height)
{
NSRect frame = self.fWindow.frame;
CGFloat heightChange = contentMinSize.height - contentSize.height;
frame.size.height += heightChange;
frame.origin.y -= heightChange;
[self.fWindow setFrame:frame display:YES];
}
}
else
{
[self setWindowSizeToFit];
}
//reloaddata, otherwise the tableview has a bunch of empty cells
[self.fTableView reloadData];
[self updateForAutoSize];
}
- (void)togglePiecesBar:(id)sender
@ -3856,267 +3829,25 @@ static void removeKeRangerRansomware()
[self.fTableView display];
}
- (NSRect)windowFrameByAddingHeight:(CGFloat)height checkLimits:(BOOL)check
{
NSScrollView* scrollView = self.fTableView.enclosingScrollView;
//convert pixels to points
NSRect windowFrame = self.fWindow.frame;
NSSize windowSize = [scrollView convertSize:windowFrame.size fromView:nil];
windowSize.height += height;
if (check)
{
//we can't call minSize, since it might be set to the current size (auto size)
CGFloat const minHeight = self.minWindowContentSizeAllowed +
(NSHeight(self.fWindow.frame) - NSHeight(self.fWindow.contentView.frame)); //contentView to window
if (windowSize.height <= minHeight)
{
windowSize.height = minHeight;
}
else
{
NSScreen* screen = self.fWindow.screen;
if (screen)
{
NSSize maxSize = [scrollView convertSize:screen.visibleFrame.size fromView:nil];
if (!self.fStatusBar)
{
maxSize.height -= STATUS_BAR_HEIGHT;
}
if (!self.fFilterBar)
{
maxSize.height -= FILTER_BAR_HEIGHT;
}
if (windowSize.height > maxSize.height)
{
windowSize.height = maxSize.height;
}
}
}
}
//convert points to pixels
windowSize = [scrollView convertSize:windowSize toView:nil];
windowFrame.origin.y -= (windowSize.height - windowFrame.size.height);
windowFrame.size.height = windowSize.height;
return windowFrame;
}
- (void)toggleStatusBar:(id)sender
{
BOOL const show = self.fStatusBar == nil;
[self showStatusBar:show animate:YES];
[self.fDefaults setBool:show forKey:@"StatusBar"];
}
//doesn't save shown state
- (void)showStatusBar:(BOOL)show animate:(BOOL)animate
{
BOOL const prevShown = self.fStatusBar != nil;
if (show == prevShown)
{
return;
}
if (show)
{
self.fStatusBar = [[StatusBarController alloc] initWithLib:self.fLib];
NSView* contentView = self.fWindow.contentView;
NSSize const windowSize = [contentView convertSize:self.fWindow.frame.size fromView:nil];
NSRect statusBarFrame = self.fStatusBar.view.frame;
statusBarFrame.size.width = windowSize.width;
self.fStatusBar.view.frame = statusBarFrame;
[contentView addSubview:self.fStatusBar.view];
[self.fStatusBar.view setFrameOrigin:NSMakePoint(0.0, NSMaxY(contentView.frame))];
}
CGFloat heightChange = self.fStatusBar.view.frame.size.height;
if (!show)
{
heightChange *= -1;
}
//allow bar to show even if not enough room
if (show && ![self.fDefaults boolForKey:@"AutoSize"])
{
NSRect frame = [self windowFrameByAddingHeight:heightChange checkLimits:NO];
NSScreen* screen = self.fWindow.screen;
if (screen)
{
CGFloat change = screen.visibleFrame.size.height - frame.size.height;
if (change < 0.0)
{
frame = self.fWindow.frame;
frame.size.height += change;
frame.origin.y -= change;
[self.fWindow setFrame:frame display:NO animate:NO];
}
}
}
[self updateUI];
NSScrollView* scrollView = self.fTableView.enclosingScrollView;
//set views to not autoresize
NSUInteger const statsMask = self.fStatusBar.view.autoresizingMask;
self.fStatusBar.view.autoresizingMask = NSViewNotSizable;
NSUInteger filterMask;
if (self.fFilterBar)
{
filterMask = self.fFilterBar.view.autoresizingMask;
self.fFilterBar.view.autoresizingMask = NSViewNotSizable;
}
NSUInteger const scrollMask = scrollView.autoresizingMask;
scrollView.autoresizingMask = NSViewNotSizable;
NSRect const frame = [self windowFrameByAddingHeight:heightChange checkLimits:NO];
[self.fWindow setFrame:frame display:YES animate:animate];
//re-enable autoresize
self.fStatusBar.view.autoresizingMask = statsMask;
if (self.fFilterBar)
{
self.fFilterBar.view.autoresizingMask = filterMask;
}
scrollView.autoresizingMask = scrollMask;
if (!show)
{
[self.fStatusBar.view removeFromSuperviewWithoutNeedingDisplay];
self.fStatusBar = nil;
}
if ([self.fDefaults boolForKey:@"AutoSize"])
{
[self setWindowMinMaxToCurrent];
}
else
{
//change min size
NSSize minSize = self.fWindow.contentMinSize;
minSize.height += heightChange;
self.fWindow.contentMinSize = minSize;
}
[self updateMainWindow];
}
- (void)toggleFilterBar:(id)sender
{
BOOL const show = self.fFilterBar == nil;
//disable filtering when hiding (have to do before showFilterBar:animate:)
//disable filtering when hiding (have to do before updateMainWindow:)
if (!show)
{
[self.fFilterBar reset:NO];
}
[self showFilterBar:show animate:YES];
[self.fDefaults setBool:show forKey:@"FilterBar"];
[self.fWindow.toolbar validateVisibleItems];
[self applyFilter]; //do even if showing to ensure tooltips are updated
}
//doesn't save shown state
- (void)showFilterBar:(BOOL)show animate:(BOOL)animate
{
BOOL const prevShown = self.fFilterBar != nil;
if (show == prevShown)
{
return;
}
if (show)
{
self.fFilterBar = [[FilterBarController alloc] init];
NSView* contentView = self.fWindow.contentView;
NSSize const windowSize = [contentView convertSize:self.fWindow.frame.size fromView:nil];
NSRect filterBarFrame = self.fFilterBar.view.frame;
filterBarFrame.size.width = windowSize.width;
self.fFilterBar.view.frame = filterBarFrame;
if (self.fStatusBar)
{
[contentView addSubview:self.fFilterBar.view positioned:NSWindowBelow relativeTo:self.fStatusBar.view];
}
else
{
[contentView addSubview:self.fFilterBar.view];
}
CGFloat const originY = self.fStatusBar ? NSMinY(self.fStatusBar.view.frame) : NSMaxY(contentView.frame);
[self.fFilterBar.view setFrameOrigin:NSMakePoint(0.0, originY)];
}
else
{
[self.fWindow makeFirstResponder:self.fTableView];
}
CGFloat heightChange = NSHeight(self.fFilterBar.view.frame);
if (!show)
{
heightChange *= -1;
}
//allow bar to show even if not enough room
if (show && ![self.fDefaults boolForKey:@"AutoSize"])
{
NSRect frame = [self windowFrameByAddingHeight:heightChange checkLimits:NO];
NSScreen* screen = self.fWindow.screen;
if (screen)
{
CGFloat change = screen.visibleFrame.size.height - frame.size.height;
if (change < 0.0)
{
frame = self.fWindow.frame;
frame.size.height += change;
frame.origin.y -= change;
[self.fWindow setFrame:frame display:NO animate:NO];
}
}
}
NSScrollView* scrollView = self.fTableView.enclosingScrollView;
//set views to not autoresize
NSUInteger const filterMask = self.fFilterBar.view.autoresizingMask;
NSUInteger const scrollMask = scrollView.autoresizingMask;
self.fFilterBar.view.autoresizingMask = NSViewNotSizable;
scrollView.autoresizingMask = NSViewNotSizable;
NSRect const frame = [self windowFrameByAddingHeight:heightChange checkLimits:NO];
[self.fWindow setFrame:frame display:YES animate:animate];
//re-enable autoresize
self.fFilterBar.view.autoresizingMask = filterMask;
scrollView.autoresizingMask = scrollMask;
if (!show)
{
[self.fFilterBar.view removeFromSuperviewWithoutNeedingDisplay];
self.fFilterBar = nil;
}
if ([self.fDefaults boolForKey:@"AutoSize"])
{
[self setWindowMinMaxToCurrent];
}
else
{
//change min size
NSSize minSize = self.fWindow.contentMinSize;
minSize.height += heightChange;
self.fWindow.contentMinSize = minSize;
}
[self updateMainWindow];
}
- (void)focusFilterField
@ -5176,58 +4907,114 @@ static void removeKeRangerRansomware()
return menu;
}
- (NSRect)windowWillUseStandardFrame:(NSWindow*)window defaultFrame:(NSRect)defaultFrame
- (void)updateMainWindow
{
//if auto size is enabled, the current frame shouldn't need to change
NSRect frame = [self.fDefaults boolForKey:@"AutoSize"] ? window.frame : self.sizedWindowFrame;
NSArray* subViews = self.fStackView.arrangedSubviews;
NSUInteger idx = 0;
frame.size.width = [self.fDefaults boolForKey:@"SmallView"] ? self.fWindow.minSize.width : WINDOW_REGULAR_WIDTH;
return frame;
//update layout
if ([self.fDefaults boolForKey:@"StatusBar"])
{
if (self.fStatusBar == nil)
{
self.fStatusBar = [[StatusBarController alloc] initWithLib:self.fLib];
}
[self.fStackView insertArrangedSubview:self.fStatusBar.view atIndex:idx];
NSDictionary* views = @{ @"fStatusBar" : self.fStatusBar.view };
[self.fStackView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[fStatusBar(==21)]" options:0
metrics:nil
views:views]];
idx = 1;
}
else
{
if ([subViews containsObject:self.fStatusBar.view])
{
[self.fStackView removeView:self.fStatusBar.view];
self.fStatusBar = nil;
}
}
if ([self.fDefaults boolForKey:@"FilterBar"])
{
if (self.fFilterBar == nil)
{
self.fFilterBar = [[FilterBarController alloc] init];
}
[self.fStackView insertArrangedSubview:self.fFilterBar.view atIndex:idx];
NSDictionary* views = @{ @"fFilterBar" : self.fFilterBar.view };
[self.fStackView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[fFilterBar(==21)]" options:0
metrics:nil
views:views]];
[self focusFilterField];
}
else
{
if ([subViews containsObject:self.fFilterBar.view])
{
[self.fStackView removeView:self.fFilterBar.view];
self.fFilterBar = nil;
[self.fWindow makeFirstResponder:self.fTableView];
}
}
[self fullUpdateUI];
[self updateForAutoSize];
}
- (void)setWindowSizeToFit
{
if ([self.fDefaults boolForKey:@"AutoSize"])
if (!self.isFullScreen)
{
NSScrollView* scrollView = self.fTableView.enclosingScrollView;
if (![self.fDefaults boolForKey:@"AutoSize"])
{
[self removeWindowMinMax];
}
else
{
NSScrollView* scrollView = self.fTableView.enclosingScrollView;
scrollView.hasVerticalScroller = NO;
[self.fWindow setFrame:self.sizedWindowFrame display:YES animate:YES];
scrollView.hasVerticalScroller = YES;
scrollView.hasVerticalScroller = NO;
[self setWindowMinMaxToCurrent];
[self removeStackViewHeightConstraints];
//update height constraints
NSDictionary* views = @{ @"scrollView" : scrollView };
CGFloat height = self.scrollViewHeight;
NSString* constraintsString = [NSString stringWithFormat:@"V:[scrollView(==%f)]", height];
//add height constraint
self.fStackViewHeightConstraints = [NSLayoutConstraint constraintsWithVisualFormat:constraintsString options:0
metrics:nil
views:views];
[self.fStackView addConstraints:self.fStackViewHeightConstraints];
scrollView.hasVerticalScroller = YES;
[self setWindowMinMaxToCurrent];
}
}
else
{
[self removeStackViewHeightConstraints];
}
}
- (NSRect)sizedWindowFrame
{
NSUInteger groups = (self.fDisplayedTorrents.count > 0 && ![self.fDisplayedTorrents[0] isKindOfClass:[Torrent class]]) ?
self.fDisplayedTorrents.count :
0;
CGFloat heightChange = (GROUP_SEPARATOR_HEIGHT + self.fTableView.intercellSpacing.height) * groups +
(self.fTableView.rowHeight + self.fTableView.intercellSpacing.height) * (self.fTableView.numberOfRows - groups) -
NSHeight(self.fTableView.enclosingScrollView.frame);
return [self windowFrameByAddingHeight:heightChange checkLimits:YES];
}
- (void)updateForAutoSize
{
if ([self.fDefaults boolForKey:@"AutoSize"])
if ([self.fDefaults boolForKey:@"AutoSize"] && !self.isFullScreen)
{
[self setWindowSizeToFit];
}
else
{
NSSize contentMinSize = self.fWindow.contentMinSize;
contentMinSize.height = self.minWindowContentSizeAllowed;
self.fWindow.contentMinSize = contentMinSize;
NSSize contentMaxSize = self.fWindow.contentMaxSize;
contentMaxSize.height = FLT_MAX;
self.fWindow.contentMaxSize = contentMaxSize;
[self removeWindowMinMax];
}
}
@ -5243,13 +5030,123 @@ static void removeKeRangerRansomware()
self.fWindow.contentMaxSize = maxSize;
}
- (CGFloat)minWindowContentSizeAllowed
- (void)removeWindowMinMax
{
CGFloat contentMinHeight = NSHeight(self.fWindow.contentView.frame) - NSHeight(self.fTableView.enclosingScrollView.frame) +
self.fTableView.rowHeight + self.fTableView.intercellSpacing.height;
[self setMinWindowContentSizeAllowed];
[self setMaxWindowContentSizeAllowed];
[self removeStackViewHeightConstraints];
}
- (void)setMinWindowContentSizeAllowed
{
NSSize contentMinSize = self.fWindow.contentMinSize;
contentMinSize.height = self.minWindowContentHeightAllowed;
self.fWindow.contentMinSize = contentMinSize;
}
- (void)setMaxWindowContentSizeAllowed
{
NSSize contentMaxSize = self.fWindow.contentMaxSize;
contentMaxSize.height = FLT_MAX;
self.fWindow.contentMaxSize = contentMaxSize;
}
- (void)removeStackViewHeightConstraints
{
if (self.fStackViewHeightConstraints)
{
[self.fStackView removeConstraints:self.fStackViewHeightConstraints];
}
}
- (CGFloat)minWindowContentHeightAllowed
{
CGFloat contentMinHeight = self.fTableView.rowHeight + self.fTableView.intercellSpacing.height + self.mainWindowComponentHeight;
return contentMinHeight;
}
- (CGFloat)toolbarHeight
{
return self.fWindow.frame.size.height - [self.fWindow contentRectForFrameRect:self.fWindow.frame].size.height;
}
- (CGFloat)mainWindowComponentHeight
{
CGFloat height = BOTTOM_BAR_HEIGHT;
if (self.fStatusBar)
{
height += STATUS_BAR_HEIGHT;
}
if (self.fFilterBar)
{
height += FILTER_BAR_HEIGHT;
}
return height;
}
- (CGFloat)scrollViewHeight
{
CGFloat height;
CGFloat minHeight = self.fTableView.rowHeight + self.fTableView.intercellSpacing.height;
if ([self.fDefaults boolForKey:@"AutoSize"])
{
NSUInteger groups = (self.fDisplayedTorrents.count > 0 && ![self.fDisplayedTorrents[0] isKindOfClass:[Torrent class]]) ?
self.fDisplayedTorrents.count :
0;
height = (GROUP_SEPARATOR_HEIGHT + self.fTableView.intercellSpacing.height) * groups +
(self.fTableView.rowHeight + self.fTableView.intercellSpacing.height) * (self.fTableView.numberOfRows - groups);
}
else
{
height = NSHeight(self.fTableView.enclosingScrollView.frame);
}
//make sure we dont go bigger that the screen height
NSScreen* screen = self.fWindow.screen;
if (screen)
{
NSSize maxSize = screen.frame.size;
maxSize.height -= self.toolbarHeight;
maxSize.height -= self.mainWindowComponentHeight;
//add a small buffer
maxSize.height -= 50;
if (height > maxSize.height)
{
height = maxSize.height;
}
}
//make sure we dont have zero height
if (height < minHeight)
{
height = minHeight;
}
return height;
}
- (BOOL)isFullScreen
{
return (self.fWindow.styleMask & NSFullScreenWindowMask);
}
- (void)windowWillEnterFullScreen:(NSNotification*)notification
{
[self removeWindowMinMax];
}
- (void)windowDidExitFullScreen:(NSNotification*)notification
{
[self updateForAutoSize];
}
- (void)updateForExpandCollapse
{
[self setWindowSizeToFit];

View File

@ -16,8 +16,6 @@
@property(nonatomic, readonly) NSViewAnimation* fFadeInAnimation;
@property(nonatomic, readonly) NSViewAnimation* fFadeOutAnimation;
- (void)resizeWindow;
@end
@implementation DragOverlayWindow
@ -53,9 +51,6 @@
_fFadeOutAnimation.animationBlockingMode = NSAnimationNonblockingThreaded;
[window addChildWindow:self ordered:NSWindowAbove];
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(resizeWindow) name:NSWindowDidResizeNotification
object:window];
}
return self;
}
@ -172,11 +167,4 @@
}
}
#pragma mark - Private
- (void)resizeWindow
{
[self setFrame:self.parentWindow.frame display:NO];
}
@end

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="19162" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="20037" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="19162"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="20037"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>

View File

@ -130,6 +130,8 @@
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(resizeBar) name:NSWindowDidResizeNotification
object:self.view.window];
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(resizeBar) name:@"ResizeBar" object:nil];
//update when groups change
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(updateGroups:) name:@"UpdateGroups" object:nil];
}

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="11762" systemVersion="16D32" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none">
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="20037" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="11762"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="20037"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
@ -22,7 +22,7 @@
<rect key="frame" x="0.0" y="0.0" width="400" height="21"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
<subviews>
<popUpButton verticalHuggingPriority="750" id="3">
<popUpButton verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3">
<rect key="frame" x="5" y="2" width="103" height="17"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<popUpButtonCell key="cell" type="recessed" title="status menu" bezelStyle="recessed" imagePosition="left" alignment="left" controlSize="small" lineBreakMode="truncatingTail" borderStyle="borderAndBezel" tag="-1" inset="2" pullsDown="YES" arrowPosition="noArrow" selectedItem="33" id="12">
@ -55,17 +55,17 @@
</menu>
</popUpButtonCell>
</popUpButton>
<imageView id="4">
<imageView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4">
<rect key="frame" x="247" y="5" width="8" height="12"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES"/>
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" animates="YES" image="DownArrowTemplate" id="11"/>
</imageView>
<imageView id="5">
<imageView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="5">
<rect key="frame" x="325" y="5" width="8" height="12"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES"/>
<imageCell key="cell" refusesFirstResponder="YES" alignment="left" image="UpArrowTemplate" id="10"/>
</imageView>
<textField verticalHuggingPriority="750" id="6">
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="6">
<rect key="frame" x="336" y="4" width="64" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES"/>
<textFieldCell key="cell" controlSize="small" sendsActionOnEndEditing="YES" alignment="left" title="999.9 KB/s" id="9">
@ -74,7 +74,7 @@
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<textField verticalHuggingPriority="750" id="7">
<textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="7">
<rect key="frame" x="258" y="4" width="64" height="14"/>
<autoresizingMask key="autoresizingMask" flexibleMinX="YES"/>
<textFieldCell key="cell" controlSize="small" sendsActionOnEndEditing="YES" alignment="left" title="999.9 KB/s" id="8">
@ -84,6 +84,7 @@
</textFieldCell>
</textField>
</subviews>
<point key="canvasLocation" x="139" y="136"/>
</customView>
</objects>
<resources>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 of 999 transfers" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="SYu-Qi-tNl">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Color">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Group">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="DL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="UL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Color">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Group">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="DL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="UL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="vg7-9j-Sow">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="199" y="5" width="118" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 of 999 transfers" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="10v-jB-Xn2"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="vg7-9j-Sow" secondAttribute="centerY" id="5gH-PK-F3r"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="vg7-9j-Sow" secondAttribute="centerY" id="E2E-hk-tgh"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="vg7-9j-Sow" secondAttribute="leading" constant="8" id="Ehg-ke-d7J"/>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="vg7-9j-Sow" secondAttribute="centerY" id="MTv-Au-hn0"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="vg7-9j-Sow" secondAttribute="centerY" id="eML-Zs-JGX"/>
<constraint firstAttribute="height" constant="24" id="ger-Fr-JGk"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="vg7-9j-Sow" secondAttribute="centerX" id="xUg-LF-kNi"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="xcK-Bb-xda"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstItem="vg7-9j-Sow" firstAttribute="leading" secondItem="SYu-Qi-tNl" secondAttribute="leading" id="cfJ-fa-HDr"/>
<constraint firstAttribute="trailing" secondItem="vg7-9j-Sow" secondAttribute="trailing" id="fRT-Hw-hE7"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstAttribute="bottom" secondItem="SYu-Qi-tNl" secondAttribute="bottom" id="61G-uz-cD5"/>
<constraint firstItem="SYu-Qi-tNl" firstAttribute="top" secondItem="2" secondAttribute="top" id="Fnd-8b-G2Q"/>
<constraint firstAttribute="trailing" secondItem="SYu-Qi-tNl" secondAttribute="trailing" id="lOG-wF-auY"/>
<constraint firstItem="SYu-Qi-tNl" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="omg-9A-PSH"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -715,6 +749,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="SYu-Qi-tNl" id="5Im-qv-Fjo"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 von 999 Übertragungen" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2NQ-ds-ree">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Farbe">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Gruppe">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Empfangsgeschwindigkeit">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Sendegeschwindigkeit">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Farbe">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Gruppe">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Empfangsgeschwindigkeit">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Sendegeschwindigkeit">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="h0P-NK-Y4a">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="178" y="5" width="159" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 von 999 Übertragungen" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="h0P-NK-Y4a" secondAttribute="centerY" id="8x2-yt-wck"/>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="94u-Wo-JMs"/>
<constraint firstAttribute="height" constant="24" id="GJc-wq-xeZ"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="h0P-NK-Y4a" secondAttribute="centerY" id="H9o-bm-pRM"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="h0P-NK-Y4a" secondAttribute="centerY" id="Tdl-sJ-j90"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="h1t-3S-2ja"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="h0P-NK-Y4a" secondAttribute="centerY" id="jUL-DB-cqw"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="h0P-NK-Y4a" secondAttribute="leading" constant="8" id="ksn-lV-CbW"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="h0P-NK-Y4a" secondAttribute="centerX" id="yp0-7o-B5B"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstItem="h0P-NK-Y4a" firstAttribute="leading" secondItem="2NQ-ds-ree" secondAttribute="leading" id="bJp-iW-myX"/>
<constraint firstAttribute="trailing" secondItem="h0P-NK-Y4a" secondAttribute="trailing" id="w4J-Fk-A9g"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstItem="2NQ-ds-ree" firstAttribute="top" secondItem="2" secondAttribute="top" id="394-gd-AIV"/>
<constraint firstAttribute="trailing" secondItem="2NQ-ds-ree" secondAttribute="trailing" id="Pja-N6-4Xk"/>
<constraint firstAttribute="bottom" secondItem="2NQ-ds-ree" secondAttribute="bottom" id="WMj-fU-NQ0"/>
<constraint firstItem="2NQ-ds-ree" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="vmY-6Q-VkI"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -716,6 +750,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="2NQ-ds-ree" id="fqP-cS-bNW"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 of 999 transfers" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="5cE-5g-l0I">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Msk-Iv-kCJ">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="5cE-5g-l0I">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Color">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Group">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="DL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="label"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="UL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Color">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Group">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="DL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="label"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="UL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="499" y="0.0" width="16" height="0.0"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="JCm-xb-Dpw">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="199" y="5" width="118" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 of 999 transfers" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
</subviews>
<constraints>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="FEn-NM-flo"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="Ofp-KJ-XZv"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="JCm-xb-Dpw" secondAttribute="centerY" id="PS4-Bx-QIF"/>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="JCm-xb-Dpw" secondAttribute="centerY" id="RtK-gx-Jsv"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="JCm-xb-Dpw" secondAttribute="centerY" id="Wid-lz-U1e"/>
<constraint firstAttribute="height" constant="24" id="dyn-PY-CuN"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="JCm-xb-Dpw" secondAttribute="centerX" id="hcK-0p-UnE"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="JCm-xb-Dpw" secondAttribute="centerY" id="usg-NR-gmG"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="JCm-xb-Dpw" secondAttribute="leading" constant="8" id="xFe-Hi-hSp"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstItem="JCm-xb-Dpw" firstAttribute="leading" secondItem="Msk-Iv-kCJ" secondAttribute="leading" id="7N2-SG-w8d"/>
<constraint firstAttribute="trailing" secondItem="JCm-xb-Dpw" secondAttribute="trailing" id="RMo-FM-GgE"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstItem="Msk-Iv-kCJ" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="MCc-fn-fwX"/>
<constraint firstAttribute="trailing" secondItem="Msk-Iv-kCJ" secondAttribute="trailing" id="Q4f-XT-uPH"/>
<constraint firstItem="Msk-Iv-kCJ" firstAttribute="top" secondItem="2" secondAttribute="top" id="Uv1-dY-LX7"/>
<constraint firstAttribute="bottom" secondItem="Msk-Iv-kCJ" secondAttribute="bottom" id="xdi-eZ-CRL"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -716,6 +750,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="Msk-Iv-kCJ" id="UBA-Uw-iSC"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 de 999 tareas" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="nSF-6K-ENX">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="SDr-1O-JMy">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="nSF-6K-ENX">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Color">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Grupo">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Velocidad de bajada">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Velocidad de subida">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Color">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Grupo">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Velocidad de bajada">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Velocidad de subida">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="qxm-NI-VjT">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="205" y="5" width="106" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 de 999 tareas" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="qxm-NI-VjT" secondAttribute="centerY" id="Gia-0J-9ga"/>
<constraint firstAttribute="height" constant="24" id="VWV-Vn-zAq"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="qxm-NI-VjT" secondAttribute="centerX" id="bKE-cB-n1U"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="qxm-NI-VjT" secondAttribute="centerY" id="faC-J9-k1B"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="gdX-sA-5XI"/>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="iiq-jk-ZLg"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="qxm-NI-VjT" secondAttribute="leading" constant="8" id="s47-BD-FyK"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="qxm-NI-VjT" secondAttribute="centerY" id="tJC-iT-66A"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="qxm-NI-VjT" secondAttribute="centerY" id="vac-fU-exJ"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="qxm-NI-VjT" secondAttribute="trailing" id="0wX-H4-5VX"/>
<constraint firstItem="qxm-NI-VjT" firstAttribute="leading" secondItem="SDr-1O-JMy" secondAttribute="leading" id="3TZ-5T-rWE"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="SDr-1O-JMy" secondAttribute="trailing" id="Dzs-ny-jRs"/>
<constraint firstItem="SDr-1O-JMy" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="Jpn-NW-b6S"/>
<constraint firstAttribute="bottom" secondItem="SDr-1O-JMy" secondAttribute="bottom" id="r9F-yk-ccv"/>
<constraint firstItem="SDr-1O-JMy" firstAttribute="top" secondItem="2" secondAttribute="top" id="u2H-vD-JRi"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -715,6 +749,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="SDr-1O-JMy" id="lDU-wm-xDS"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 of 999 transfers" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="8df-4f-Tz4">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Qfj-hi-r9m">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="8df-4f-Tz4">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Couleur">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Groupe">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Vitesse DL">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Vitesse UL">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Couleur">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Groupe">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Vitesse DL">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Vitesse UL">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="IYp-g0-dYm">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="199" y="5" width="118" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 of 999 transfers" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="IYp-g0-dYm" secondAttribute="centerY" id="JPf-P5-piR"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="QfU-4X-1yM"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="IYp-g0-dYm" secondAttribute="leading" constant="8" id="QhU-6l-x8M"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="IYp-g0-dYm" secondAttribute="centerY" id="Quc-Ro-EZW"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="IYp-g0-dYm" secondAttribute="centerX" id="ZYQ-Ed-onT"/>
<constraint firstAttribute="height" constant="24" id="cfb-mk-uBx"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="IYp-g0-dYm" secondAttribute="centerY" id="k29-UN-L6u"/>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="tnd-VK-wkI"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="IYp-g0-dYm" secondAttribute="centerY" id="uZF-hU-oMu"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstItem="IYp-g0-dYm" firstAttribute="leading" secondItem="Qfj-hi-r9m" secondAttribute="leading" id="Zdp-ur-OBI"/>
<constraint firstAttribute="trailing" secondItem="IYp-g0-dYm" secondAttribute="trailing" id="eQR-Ch-PWz"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstItem="Qfj-hi-r9m" firstAttribute="top" secondItem="2" secondAttribute="top" id="7Fh-AS-Opf"/>
<constraint firstAttribute="trailing" secondItem="Qfj-hi-r9m" secondAttribute="trailing" id="Ahd-C5-Hz5"/>
<constraint firstItem="Qfj-hi-r9m" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="Wku-ZP-91e"/>
<constraint firstAttribute="bottom" secondItem="Qfj-hi-r9m" secondAttribute="bottom" id="jmH-nB-cTd"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -714,6 +748,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="Qfj-hi-r9m" id="bPe-4g-pMS"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 su 999 trasferimenti" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="reR-UB-Vhd">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Colore">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Gruppo">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Velocità ricezione">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Velocità invio">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Colore">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Gruppo">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Velocità ricezione">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Velocità invio">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="VlI-yn-fRA">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="188" y="5" width="139" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 su 999 trasferimenti" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="3435" firstAttribute="leading" secondItem="VlI-yn-fRA" secondAttribute="leading" constant="8" id="NsH-z9-RdX"/>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="VlI-yn-fRA" secondAttribute="centerY" id="Rtx-EY-hfG"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="Rud-LT-ct0"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="VlI-yn-fRA" secondAttribute="centerY" id="THb-Vv-urb"/>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="iW8-lP-0Zf"/>
<constraint firstAttribute="height" constant="24" id="oEe-b9-KWv"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="VlI-yn-fRA" secondAttribute="centerY" id="ufr-O4-ITG"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="VlI-yn-fRA" secondAttribute="centerX" id="xG8-3F-DB6"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="VlI-yn-fRA" secondAttribute="centerY" id="zTR-tX-tUd"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="VlI-yn-fRA" secondAttribute="trailing" id="8to-Xg-Fpk"/>
<constraint firstItem="VlI-yn-fRA" firstAttribute="leading" secondItem="reR-UB-Vhd" secondAttribute="leading" id="NBt-yN-jju"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstAttribute="bottom" secondItem="reR-UB-Vhd" secondAttribute="bottom" id="QJc-ks-XRd"/>
<constraint firstAttribute="trailing" secondItem="reR-UB-Vhd" secondAttribute="trailing" id="c9M-0w-Iwd"/>
<constraint firstItem="reR-UB-Vhd" firstAttribute="top" secondItem="2" secondAttribute="top" id="ul6-p2-sBG"/>
<constraint firstItem="reR-UB-Vhd" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="x12-Mx-tCB"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -715,6 +749,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="reR-UB-Vhd" id="Xkl-Ct-Vgi"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 van 999 transfers" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="URk-7X-LQR">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="C3W-zm-Bjv">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="URk-7X-LQR">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Kleur">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Groep">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="DL snelheid">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="UL snelheid">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Kleur">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Groep">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="DL snelheid">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="UL snelheid">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="zkP-Jz-I9Q">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="195" y="5" width="126" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 van 999 transfers" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="zkP-Jz-I9Q" secondAttribute="centerX" id="AOb-5r-rz3"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="zkP-Jz-I9Q" secondAttribute="centerY" id="VaZ-ed-u1e"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="Y33-Js-BlM"/>
<constraint firstAttribute="height" constant="24" id="bhC-kX-Xm3"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="zkP-Jz-I9Q" secondAttribute="centerY" id="d6p-aN-djO"/>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="jHa-ft-4uY"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="zkP-Jz-I9Q" secondAttribute="centerY" id="lKc-28-Ssf"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="zkP-Jz-I9Q" secondAttribute="leading" constant="8" id="vWb-UW-Rmf"/>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="zkP-Jz-I9Q" secondAttribute="centerY" id="zXO-HN-1us"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="zkP-Jz-I9Q" secondAttribute="trailing" id="22j-P8-Cyb"/>
<constraint firstItem="zkP-Jz-I9Q" firstAttribute="leading" secondItem="C3W-zm-Bjv" secondAttribute="leading" id="E6q-Mz-mTI"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstItem="C3W-zm-Bjv" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="h1p-hd-4n6"/>
<constraint firstItem="C3W-zm-Bjv" firstAttribute="top" secondItem="2" secondAttribute="top" id="hnB-Kg-Xbo"/>
<constraint firstAttribute="bottom" secondItem="C3W-zm-Bjv" secondAttribute="bottom" id="rK2-tU-UOB"/>
<constraint firstAttribute="trailing" secondItem="C3W-zm-Bjv" secondAttribute="trailing" id="swD-Co-kWV"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -697,6 +731,7 @@ CA
</menu>
</menuItem>
</items>
<point key="canvasLocation" x="139" y="355"/>
</menu>
<customObject id="206" userLabel="Controller" customClass="Controller">
<connections>
@ -714,6 +749,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="C3W-zm-Bjv" id="Nwc-c1-4Ft"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 de 999 transferências" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bXh-4t-XVd">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Cor">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Grupo">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Vel. DL">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Vel. UL">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Cor">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Grupo">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Vel. DL">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Vel. UL">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="72u-ed-NK5">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="184" y="5" width="148" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 de 999 transferências" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="73C-xw-XDU"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="72u-ed-NK5" secondAttribute="centerY" id="IeX-8K-Fv1"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="72u-ed-NK5" secondAttribute="centerY" id="OAc-tD-NHb"/>
<constraint firstAttribute="height" constant="24" id="fPS-GC-Ltq"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="72u-ed-NK5" secondAttribute="leading" constant="8" id="fxf-Lx-QAk"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="72u-ed-NK5" secondAttribute="centerX" id="jPt-lL-Pae"/>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="72u-ed-NK5" secondAttribute="centerY" id="jej-OI-G3h"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="72u-ed-NK5" secondAttribute="centerY" id="kFA-Fb-5CL"/>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="x63-rZ-Dcx"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstItem="72u-ed-NK5" firstAttribute="leading" secondItem="bXh-4t-XVd" secondAttribute="leading" id="Bbl-ME-f3U"/>
<constraint firstAttribute="trailing" secondItem="72u-ed-NK5" secondAttribute="trailing" id="tlN-mA-hX5"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstItem="bXh-4t-XVd" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="3oC-nC-SZC"/>
<constraint firstAttribute="bottom" secondItem="bXh-4t-XVd" secondAttribute="bottom" id="ldo-hE-uXS"/>
<constraint firstAttribute="trailing" secondItem="bXh-4t-XVd" secondAttribute="trailing" id="spZ-52-Auf"/>
<constraint firstItem="bXh-4t-XVd" firstAttribute="top" secondItem="2" secondAttribute="top" id="y9C-LG-J3K"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -715,6 +749,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="bXh-4t-XVd" id="ohi-qd-Hc5"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,184 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 из 999 раздач" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="gSc-ID-Ehp">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="cxH-Xd-aWF">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Цвет">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Группа">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Скорость скачивания">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Скорость раздачи">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Цвет">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Группа">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Скорость скачивания">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Скорость раздачи">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="gME-WF-axg">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="202" y="5" width="111" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 из 999 раздач" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="gME-WF-axg" secondAttribute="centerY" id="HZ2-aB-E0E"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="gME-WF-axg" secondAttribute="leading" constant="8" id="PKR-UU-O3d"/>
<constraint firstAttribute="height" constant="24" id="PVO-Fs-zff"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="a5h-m0-7Du"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="gME-WF-axg" secondAttribute="centerY" id="dKj-zY-5vS"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="gME-WF-axg" secondAttribute="centerY" id="dwJ-gK-HaH"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="gME-WF-axg" secondAttribute="centerY" id="klg-Gq-c6X"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="gME-WF-axg" secondAttribute="centerX" id="o8f-Cb-7Ia"/>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" symbolic="YES" id="qkq-v2-L93"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstItem="gME-WF-axg" firstAttribute="leading" secondItem="gSc-ID-Ehp" secondAttribute="leading" id="28s-xC-DCF"/>
<constraint firstAttribute="trailing" secondItem="gME-WF-axg" secondAttribute="trailing" id="HxF-jc-DA0"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstAttribute="bottom" secondItem="gSc-ID-Ehp" secondAttribute="bottom" id="6p2-AM-WkM"/>
<constraint firstItem="gSc-ID-Ehp" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="cpx-6d-drj"/>
<constraint firstAttribute="trailing" secondItem="gSc-ID-Ehp" secondAttribute="trailing" id="mDd-Il-BCK"/>
<constraint firstItem="gSc-ID-Ehp" firstAttribute="top" secondItem="2" secondAttribute="top" id="onD-X7-qHe"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -715,6 +749,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="gSc-ID-Ehp" id="xrq-6L-EeT"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>

View File

@ -23,150 +23,185 @@
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<autoresizingMask key="autoresizingMask"/>
<subviews>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="36" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="72" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="0.0" y="3" width="36" height="18"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="118" y="5" width="279" height="14"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 aktarım (Toplam 999)" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
<scrollView fixedFrame="YES" borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<clipView key="contentView" copiesOnScroll="NO" id="yiD-0W-bBh">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<stackView distribution="fill" orientation="vertical" alignment="leading" spacing="0.0" horizontalStackHuggingPriority="249.99998474121094" verticalStackHuggingPriority="249.99998474121094" detachesHiddenViews="YES" translatesAutoresizingMaskIntoConstraints="NO" id="aVc-2G-nIg">
<rect key="frame" x="0.0" y="0.0" width="515" height="248"/>
<subviews>
<scrollView borderType="none" autohidesScrollers="YES" horizontalLineScroll="65" horizontalPageScroll="0.0" verticalLineScroll="65" verticalPageScroll="0.0" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3088">
<rect key="frame" x="0.0" y="24" width="515" height="224"/>
<clipView key="contentView" copiesOnScroll="NO" id="yiD-0W-bBh">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Color">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Group">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="DL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="UL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<subviews>
<outlineView verticalHuggingPriority="750" allowsExpansionToolTips="YES" alternatingRowBackgroundColors="YES" columnReordering="NO" columnResizing="NO" autosaveColumns="NO" rowHeight="62" indentationPerLevel="16" indentationMarkerFollowsCell="NO" outlineTableColumn="3093" id="3091" customClass="TorrentTableView">
<rect key="frame" x="0.0" y="0.0" width="515" height="224"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<size key="intercellSpacing" width="2" height="3"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
<color key="gridColor" white="0.80241936000000003" alpha="1" colorSpace="calibratedWhite"/>
<tableColumns>
<tableColumn identifier="Color" editable="NO" width="29" minWidth="16" maxWidth="3000" id="3093">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Color">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" white="0.33333299" alpha="1" colorSpace="calibratedWhite"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3146">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="Group" editable="NO" width="296" minWidth="48" maxWidth="3.4028229999999999e+38" id="3140">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="Group">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" sendsActionOnEndEditing="YES" alignment="left" title="Text Cell" id="3145">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
<tableColumnResizingMask key="resizingMask" resizeWithTable="YES"/>
</tableColumn>
<tableColumn identifier="DL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3124">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3138">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="DL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3126">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="DL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3127">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
<tableColumn identifier="UL Image" editable="NO" width="10" minWidth="10" maxWidth="10" id="3133">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<imageCell key="dataCell" controlSize="small" refusesFirstResponder="YES" alignment="left" imageAlignment="right" imageScaling="proportionallyDown" image="imageCell:3146:image" id="3139">
<font key="font" metaFont="system"/>
</imageCell>
</tableColumn>
<tableColumn identifier="UL" editable="NO" width="64" minWidth="64" maxWidth="64" id="3135">
<tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="UL Speed">
<color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
</tableHeaderCell>
<textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" alignment="left" title="Text Cell" id="3136">
<font key="font" metaFont="system"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</tableColumn>
</tableColumns>
<connections>
<outlet property="dataSource" destination="206" id="3097"/>
<outlet property="fActionMenu" destination="1936" id="3098"/>
<outlet property="fContextNoRow" destination="589" id="3101"/>
<outlet property="fContextRow" destination="456" id="3100"/>
<outlet property="fController" destination="206" id="3102"/>
<outlet property="fDownloadMenu" destination="1945" id="3103"/>
<outlet property="fGlobalLimitItem" destination="3190" id="3193"/>
<outlet property="fPriorityMenu" destination="3197" id="3201"/>
<outlet property="fRatioMenu" destination="2018" id="3105"/>
<outlet property="fUploadMenu" destination="1951" id="3104"/>
</connections>
</outlineView>
</subviews>
</clipView>
<scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="3090">
<rect key="frame" x="-100" y="-100" width="451" height="15"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
<scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="3089">
<rect key="frame" x="453" y="0.0" width="15" height="173"/>
<autoresizingMask key="autoresizingMask"/>
</scroller>
</scrollView>
<customView translatesAutoresizingMaskIntoConstraints="NO" id="NY9-vb-fJx">
<rect key="frame" x="0.0" y="0.0" width="515" height="24"/>
<subviews>
<button translatesAutoresizingMaskIntoConstraints="NO" id="2690">
<rect key="frame" x="34" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="TortoiseTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3048">
<behavior key="behavior" pushIn="YES" changeContents="YES" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="speedLimitChanged:" target="206" id="3180"/>
<binding destination="1815" name="value" keyPath="values.SpeedLimit" id="3179"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3420">
<rect key="frame" x="60" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="CleanupTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3421">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="clearCompleted:" target="206" id="3424"/>
</connections>
</button>
<button translatesAutoresizingMaskIntoConstraints="NO" id="3435">
<rect key="frame" x="8" y="3" width="18" height="18"/>
<buttonCell key="cell" type="squareTextured" bezelStyle="texturedSquare" image="EllipsisTemplate" imagePosition="only" alignment="center" state="on" imageScaling="proportionallyDown" inset="2" id="3436">
<behavior key="behavior" lightByContents="YES"/>
<font key="font" metaFont="system"/>
</buttonCell>
<connections>
<action selector="showGlobalPopover:" target="206" id="3439"/>
</connections>
</button>
<textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2700">
<rect key="frame" x="185" y="5" width="146" height="14"/>
<textFieldCell key="cell" controlSize="small" lineBreakMode="truncatingTail" allowsUndo="NO" sendsActionOnEndEditing="YES" alignment="center" title="999 aktarım (Toplam 999)" usesSingleLineMode="YES" id="3049">
<font key="font" metaFont="smallSystem"/>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
</textField>
</subviews>
<constraints>
<constraint firstItem="3420" firstAttribute="leading" secondItem="2690" secondAttribute="trailing" constant="8" id="Bd0-gM-ZAf"/>
<constraint firstAttribute="height" constant="24" id="IwC-nE-ObL"/>
<constraint firstItem="2700" firstAttribute="centerX" secondItem="NY9-vb-fJx" secondAttribute="centerX" id="Kyy-Yc-eJG"/>
<constraint firstItem="3420" firstAttribute="centerY" secondItem="NY9-vb-fJx" secondAttribute="centerY" id="MsM-w5-kLp"/>
<constraint firstItem="2690" firstAttribute="centerY" secondItem="NY9-vb-fJx" secondAttribute="centerY" id="UAa-1l-nGX"/>
<constraint firstItem="3435" firstAttribute="centerY" secondItem="NY9-vb-fJx" secondAttribute="centerY" id="edr-N7-66M"/>
<constraint firstItem="2690" firstAttribute="leading" secondItem="3435" secondAttribute="trailing" constant="8" symbolic="YES" id="egH-7G-d9V"/>
<constraint firstItem="3435" firstAttribute="leading" secondItem="NY9-vb-fJx" secondAttribute="leading" constant="8" id="gBK-cC-Nve"/>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="NY9-vb-fJx" secondAttribute="centerY" id="lMR-mB-chV"/>
<constraint firstItem="2700" firstAttribute="centerY" secondItem="NY9-vb-fJx" secondAttribute="centerY" id="z8Y-SW-P6C"/>
</constraints>
</customView>
</subviews>
<constraints>
<constraint firstAttribute="trailing" secondItem="NY9-vb-fJx" secondAttribute="trailing" id="80s-eG-Yf4"/>
<constraint firstItem="NY9-vb-fJx" firstAttribute="leading" secondItem="aVc-2G-nIg" secondAttribute="leading" id="XZq-9S-5rK"/>
</constraints>
<visibilityPriorities>
<integer value="1000"/>
<integer value="1000"/>
</visibilityPriorities>
<customSpacing>
<real value="3.4028234663852886e+38"/>
<real value="3.4028234663852886e+38"/>
</customSpacing>
</stackView>
</subviews>
<constraints>
<constraint firstAttribute="bottom" secondItem="aVc-2G-nIg" secondAttribute="bottom" id="2Nn-wh-D9z"/>
<constraint firstAttribute="trailing" secondItem="aVc-2G-nIg" secondAttribute="trailing" id="Kcb-EE-1p1"/>
<constraint firstItem="aVc-2G-nIg" firstAttribute="leading" secondItem="2" secondAttribute="leading" id="Muw-dU-7od"/>
<constraint firstItem="aVc-2G-nIg" firstAttribute="top" secondItem="2" secondAttribute="top" id="zRd-Ep-Y7C"/>
</constraints>
</view>
<connections>
<outlet property="menu" destination="29" id="2687"/>
@ -715,6 +750,7 @@ CA
<outlet property="fShareMenuItem" destination="s5v-VO-G2y" id="NnB-Cl-bNp"/>
<outlet property="fSortMenu" destination="1895" id="3440"/>
<outlet property="fSpeedLimitButton" destination="2690" id="2703"/>
<outlet property="fStackView" destination="aVc-2G-nIg" id="4e9-Rq-2ZV"/>
<outlet property="fTableView" destination="3091" id="3118"/>
<outlet property="fTotalTorrentsField" destination="2700" id="2702"/>
<outlet property="fWindow" destination="21" id="246"/>