mirror of
https://github.com/objective-see/TaskExplorer.git
synced 2026-03-22 07:02:39 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// PrefsWindowController.h
|
||||
// DHS
|
||||
//
|
||||
// Created by Patrick Wardle on 2/6/15.
|
||||
// Copyright (c) 2015 Objective-See, LLC. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
@interface RequestRootWindowController : NSWindowController <NSWindowDelegate>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/* PROPERTIES */
|
||||
|
||||
//status msg
|
||||
@property (weak) IBOutlet NSTextField *statusMsg;
|
||||
|
||||
//flag indicating app should exit
|
||||
@property BOOL shouldExit;
|
||||
|
||||
/* METHODS */
|
||||
|
||||
//invoked when user clicks 'auth' button
|
||||
// ->auths user!
|
||||
-(IBAction)authenticate:(id)sender;
|
||||
|
||||
//invoked when user clicks 'cancel' button
|
||||
// ->exits app
|
||||
-(IBAction)close:(id)sender;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user