mirror of
https://github.com/transmission/transmission.git
synced 2025-12-20 18:38:42 +00:00
Converted TorrentTableView from older style cell based table to more modern view based * floating group rows are now used for an improved groups experience * individual group indicators are hidden when _Use Groups_ is selected to minimize visual clutter (see #3328 ) * removed negated `usesAlternatingRowBackgroundColors` flag for minimal view in Controller.mm (personal preference - easy to restore)
15 lines
406 B
Objective-C
15 lines
406 B
Objective-C
// This file Copyright © 2006-2023 Transmission authors and contributors.
|
|
// It may be used under the MIT (SPDX: MIT) license.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
@class TorrentTableView;
|
|
@class Torrent;
|
|
|
|
@interface ProgressBarView : NSView
|
|
|
|
- (void)drawBarInRect:(NSRect)barRect forTableView:(TorrentTableView*)tableView withTorrent:(Torrent*)torrent;
|
|
|
|
@end
|