2023-02-11 20:49:42 +00:00
|
|
|
// This file Copyright © 2006-2023 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-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
#import "TorrentCell.h"
|
2023-06-27 19:40:44 +00:00
|
|
|
#import "ProgressBarView.h"
|
2008-10-31 00:13:50 +00:00
|
|
|
#import "ProgressGradients.h"
|
2009-10-11 03:36:50 +00:00
|
|
|
#import "Torrent.h"
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
@implementation TorrentCell
|
|
|
|
|
2023-06-27 19:40:44 +00:00
|
|
|
//draw progress bar
|
|
|
|
- (void)drawRect:(NSRect)dirtyRect
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2023-06-27 19:40:44 +00:00
|
|
|
if (self.fTorrentTableView)
|
2017-01-24 17:53:16 +00:00
|
|
|
{
|
2023-06-27 19:40:44 +00:00
|
|
|
NSRect barRect = self.fTorrentProgressBarView.frame;
|
|
|
|
ProgressBarView* progressBar = [[ProgressBarView alloc] init];
|
|
|
|
Torrent* torrent = (Torrent*)self.objectValue;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2023-06-27 19:40:44 +00:00
|
|
|
[progressBar drawBarInRect:barRect forTableView:self.fTorrentTableView withTorrent:torrent];
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2023-06-27 19:40:44 +00:00
|
|
|
[super drawRect:dirtyRect];
|
2008-01-14 18:02:08 +00:00
|
|
|
}
|
|
|
|
|
2023-06-27 19:40:44 +00:00
|
|
|
//otherwise progress bar is inverted
|
|
|
|
- (BOOL)isFlipped
|
2008-01-14 18:02:08 +00:00
|
|
|
{
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|