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
|
/* HBDockTile.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 "HBDockTile.h"
#import "DockTextField.h"
NSString *dockTilePercentFormat = @"%2.1f%%";
@interface HBDockTile ()
@property (nonatomic, strong) NSDockTile *dockTile;
@property (nonatomic, strong) NSImage *image;
@property (nonatomic, strong) DockTextField * percentField;
@property (nonatomic, strong) DockTextField * timeField;
@end
@implementation HBDockTile
- (instancetype)init
{
@throw nil;
}
- (instancetype)initWithDockTile:(NSDockTile *)dockTile image:(NSImage *)image
{
self = [super init];
if (self)
{
_dockTile = dockTile;
_image = image;
NSImageView *iv = [[NSImageView alloc] init];
[iv setImage:_image];
[dockTile setContentView:iv];
_percentField = [[DockTextField alloc] initWithFrame:NSMakeRect(0.0f, 32.0f, [dockTile size].width, 30.0f)];
[_percentField changeGradientColors:[NSColor colorWithDeviceRed:0.4f green:0.6f blue:0.4f alpha:1.0f] endColor:[NSColor colorWithDeviceRed:0.2f green:0.4f blue:0.2f alpha:1.0f]];
[iv addSubview:_percentField];
_timeField = [[DockTextField alloc] initWithFrame:NSMakeRect(0.0f, 0.0f, [dockTile size].width, 30.0f)];
[_timeField changeGradientColors:[NSColor colorWithDeviceRed:0.6f green:0.4f blue:0.4f alpha:1.0f] endColor:[NSColor colorWithDeviceRed:0.4f green:0.2f blue:0.2f alpha:1.0f]];
[iv addSubview:_timeField];
}
return self;
}
- (void)updateDockIcon:(double)progress withETA:(NSString *)etaStr
{
if (progress < 0.0 || progress > 1.0)
{
[_percentField setHidden:YES];
[_timeField setHidden:YES];
}
else
{
[_percentField setTextToDisplay:[NSString stringWithFormat:dockTilePercentFormat, progress * 100]];
[_percentField setHidden:NO];
[_timeField setTextToDisplay:etaStr];
[_timeField setHidden:NO];
}
[_dockTile display];
}
- (void)updateDockIcon:(double)progress hours:(NSInteger)hours minutes:(NSInteger)minutes seconds:(NSInteger)seconds
{
// ETA format is [XX]X:XX:XX when ETA is greater than one hour
// [X]X:XX when ETA is greater than 0 (minutes or seconds)
// When these conditions doesn't applied (eg. when ETA is undefined)
// we show just a tilde (~)
NSString *etaStr;
if (hours > 0)
{
etaStr = [NSString stringWithFormat:@"%ld:%02ld:%02ld", (long)hours, (long)minutes, (long)seconds];
}
else if (minutes > 0 || seconds > 0)
{
etaStr = [NSString stringWithFormat:@"%ld:%02ld", (long)minutes, (long)seconds];
}
else
{
etaStr = @"~";
}
[self updateDockIcon:progress withETA:etaStr];
}
@end
|