transmission/macosx/TorrentTableView.m

685 lines
24 KiB
Mathematica
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
2008-01-02 16:55:05 +00:00
* Copyright (c) 2005-2008 Transmission authors and contributors
2007-09-16 01:02:06 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#import "TorrentTableView.h"
#import "TorrentCell.h"
#import "Controller.h"
#import "Torrent.h"
#import "NSApplicationAdditions.h"
2007-09-16 01:02:06 +00:00
#import "NSMenuAdditions.h"
#define ACTION_MENU_GLOBAL_TAG 101
#define ACTION_MENU_UNLIMITED_TAG 102
#define ACTION_MENU_LIMIT_TAG 103
@interface TorrentTableView (Private)
/*- (BOOL) pointInControlRect: (NSPoint) point;
- (BOOL) pointInRevealRect: (NSPoint) point;*/
- (BOOL) pointInActionRect: (NSPoint) point;
2007-09-16 01:02:06 +00:00
- (BOOL) pointInIconRect: (NSPoint) point;
- (BOOL) pointInProgressRect: (NSPoint) point;
2007-09-16 01:02:06 +00:00
- (BOOL) pointInMinimalStatusRect: (NSPoint) point;
- (void) updateFileMenu: (NSMenu *) menu forFiles: (NSArray *) files;
@end
@implementation TorrentTableView
- (id) initWithCoder: (NSCoder *) decoder
{
if ((self = [super initWithCoder: decoder]))
{
fDefaults = [NSUserDefaults standardUserDefaults];
fMouseRow = -1;
2007-09-16 01:02:06 +00:00
[self setDelegate: self];
}
return self;
}
- (void) dealloc
{
[fMouseCell release];
2007-09-16 01:02:06 +00:00
[fKeyStrokes release];
[fMenuTorrent release];
[super dealloc];
}
- (void) setTorrents: (NSArray *) torrents
{
fTorrents = torrents;
}
2007-12-17 16:06:20 +00:00
- (void) tableView: (NSTableView *) tableView willDisplayCell: (id) cell forTableColumn: (NSTableColumn *) tableColumn row: (int) row
2007-09-16 01:02:06 +00:00
{
[cell setRepresentedObject: [fTorrents objectAtIndex: row]];
}
- (NSString *) tableView: (NSTableView *) tableView typeSelectStringForTableColumn: (NSTableColumn *) tableColumn row: (int) row
{
return [[fTorrents objectAtIndex: row] name];
}
- (void) updateTrackingAreas
{
[super updateTrackingAreas];
NSEnumerator * enumerator = [[self trackingAreas] objectEnumerator];
NSTrackingArea * area;
while ((area = [enumerator nextObject]))
{
if ([area owner] == self && [[area userInfo] objectForKey: @"Row"])
[self removeTrackingArea: area];
}
NSRange visibleRows = [self rowsInRect: [self visibleRect]];
if (visibleRows.length == 0)
return;
int col = [self columnWithIdentifier: @"Torrent"];
NSPoint mouseLocation = [self convertPoint: [[self window] convertScreenToBase: [NSEvent mouseLocation]] fromView: nil];
int row;
for (row = visibleRows.location; row < NSMaxRange(visibleRows); row++)
{
TorrentCell * cell = (TorrentCell *)[self preparedCellAtColumn: col row: row];
NSDictionary * userInfo = [NSDictionary dictionaryWithObject: [NSNumber numberWithInt: row] forKey: @"Row"];
[cell addTrackingAreasForView: self inRect: [self frameOfCellAtColumn: col row: row] withUserInfo: userInfo
mouseLocation: mouseLocation];
}
}
- (void) mouseEntered: (NSEvent *) event
{
NSNumber * row;
if ((row = [(NSDictionary *)[event userData] objectForKey: @"Row"]))
{
int rowVal = [row intValue];
TorrentCell * cell = (TorrentCell *)[self preparedCellAtColumn: [self columnWithIdentifier: @"Torrent"] row: rowVal];
if (fMouseCell != cell)
{
[fMouseCell release];
fMouseRow = rowVal;
fMouseCell = [cell copy];
[fMouseCell setRepresentedObject: [fTorrents objectAtIndex: rowVal]];
[fMouseCell setControlView: self];
[fMouseCell mouseEntered: event];
}
}
}
- (void) mouseExited: (NSEvent *) event
{
NSNumber * row;
if ((row = [(NSDictionary *)[event userData] objectForKey: @"Row"]))
{
TorrentCell * cell = (TorrentCell *)[self preparedCellAtColumn: [self columnWithIdentifier: @"Torrent"]
row: [row intValue]];
[cell setControlView: self];
[cell mouseExited: event];
[fMouseCell release];
fMouseCell = nil;
fMouseRow = -1;
}
}
- (NSCell *) preparedCellAtColumn: (NSInteger) column row: (NSInteger) row
{
if (![self selectedCell] && row == fMouseRow && column == [self columnWithIdentifier: @"Torrent"])
return fMouseCell;
else
return [super preparedCellAtColumn: column row: row];
}
- (void) updateCell: (NSCell *) cell
{
if (cell == fMouseCell)
[self setNeedsDisplayInRect: [self frameOfCellAtColumn: [self columnWithIdentifier: @"Torrent"] row: fMouseRow]];
else
[super updateCell: cell];
}
2007-09-16 01:02:06 +00:00
- (void) mouseDown: (NSEvent *) event
{
[super mouseDown: event];
NSPoint point = [self convertPoint: [event locationInWindow] fromView: nil];
if ([self pointInActionRect: point])
2007-09-16 01:02:06 +00:00
{
int row = [self rowAtPoint: point];
2007-09-16 01:02:06 +00:00
[self setNeedsDisplayInRect: [self rectOfRow: row]]; //ensure button is pushed down
[self displayTorrentMenuForEvent: event];
[self setNeedsDisplayInRect: [self rectOfRow: row]];
}
else
{
if ([self pointInMinimalStatusRect: point])
2007-09-16 01:02:06 +00:00
{
2007-11-04 16:45:17 +00:00
[fDefaults setBool: ![fDefaults boolForKey: @"DisplaySmallStatusRegular"] forKey: @"DisplaySmallStatusRegular"];
2007-09-16 01:02:06 +00:00
[self reloadData];
}
//acts as if mouseUp:
if ([NSApp isOnLeopardOrBetter] && [event clickCount] == 2)
{
if ([self pointInProgressRect: point])
{
[fDefaults setBool: ![fDefaults boolForKey: @"DisplayStatusProgressSelected"] forKey: @"DisplayStatusProgressSelected"];
[self reloadData];
}
else if ([self pointInIconRect: point])
[[fTorrents objectAtIndex: [self rowAtPoint: point]] revealData];
else
[fController showInfo: nil];
}
2007-09-16 01:02:06 +00:00
}
}
//only applies for paths in mouseDown: where the super mouseDown: isn't called
2007-09-16 01:02:06 +00:00
- (void) mouseUp: (NSEvent *) event
{
if (![NSApp isOnLeopardOrBetter] && [event clickCount] == 2)
{
NSPoint point = [self convertPoint: [event locationInWindow] fromView: nil];
int row = [self rowAtPoint: point];
if ([self pointInProgressRect: point])
{
[fDefaults setBool: ![fDefaults boolForKey: @"DisplayStatusProgressSelected"] forKey: @"DisplayStatusProgressSelected"];
[self reloadData];
}
else if ([self pointInIconRect: point])
[[fTorrents objectAtIndex: row] revealData];
else
[fController showInfo: nil];
}
2007-09-16 01:02:06 +00:00
[super mouseUp: event];
}
- (NSMenu *) menuForEvent: (NSEvent *) event
{
int row = [self rowAtPoint: [self convertPoint: [event locationInWindow] fromView: nil]];
if (row >= 0)
{
if (![self isRowSelected: row])
[self selectRowIndexes: [NSIndexSet indexSetWithIndex: row] byExtendingSelection: NO];
return fContextRow;
}
else
{
[self deselectAll: self];
return fContextNoRow;
}
}
- (void) flagsChanged: (NSEvent *) event
{
[self display];
[super flagsChanged: event];
}
2007-09-16 01:02:06 +00:00
- (void) keyDown: (NSEvent *) event
{
//this is handled by the delegate in Leopard
if ([NSApp isOnLeopardOrBetter])
{
[super keyDown: event];
return;
}
if (!fKeyStrokes)
fKeyStrokes = [[NSMutableArray alloc] init];
2007-09-16 01:02:06 +00:00
unichar newChar = [[event characters] characterAtIndex: 0];
if (newChar == ' ' || [[NSCharacterSet alphanumericCharacterSet] characterIsMember: newChar]
|| [[NSCharacterSet symbolCharacterSet] characterIsMember: newChar]
|| [[NSCharacterSet punctuationCharacterSet] characterIsMember: newChar])
{
if ([fKeyStrokes count] > 0 && [event timestamp] - [[fKeyStrokes lastObject] timestamp] > 1.0)
[fKeyStrokes removeAllObjects];
[fKeyStrokes addObject: event];
[self interpretKeyEvents: fKeyStrokes];
}
else
{
[fKeyStrokes removeAllObjects];
2007-09-16 01:02:06 +00:00
[super keyDown: event];
}
}
- (void) insertText: (NSString *) text
{
//this is handled by the delegate in Leopard
if ([NSApp isOnLeopardOrBetter])
{
[super insertText: text];
return;
}
2007-09-16 01:02:06 +00:00
//sort torrents by name before finding closest match
NSSortDescriptor * nameDescriptor = [[[NSSortDescriptor alloc] initWithKey: @"name" ascending: YES
selector: @selector(caseInsensitiveCompare:)] autorelease];
NSArray * descriptors = [[NSArray alloc] initWithObjects: nameDescriptor, nil];
NSArray * tempTorrents = [fTorrents sortedArrayUsingDescriptors: descriptors];
[descriptors release];
text = [text lowercaseString];
2007-09-16 01:02:06 +00:00
//select torrent closest to text that isn't before text alphabetically
NSEnumerator * enumerator = [tempTorrents objectEnumerator];
Torrent * torrent;
while ((torrent = [enumerator nextObject]))
if ([[[torrent name] lowercaseString] hasPrefix: text])
2007-09-16 01:02:06 +00:00
{
int row = [fTorrents indexOfObject: torrent];
[self selectRow: row byExtendingSelection: NO];
[self scrollRowToVisible: row];
return;
2007-09-16 01:02:06 +00:00
}
}
2007-12-17 16:06:20 +00:00
#warning get rect to actually change
/*- (NSString *) tableView: (NSTableView *) tableView toolTipForCell: (NSCell *) cell rect: (NSRectPointer) rect
2007-12-17 16:06:20 +00:00
tableColumn: (NSTableColumn *) tableColumn row: (NSInteger) row mouseLocation: (NSPoint) mousePoint
{
if ([self pointInActionRect: mousePoint])
{
*rect = [self actionRectForRow: row];
return NSLocalizedString(@"Shortcuts for changing transfer settings.", "Torrent Table -> tooltip");
}
else if ([self pointInPauseRect: mousePoint])
{
*rect = [self pauseRectForRow: row];
Torrent * torrent = [fTorrents objectAtIndex: row];
if ([torrent isActive])
return NSLocalizedString(@"Pause the transfer.", "Torrent Table -> tooltip");
else
{
if ([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask && [fDefaults boolForKey: @"Queue"])
return NSLocalizedString(@"Resume the transfer right away.", "Torrent Table -> tooltip");
else if ([torrent waitingToStart])
return NSLocalizedString(@"Stop waiting to start.", "Torrent Table -> tooltip");
else
return NSLocalizedString(@"Resume the transfer.", "Torrent Table -> tooltip");
}
}
else if ([self pointInRevealRect: mousePoint])
{
*rect = [self revealRectForRow: row];
return NSLocalizedString(@"Reveal the data file in Finder.", "Torrent Table -> tooltip");
}
return nil;
}*/
- (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
{
int row = [self rowAtPoint: [self convertPoint: [event locationInWindow] fromView: nil]];
if (row < 0)
return;
//get and update file menu
fMenuTorrent = [[fTorrents objectAtIndex: row] retain];
NSMenu * fileMenu = [fMenuTorrent fileMenu];
[self updateFileMenu: fileMenu forFiles: [fMenuTorrent fileList]];
//add file menu items to action menu
2007-10-12 23:18:21 +00:00
NSRange range = NSMakeRange(0, [fileMenu numberOfItems]);
2007-12-17 16:06:20 +00:00
[fActionMenu appendItemsFromMenu: fileMenu atIndexes: [NSIndexSet indexSetWithIndexesInRange: range] atBottom: YES];
2007-09-16 01:02:06 +00:00
//place menu below button
NSRect rect = [[[self tableColumnWithIdentifier: @"Torrent"] dataCell] actionButtonRectForBounds:
[self frameOfCellAtColumn: 0 row: row]];
2007-09-16 01:02:06 +00:00
NSPoint location = rect.origin;
location.y += rect.size.height + 5.0;
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];
//move file menu items back to the torrent's file menu
range.location = [fActionMenu numberOfItems] - range.length;
2007-12-17 16:06:20 +00:00
[fileMenu appendItemsFromMenu: fActionMenu atIndexes: [NSIndexSet indexSetWithIndexesInRange: range] atBottom: YES];
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)
{
const int speedLimitActionValue[] = { 0, 5, 10, 20, 30, 40, 50, 75, 100, 150, 200, 250, 500, 750, -1 };
int i;
for (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;
2007-09-20 20:24:33 +00:00
int 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)
{
const float ratioLimitActionValue[] = { 0.25, 0.5, 0.75, 1.0, 1.5, 2.0, 3.0, -1.0 };
int i;
for (i = 0; ratioLimitActionValue[i] != -1.0; i++)
{
2008-01-10 15:53:02 +00:00
item = [[NSMenuItem alloc] initWithTitle: [NSString stringWithFormat: @"%.2f", ratioLimitActionValue[i]]
action: @selector(setQuickRatio:) keyEquivalent: @""];
[item setTarget: self];
[item setRepresentedObject: [NSNumber numberWithFloat: ratioLimitActionValue[i]]];
[menu addItem: item];
[item release];
}
}
2007-09-16 01:02:06 +00:00
int mode = [fMenuTorrent ratioSetting];
item = [menu itemWithTag: ACTION_MENU_LIMIT_TAG];
2007-09-16 01:02:06 +00:00
[item setState: mode == NSOnState ? NSOnState : NSOffState];
[item setTitle: [NSString stringWithFormat: 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];
}
else if ([menu supermenu]) //assume the menu is part of the file list
{
NSMenu * supermenu = [menu supermenu];
[self updateFileMenu: menu forFiles: [[[supermenu itemAtIndex: [supermenu indexOfItemWithSubmenu: menu]]
representedObject] objectForKey: @"Children"]];
}
else;
}
- (void) setQuickLimitMode: (id) sender
{
2007-09-20 20:24:33 +00:00
int 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
{
BOOL upload = [sender menu] == fUploadMenu;
[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
{
int 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 = [[sender representedObject] objectForKey: @"Indexes"];
[fMenuTorrent setFileCheckState: [sender state] != NSOnState ? NSOnState : NSOffState forIndexes: indexSet];
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateStats" object: nil];
}
@end
@implementation TorrentTableView (Private)
/*- (BOOL) pointInControlRect: (NSPoint) point
{
int row = [self rowAtPoint: point];
if (row < 0)
return NO;
TorrentCell * cell = [[self tableColumnWithIdentifier: @"Torrent"] dataCell];
return NSPointInRect(point, [cell controlButtonRectForBounds: [self frameOfCellAtColumn: 0 row: row]]);
}
- (BOOL) pointInRevealRect: (NSPoint) point
{
int row = [self rowAtPoint: point];
if (row < 0)
return NO;
TorrentCell * cell = [[self tableColumnWithIdentifier: @"Torrent"] dataCell];
return NSPointInRect(point, [cell revealButtonRectForBounds: [self frameOfCellAtColumn: 0 row: row]]);
}*/
- (BOOL) pointInActionRect: (NSPoint) point
2007-09-16 01:02:06 +00:00
{
int row = [self rowAtPoint: point];
2007-09-16 01:02:06 +00:00
if (row < 0)
return NO;
2007-09-16 01:02:06 +00:00
TorrentCell * cell = [[self tableColumnWithIdentifier: @"Torrent"] dataCell];
return NSPointInRect(point, [cell actionButtonRectForBounds: [self frameOfCellAtColumn: 0 row: row]]);
2007-09-16 01:02:06 +00:00
}
- (BOOL) pointInIconRect: (NSPoint) point
{
int row = [self rowAtPoint: point];
if (row < 0)
return NO;
TorrentCell * cell = [[self tableColumnWithIdentifier: @"Torrent"] dataCell];
return NSPointInRect(point, [cell iconRectForBounds: [self frameOfCellAtColumn: 0 row: row]]);
}
- (BOOL) pointInProgressRect: (NSPoint) point
{
int row = [self rowAtPoint: point];
if (row < 0 || [fDefaults boolForKey: @"SmallView"])
return NO;
TorrentCell * cell;
if ([NSApp isOnLeopardOrBetter])
cell = (TorrentCell * )[self preparedCellAtColumn: [self columnWithIdentifier: @"Torrent"] row: row];
else
{
cell = [[self tableColumnWithIdentifier: @"Torrent"] dataCell];
[cell setRepresentedObject: [fTorrents objectAtIndex: row]];
}
return NSPointInRect(point, [cell progressRectForBounds: [self frameOfCellAtColumn: 0 row: row]]);
}
2007-09-16 01:02:06 +00:00
- (BOOL) pointInMinimalStatusRect: (NSPoint) point
{
int row = [self rowAtPoint: point];
if (row < 0 || ![fDefaults boolForKey: @"SmallView"])
return NO;
TorrentCell * cell;
if ([NSApp isOnLeopardOrBetter])
cell = (TorrentCell * )[self preparedCellAtColumn: [self columnWithIdentifier: @"Torrent"] row: row];
else
{
cell = [[self tableColumnWithIdentifier: @"Torrent"] dataCell];
[cell setRepresentedObject: [fTorrents objectAtIndex: row]];
}
2007-09-16 01:02:06 +00:00
return NSPointInRect(point, [cell minimalStatusRectForBounds: [self frameOfCellAtColumn: 0 row: row]]);
}
- (void) updateFileMenu: (NSMenu *) menu forFiles: (NSArray *) files
{
BOOL create = [menu numberOfItems] <= 0;
NSEnumerator * enumerator = [files objectEnumerator];
NSDictionary * dict;
NSMenuItem * item;
while ((dict = [enumerator nextObject]))
{
NSString * name = [dict objectForKey: @"Name"];
if (create)
{
2007-12-17 16:06:20 +00:00
item = [[NSMenuItem alloc] initWithTitle: name action: @selector(checkFile:) keyEquivalent: @""];
2007-09-16 01:02:06 +00:00
NSImage * icon;
if (![[dict objectForKey: @"IsFolder"] boolValue])
icon = [[NSWorkspace sharedWorkspace] iconForFileType: [name pathExtension]];
2007-09-16 01:02:06 +00:00
else
{
NSMenu * itemMenu = [[NSMenu alloc] initWithTitle: name];
[itemMenu setAutoenablesItems: NO];
[item setSubmenu: itemMenu];
[itemMenu setDelegate: self];
[itemMenu release];
icon = [[NSWorkspace sharedWorkspace] iconForFileType: NSFileTypeForHFSTypeCode('fldr')];
2007-09-16 01:02:06 +00:00
}
[item setRepresentedObject: dict];
[icon setScalesWhenResized: YES];
[icon setSize: NSMakeSize(16.0, 16.0)];
[item setImage: icon];
[menu addItem: item];
[item release];
}
else
item = [menu itemWithTitle: name];
NSIndexSet * indexSet = [dict objectForKey: @"Indexes"];
[item setState: [fMenuTorrent checkForFiles: indexSet]];
[item setEnabled: [fMenuTorrent canChangeDownloadCheckForFiles: indexSet]];
}
}
@end