transmission/macosx/TorrentTableView.m

916 lines
30 KiB
Mathematica
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
2009-01-10 23:37:37 +00:00
* Copyright (c) 2005-2009 Transmission authors and contributors
2007-09-16 01:02:06 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#import "TorrentTableView.h"
#import "TorrentCell.h"
#import "Torrent.h"
#import "TorrentGroup.h"
#import "FileListNode.h"
#import "QuickLookController.h"
2007-09-16 01:02:06 +00:00
#define MAX_GROUP 999999
2007-09-16 01:02:06 +00:00
#define ACTION_MENU_GLOBAL_TAG 101
#define ACTION_MENU_UNLIMITED_TAG 102
#define ACTION_MENU_LIMIT_TAG 103
2008-10-29 01:18:03 +00:00
#define GROUP_SPEED_IMAGE_COLUMN_WIDTH 8.0f
#define GROUP_RATIO_IMAGE_COLUMN_WIDTH 10.0f
#define TOGGLE_PROGRESS_SECONDS 0.175
2007-09-16 01:02:06 +00:00
@interface TorrentTableView (Private)
- (BOOL) pointInGroupStatusRect: (NSPoint) point;
- (void) setGroupStatusColumns;
- (void) createFileMenu: (NSMenu *) menu forFiles: (NSArray *) files;
2007-09-16 01:02:06 +00:00
@end
@implementation TorrentTableView
- (id) initWithCoder: (NSCoder *) decoder
{
if ((self = [super initWithCoder: decoder]))
{
fDefaults = [NSUserDefaults standardUserDefaults];
fTorrentCell = [[TorrentCell alloc] init];
2008-02-07 21:26:04 +00:00
NSData * groupData = [fDefaults dataForKey: @"CollapsedGroups"];
if (groupData)
2008-02-10 16:56:13 +00:00
fCollapsedGroups = [[NSUnarchiver unarchiveObjectWithData: groupData] mutableCopy];
2008-02-07 21:26:04 +00:00
else
fCollapsedGroups = [[NSMutableIndexSet alloc] init];
2008-01-15 04:45:57 +00:00
fMouseControlRow = -1;
fMouseRevealRow = -1;
fMouseActionRow = -1;
fActionPushedRow = -1;
2007-09-16 01:02:06 +00:00
[self setDelegate: self];
2008-10-29 01:18:03 +00:00
fPiecesBarPercent = [fDefaults boolForKey: @"PiecesBar"] ? 1.0f : 0.0f;
2007-09-16 01:02:06 +00:00
}
return self;
}
- (void) dealloc
{
[fCollapsedGroups release];
[fPiecesBarAnimation release];
[fMenuTorrent release];
[fSelectedValues release];
[fTorrentCell release];
2007-09-16 01:02:06 +00:00
[super dealloc];
}
- (void) awakeFromNib
{
//set group columns to show ratio, needs to be in awakeFromNib to size columns correctly
[self setGroupStatusColumns];
}
2008-10-29 01:18:03 +00:00
- (BOOL) isGroupCollapsed: (NSInteger) value
{
2008-06-11 03:28:14 +00:00
if (value == -1)
value = MAX_GROUP;
return [fCollapsedGroups containsIndex: value];
}
2008-10-29 01:18:03 +00:00
- (void) removeCollapsedGroup: (NSInteger) value
{
2008-06-11 03:28:14 +00:00
if (value == -1)
value = MAX_GROUP;
[fCollapsedGroups removeIndex: value];
}
- (void) removeAllCollapsedGroups
{
[fCollapsedGroups removeAllIndexes];
}
2008-02-07 21:26:04 +00:00
- (void) saveCollapsedGroups
{
[fDefaults setObject: [NSArchiver archivedDataWithRootObject: fCollapsedGroups] forKey: @"CollapsedGroups"];
}
- (BOOL) outlineView: (NSOutlineView *) outlineView isGroupItem: (id) item
{
return ![item isKindOfClass: [Torrent class]];
}
- (CGFloat) outlineView: (NSOutlineView *) outlineView heightOfRowByItem: (id) item
{
return [item isKindOfClass: [Torrent class]] ? [self rowHeight] : GROUP_SEPARATOR_HEIGHT;
}
- (NSCell *) outlineView: (NSOutlineView *) outlineView dataCellForTableColumn: (NSTableColumn *) tableColumn item: (id) item
{
2008-02-18 20:53:10 +00:00
BOOL group = ![item isKindOfClass: [Torrent class]];
if (!tableColumn)
return !group ? fTorrentCell : nil;
else
return group ? [tableColumn dataCellForRow: [self rowForItem: item]] : nil;
}
- (void) outlineView: (NSOutlineView *) outlineView willDisplayCell: (id) cell forTableColumn: (NSTableColumn *) tableColumn
item: (id) item
2007-09-16 01:02:06 +00:00
{
2008-02-18 20:53:10 +00:00
if ([item isKindOfClass: [Torrent class]])
{
[cell setRepresentedObject: item];
2008-12-26 05:57:51 +00:00
const NSInteger row = [self rowForItem: item];
[cell setControlHover: row == fMouseControlRow];
[cell setRevealHover: row == fMouseRevealRow];
[cell setActionHover: row == fMouseActionRow];
2008-02-18 20:53:10 +00:00
[cell setActionPushed: row == fActionPushedRow];
}
else
{
2008-06-05 02:16:33 +00:00
NSString * ident = [tableColumn identifier];
if ([ident isEqualToString: @"UL Image"] || [ident isEqualToString: @"DL Image"])
{
//ensure arrows are white only when selected
NSImage * image = [cell image];
BOOL template = [cell backgroundStyle] == NSBackgroundStyleLowered;
if ([image isTemplate] != template)
{
[image setTemplate: template];
[cell setImage: nil];
[cell setImage: image];
}
}
2008-02-18 20:53:10 +00:00
}
2007-09-16 01:02:06 +00:00
}
- (NSRect) frameOfCellAtColumn: (NSInteger) column row: (NSInteger) row
{
2008-12-26 05:57:51 +00:00
if (column == -1)
return [self rectOfRow: row];
else
2008-02-19 02:10:20 +00:00
{
NSRect rect = [super frameOfCellAtColumn: column row: row];
//adjust placement for proper vertical alignment
if (column == [self columnWithIdentifier: @"Group"])
2008-10-29 01:18:03 +00:00
rect.size.height -= 1.0f;
2008-02-19 02:10:20 +00:00
return rect;
}
}
- (NSString *) outlineView: (NSOutlineView *) outlineView typeSelectStringForTableColumn: (NSTableColumn *) tableColumn item: (id) item
2008-01-23 21:33:54 +00:00
{
return [item isKindOfClass: [Torrent class]] ? [item name]
2008-02-19 05:27:15 +00:00
: [[self preparedCellAtColumn: [self columnWithIdentifier: @"Group"] row: [self rowForItem: item]] stringValue];
2008-01-23 21:33:54 +00:00
}
2008-02-28 21:28:48 +00:00
- (NSString *) outlineView: (NSOutlineView *) outlineView toolTipForCell: (NSCell *) cell rect: (NSRectPointer) rect
tableColumn: (NSTableColumn *) column item: (id) item mouseLocation: (NSPoint) mouseLocation
{
NSString * ident = [column identifier];
if ([ident isEqualToString: @"DL"] || [ident isEqualToString: @"DL Image"])
return NSLocalizedString(@"Download speed", "Torrent table -> group row -> tooltip");
else if ([ident isEqualToString: @"UL"] || [ident isEqualToString: @"UL Image"])
return [fDefaults boolForKey: @"DisplayGroupRowRatio"] ? NSLocalizedString(@"Ratio", "Torrent table -> group row -> tooltip")
: NSLocalizedString(@"Upload speed", "Torrent table -> group row -> tooltip");
else if (ident)
{
2008-10-29 01:18:03 +00:00
NSInteger count = [[item torrents] count];
if (count == 1)
return NSLocalizedString(@"1 transfer", "Torrent table -> group row -> tooltip");
else
return [NSString stringWithFormat: NSLocalizedString(@"%d transfers", "Torrent table -> group row -> tooltip"), count];
}
2008-02-28 21:28:48 +00:00
else
return nil;
}
- (void) updateTrackingAreas
{
[super updateTrackingAreas];
[self removeButtonTrackingAreas];
NSRange rows = [self rowsInRect: [self visibleRect]];
if (rows.length == 0)
return;
NSPoint mouseLocation = [self convertPoint: [[self window] convertScreenToBase: [NSEvent mouseLocation]] fromView: nil];
2008-10-12 22:17:27 +00:00
for (NSUInteger row = rows.location; row < NSMaxRange(rows); row++)
{
if (![[self itemAtRow: row] isKindOfClass: [Torrent class]])
continue;
NSDictionary * userInfo = [NSDictionary dictionaryWithObject: [NSNumber numberWithInt: row] forKey: @"Row"];
TorrentCell * cell = (TorrentCell *)[self preparedCellAtColumn: -1 row: row];
[cell addTrackingAreasForView: self inRect: [self rectOfRow: row] withUserInfo: userInfo mouseLocation: mouseLocation];
}
}
- (void) removeButtonTrackingAreas
{
fMouseControlRow = -1;
fMouseRevealRow = -1;
fMouseActionRow = -1;
2008-12-26 15:11:37 +00:00
for (NSTrackingArea * area in [self trackingAreas])
{
if ([area owner] == self && [[area userInfo] objectForKey: @"Row"])
[self removeTrackingArea: area];
}
}
2008-10-29 01:18:03 +00:00
- (void) setControlButtonHover: (NSInteger) row
{
fMouseControlRow = row;
if (row >= 0)
[self setNeedsDisplayInRect: [self rectOfRow: row]];
}
2008-10-29 01:18:03 +00:00
- (void) setRevealButtonHover: (NSInteger) row
{
fMouseRevealRow = row;
if (row >= 0)
[self setNeedsDisplayInRect: [self rectOfRow: row]];
}
2008-10-29 01:18:03 +00:00
- (void) setActionButtonHover: (NSInteger) row
{
fMouseActionRow = row;
if (row >= 0)
[self setNeedsDisplayInRect: [self rectOfRow: row]];
}
- (void) mouseEntered: (NSEvent *) event
{
2008-01-15 04:45:57 +00:00
NSDictionary * dict = (NSDictionary *)[event userData];
NSNumber * row;
2008-01-15 04:45:57 +00:00
if ((row = [dict objectForKey: @"Row"]))
{
2008-10-29 01:18:03 +00:00
NSInteger rowVal = [row intValue];
NSString * type = [dict objectForKey: @"Type"];
if ([type isEqualToString: @"Action"])
fMouseActionRow = rowVal;
else if ([type isEqualToString: @"Control"])
2008-01-15 04:45:57 +00:00
fMouseControlRow = rowVal;
else
fMouseRevealRow = rowVal;
2008-01-15 04:45:57 +00:00
[self setNeedsDisplayInRect: [self rectOfRow: rowVal]];
}
}
- (void) mouseExited: (NSEvent *) event
{
NSDictionary * dict = (NSDictionary *)[event userData];
NSNumber * row;
if ((row = [dict objectForKey: @"Row"]))
{
NSString * type = [dict objectForKey: @"Type"];
if ([type isEqualToString: @"Action"])
fMouseActionRow = -1;
else if ([type isEqualToString: @"Control"])
fMouseControlRow = -1;
else
fMouseRevealRow = -1;
2008-01-15 04:45:57 +00:00
[self setNeedsDisplayInRect: [self rectOfRow: [row intValue]]];
}
}
- (void) outlineViewSelectionIsChanging: (NSNotification *) notification
{
if (fSelectedValues)
[self selectValues: fSelectedValues];
}
- (void) outlineViewItemDidExpand: (NSNotification *) notification
{
2008-10-29 01:18:03 +00:00
NSInteger value = [[[notification userInfo] objectForKey: @"NSObject"] groupIndex];
if (value < 0)
value = MAX_GROUP;
if ([fCollapsedGroups containsIndex: value])
{
[fCollapsedGroups removeIndex: value];
[[NSNotificationCenter defaultCenter] postNotificationName: @"OutlineExpandCollapse" object: self];
}
}
- (void) outlineViewItemDidCollapse: (NSNotification *) notification
{
2008-10-29 01:18:03 +00:00
NSInteger value = [[[notification userInfo] objectForKey: @"NSObject"] groupIndex];
if (value < 0)
value = MAX_GROUP;
[fCollapsedGroups addIndex: value];
[[NSNotificationCenter defaultCenter] postNotificationName: @"OutlineExpandCollapse" object: self];
}
2007-09-16 01:02:06 +00:00
- (void) mouseDown: (NSEvent *) event
{
NSPoint point = [self convertPoint: [event locationInWindow] fromView: nil];
2008-11-17 03:20:15 +00:00
const NSInteger row = [self rowAtPoint: point];
//check to toggle group status before anything else
if ([self pointInGroupStatusRect: point])
{
[fDefaults setBool: ![fDefaults boolForKey: @"DisplayGroupRowRatio"] forKey: @"DisplayGroupRowRatio"];
[self setGroupStatusColumns];
return;
}
2008-12-26 05:57:51 +00:00
const BOOL pushed = row != -1 && (fMouseActionRow == row || fMouseRevealRow == row || fMouseControlRow == row);
//if pushing a button, don't change the selected rows
if (pushed)
fSelectedValues = [[self selectedValues] retain];
[super mouseDown: event];
[fSelectedValues release];
fSelectedValues = nil;
//avoid weird behavior when showing menu by doing this after mouse down
2008-12-26 05:57:51 +00:00
if (row != -1 && fMouseActionRow == row)
2007-09-16 01:02:06 +00:00
{
fActionPushedRow = row;
2007-09-16 01:02:06 +00:00
[self setNeedsDisplayInRect: [self rectOfRow: row]]; //ensure button is pushed down
[self displayTorrentMenuForEvent: event];
fActionPushedRow = -1;
2007-09-16 01:02:06 +00:00
[self setNeedsDisplayInRect: [self rectOfRow: row]];
}
else if (!pushed && [event clickCount] == 2) //double click
{
id item = nil;
if (row != -1)
item = [self itemAtRow: row];
if (!item || [item isKindOfClass: [Torrent class]])
[fController showInfo: nil];
else
{
if ([self isItemExpanded: item])
[self collapseItem: item];
else
[self expandItem: item];
}
}
else;
2007-09-16 01:02:06 +00:00
}
- (void) selectValues: (NSArray *) values
{
NSMutableIndexSet * indexSet = [NSMutableIndexSet indexSet];
2008-12-26 15:11:37 +00:00
for (id item in values)
{
if ([item isKindOfClass: [Torrent class]])
{
NSInteger index = [self rowForItem: item];
if (index != -1)
[indexSet addIndex: index];
}
else
{
2008-10-29 01:18:03 +00:00
NSInteger group = [item groupIndex];
2008-10-12 22:17:27 +00:00
for (NSInteger i = 0; i < [self numberOfRows]; i++)
{
2008-06-05 02:16:33 +00:00
if ([indexSet containsIndex: i])
continue;
id tableItem = [self itemAtRow: i];
if (![tableItem isKindOfClass: [Torrent class]] && group == [tableItem groupIndex])
{
[indexSet addIndex: i];
break;
}
}
}
}
[self selectRowIndexes: indexSet byExtendingSelection: NO];
}
- (NSArray *) selectedValues
{
NSIndexSet * selectedIndexes = [self selectedRowIndexes];
NSMutableArray * values = [NSMutableArray arrayWithCapacity: [selectedIndexes count]];
2008-10-12 22:17:27 +00:00
for (NSUInteger i = [selectedIndexes firstIndex]; i != NSNotFound; i = [selectedIndexes indexGreaterThanIndex: i])
[values addObject: [self itemAtRow: i]];
return values;
}
- (NSArray *) selectedTorrents
{
NSIndexSet * selectedIndexes = [self selectedRowIndexes];
2008-06-05 02:16:33 +00:00
NSMutableArray * torrents = [NSMutableArray arrayWithCapacity: [selectedIndexes count]]; //take a shot at guessing capacity
2008-10-12 22:17:27 +00:00
for (NSUInteger i = [selectedIndexes firstIndex]; i != NSNotFound; i = [selectedIndexes indexGreaterThanIndex: i])
{
id item = [self itemAtRow: i];
if ([item isKindOfClass: [Torrent class]])
2008-06-05 02:16:33 +00:00
[torrents addObject: item];
else
{
NSArray * groupTorrents = [item torrents];
2008-06-05 02:16:33 +00:00
[torrents addObjectsFromArray: groupTorrents];
i += [groupTorrents count];
}
}
return torrents;
}
2007-09-16 01:02:06 +00:00
- (NSMenu *) menuForEvent: (NSEvent *) event
{
2008-10-29 01:18:03 +00:00
NSInteger row = [self rowAtPoint: [self convertPoint: [event locationInWindow] fromView: nil]];
2007-09-16 01:02:06 +00:00
if (row >= 0)
{
if (![self isRowSelected: row])
[self selectRowIndexes: [NSIndexSet indexSetWithIndex: row] byExtendingSelection: NO];
return fContextRow;
}
else
{
[self deselectAll: self];
return fContextNoRow;
}
}
//make sure that the pause buttons become orange when holding down the option key
- (void) flagsChanged: (NSEvent *) event
{
[self display];
[super flagsChanged: event];
}
//option-command-f will focus the filter bar's search field
- (void) keyDown: (NSEvent *) event
{
2008-11-04 00:34:13 +00:00
const unichar firstChar = [[event charactersIgnoringModifiers] characterAtIndex: 0];
2008-06-17 17:17:15 +00:00
if (firstChar == 'f' && [event modifierFlags] & NSAlternateKeyMask && [event modifierFlags] & NSCommandKeyMask)
[fController focusFilterField];
else
{
//handle quicklook
if (firstChar == ' ')
[[QuickLookController quickLook] toggleQuickLook];
else if (firstChar == NSRightArrowFunctionKey)
[[QuickLookController quickLook] pressRight];
else if (firstChar == NSLeftArrowFunctionKey)
[[QuickLookController quickLook] pressLeft];
else;
[super keyDown: event];
}
}
2008-10-29 01:18:03 +00:00
- (NSRect) iconRectForRow: (NSInteger) row
{
return [fTorrentCell iconRectForBounds: [self rectOfRow: row]];
}
- (void) paste: (id) sender
{
NSURL * url;
if ((url = [NSURL URLFromPasteboard: [NSPasteboard generalPasteboard]]))
[fController openURL: url];
}
- (BOOL) validateMenuItem: (NSMenuItem *) menuItem
{
SEL action = [menuItem action];
if (action == @selector(paste:))
return [[[NSPasteboard generalPasteboard] types] containsObject: NSURLPboardType];
return YES;
}
- (void) toggleControlForTorrent: (Torrent *) torrent
{
if ([torrent isActive])
[fController stopTorrents: [NSArray arrayWithObject: torrent]];
else
{
if ([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask)
[fController resumeTorrentsNoWait: [NSArray arrayWithObject: torrent]];
else if ([torrent waitingToStart])
[fController stopTorrents: [NSArray arrayWithObject: torrent]];
else
[fController resumeTorrents: [NSArray arrayWithObject: torrent]];
}
2007-12-17 16:06:20 +00:00
}
2007-09-16 01:02:06 +00:00
- (void) displayTorrentMenuForEvent: (NSEvent *) event
{
2008-10-29 01:18:03 +00:00
NSInteger row = [self rowAtPoint: [self convertPoint: [event locationInWindow] fromView: nil]];
2007-09-16 01:02:06 +00:00
if (row < 0)
return;
NSInteger numberOfNonFileItems = [fActionMenu numberOfItems];
2007-09-16 01:02:06 +00:00
//update file action menu
fMenuTorrent = [[self itemAtRow: row] retain];
[self createFileMenu: fActionMenu forFiles: [fMenuTorrent fileList]];
2007-09-16 01:02:06 +00:00
//place menu below button
2008-02-18 20:53:10 +00:00
NSRect rect = [fTorrentCell iconRectForBounds: [self rectOfRow: row]];
2007-09-16 01:02:06 +00:00
NSPoint location = rect.origin;
2008-10-29 01:18:03 +00:00
location.y += rect.size.height + 5.0f;
2007-09-16 01:02:06 +00:00
location = [self convertPoint: location toView: nil];
NSEvent * newEvent = [NSEvent mouseEventWithType: [event type] location: location
modifierFlags: [event modifierFlags] timestamp: [event timestamp] windowNumber: [event windowNumber]
context: [event context] eventNumber: [event eventNumber] clickCount: [event clickCount] pressure: [event pressure]];
[NSMenu popUpContextMenu: fActionMenu withEvent: newEvent forView: self];
2008-10-12 22:17:27 +00:00
for (NSInteger i = [fActionMenu numberOfItems]-1; i >= numberOfNonFileItems; i--)
[fActionMenu removeItemAtIndex: i];
2007-09-16 01:02:06 +00:00
[fMenuTorrent release];
fMenuTorrent = nil;
}
- (void) menuNeedsUpdate: (NSMenu *) menu
{
//this method seems to be called when it shouldn't be
if (!fMenuTorrent || ![menu supermenu])
return;
if (menu == fUploadMenu || menu == fDownloadMenu)
{
NSMenuItem * item;
if ([menu numberOfItems] == 4)
{
2008-10-29 01:18:03 +00:00
const NSInteger speedLimitActionValue[] = { 0, 5, 10, 20, 30, 40, 50, 75, 100, 150, 200, 250, 500, 750, -1 };
2008-10-12 22:17:27 +00:00
for (NSInteger i = 0; speedLimitActionValue[i] != -1; i++)
{
item = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: NSLocalizedString(@"%d KB/s",
"Action menu -> upload/download limit"), speedLimitActionValue[i]] action: @selector(setQuickLimit:)
keyEquivalent: @""];
[item setTarget: self];
[item setRepresentedObject: [NSNumber numberWithInt: speedLimitActionValue[i]]];
[menu addItem: item];
[item release];
}
}
2007-09-16 01:02:06 +00:00
BOOL upload = menu == fUploadMenu;
2008-10-29 01:18:03 +00:00
NSInteger mode = [fMenuTorrent speedMode: upload];
2007-09-16 01:02:06 +00:00
item = [menu itemWithTag: ACTION_MENU_LIMIT_TAG];
2007-09-16 01:02:06 +00:00
[item setState: mode == TR_SPEEDLIMIT_SINGLE ? NSOnState : NSOffState];
[item setTitle: [NSString stringWithFormat: NSLocalizedString(@"Limit (%d KB/s)",
"torrent action menu -> upload/download limit"), [fMenuTorrent speedLimit: upload]]];
2007-09-16 01:02:06 +00:00
item = [menu itemWithTag: ACTION_MENU_UNLIMITED_TAG];
[item setState: mode == TR_SPEEDLIMIT_UNLIMITED ? NSOnState : NSOffState];
item = [menu itemWithTag: ACTION_MENU_GLOBAL_TAG];
[item setState: mode == TR_SPEEDLIMIT_GLOBAL ? NSOnState : NSOffState];
}
else if (menu == fRatioMenu)
{
NSMenuItem * item;
if ([menu numberOfItems] == 4)
{
2008-10-29 01:18:03 +00:00
const CGFloat ratioLimitActionValue[] = { 0.25f, 0.5f, 0.75f, 1.0f, 1.5f, 2.0f, 3.0f, -1.0f };
2008-10-29 01:18:03 +00:00
for (NSInteger i = 0; ratioLimitActionValue[i] != -1.0f; i++)
{
2008-03-24 00:06:54 +00:00
item = [[NSMenuItem alloc] initWithTitle: [NSString localizedStringWithFormat: @"%.2f", ratioLimitActionValue[i]]
2008-01-10 15:53:02 +00:00
action: @selector(setQuickRatio:) keyEquivalent: @""];
[item setTarget: self];
[item setRepresentedObject: [NSNumber numberWithFloat: ratioLimitActionValue[i]]];
[menu addItem: item];
[item release];
}
}
2008-10-29 01:18:03 +00:00
NSInteger mode = [fMenuTorrent ratioSetting];
2007-09-16 01:02:06 +00:00
item = [menu itemWithTag: ACTION_MENU_LIMIT_TAG];
2007-09-16 01:02:06 +00:00
[item setState: mode == NSOnState ? NSOnState : NSOffState];
2008-03-24 00:06:54 +00:00
[item setTitle: [NSString localizedStringWithFormat: NSLocalizedString(@"Stop at Ratio (%.2f)",
"torrent action menu -> ratio stop"), [fMenuTorrent ratioLimit]]];
2007-09-16 01:02:06 +00:00
item = [menu itemWithTag: ACTION_MENU_UNLIMITED_TAG];
[item setState: mode == NSOffState ? NSOnState : NSOffState];
item = [menu itemWithTag: ACTION_MENU_GLOBAL_TAG];
[item setState: mode == NSMixedState ? NSOnState : NSOffState];
}
2008-05-23 16:56:03 +00:00
else //assume the menu is part of the file list
2007-09-16 01:02:06 +00:00
{
if ([menu numberOfItems] > 0)
return;
2007-09-16 01:02:06 +00:00
NSMenu * supermenu = [menu supermenu];
[self createFileMenu: menu forFiles: [(FileListNode *)[[supermenu itemAtIndex: [supermenu indexOfItemWithSubmenu: menu]]
representedObject] children]];
2007-09-16 01:02:06 +00:00
}
}
//alternating rows - first row after group row is white
- (void) highlightSelectionInClipRect: (NSRect) clipRect
{
NSColor * altColor = [[NSColor controlAlternatingRowBackgroundColors] objectAtIndex: 1];
[altColor set];
2008-05-23 19:17:01 +00:00
NSRect visibleRect = clipRect;
NSRange rows = [self rowsInRect: visibleRect];
BOOL start = YES;
if (rows.length > 0)
{
//determine what the first row color should be
if ([[self itemAtRow: rows.location] isKindOfClass: [Torrent class]])
{
2008-10-12 22:17:27 +00:00
for (NSInteger i = rows.location-1; i>=0; i--)
{
if (![[self itemAtRow: i] isKindOfClass: [Torrent class]])
break;
start = !start;
}
}
else
{
rows.location++;
rows.length--;
}
2008-10-12 22:17:27 +00:00
NSInteger i;
for (i = rows.location; i < NSMaxRange(rows); i++)
{
if (![[self itemAtRow: i] isKindOfClass: [Torrent class]])
{
start = YES;
continue;
}
if (!start && ![self isRowSelected: i])
NSRectFill([self rectOfRow: i]);
start = !start;
}
2008-10-29 01:18:03 +00:00
CGFloat newY = NSMaxY([self rectOfRow: i-1]);
visibleRect.size.height -= newY - visibleRect.origin.y;
visibleRect.origin.y = newY;
}
//remaining visible rows continue alternating
const CGFloat height = [self rowHeight] + [self intercellSpacing].height;
const NSInteger numberOfRects = ceil(visibleRect.size.height / height);
visibleRect.size.height = height;
if (start)
visibleRect.origin.y += height;
for (NSInteger i = start ? 1 : 0; i < numberOfRects; i += 2)
{
NSRectFill(visibleRect);
visibleRect.origin.y += 2.0 * height;
}
[super highlightSelectionInClipRect: clipRect];
}
2007-09-16 01:02:06 +00:00
- (void) setQuickLimitMode: (id) sender
{
2009-02-17 04:00:53 +00:00
tr_speedlimit mode;
2007-10-11 12:06:46 +00:00
switch ([sender tag])
{
case ACTION_MENU_UNLIMITED_TAG:
mode = TR_SPEEDLIMIT_UNLIMITED;
break;
case ACTION_MENU_LIMIT_TAG:
mode = TR_SPEEDLIMIT_SINGLE;
break;
case ACTION_MENU_GLOBAL_TAG:
mode = TR_SPEEDLIMIT_GLOBAL;
break;
default:
return;
}
2007-09-16 01:02:06 +00:00
[fMenuTorrent setSpeedMode: mode upload: [sender menu] == fUploadMenu];
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateOptions" object: nil];
2007-09-16 01:02:06 +00:00
}
- (void) setQuickLimit: (id) sender
{
2009-02-17 04:00:53 +00:00
const BOOL upload = [sender menu] == fUploadMenu;
2007-09-16 01:02:06 +00:00
[fMenuTorrent setSpeedMode: TR_SPEEDLIMIT_SINGLE upload: upload];
[fMenuTorrent setSpeedLimit: [[sender representedObject] intValue] upload: upload];
2007-09-16 01:02:06 +00:00
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateOptions" object: nil];
2007-09-16 01:02:06 +00:00
}
- (void) setQuickRatioMode: (id) sender
{
2008-10-29 01:18:03 +00:00
NSInteger mode;
2007-10-11 12:06:46 +00:00
switch ([sender tag])
{
case ACTION_MENU_UNLIMITED_TAG:
mode = NSOffState;
break;
case ACTION_MENU_LIMIT_TAG:
mode = NSOnState;
break;
case ACTION_MENU_GLOBAL_TAG:
mode = NSMixedState;
break;
default:
return;
}
2007-09-16 01:02:06 +00:00
[fMenuTorrent setRatioSetting: mode];
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateOptions" object: nil];
2007-09-16 01:02:06 +00:00
}
- (void) setQuickRatio: (id) sender
{
[fMenuTorrent setRatioSetting: NSOnState];
[fMenuTorrent setRatioLimit: [[sender representedObject] floatValue]];
2007-09-16 01:02:06 +00:00
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateOptions" object: nil];
2007-09-16 01:02:06 +00:00
}
- (void) checkFile: (id) sender
{
NSIndexSet * indexSet = [(FileListNode *)[sender representedObject] indexes];
2007-09-16 01:02:06 +00:00
[fMenuTorrent setFileCheckState: [sender state] != NSOnState ? NSOnState : NSOffState forIndexes: indexSet];
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateStats" object: nil];
}
- (void) moveDataFile: (id) sender
{
[fController moveDataFiles: [NSArray arrayWithObject: fMenuTorrent]];
}
- (void) togglePiecesBar
{
//stop previous animation
if (fPiecesBarAnimation)
[fPiecesBarAnimation release];
2008-06-10 18:08:57 +00:00
NSMutableArray * progressMarks = [NSMutableArray arrayWithCapacity: 16];
2008-10-29 01:18:03 +00:00
for (NSAnimationProgress i = 0.0625f; i <= 1.0f; i += 0.0625f)
[progressMarks addObject: [NSNumber numberWithFloat: i]];
fPiecesBarAnimation = [[NSAnimation alloc] initWithDuration: TOGGLE_PROGRESS_SECONDS animationCurve: NSAnimationEaseIn];
[fPiecesBarAnimation setAnimationBlockingMode: NSAnimationNonblocking];
[fPiecesBarAnimation setProgressMarks: progressMarks];
[fPiecesBarAnimation setDelegate: self];
[fPiecesBarAnimation startAnimation];
}
- (void) animationDidEnd: (NSAnimation *) animation
{
if (animation == fPiecesBarAnimation)
{
[fPiecesBarAnimation release];
fPiecesBarAnimation = nil;
}
}
- (void) animation: (NSAnimation *) animation didReachProgressMark: (NSAnimationProgress) progress
{
if (animation == fPiecesBarAnimation)
{
if ([fDefaults boolForKey: @"PiecesBar"])
fPiecesBarPercent = progress;
else
2008-10-29 01:18:03 +00:00
fPiecesBarPercent = 1.0f - progress;
[self reloadData];
}
}
2008-10-29 01:18:03 +00:00
- (CGFloat) piecesBarPercent
{
return fPiecesBarPercent;
}
2007-09-16 01:02:06 +00:00
@end
@implementation TorrentTableView (Private)
- (BOOL) pointInGroupStatusRect: (NSPoint) point
{
2008-10-29 01:18:03 +00:00
NSInteger row = [self rowAtPoint: point];
if (row < 0 || [[self itemAtRow: row] isKindOfClass: [Torrent class]])
return NO;
NSString * ident = [[[self tableColumns] objectAtIndex: [self columnAtPoint: point]] identifier];
return [ident isEqualToString: @"UL"] || [ident isEqualToString: @"UL Image"]
|| [ident isEqualToString: @"DL"] || [ident isEqualToString: @"DL Image"];
}
- (void) setGroupStatusColumns
{
BOOL ratio = [fDefaults boolForKey: @"DisplayGroupRowRatio"];
[[self tableColumnWithIdentifier: @"DL"] setHidden: ratio];
[[self tableColumnWithIdentifier: @"DL Image"] setHidden: ratio];
//change size of image column
NSTableColumn * ulImageTableColumn = [self tableColumnWithIdentifier: @"UL Image"];
2008-10-29 01:18:03 +00:00
CGFloat oldWidth = [ulImageTableColumn width], newWidth = ratio ? GROUP_RATIO_IMAGE_COLUMN_WIDTH : GROUP_SPEED_IMAGE_COLUMN_WIDTH;
if (oldWidth != newWidth)
{
[ulImageTableColumn setWidth: newWidth];
NSTableColumn * groupTableColumn = [self tableColumnWithIdentifier: @"Group"];
[groupTableColumn setWidth: [groupTableColumn width] - (newWidth - oldWidth)];
}
}
- (void) createFileMenu: (NSMenu *) menu forFiles: (NSArray *) files
2007-09-16 01:02:06 +00:00
{
2008-12-26 15:11:37 +00:00
for (FileListNode * node in files)
2007-09-16 01:02:06 +00:00
{
NSString * name = [node name];
2007-09-16 01:02:06 +00:00
NSMenuItem * item = [[NSMenuItem alloc] initWithTitle: name action: @selector(checkFile:) keyEquivalent: @""];
NSImage * icon;
if (![node isFolder])
icon = [[NSWorkspace sharedWorkspace] iconForFileType: [name pathExtension]];
else
2007-09-16 01:02:06 +00:00
{
NSMenu * itemMenu = [[NSMenu alloc] initWithTitle: name];
[itemMenu setAutoenablesItems: NO];
[item setSubmenu: itemMenu];
[itemMenu setDelegate: self];
[itemMenu release];
2007-09-16 01:02:06 +00:00
icon = [[NSWorkspace sharedWorkspace] iconForFileType: NSFileTypeForHFSTypeCode('fldr')];
2007-09-16 01:02:06 +00:00
}
[item setRepresentedObject: node];
[icon setScalesWhenResized: YES];
[icon setSize: NSMakeSize(16.0, 16.0)];
[item setImage: icon];
NSIndexSet * indexSet = [node indexes];
2007-09-16 01:02:06 +00:00
[item setState: [fMenuTorrent checkForFiles: indexSet]];
[item setEnabled: [fMenuTorrent canChangeDownloadCheckForFiles: indexSet]];
[menu addItem: item];
[item release];
2007-09-16 01:02:06 +00:00
}
}
@end