-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAppDelegate.h
45 lines (37 loc) · 1.54 KB
/
AppDelegate.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
35
36
37
38
39
40
41
42
43
44
45
//
// AppDelegate.h
// EFIgy
//
// Created by James Barclay on 10/5/17.
// Copyright © 2017 Duo Security. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface AppDelegate : NSObject <NSApplicationDelegate, NSURLSessionDelegate>
- (IBAction)getEFIReport:(id)sender;
@property (weak) IBOutlet NSTextField *hashedSysUUIDLabel;
@property (weak) IBOutlet NSTextField *hardwareVersionLabel;
@property (weak) IBOutlet NSTextField *bootROMVersionLabel;
@property (weak) IBOutlet NSTextField *smcVersionLabel;
@property (weak) IBOutlet NSTextField *boardIDLabel;
@property (weak) IBOutlet NSTextField *osVersionLabel;
@property (weak) IBOutlet NSTextField *buildNumberLabel;
@property (weak) IBOutlet NSImageView *logo;
@property (weak) IBOutlet NSProgressIndicator *progressIndicator;
@property (weak) IBOutlet NSButton *getEFIReportButton;
@property (nonatomic, strong) NSView *transparentBlackView;
@property (weak) IBOutlet NSView *resultsView;
@property NSDictionary *results;
@property NSString *boardID;
@property NSString *bootROMVersion;
@property NSString *machineModel;
@property NSString *smcVersion;
@property NSString *osVersion;
@property NSString *buildNumber;
@property NSString *hashedSysUUID;
@property (weak) IBOutlet NSImageView *firmwareUpToDateImage;
@property (weak) IBOutlet NSImageView *buildUpToDateImage;
@property (weak) IBOutlet NSImageView *osUpToDateImage;
@property (weak) IBOutlet NSTextField *firmwareUpToDateLabel;
@property (weak) IBOutlet NSTextField *buildUpToDateLabel;
@property (weak) IBOutlet NSTextField *osUpToDateLabel;
@end