26 lines
825 B
C
26 lines
825 B
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;
|
||
|
|
||
|
@interface SmallTorrentCell : 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 NSTextField* fTorrentTitleField;
|
||
|
@property(nonatomic) IBOutlet NSTextField* fTorrentStatusField;
|
||
|
|
||
|
@property(nonatomic) IBOutlet NSView* fTorrentProgressBarView;
|
||
|
|
||
|
@property(nonatomic) TorrentTableView* fTorrentTableView;
|
||
|
|
||
|
@end
|