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-09-16 01:02:06 +00:00
|
|
|
|
2016-09-10 17:08:58 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
2023-06-27 19:40:44 +00:00
|
|
|
#import "TorrentTableView.h"
|
2016-09-10 17:08:58 +00:00
|
|
|
|
2023-06-27 19:40:44 +00:00
|
|
|
@interface TorrentCell : NSTableCellView
|
2021-08-15 09:41:48 +00:00
|
|
|
|
2023-06-27 19:40:44 +00:00
|
|
|
@property(nonatomic) IBOutlet NSButton* fActionButton;
|
|
|
|
@property(nonatomic) IBOutlet NSButton* fControlButton;
|
|
|
|
@property(nonatomic) IBOutlet NSButton* fRevealButton;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2023-06-27 19:40:44 +00:00
|
|
|
@property(nonatomic) IBOutlet NSImageView* fIconView;
|
|
|
|
@property(nonatomic) IBOutlet NSImageView* fGroupIndicatorView;
|
2021-08-15 09:41:48 +00:00
|
|
|
|
2023-08-13 19:37:42 +00:00
|
|
|
@property(nonatomic) IBOutlet NSStackView* fStackView;
|
2023-06-27 19:40:44 +00:00
|
|
|
@property(nonatomic) IBOutlet NSTextField* fTorrentTitleField;
|
2023-08-13 19:37:42 +00:00
|
|
|
@property(nonatomic) IBOutlet NSImageView* fTorrentPriorityView;
|
|
|
|
@property(nonatomic) IBOutlet NSLayoutConstraint* fTorrentPriorityViewWidthConstraint;
|
|
|
|
|
2023-06-27 19:40:44 +00:00
|
|
|
@property(nonatomic) IBOutlet NSTextField* fTorrentProgressField;
|
|
|
|
@property(nonatomic) IBOutlet NSTextField* fTorrentStatusField;
|
|
|
|
|
|
|
|
@property(nonatomic) IBOutlet NSView* fTorrentProgressBarView;
|
|
|
|
|
|
|
|
@property(nonatomic) TorrentTableView* fTorrentTableView;
|
2008-01-15 03:33:44 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|