forked from Ascoware/get-iplayer-automator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtendedShowInformationController.h
34 lines (31 loc) · 1.04 KB
/
ExtendedShowInformationController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// ExtendedShowInformationController.h
// Get_iPlayer GUI
//
// Created by Thomas Willson on 8/7/14.
//
//
#import <Foundation/Foundation.h>
@interface ExtendedShowInformationController : NSObject {
IBOutlet NSTableView *searchResultsTable;
IBOutlet NSArrayController *searchResultsArrayController;
IBOutlet NSProgressIndicator *retrievingInfoIndicator;
IBOutlet NSTextField *loadingLabel;
IBOutlet NSView *loadingView;
IBOutlet NSView *infoView;
IBOutlet NSPopover *popover;
IBOutlet NSImageView *imageView;
IBOutlet NSTextField *seriesNameField;
IBOutlet NSTextField *episodeNameField;
IBOutlet NSTextField *numbersField;
IBOutlet NSTextField *durationField;
IBOutlet NSTextField *categoriesField;
IBOutlet NSTextField *firstBroadcastField;
IBOutlet NSTextField *lastBroadcastField;
IBOutlet NSTextView *descriptionView;
IBOutlet NSTextField *typeField;
IBOutlet NSArrayController *modeSizeController;
NSArray *modeSizeSorters;
}
@property (readonly) NSArray *modeSizeSorters;
@end