Files
BlockBlock/Daemon/Daemon/WelcomeWindowController.h
T
Patrick Wardle 57ca40fc7f initial checkin
BlockBlock v1.0 (beta)
2020-04-10 21:09:09 -10:00

48 lines
1.0 KiB
Objective-C

//
// LinkWindowController.h
// mainApp
//
// Created by Patrick Wardle on 1/25/18.
// Copyright © 2018 Objective-See. All rights reserved.
//
@import Cocoa;
#import <objc/message.h>
@interface WelcomeWindowController : NSWindowController
/* PROPERTIES */
//sync view controller
@property(nonatomic, retain)NSViewController* welcomeViewController;
//welcome view
@property (strong) IBOutlet NSView *welcomeView;
//config view
@property (strong) IBOutlet NSView *configureView;
//allow apple bins/apps
@property (weak) IBOutlet NSButton *allowApple;
//allow 3rd-party installed apps
@property (weak) IBOutlet NSButton *allowInstalled;
//kext view
@property (strong) IBOutlet NSView *kextView;
//activity indicator
@property (weak) IBOutlet NSProgressIndicator *activityIndicator;
//support view
@property (strong) IBOutlet NSView *supportView;
/* METHODS */
//show a view
// note: replaces old view and highlights specified responder
-(void)showView:(NSView*)view firstResponder:(NSInteger)firstResponder;
@end