transmission/macosx/TorrentCell.m

881 lines
34 KiB
Mathematica
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
2012-01-14 17:12:04 +00:00
* Copyright (c) 2006-2012 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 "TorrentCell.h"
#import "GroupsController.h"
#import "NSImageAdditions.h"
2007-09-16 01:02:06 +00:00
#import "NSStringAdditions.h"
#import "ProgressGradients.h"
2009-10-11 03:36:50 +00:00
#import "Torrent.h"
#import "TorrentTableView.h"
2007-09-16 01:02:06 +00:00
2009-12-20 21:02:58 +00:00
#define BAR_HEIGHT 12.0
2007-09-16 01:02:06 +00:00
2009-12-20 21:02:58 +00:00
#define IMAGE_SIZE_REG 32.0
#define IMAGE_SIZE_MIN 16.0
#define ERROR_IMAGE_SIZE 20.0
2007-09-16 01:02:06 +00:00
2009-12-20 21:02:58 +00:00
#define NORMAL_BUTTON_WIDTH 14.0
#define ACTION_BUTTON_WIDTH 16.0
#define PRIORITY_ICON_WIDTH 12.0
#define PRIORITY_ICON_HEIGHT 12.0
//ends up being larger than font height
2009-12-20 21:02:58 +00:00
#define HEIGHT_TITLE 16.0
#define HEIGHT_STATUS 12.0
#define PADDING_HORIZONTAL 5.0
#define PADDING_BETWEEN_BUTTONS 3.0
#define PADDING_BETWEEN_IMAGE_AND_TITLE (PADDING_HORIZONTAL + 1.0)
#define PADDING_BETWEEN_IMAGE_AND_BAR PADDING_HORIZONTAL
#define PADDING_BETWEEN_TITLE_AND_PRIORITY 6.0
2009-12-20 21:02:58 +00:00
#define PADDING_ABOVE_TITLE 4.0
#define PADDING_BETWEEN_TITLE_AND_MIN_STATUS 3.0
2009-12-20 21:02:58 +00:00
#define PADDING_BETWEEN_TITLE_AND_PROGRESS 1.0
#define PADDING_BETWEEN_PROGRESS_AND_BAR 2.0
#define PADDING_BETWEEN_BAR_AND_STATUS 2.0
2010-03-21 15:16:11 +00:00
#define PADDING_BETWEEN_BAR_AND_EDGE_MIN 3.0
#define PADDING_EXPANSION_FRAME 2.0
2009-12-20 21:02:58 +00:00
#define PIECES_TOTAL_PERCENT 0.6
2008-06-09 21:20:01 +00:00
#define MAX_PIECES (18*18)
2007-09-16 01:02:06 +00:00
@interface TorrentCell (Private)
- (void) drawBar: (NSRect) barRect;
- (void) drawRegularBar: (NSRect) barRect;
- (void) drawPiecesBar: (NSRect) barRect;
2007-09-16 01:02:06 +00:00
- (NSRect) rectForMinimalStatusWithString: (NSAttributedString *) string inBounds: (NSRect) bounds;
- (NSRect) rectForTitleWithString: (NSAttributedString *) string withRightBound: (CGFloat) rightBound inBounds: (NSRect) bounds;
- (NSRect) rectForProgressWithStringInBounds: (NSRect) bounds;
- (NSRect) rectForStatusWithStringInBounds: (NSRect) bounds;
- (NSRect) barRectRegForBounds: (NSRect) bounds;
- (NSRect) barRectMinForBounds: (NSRect) bounds;
2009-12-12 03:11:48 +00:00
- (NSRect) controlButtonRectForBounds: (NSRect) bounds;
- (NSRect) revealButtonRectForBounds: (NSRect) bounds;
- (NSRect) actionButtonRectForBounds: (NSRect) bounds;
2007-09-16 01:02:06 +00:00
- (NSAttributedString *) attributedTitle;
- (NSAttributedString *) attributedStatusString: (NSString *) string;
2007-09-16 01:02:06 +00:00
- (NSString *) buttonString;
- (NSString *) statusString;
- (NSString *) minimalStatusString;
2007-09-16 01:02:06 +00:00
@end
@implementation TorrentCell
//only called once and the main table is always needed, so don't worry about releasing
2007-09-16 01:02:06 +00:00
- (id) init
{
if ((self = [super init]))
{
fDefaults = [NSUserDefaults standardUserDefaults];
NSMutableParagraphStyle * paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
[paragraphStyle setLineBreakMode: NSLineBreakByTruncatingMiddle];
2009-12-20 21:02:58 +00:00
fTitleAttributes = [[NSMutableDictionary alloc] initWithCapacity: 3];
[fTitleAttributes setObject: [NSFont messageFontOfSize: 12.0] forKey: NSFontAttributeName];
[fTitleAttributes setObject: paragraphStyle forKey: NSParagraphStyleAttributeName];
fStatusAttributes = [[NSMutableDictionary alloc] initWithCapacity: 3];
[fStatusAttributes setObject: [NSFont messageFontOfSize: 9.0] forKey: NSFontAttributeName];
[fStatusAttributes setObject: paragraphStyle forKey: NSParagraphStyleAttributeName];
[paragraphStyle release];
2007-09-16 01:02:06 +00:00
fBluePieceColor = [[NSColor colorWithCalibratedRed: 0.0 green: 0.4 blue: 0.8 alpha: 1.0] retain];
fBarBorderColor = [[NSColor colorWithCalibratedWhite: 0.0 alpha: 0.2] retain];
fBarMinimalBorderColor = [[NSColor colorWithCalibratedWhite: 0.0 alpha: 0.015] retain];
2007-09-16 01:02:06 +00:00
}
return self;
}
- (id) copyWithZone: (NSZone *) zone
{
id value = [super copyWithZone: zone];
[value setRepresentedObject: [self representedObject]];
return value;
}
2007-09-16 01:02:06 +00:00
- (NSRect) iconRectForBounds: (NSRect) bounds
{
2009-12-12 03:11:48 +00:00
const CGFloat imageSize = [fDefaults boolForKey: @"SmallView"] ? IMAGE_SIZE_MIN : IMAGE_SIZE_REG;
return NSMakeRect(NSMinX(bounds) + PADDING_HORIZONTAL, ceil(NSMidY(bounds) - imageSize * 0.5),
2009-12-20 21:02:58 +00:00
imageSize, imageSize);
2007-09-16 01:02:06 +00:00
}
- (NSUInteger) hitTestForEvent: (NSEvent *) event inRect: (NSRect) cellFrame ofView: (NSView *) controlView
{
NSPoint point = [controlView convertPoint: [event locationInWindow] fromView: nil];
if (NSMouseInRect(point, [self controlButtonRectForBounds: cellFrame], [controlView isFlipped])
|| NSMouseInRect(point, [self revealButtonRectForBounds: cellFrame], [controlView isFlipped]))
return NSCellHitContentArea | NSCellHitTrackableArea;
return NSCellHitContentArea;
}
+ (BOOL) prefersTrackingUntilMouseUp
{
return YES;
}
- (BOOL) trackMouse: (NSEvent *) event inRect: (NSRect) cellFrame ofView: (NSView *) controlView untilMouseUp: (BOOL) flag
{
fTracking = YES;
[self setControlView: controlView];
NSPoint point = [controlView convertPoint: [event locationInWindow] fromView: nil];
2009-11-02 01:40:39 +00:00
const NSRect controlRect= [self controlButtonRectForBounds: cellFrame];
const BOOL checkControl = NSMouseInRect(point, controlRect, [controlView isFlipped]);
2009-11-02 01:40:39 +00:00
const NSRect revealRect = [self revealButtonRectForBounds: cellFrame];
const BOOL checkReveal = NSMouseInRect(point, revealRect, [controlView isFlipped]);
[(TorrentTableView *)controlView removeTrackingAreas];
while ([event type] != NSLeftMouseUp)
{
point = [controlView convertPoint: [event locationInWindow] fromView: nil];
if (checkControl)
{
2009-11-02 01:40:39 +00:00
const BOOL inControlButton = NSMouseInRect(point, controlRect, [controlView isFlipped]);
if (fMouseDownControlButton != inControlButton)
{
fMouseDownControlButton = inControlButton;
[controlView setNeedsDisplayInRect: cellFrame];
}
}
else if (checkReveal)
{
2009-11-02 01:40:39 +00:00
const BOOL inRevealButton = NSMouseInRect(point, revealRect, [controlView isFlipped]);
if (fMouseDownRevealButton != inRevealButton)
{
fMouseDownRevealButton = inRevealButton;
[controlView setNeedsDisplayInRect: cellFrame];
}
}
else;
//send events to where necessary
if ([event type] == NSMouseEntered || [event type] == NSMouseExited)
[NSApp sendEvent: event];
event = [[controlView window] nextEventMatchingMask:
(NSLeftMouseUpMask | NSLeftMouseDraggedMask | NSMouseEnteredMask | NSMouseExitedMask)];
}
fTracking = NO;
if (fMouseDownControlButton)
{
fMouseDownControlButton = NO;
[(TorrentTableView *)controlView toggleControlForTorrent: [self representedObject]];
}
else if (fMouseDownRevealButton)
{
fMouseDownRevealButton = NO;
[controlView setNeedsDisplayInRect: cellFrame];
NSString * location = [[self representedObject] dataLocation];
if (location)
2009-08-30 17:52:03 +00:00
{
NSURL * file = [NSURL fileURLWithPath: location];
[[NSWorkspace sharedWorkspace] activateFileViewerSelectingURLs: [NSArray arrayWithObject: file]];
}
}
else;
2008-12-26 05:57:51 +00:00
[controlView updateTrackingAreas];
return YES;
}
- (void) addTrackingAreasForView: (NSView *) controlView inRect: (NSRect) cellFrame withUserInfo: (NSDictionary *) userInfo
mouseLocation: (NSPoint) mouseLocation
{
const NSTrackingAreaOptions options = NSTrackingEnabledDuringMouseDrag | NSTrackingMouseEnteredAndExited | NSTrackingActiveAlways;
//whole row
if ([fDefaults boolForKey: @"SmallView"])
{
NSTrackingAreaOptions rowOptions = options;
if (NSMouseInRect(mouseLocation, cellFrame, [controlView isFlipped]))
{
rowOptions |= NSTrackingAssumeInside;
[(TorrentTableView *)controlView setRowHover: [[userInfo objectForKey: @"Row"] integerValue]];
}
NSMutableDictionary * rowInfo = [userInfo mutableCopy];
[rowInfo setObject: @"Row" forKey: @"Type"];
NSTrackingArea * area = [[NSTrackingArea alloc] initWithRect: cellFrame options: rowOptions owner: controlView userInfo: rowInfo];
[controlView addTrackingArea: area];
[rowInfo release];
[area release];
}
//control button
NSRect controlButtonRect = [self controlButtonRectForBounds: cellFrame];
NSTrackingAreaOptions controlOptions = options;
if (NSMouseInRect(mouseLocation, controlButtonRect, [controlView isFlipped]))
{
controlOptions |= NSTrackingAssumeInside;
[(TorrentTableView *)controlView setControlButtonHover: [[userInfo objectForKey: @"Row"] integerValue]];
}
NSMutableDictionary * controlInfo = [userInfo mutableCopy];
[controlInfo setObject: @"Control" forKey: @"Type"];
NSTrackingArea * area = [[NSTrackingArea alloc] initWithRect: controlButtonRect options: controlOptions owner: controlView
userInfo: controlInfo];
[controlView addTrackingArea: area];
[controlInfo release];
[area release];
//reveal button
NSRect revealButtonRect = [self revealButtonRectForBounds: cellFrame];
NSTrackingAreaOptions revealOptions = options;
if (NSMouseInRect(mouseLocation, revealButtonRect, [controlView isFlipped]))
{
revealOptions |= NSTrackingAssumeInside;
2009-12-20 21:02:58 +00:00
[(TorrentTableView *)controlView setRevealButtonHover: [[userInfo objectForKey: @"Row"] integerValue]];
}
NSMutableDictionary * revealInfo = [userInfo mutableCopy];
[revealInfo setObject: @"Reveal" forKey: @"Type"];
area = [[NSTrackingArea alloc] initWithRect: revealButtonRect options: revealOptions owner: controlView
userInfo: revealInfo];
[controlView addTrackingArea: area];
[revealInfo release];
[area release];
//action button
NSRect actionButtonRect = [self iconRectForBounds: cellFrame]; //use the whole icon
NSTrackingAreaOptions actionOptions = options;
if (NSMouseInRect(mouseLocation, actionButtonRect, [controlView isFlipped]))
{
actionOptions |= NSTrackingAssumeInside;
2009-12-20 21:02:58 +00:00
[(TorrentTableView *)controlView setActionButtonHover: [[userInfo objectForKey: @"Row"] integerValue]];
}
NSMutableDictionary * actionInfo = [userInfo mutableCopy];
[actionInfo setObject: @"Action" forKey: @"Type"];
area = [[NSTrackingArea alloc] initWithRect: actionButtonRect options: actionOptions owner: controlView userInfo: actionInfo];
[controlView addTrackingArea: area];
[actionInfo release];
[area release];
}
- (void) setHover: (BOOL) hover
{
fHover = hover;
}
2008-01-15 04:45:57 +00:00
- (void) setControlHover: (BOOL) hover
{
2008-03-23 18:47:35 +00:00
fHoverControl = hover;
2008-01-15 04:45:57 +00:00
}
- (void) setRevealHover: (BOOL) hover
{
2008-03-23 18:47:35 +00:00
fHoverReveal = hover;
}
- (void) setActionHover: (BOOL) hover
{
2008-03-23 18:47:35 +00:00
fHoverAction = hover;
}
- (void) setActionPushed: (BOOL) pushed
{
fMouseDownActionButton = pushed;
}
- (void) drawInteriorWithFrame: (NSRect) cellFrame inView: (NSView *) controlView
2007-09-16 01:02:06 +00:00
{
Torrent * torrent = [self representedObject];
NSAssert(torrent != nil, @"can't have a TorrentCell without a Torrent");
2007-09-16 01:02:06 +00:00
const BOOL minimal = [fDefaults boolForKey: @"SmallView"];
2007-09-16 01:02:06 +00:00
//bar
[self drawBar: minimal ? [self barRectMinForBounds: cellFrame] : [self barRectRegForBounds: cellFrame]];
2007-12-18 17:05:49 +00:00
//group coloring
2009-12-20 21:02:58 +00:00
const NSRect iconRect = [self iconRectForBounds: cellFrame];
2007-12-18 17:05:49 +00:00
2009-12-20 21:02:58 +00:00
const NSInteger groupValue = [torrent groupValue];
if (groupValue != -1)
2007-12-18 21:32:55 +00:00
{
2009-12-20 21:02:58 +00:00
NSRect groupRect = NSInsetRect(iconRect, -1.0, -2.0);
2007-12-18 21:32:55 +00:00
if (!minimal)
{
2009-12-20 21:02:58 +00:00
groupRect.size.height -= 1.0;
groupRect.origin.y -= 1.0;
2007-12-18 21:32:55 +00:00
}
2009-12-20 21:02:58 +00:00
const CGFloat radius = minimal ? 3.0 : 6.0;
2007-12-18 21:32:55 +00:00
NSColor * groupColor = [[GroupsController groups] colorForIndex: groupValue],
2009-12-20 21:02:58 +00:00
* darkGroupColor = [groupColor blendedColorWithFraction: 0.2 ofColor: [NSColor whiteColor]];
2008-05-14 21:35:37 +00:00
//border
2008-12-26 05:57:51 +00:00
NSBezierPath * bp = [NSBezierPath bezierPathWithRoundedRect: groupRect xRadius: radius yRadius: radius];
[darkGroupColor set];
2009-12-20 21:02:58 +00:00
[bp setLineWidth: 2.0];
[bp stroke];
2008-05-14 21:35:37 +00:00
//inside
2008-12-26 05:57:51 +00:00
bp = [NSBezierPath bezierPathWithRoundedRect: groupRect xRadius: radius yRadius: radius];
2009-12-20 21:02:58 +00:00
NSGradient * gradient = [[NSGradient alloc] initWithStartingColor: [groupColor blendedColorWithFraction: 0.7
ofColor: [NSColor whiteColor]] endingColor: darkGroupColor];
2009-12-20 21:02:58 +00:00
[gradient drawInBezierPath: bp angle: 90.0];
[gradient release];
2007-12-18 21:32:55 +00:00
}
const BOOL error = [torrent isAnyErrorOrWarning];
2007-09-16 01:02:06 +00:00
//icon
if (!minimal || !(!fTracking && fHoverAction)) //don't show in minimal mode when hovered over
{
NSImage * icon = (minimal && error) ? [NSImage imageNamed: NSImageNameCaution]
2009-10-03 14:10:52 +00:00
: [torrent icon];
[icon drawInRect: iconRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0 respectFlipped: YES hints: nil];
}
2007-09-16 01:02:06 +00:00
2009-10-03 14:10:52 +00:00
//error badge
2007-09-16 01:02:06 +00:00
if (error && !minimal)
{
NSImage * errorImage = [NSImage imageNamed: NSImageNameCaution];
const NSRect errorRect = NSMakeRect(NSMaxX(iconRect) - ERROR_IMAGE_SIZE, NSMaxY(iconRect) - ERROR_IMAGE_SIZE, ERROR_IMAGE_SIZE, ERROR_IMAGE_SIZE);
[errorImage drawInRect: errorRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0 respectFlipped: YES hints: nil];
2007-09-16 01:02:06 +00:00
}
//text color
NSColor * titleColor, * statusColor;
if ([self backgroundStyle] == NSBackgroundStyleDark)
2009-01-02 02:41:54 +00:00
titleColor = statusColor = [NSColor whiteColor];
else
{
titleColor = [NSColor controlTextColor];
statusColor = [NSColor darkGrayColor];
}
2007-09-16 01:02:06 +00:00
[fTitleAttributes setObject: titleColor forKey: NSForegroundColorAttributeName];
[fStatusAttributes setObject: statusColor forKey: NSForegroundColorAttributeName];
2007-09-16 01:02:06 +00:00
//minimal status
CGFloat minimalTitleRightBound;
if (minimal)
2007-09-16 01:02:06 +00:00
{
NSAttributedString * minimalString = [self attributedStatusString: [self minimalStatusString]];
NSRect minimalStatusRect = [self rectForMinimalStatusWithString: minimalString inBounds: cellFrame];
2007-09-16 01:02:06 +00:00
if (!fHover)
[minimalString drawInRect: minimalStatusRect];
minimalTitleRightBound = NSMinX(minimalStatusRect);
2007-09-16 01:02:06 +00:00
}
//progress
if (!minimal)
{
NSAttributedString * progressString = [self attributedStatusString: [torrent progressString]];
NSRect progressRect = [self rectForProgressWithStringInBounds: cellFrame];
2007-09-16 01:02:06 +00:00
[progressString drawInRect: progressRect];
}
if (!minimal || fHover)
{
//control button
NSString * controlImageSuffix;
if (fMouseDownControlButton)
controlImageSuffix = @"On.png";
else if (!fTracking && fHoverControl)
controlImageSuffix = @"Hover.png";
else
controlImageSuffix = @"Off.png";
NSImage * controlImage;
if ([torrent isActive])
controlImage = [NSImage imageNamed: [@"Pause" stringByAppendingString: controlImageSuffix]];
else
{
if ([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask)
controlImage = [NSImage imageNamed: [@"ResumeNoWait" stringByAppendingString: controlImageSuffix]];
else if ([torrent waitingToStart])
controlImage = [NSImage imageNamed: [@"Pause" stringByAppendingString: controlImageSuffix]];
else
controlImage = [NSImage imageNamed: [@"Resume" stringByAppendingString: controlImageSuffix]];
}
const NSRect controlRect = [self controlButtonRectForBounds: cellFrame];
[controlImage drawInRect: controlRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0 respectFlipped: YES hints: nil];
minimalTitleRightBound = MIN(minimalTitleRightBound, NSMinX(controlRect));
//reveal button
NSString * revealImageString;
if (fMouseDownRevealButton)
revealImageString = @"RevealOn.png";
else if (!fTracking && fHoverReveal)
revealImageString = @"RevealHover.png";
else
revealImageString = @"RevealOff.png";
NSImage * revealImage = [NSImage imageNamed: revealImageString];
[revealImage drawInRect: [self revealButtonRectForBounds: cellFrame] fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0 respectFlipped: YES hints: nil];
//action button
#warning image should use new gear
NSString * actionImageString;
if (fMouseDownActionButton)
2011-08-28 00:07:30 +00:00
#warning we can get rid of this on 10.7
actionImageString = @"ActionOn.png";
else if (!fTracking && fHoverAction)
actionImageString = @"ActionHover.png";
else
actionImageString = nil;
if (actionImageString)
{
NSImage * actionImage = [NSImage imageNamed: actionImageString];
[actionImage drawInRect: [self actionButtonRectForBounds: cellFrame] fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0 respectFlipped: YES hints: nil];
}
2008-01-15 05:09:46 +00:00
}
//title
NSAttributedString * titleString = [self attributedTitle];
NSRect titleRect = [self rectForTitleWithString: titleString withRightBound: minimalTitleRightBound inBounds: cellFrame];
[titleString drawInRect: titleRect];
//priority icon
if ([torrent priority] != TR_PRI_NORMAL)
{
const NSRect priorityRect = NSMakeRect(NSMaxX(titleRect) + PADDING_BETWEEN_TITLE_AND_PRIORITY,
NSMidY(titleRect) - PRIORITY_ICON_HEIGHT * 0.5,
PRIORITY_ICON_WIDTH, PRIORITY_ICON_HEIGHT);
NSColor * priorityColor = [self backgroundStyle] == NSBackgroundStyleDark ? [NSColor whiteColor] : [NSColor darkGrayColor];
NSImage * priorityImage = [[NSImage imageNamed: ([torrent priority] == TR_PRI_HIGH ? @"PriorityHighTemplate.png" : @"PriorityLowTemplate.png")] imageWithColor: priorityColor];
[priorityImage drawInRect: priorityRect fromRect: NSZeroRect operation: NSCompositeSourceOver fraction: 1.0 respectFlipped: YES hints: nil];
}
2007-09-16 01:02:06 +00:00
//status
if (!minimal)
{
NSAttributedString * statusString = [self attributedStatusString: [self statusString]];
[statusString drawInRect: [self rectForStatusWithStringInBounds: cellFrame]];
2007-09-16 01:02:06 +00:00
}
}
- (NSRect) expansionFrameWithFrame: (NSRect) cellFrame inView: (NSView *) view
{
BOOL minimal = [fDefaults boolForKey: @"SmallView"];
//this code needs to match the code in drawInteriorWithFrame:withView:
CGFloat minimalTitleRightBound;
if (minimal)
{
NSAttributedString * minimalString = [self attributedStatusString: [self minimalStatusString]];
NSRect minimalStatusRect = [self rectForMinimalStatusWithString: minimalString inBounds: cellFrame];
minimalTitleRightBound = NSMinX(minimalStatusRect);
}
if (!minimal || fHover)
{
const NSRect controlRect = [self controlButtonRectForBounds: cellFrame];
minimalTitleRightBound = MIN(minimalTitleRightBound, NSMinX(controlRect));
}
NSAttributedString * titleString = [self attributedTitle];
NSRect realRect = [self rectForTitleWithString: titleString withRightBound: minimalTitleRightBound inBounds: cellFrame];
NSAssert([titleString size].width >= NSWidth(realRect), @"Full rect width should not be less than the used title rect width!");
if ([titleString size].width > NSWidth(realRect)
&& NSMouseInRect([view convertPoint: [[view window] convertScreenToBase: [NSEvent mouseLocation]] fromView: nil], realRect, [view isFlipped]))
{
realRect.size.width = [titleString size].width;
return NSInsetRect(realRect, -PADDING_EXPANSION_FRAME, -PADDING_EXPANSION_FRAME);
}
return NSZeroRect;
}
- (void) drawWithExpansionFrame: (NSRect) cellFrame inView: (NSView *)view
{
cellFrame.origin.x += PADDING_EXPANSION_FRAME;
cellFrame.origin.y += PADDING_EXPANSION_FRAME;
[fTitleAttributes setObject: [NSColor controlTextColor] forKey: NSForegroundColorAttributeName];
NSAttributedString * titleString = [self attributedTitle];
[titleString drawInRect: cellFrame];
}
2007-09-16 01:02:06 +00:00
@end
@implementation TorrentCell (Private)
- (void) drawBar: (NSRect) barRect
{
const BOOL minimal = [fDefaults boolForKey: @"SmallView"];
const CGFloat piecesBarPercent = [(TorrentTableView *)[self controlView] piecesBarPercent];
if (piecesBarPercent > 0.0)
{
NSRect piecesBarRect, regularBarRect;
NSDivideRect(barRect, &piecesBarRect, &regularBarRect, floor(NSHeight(barRect) * PIECES_TOTAL_PERCENT * piecesBarPercent),
NSMaxYEdge);
[self drawRegularBar: regularBarRect];
[self drawPiecesBar: piecesBarRect];
}
else
{
[[self representedObject] setPreviousFinishedPieces: nil];
[self drawRegularBar: barRect];
}
2010-03-20 18:09:45 +00:00
NSColor * borderColor = minimal ? fBarMinimalBorderColor : fBarBorderColor;
[borderColor set];
[NSBezierPath strokeRect: NSInsetRect(barRect, 0.5, 0.5)];
}
- (void) drawRegularBar: (NSRect) barRect
2007-09-16 01:02:06 +00:00
{
Torrent * torrent = [self representedObject];
NSRect haveRect, missingRect;
NSDivideRect(barRect, &haveRect, &missingRect, round([torrent progress] * NSWidth(barRect)), NSMinXEdge);
2007-09-16 01:02:06 +00:00
if (!NSIsEmptyRect(haveRect))
2007-09-16 01:02:06 +00:00
{
if ([torrent isActive])
2007-09-16 01:02:06 +00:00
{
if ([torrent isChecking])
[[ProgressGradients progressYellowGradient] drawInRect: haveRect angle: 90];
else if ([torrent isSeeding])
{
NSRect ratioHaveRect, ratioRemainingRect;
NSDivideRect(haveRect, &ratioHaveRect, &ratioRemainingRect, round([torrent progressStopRatio] * NSWidth(haveRect)),
NSMinXEdge);
[[ProgressGradients progressGreenGradient] drawInRect: ratioHaveRect angle: 90];
[[ProgressGradients progressLightGreenGradient] drawInRect: ratioRemainingRect angle: 90];
2007-09-16 01:02:06 +00:00
}
else
[[ProgressGradients progressBlueGradient] drawInRect: haveRect angle: 90];
2007-09-16 01:02:06 +00:00
}
else
{
if ([torrent waitingToStart])
{
if ([torrent allDownloaded])
[[ProgressGradients progressDarkGreenGradient] drawInRect: haveRect angle: 90];
else
[[ProgressGradients progressDarkBlueGradient] drawInRect: haveRect angle: 90];
}
else
[[ProgressGradients progressGrayGradient] drawInRect: haveRect angle: 90];
2007-09-16 01:02:06 +00:00
}
}
if (![torrent allDownloaded])
{
const CGFloat widthRemaining = round(NSWidth(barRect) * [torrent progressLeft]);
NSRect wantedRect;
NSDivideRect(missingRect, &wantedRect, &missingRect, widthRemaining, NSMinXEdge);
//not-available section
2009-12-12 04:39:43 +00:00
if ([torrent isActive] && ![torrent isChecking] && [torrent availableDesired] < 1.0
&& [fDefaults boolForKey: @"DisplayProgressBarAvailable"])
{
NSRect unavailableRect;
NSDivideRect(wantedRect, &wantedRect, &unavailableRect, round(NSWidth(wantedRect) * [torrent availableDesired]),
NSMinXEdge);
[[ProgressGradients progressRedGradient] drawInRect: unavailableRect angle: 90];
}
//remaining section
[[ProgressGradients progressWhiteGradient] drawInRect: wantedRect angle: 90];
}
//unwanted section
if (!NSIsEmptyRect(missingRect))
{
if (![torrent isMagnet])
[[ProgressGradients progressLightGrayGradient] drawInRect: missingRect angle: 90];
else
[[ProgressGradients progressRedGradient] drawInRect: missingRect angle: 90];
}
}
- (void) drawPiecesBar: (NSRect) barRect
{
Torrent * torrent = [self representedObject];
//fill an all-white bar for magnet links
if ([torrent isMagnet])
{
[[NSColor colorWithCalibratedWhite: 1.0 alpha: [fDefaults boolForKey: @"SmallView"] ? 0.25 : 1.0] set];
NSRectFillUsingOperation(barRect, NSCompositeSourceOver);
return;
}
NSInteger pieceCount = MIN([torrent pieceCount], MAX_PIECES);
float * piecesPercent = malloc(pieceCount * sizeof(float));
[torrent getAmountFinished: piecesPercent size: pieceCount];
NSBitmapImageRep * bitmap = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes: nil
pixelsWide: pieceCount pixelsHigh: 1 bitsPerSample: 8 samplesPerPixel: 4 hasAlpha: YES
isPlanar: NO colorSpaceName: NSCalibratedRGBColorSpace bytesPerRow: 0 bitsPerPixel: 0];
NSIndexSet * previousFinishedIndexes = [torrent previousFinishedPieces];
NSMutableIndexSet * finishedIndexes = [NSMutableIndexSet indexSet];
2008-10-12 22:17:27 +00:00
for (NSInteger i = 0; i < pieceCount; i++)
{
NSColor * pieceColor;
if (piecesPercent[i] == 1.0f)
{
if (previousFinishedIndexes && ![previousFinishedIndexes containsIndex: i])
pieceColor = [NSColor orangeColor];
else
pieceColor = fBluePieceColor;
[finishedIndexes addIndex: i];
}
else
pieceColor = [[NSColor whiteColor] blendedColorWithFraction: piecesPercent[i] ofColor: fBluePieceColor];
2008-05-27 04:49:08 +00:00
//it's faster to just set color instead of checking previous color
[bitmap setColor: pieceColor atX: i y: 0];
}
free(piecesPercent);
[torrent setPreviousFinishedPieces: [finishedIndexes count] > 0 ? finishedIndexes : nil]; //don't bother saving if none are complete
//actually draw image
[bitmap drawInRect: barRect fromRect: NSZeroRect operation: NSCompositeSourceOver
fraction: ([fDefaults boolForKey: @"SmallView"] ? 0.25 : 1.0) respectFlipped: YES hints: nil];
[bitmap release];
2007-09-16 01:02:06 +00:00
}
- (NSRect) rectForMinimalStatusWithString: (NSAttributedString *) string inBounds: (NSRect) bounds
{
NSRect result;
result.size = [string size];
2007-09-16 01:02:06 +00:00
result.origin.x = NSMaxX(bounds) - (PADDING_HORIZONTAL + NSWidth(result));
result.origin.y = ceil(NSMidY(bounds) - NSHeight(result) * 0.5);
2009-10-09 23:44:18 +00:00
2007-09-16 01:02:06 +00:00
return result;
}
- (NSRect) rectForTitleWithString: (NSAttributedString *) string withRightBound: (CGFloat) rightBound inBounds: (NSRect) bounds
2007-09-16 01:02:06 +00:00
{
const BOOL minimal = [fDefaults boolForKey: @"SmallView"];
2007-09-16 01:02:06 +00:00
NSRect result;
result.origin.x = NSMinX(bounds) + PADDING_HORIZONTAL
+ (minimal ? IMAGE_SIZE_MIN : IMAGE_SIZE_REG) + PADDING_BETWEEN_IMAGE_AND_TITLE;
result.size.height = HEIGHT_TITLE;
if (minimal)
{
result.origin.y = ceil(NSMidY(bounds) - NSHeight(result) * 0.5);
result.size.width = rightBound - NSMinX(result) - PADDING_BETWEEN_TITLE_AND_MIN_STATUS;
}
else
{
result.origin.y = NSMinY(bounds) + PADDING_ABOVE_TITLE;
result.size.width = NSMaxX(bounds) - NSMinX(result) - PADDING_HORIZONTAL;
}
if ([(Torrent *)[self representedObject] priority] != TR_PRI_NORMAL)
result.size.width -= PRIORITY_ICON_WIDTH + PADDING_BETWEEN_TITLE_AND_PRIORITY;
result.size.width = MIN(NSWidth(result), [string size].width);
2009-12-14 13:20:36 +00:00
2007-09-16 01:02:06 +00:00
return result;
}
- (NSRect) rectForProgressWithStringInBounds: (NSRect) bounds
2007-09-16 01:02:06 +00:00
{
NSRect result;
result.origin.y = NSMinY(bounds) + PADDING_ABOVE_TITLE + HEIGHT_TITLE + PADDING_BETWEEN_TITLE_AND_PROGRESS;
result.origin.x = NSMinX(bounds) + PADDING_HORIZONTAL + IMAGE_SIZE_REG + PADDING_BETWEEN_IMAGE_AND_TITLE;
2007-09-16 01:02:06 +00:00
result.size.height = HEIGHT_STATUS;
result.size.width = NSMaxX(bounds) - NSMinX(result) - PADDING_HORIZONTAL;
2007-09-16 01:02:06 +00:00
return result;
}
- (NSRect) rectForStatusWithStringInBounds: (NSRect) bounds
2007-09-16 01:02:06 +00:00
{
NSRect result;
result.origin.y = NSMinY(bounds) + PADDING_ABOVE_TITLE + HEIGHT_TITLE + PADDING_BETWEEN_TITLE_AND_PROGRESS + HEIGHT_STATUS
2007-09-16 01:02:06 +00:00
+ PADDING_BETWEEN_PROGRESS_AND_BAR + BAR_HEIGHT + PADDING_BETWEEN_BAR_AND_STATUS;
result.origin.x = NSMinX(bounds) + PADDING_HORIZONTAL + IMAGE_SIZE_REG + PADDING_BETWEEN_IMAGE_AND_TITLE;
2007-09-16 01:02:06 +00:00
result.size.height = HEIGHT_STATUS;
result.size.width = NSMaxX(bounds) - NSMinX(result) - PADDING_HORIZONTAL;
2007-09-16 01:02:06 +00:00
return result;
}
- (NSRect) barRectRegForBounds: (NSRect) bounds
2009-12-12 03:11:48 +00:00
{
2010-03-20 18:09:45 +00:00
NSRect result;
result.size.height = BAR_HEIGHT;
result.origin.x = NSMinX(bounds) + PADDING_HORIZONTAL + IMAGE_SIZE_REG + PADDING_BETWEEN_IMAGE_AND_BAR;
result.origin.y = NSMinY(bounds) + PADDING_ABOVE_TITLE + HEIGHT_TITLE + PADDING_BETWEEN_TITLE_AND_PROGRESS
+ HEIGHT_STATUS + PADDING_BETWEEN_PROGRESS_AND_BAR;
2009-12-12 03:11:48 +00:00
result.size.width = floor(NSMaxX(bounds) - NSMinX(result) - PADDING_HORIZONTAL
- 2.0 * (PADDING_BETWEEN_BUTTONS + NORMAL_BUTTON_WIDTH));
return result;
}
- (NSRect) barRectMinForBounds: (NSRect) bounds
{
NSRect result;
result.origin.x = NSMinX(bounds) + PADDING_HORIZONTAL + IMAGE_SIZE_MIN + PADDING_BETWEEN_IMAGE_AND_BAR;
result.origin.y = NSMinY(bounds) + PADDING_BETWEEN_BAR_AND_EDGE_MIN;
result.size.height = NSHeight(bounds) - 2.0 * PADDING_BETWEEN_BAR_AND_EDGE_MIN;
result.size.width = NSMaxX(bounds) - NSMinX(result) - PADDING_BETWEEN_BAR_AND_EDGE_MIN;
2010-03-20 18:09:45 +00:00
return result;
2009-12-12 03:11:48 +00:00
}
- (NSRect) controlButtonRectForBounds: (NSRect) bounds
{
NSRect result;
2009-12-12 03:11:48 +00:00
result.size.height = NORMAL_BUTTON_WIDTH;
result.size.width = NORMAL_BUTTON_WIDTH;
result.origin.x = NSMaxX(bounds) - (PADDING_HORIZONTAL + NORMAL_BUTTON_WIDTH + PADDING_BETWEEN_BUTTONS + NORMAL_BUTTON_WIDTH);
2009-12-12 03:11:48 +00:00
if (![fDefaults boolForKey: @"SmallView"])
2010-03-20 18:09:45 +00:00
result.origin.y = NSMinY(bounds) + PADDING_ABOVE_TITLE + HEIGHT_TITLE - (NORMAL_BUTTON_WIDTH - BAR_HEIGHT) * 0.5
+ PADDING_BETWEEN_TITLE_AND_PROGRESS + HEIGHT_STATUS + PADDING_BETWEEN_PROGRESS_AND_BAR;
2010-03-20 18:09:45 +00:00
else
result.origin.y = ceil(NSMidY(bounds) - NSHeight(result) * 0.5);
2009-12-12 03:11:48 +00:00
return result;
}
- (NSRect) revealButtonRectForBounds: (NSRect) bounds
{
NSRect result;
2009-12-12 03:11:48 +00:00
result.size.height = NORMAL_BUTTON_WIDTH;
result.size.width = NORMAL_BUTTON_WIDTH;
result.origin.x = NSMaxX(bounds) - (PADDING_HORIZONTAL + NORMAL_BUTTON_WIDTH);
if (![fDefaults boolForKey: @"SmallView"])
2010-03-20 18:09:45 +00:00
result.origin.y = NSMinY(bounds) + PADDING_ABOVE_TITLE + HEIGHT_TITLE - (NORMAL_BUTTON_WIDTH - BAR_HEIGHT) * 0.5
+ PADDING_BETWEEN_TITLE_AND_PROGRESS + HEIGHT_STATUS + PADDING_BETWEEN_PROGRESS_AND_BAR;
2010-03-20 18:09:45 +00:00
else
result.origin.y = ceil(NSMidY(bounds) - NSHeight(result) * 0.5);
2009-12-12 03:11:48 +00:00
return result;
}
- (NSRect) actionButtonRectForBounds: (NSRect) bounds
{
2009-12-20 21:02:58 +00:00
const NSRect iconRect = [self iconRectForBounds: bounds];
2009-12-12 03:11:48 +00:00
2009-12-20 21:02:58 +00:00
//in minimal view the rect will be the icon rect, but avoid the extra defaults lookup with some cheap math
return NSMakeRect(NSMidX(iconRect) - ACTION_BUTTON_WIDTH * 0.5, NSMidY(iconRect) - ACTION_BUTTON_WIDTH * 0.5,
ACTION_BUTTON_WIDTH, ACTION_BUTTON_WIDTH);
2009-12-12 03:11:48 +00:00
}
- (NSAttributedString *) attributedTitle
2007-09-16 01:02:06 +00:00
{
NSString * title = [(Torrent *)[self representedObject] name];
return [[[NSAttributedString alloc] initWithString: title attributes: fTitleAttributes] autorelease];
2007-09-16 01:02:06 +00:00
}
- (NSAttributedString *) attributedStatusString: (NSString *) string
2007-09-16 01:02:06 +00:00
{
return [[[NSAttributedString alloc] initWithString: string attributes: fStatusAttributes] autorelease];
2007-09-16 01:02:06 +00:00
}
- (NSString *) buttonString
{
if (fMouseDownRevealButton || (!fTracking && fHoverReveal))
return NSLocalizedString(@"Show the data file in Finder", "Torrent cell -> button info");
else if (fMouseDownControlButton || (!fTracking && fHoverControl))
{
Torrent * torrent = [self representedObject];
if ([torrent isActive])
return NSLocalizedString(@"Pause the transfer", "Torrent Table -> tooltip");
else
{
if ([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask)
return NSLocalizedString(@"Resume the transfer right away", "Torrent cell -> button info");
else if ([torrent waitingToStart])
return NSLocalizedString(@"Stop waiting to start", "Torrent cell -> button info");
else
return NSLocalizedString(@"Resume the transfer", "Torrent cell -> button info");
}
}
else if (!fTracking && fHoverAction)
return NSLocalizedString(@"Change transfer settings", "Torrent Table -> tooltip");
else
return nil;
}
- (NSString *) statusString
{
NSString * buttonString;
if ((buttonString = [self buttonString]))
return buttonString;
else
return [[self representedObject] statusString];
}
- (NSString *) minimalStatusString
{
Torrent * torrent = [self representedObject];
return [fDefaults boolForKey: @"DisplaySmallStatusRegular"] ? [torrent shortStatusString] : [torrent remainingTimeString];
}
2007-09-16 01:02:06 +00:00
@end