2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2007-2022 Transmission authors and contributors.
|
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
#import "PeerProgressIndicatorCell.h"
|
2010-06-24 00:00:43 +00:00
|
|
|
#import "NSStringAdditions.h"
|
2012-03-13 02:52:11 +00:00
|
|
|
|
2022-02-22 16:04:20 +00:00
|
|
|
@interface PeerProgressIndicatorCell ()
|
|
|
|
|
|
|
|
@property(nonatomic, copy) NSDictionary* fAttributes;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@implementation PeerProgressIndicatorCell
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (id)copyWithZone:(NSZone*)zone
|
2012-03-13 02:52:11 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
PeerProgressIndicatorCell* copy = [super copyWithZone:zone];
|
2022-02-22 16:04:20 +00:00
|
|
|
copy->_fAttributes = _fAttributes;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-03-13 02:52:11 +00:00
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView*)controlView
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
if ([NSUserDefaults.standardUserDefaults boolForKey:@"DisplayPeerProgressBarNumber"])
|
2008-03-24 02:38:00 +00:00
|
|
|
{
|
2022-02-22 16:04:20 +00:00
|
|
|
if (!self.fAttributes)
|
2009-12-13 17:11:59 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableParagraphStyle* paragraphStyle = [NSParagraphStyle.defaultParagraphStyle mutableCopy];
|
2021-10-31 15:18:27 +00:00
|
|
|
paragraphStyle.alignment = NSTextAlignmentRight;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2022-02-22 16:04:20 +00:00
|
|
|
self.fAttributes = @{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSFontAttributeName : [NSFont systemFontOfSize:11.0],
|
|
|
|
NSForegroundColorAttributeName : NSColor.labelColor,
|
|
|
|
NSParagraphStyleAttributeName : paragraphStyle
|
|
|
|
};
|
2009-12-13 17:11:59 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2022-02-22 16:04:20 +00:00
|
|
|
[[NSString percentString:self.floatValue longDecimals:NO] drawInRect:cellFrame withAttributes:self.fAttributes];
|
2008-03-24 02:38:00 +00:00
|
|
|
}
|
|
|
|
else
|
2007-09-25 21:11:54 +00:00
|
|
|
{
|
2008-03-24 02:38:00 +00:00
|
|
|
//attributes not needed anymore
|
2022-02-22 16:04:20 +00:00
|
|
|
if (self.fAttributes)
|
2012-03-13 02:52:11 +00:00
|
|
|
{
|
2022-02-22 16:04:20 +00:00
|
|
|
self.fAttributes = nil;
|
2012-03-13 02:52:11 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[super drawWithFrame:cellFrame inView:controlView];
|
2022-02-22 16:04:20 +00:00
|
|
|
if (self.seed)
|
2007-09-28 12:55:28 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSImage* checkImage = [NSImage imageNamed:@"CompleteCheck"];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSSize const imageSize = checkImage.size;
|
|
|
|
NSRect const rect = NSMakeRect(
|
|
|
|
floor(NSMidX(cellFrame) - imageSize.width * 0.5),
|
|
|
|
floor(NSMidY(cellFrame) - imageSize.height * 0.5),
|
|
|
|
imageSize.width,
|
|
|
|
imageSize.height);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2022-03-30 21:52:23 +00:00
|
|
|
[checkImage drawInRect:rect fromRect:NSZeroRect operation:NSCompositingOperationSourceOver fraction:1.0
|
|
|
|
respectFlipped:YES
|
2021-08-15 09:41:48 +00:00
|
|
|
hints:nil];
|
2007-09-25 21:11:54 +00:00
|
|
|
}
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|