mirror of
https://github.com/objective-see/BlockBlock.git
synced 2026-03-22 07:02:39 +00:00
57ca40fc7f
BlockBlock v1.0 (beta)
48 lines
1.0 KiB
Objective-C
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
|