Files
TaskExplorer/AboutWindowController.h
T
Patrick Wardle 205e24d309 version 2.0.0
-avoid UI calls when run in cmdline mode
 -hide icon when run in cmdline mode
 -option to scan single process
2018-12-21 20:19:09 -10:00

29 lines
582 B
Objective-C

//
// file: AboutWindowController.h
// project: lulu (config)
// description: about window display/controller (header)
//
// created by Patrick Wardle
// copyright (c) 2018 Objective-See. All rights reserved.
//
@import Cocoa;
@interface AboutWindowController : NSWindowController <NSWindowDelegate>
{
}
/* PROPERTIES */
//version label/string
@property (weak, atomic) IBOutlet NSTextField *versionLabel;
//patrons
@property (unsafe_unretained, atomic) IBOutlet NSTextView *patrons;
//'support us' button
@property (weak, atomic) IBOutlet NSButton *supportUs;
@end