// // DownloadWindowController.h // Ample // // Created by Kelvin Sherlock on 9/2/2020. // Copyright © 2020 Kelvin Sherlock. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface DownloadWindowController : NSWindowController @property NSString *currentROM; @property NSInteger currentCount; @property NSInteger totalCount; @property NSInteger errorCount; @property BOOL active; +(instancetype)sharedInstance; @end @interface DownloadWindowController (URL) @end @interface DownloadWindowController (Table) @end @interface DownloadWindowController (Menu) @end @interface DownloadTableCellView : NSTableCellView @property (weak) IBOutlet NSTextField *statusTextField; @property (weak) IBOutlet NSProgressIndicator *activity; @end NS_ASSUME_NONNULL_END