summaryrefslogtreecommitdiffstats
path: root/macosx/HBToolbarBadgedItem.m
blob: e412d0b62b0a0e6075bd1ceacae9ea8c4f8088ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* HBToolbarBadgedItem.m

 This file is part of the HandBrake source code.
 Homepage: <http://handbrake.fr/>.
 It may be used under the terms of the GNU General Public License.
 */

#import "HBToolbarBadgedItem.h"

@interface HBToolbarBadgedItem ()

@property (nonatomic) NSImage *primary;
@property (nonatomic) NSImage *badged;

@end

@implementation HBToolbarBadgedItem

- (instancetype)initWithItemIdentifier:(NSString *)itemIdentifier
{
    self = [super initWithItemIdentifier:itemIdentifier];
    if (self)
    {
        _badgeFillColor = [NSColor redColor];
        _badgeTextColor = [NSColor whiteColor];
    }
    return self;
}

- (void)awakeFromNib
{
    if ([self respondsToSelector:@selector(awakeFromNib)])
    {
        [super awakeFromNib];
    }

    [self HB_refreshBadge];
}

#pragma mark - Public

- (void)setImage:(NSImage *)image
{
    _primary = image;
    [self HB_refreshBadge];
}

- (void)setBadgeValue:(NSString *)badgeValue
{
    if (![_badgeValue isEqualToString:badgeValue])
    {
        _badgeValue = [badgeValue copy];
        [self HB_refreshBadge];
    }
}

- (void)setBadgeTextColor:(NSColor *)badgeTextColor
{
    _badgeTextColor = [badgeTextColor copy];
    [self HB_refreshBadge];
}

- (void)setBadgeFillColor:(NSColor *)badgeFillColor
{
    _badgeFillColor = [badgeFillColor copy];
    [self HB_refreshBadge];
}

#pragma mark -- Private Methods

- (void)HB_refreshBadge
{
    if (_badgeValue.length && _primary)
    {
        __weak HBToolbarBadgedItem *weakSelf = self;
        _badged = [NSImage imageWithSize:_primary.size flipped:NO drawingHandler:^BOOL(NSRect dstRect) {
            HBToolbarBadgedItem *strongSelf = weakSelf;
            if (strongSelf == nil)
            {
                return NO;
            }

            CGContextRef context = NSGraphicsContext.currentContext.CGContext;
            CGContextSaveGState(context);

            CGRect deviceRect = CGContextConvertRectToDeviceSpace(context, dstRect);
            NSSize size = dstRect.size;

            NSRect imageRect = NSMakeRect(0, 0, strongSelf->_primary.size.width, strongSelf->_primary.size.height);
            CGImageRef ref = [strongSelf->_primary CGImageForProposedRect:&imageRect context:NSGraphicsContext.currentContext hints:nil];
            CGContextDrawImage(context, imageRect, ref);

            // Work out the area
            CGFloat scaleFactor = deviceRect.size.width / strongSelf->_primary.size.width;
            CGFloat typeSize = 10;
            if (scaleFactor > 1)
            {
                typeSize = 8;
            }
            CGFloat pointSize = typeSize;

            NSMutableParagraphStyle *paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
            NSFont *font = [NSFont boldSystemFontOfSize:pointSize];
            NSDictionary *attr = @{NSParagraphStyleAttributeName : paragraphStyle,
                                   NSFontAttributeName : font,
                                   NSForegroundColorAttributeName : strongSelf->_badgeTextColor };

            NSRect textBounds = [strongSelf->_badgeValue boundingRectWithSize:NSZeroSize
                                                                      options:0
                                                                   attributes:attr];

            NSPoint indent = NSMakePoint(typeSize, 2);
            CGFloat radius = (textBounds.size.height + indent.y) * 0.5f;

            CGFloat offset_x = 0;
            CGFloat offset_y = 0;
            NSRect badgeRect = NSMakeRect(size.width - textBounds.size.width - indent.x - offset_x, offset_y,
                                          textBounds.size.width + indent.x, textBounds.size.height + indent.y);
            badgeRect = NSIntegralRect(badgeRect);

            // Draw the ellipse
            CGFloat minx = CGRectGetMinX(badgeRect);
            CGFloat midx = CGRectGetMidX(badgeRect);
            CGFloat maxx = CGRectGetMaxX(badgeRect);
            CGFloat miny = CGRectGetMinY(badgeRect);
            CGFloat midy = CGRectGetMidY(badgeRect);
            CGFloat maxy = CGRectGetMaxY(badgeRect);

            // Fill the ellipse
            CGContextBeginPath(context);
            CGContextMoveToPoint(context, minx, midy);
            CGContextAddArcToPoint(context, minx, miny, midx, miny, radius);
            CGContextAddArcToPoint(context, maxx, miny, maxx, midy, radius);
            CGContextAddArcToPoint(context, maxx, maxy, midx, maxy, radius);
            CGContextAddArcToPoint(context, minx, maxy, minx, midy, radius);
            CGContextClosePath(context);
            CGColorRef fillColor = strongSelf->_badgeFillColor.CGColor;
            CGContextSetFillColorWithColor(context,fillColor);
            CGContextDrawPath(context, kCGPathFill);

            // Draw the text
            badgeRect.origin.x = CGRectGetMidX(badgeRect);
            badgeRect.origin.x -= textBounds.origin.x / 2;
            badgeRect.origin.x -= ((textBounds.size.width - textBounds.origin.x) * 0.5f);
            badgeRect.origin.y = CGRectGetMidY(badgeRect);
            badgeRect.origin.y -= textBounds.origin.y / 2;
            badgeRect.origin.y -= ((textBounds.size.height - textBounds.origin.y) * 0.5f);

            badgeRect.origin.x = floor(badgeRect.origin.x);
            badgeRect.origin.y = floor(badgeRect.origin.y);
            badgeRect.size.width = textBounds.size.width;
            badgeRect.size.height = textBounds.size.height;

            [strongSelf->_badgeValue drawInRect:badgeRect withAttributes:attr];

            CGContextRestoreGState(context);

            return YES;
        }];
        [super setImage:_badged];
    }
    else
    {
        [super setImage:_primary];
    }
}

@end