30 lines
1.1 KiB
Objective-C
30 lines
1.1 KiB
Objective-C
// This file Copyright © 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>
|
|
#import "TorrentTableView.h"
|
|
|
|
@interface TorrentCell : NSTableCellView
|
|
|
|
@property(nonatomic) IBOutlet NSButton* fActionButton;
|
|
@property(nonatomic) IBOutlet NSButton* fControlButton;
|
|
@property(nonatomic) IBOutlet NSButton* fRevealButton;
|
|
|
|
@property(nonatomic) IBOutlet NSImageView* fIconView;
|
|
@property(nonatomic) IBOutlet NSImageView* fGroupIndicatorView;
|
|
|
|
@property(nonatomic) IBOutlet NSStackView* fStackView;
|
|
@property(nonatomic) IBOutlet NSTextField* fTorrentTitleField;
|
|
@property(nonatomic) IBOutlet NSImageView* fTorrentPriorityView;
|
|
@property(nonatomic) IBOutlet NSLayoutConstraint* fTorrentPriorityViewWidthConstraint;
|
|
|
|
@property(nonatomic) IBOutlet NSTextField* fTorrentProgressField;
|
|
@property(nonatomic) IBOutlet NSTextField* fTorrentStatusField;
|
|
|
|
@property(nonatomic) IBOutlet NSView* fTorrentProgressBarView;
|
|
|
|
@property(nonatomic) TorrentTableView* fTorrentTableView;
|
|
|
|
@end
|