-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathPrefsWindowController.h
More file actions
executable file
·78 lines (52 loc) · 1.59 KB
/
PrefsWindowController.h
File metadata and controls
executable file
·78 lines (52 loc) · 1.59 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
//
// PrefsWindowController.h
// KnockKnock
//
// Created by Patrick Wardle on 2/6/15.
// Copyright (c) 2015 Objective-See, LLC. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "3rdParty/HyperlinkTextField.h"
@interface PrefsWindowController : NSWindowController <NSWindowDelegate>
{
}
/* METHODS */
//register default prefs
// ->only used if user hasn't set any
-(void)registerDefaults;
//load (persistence) preferences from file system
-(void)loadPreferences;
//buttons
//button: filtering out OS componets
@property (weak) IBOutlet NSButton* showTrustedItemsBtn;
//button: start at login
@property (weak) IBOutlet NSButton* startAtLoginBtn;
//button: disable update check
@property (weak) IBOutlet NSButton* disableUpdateCheckBtn;
//button: disable VT checks (hash)
@property (weak) IBOutlet NSButton* disableVTQueriesBtn;
//button for ok/close
@property (weak) IBOutlet NSButton *okButton;
//filter out OS/known items
@property BOOL showTrustedItems;
//start at login
@property BOOL startAtLogin;
//no update checks
@property BOOL disableUpdateCheck;
//VT api key
@property(nonatomic, retain)NSString* vtAPIKey;
//disable talking to VT
@property BOOL disableVTQueries;
//VT API key
@property (weak) IBOutlet NSTextField* apiTextField;
//how to get a VT key
@property (strong) IBOutlet NSView* getAPIHelp;
//link (how to get a VT key)
@property (weak) IBOutlet HyperlinkTextField* getAPILink;
@property (weak) IBOutlet HyperlinkTextField* getAPILinkPopover;
/* METHODS */
//'OK' button handler
// ->save prefs and close window
-(IBAction)closeWindow:(id)sender;
/* METHODS */
@end