2007-09-16 01:02:06 +00:00
|
|
|
/******************************************************************************
|
2012-01-14 17:12:04 +00:00
|
|
|
* Copyright (c) 2007-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 "PeerProgressIndicatorCell.h"
|
2010-06-24 00:00:43 +00:00
|
|
|
#import "NSStringAdditions.h"
|
2012-03-13 02:52:11 +00:00
|
|
|
|
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];
|
2017-07-29 16:14:22 +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)setSeed:(BOOL)seed
|
2008-12-03 00:18:18 +00:00
|
|
|
{
|
|
|
|
fSeed = seed;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
if (!fAttributes)
|
2009-12-13 17:11:59 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableParagraphStyle* paragraphStyle = [NSParagraphStyle.defaultParagraphStyle mutableCopy];
|
2021-08-07 07:27:56 +00:00
|
|
|
paragraphStyle.alignment = NSRightTextAlignment;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
fAttributes = @{
|
|
|
|
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
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[[NSString percentString:self.floatValue longDecimals:NO] drawInRect:cellFrame withAttributes: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
|
2012-03-13 02:52:11 +00:00
|
|
|
if (fAttributes)
|
|
|
|
{
|
|
|
|
fAttributes = nil;
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[super drawWithFrame:cellFrame inView:controlView];
|
2008-12-03 00:18:18 +00:00
|
|
|
if (fSeed)
|
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
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[checkImage drawInRect:rect fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0 respectFlipped:YES
|
|
|
|
hints:nil];
|
2007-09-25 21:11:54 +00:00
|
|
|
}
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|