-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathWelcomeWindowController.h
More file actions
80 lines (52 loc) · 1.91 KB
/
WelcomeWindowController.h
File metadata and controls
80 lines (52 loc) · 1.91 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
// LinkWindowController.h
// LuLu
//
// Created by Patrick Wardle on 1/25/18.
// Copyright (c) 2018 Objective-See. All rights reserved.
//
@import Cocoa;
@import OSLog;
@interface WelcomeWindowController : NSWindowController <NSTextFieldDelegate>
/* PROPERTIES */
//main view controller
@property(nonatomic, retain)NSViewController* welcomeViewController;
//welcome view
@property (strong) IBOutlet NSView *welcomeView;
//next
@property (weak) IBOutlet NSButton* nextButton;
//allow FDA view
@property (strong) IBOutlet NSView *enableFDAView;
@property (weak) IBOutlet NSTextField *fdaNote;
@property (weak) IBOutlet NSButton *diskAccessButton;
@property (weak) IBOutlet NSProgressIndicator *FDAActivityIndicator;
@property (weak) IBOutlet NSTextField *FDAMessage;
//allow extension view
@property (strong) IBOutlet NSView *allowExtensionView;
//allow extension spinner
@property (weak) IBOutlet NSProgressIndicator *allowExtActivityIndicator;
//allow extension message
@property (weak) IBOutlet NSTextField *allowExtMessage;
//approve extension image
@property (weak) IBOutlet NSImageView *approveExt;
//approve extension message
@property (weak) IBOutlet NSTextField *approveExtMessage;
//config view
@property (strong) IBOutlet NSView *configureView;
@property (strong) IBOutlet NSView *vtIntegrationView;
@property (weak) IBOutlet NSTextField *vtAPIKey;
//show apple items
@property (weak) IBOutlet NSButton *showAppleItems;
//start at login
@property (weak) IBOutlet NSButton *startAtLogin;
//disable update check
@property (weak) IBOutlet NSButton *disableUpdateCheck;
@property (weak) IBOutlet NSButton *disableVTQueries;
@property (weak) IBOutlet HyperlinkTextField *getAPILink;
//support view
@property (strong) IBOutlet NSView *supportView;
/* METHODS */
//show a view
// note: replaces old view and highlights specified responder
-(void)showView:(NSView*)view firstResponder:(NSView*)firstResponder;
@end