2023-11-01 21:11:11 +00:00
|
|
|
// This file Copyright © Transmission authors and contributors.
|
2022-01-20 18:27:56 +00:00
|
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2007-11-01 03:20:29 +00:00
|
|
|
|
|
|
|
#import "BadgeView.h"
|
|
|
|
#import "NSStringAdditions.h"
|
2023-03-05 23:20:48 +00:00
|
|
|
#import "NSImageAdditions.h"
|
2024-03-15 05:16:26 +00:00
|
|
|
#import "Utils.h"
|
2007-11-01 03:20:29 +00:00
|
|
|
|
2022-10-19 19:28:21 +00:00
|
|
|
static CGFloat const kBetweenPadding = 2.0;
|
2023-03-05 23:20:48 +00:00
|
|
|
static NSImage* kWhiteUpArrow = [[NSImage imageNamed:@"UpArrowTemplate"] imageWithColor:NSColor.whiteColor];
|
|
|
|
static NSImage* kWhiteDownArrow = [[NSImage imageNamed:@"DownArrowTemplate"] imageWithColor:NSColor.whiteColor];
|
|
|
|
static CGSize kArrowInset;
|
|
|
|
static CGSize kArrowSize;
|
|
|
|
|
|
|
|
typedef NS_ENUM(NSInteger, ArrowDirection) {
|
|
|
|
ArrowDirectionUp,
|
|
|
|
ArrowDirectionDown,
|
|
|
|
};
|
2007-12-26 16:28:13 +00:00
|
|
|
|
2022-01-24 01:32:45 +00:00
|
|
|
@interface BadgeView ()
|
2007-11-01 03:20:29 +00:00
|
|
|
|
2022-02-22 16:04:20 +00:00
|
|
|
@property(nonatomic) NSMutableDictionary* fAttributes;
|
|
|
|
|
|
|
|
@property(nonatomic) CGFloat fDownloadRate;
|
|
|
|
@property(nonatomic) CGFloat fUploadRate;
|
|
|
|
|
2007-11-01 03:20:29 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation BadgeView
|
|
|
|
|
2022-12-21 20:21:16 +00:00
|
|
|
- (instancetype)init
|
2007-11-01 03:20:29 +00:00
|
|
|
{
|
2011-03-03 03:53:21 +00:00
|
|
|
if ((self = [super init]))
|
2007-11-01 03:20:29 +00:00
|
|
|
{
|
2022-02-22 16:04:20 +00:00
|
|
|
_fDownloadRate = 0.0;
|
|
|
|
_fUploadRate = 0.0;
|
2023-03-05 23:20:48 +00:00
|
|
|
|
|
|
|
NSShadow* stringShadow = [[NSShadow alloc] init];
|
|
|
|
stringShadow.shadowOffset = NSMakeSize(2.0, -2.0);
|
|
|
|
stringShadow.shadowBlurRadius = 4.0;
|
|
|
|
|
|
|
|
_fAttributes = [[NSMutableDictionary alloc] initWithCapacity:3];
|
|
|
|
_fAttributes[NSForegroundColorAttributeName] = NSColor.whiteColor;
|
|
|
|
_fAttributes[NSShadowAttributeName] = stringShadow;
|
2023-03-10 07:05:21 +00:00
|
|
|
_fAttributes[NSFontAttributeName] = [NSFont boldSystemFontOfSize:26.0];
|
2023-03-05 23:20:48 +00:00
|
|
|
|
|
|
|
// DownloadBadge and UploadBadge should have the same size
|
|
|
|
NSSize badgeSize = [NSImage imageNamed:@"DownloadBadge"].size;
|
|
|
|
// DownArrowTemplate and UpArrowTemplate should have the same size
|
|
|
|
CGFloat arrowWidthHeightRatio = kWhiteDownArrow.size.width / kWhiteDownArrow.size.height;
|
|
|
|
|
2023-03-08 03:16:06 +00:00
|
|
|
// arrow height equal to font capital letter height + shadow
|
|
|
|
CGFloat arrowHeight = [_fAttributes[NSFontAttributeName] capHeight] + 4;
|
2023-03-05 23:20:48 +00:00
|
|
|
|
|
|
|
kArrowInset = { badgeSize.height * 0.2, badgeSize.height * 0.1 };
|
|
|
|
kArrowSize = { arrowHeight * arrowWidthHeightRatio, arrowHeight };
|
2007-11-01 03:20:29 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)setRatesWithDownload:(CGFloat)downloadRate upload:(CGFloat)uploadRate
|
2008-04-24 21:24:42 +00:00
|
|
|
{
|
|
|
|
//only needs update if the badges were displayed or are displayed now
|
2024-03-15 05:16:26 +00:00
|
|
|
if (isSpeedEqual(self.fDownloadRate, downloadRate) && isSpeedEqual(self.fUploadRate, uploadRate))
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-01-03 06:06:21 +00:00
|
|
|
return NO;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2022-02-22 16:04:20 +00:00
|
|
|
self.fDownloadRate = downloadRate;
|
|
|
|
self.fUploadRate = uploadRate;
|
2009-01-03 06:06:21 +00:00
|
|
|
return YES;
|
2008-04-24 21:24:42 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)drawRect:(NSRect)rect
|
2007-11-01 03:20:29 +00:00
|
|
|
{
|
2021-10-31 15:18:27 +00:00
|
|
|
[NSApp.applicationIconImage drawInRect:rect fromRect:NSZeroRect operation:NSCompositingOperationSourceOver fraction:1.0];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2022-02-22 16:04:20 +00:00
|
|
|
BOOL const upload = self.fUploadRate >= 0.1;
|
|
|
|
BOOL const download = self.fDownloadRate >= 0.1;
|
2009-12-12 18:29:14 +00:00
|
|
|
CGFloat bottom = 0.0;
|
2022-11-07 19:21:49 +00:00
|
|
|
if (download)
|
2007-11-01 03:20:29 +00:00
|
|
|
{
|
2022-11-07 19:21:49 +00:00
|
|
|
NSImage* downloadBadge = [NSImage imageNamed:@"DownloadBadge"];
|
2023-03-10 07:05:21 +00:00
|
|
|
[self badge:downloadBadge arrow:ArrowDirectionDown string:[NSString stringForSpeedAbbrevCompact:self.fDownloadRate]
|
|
|
|
atHeight:bottom];
|
2022-02-22 16:04:20 +00:00
|
|
|
|
2022-11-07 19:21:49 +00:00
|
|
|
if (upload)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2022-11-07 19:21:49 +00:00
|
|
|
bottom += downloadBadge.size.height + kBetweenPadding; //upload rate above download rate
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-11-01 03:20:29 +00:00
|
|
|
}
|
2022-11-07 19:21:49 +00:00
|
|
|
if (upload)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2023-03-05 23:20:48 +00:00
|
|
|
[self badge:[NSImage imageNamed:@"UploadBadge"] arrow:ArrowDirectionUp
|
2023-03-10 07:05:21 +00:00
|
|
|
string:[NSString stringForSpeedAbbrevCompact:self.fUploadRate]
|
2023-03-05 23:20:48 +00:00
|
|
|
atHeight:bottom];
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-11-01 03:20:29 +00:00
|
|
|
}
|
|
|
|
|
2023-03-05 23:20:48 +00:00
|
|
|
- (void)badge:(NSImage*)badge arrow:(ArrowDirection)arrowDirection string:(NSString*)string atHeight:(CGFloat)height
|
2007-11-01 03:20:29 +00:00
|
|
|
{
|
2023-03-05 23:20:48 +00:00
|
|
|
// background
|
|
|
|
NSRect badgeRect = { { 0.0, height }, badge.size };
|
2021-10-31 15:18:27 +00:00
|
|
|
[badge drawInRect:badgeRect fromRect:NSZeroRect operation:NSCompositingOperationSourceOver fraction:1.0];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-12-12 18:29:14 +00:00
|
|
|
//string is in center of image
|
2023-03-05 23:20:48 +00:00
|
|
|
NSSize stringSize = [string sizeWithAttributes:self.fAttributes];
|
2009-12-12 18:52:03 +00:00
|
|
|
NSRect stringRect;
|
2023-03-10 07:05:21 +00:00
|
|
|
stringRect.origin.x = NSMidX(badgeRect) - stringSize.width * 0.5 + kArrowInset.width; // adjust for arrow
|
|
|
|
stringRect.origin.y = NSMidY(badgeRect) - stringSize.height * 0.5 + 1.0; // adjust for shadow
|
2007-12-05 18:23:51 +00:00
|
|
|
stringRect.size = stringSize;
|
2022-02-22 16:04:20 +00:00
|
|
|
[string drawInRect:stringRect withAttributes:self.fAttributes];
|
2023-03-05 23:20:48 +00:00
|
|
|
|
|
|
|
// arrow
|
|
|
|
NSImage* arrow = arrowDirection == ArrowDirectionUp ? kWhiteUpArrow : kWhiteDownArrow;
|
|
|
|
NSRect arrowRect = { { kArrowInset.width, stringRect.origin.y + kArrowInset.height + (arrowDirection == ArrowDirectionUp ? 0.5 : -0.5) },
|
|
|
|
kArrowSize };
|
|
|
|
[arrow drawInRect:arrowRect fromRect:NSZeroRect operation:NSCompositingOperationSourceOver fraction:1.0];
|
2007-11-01 03:20:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|