Files
KnockKnock/AboutWindowController.h
Patrick Wardle a2edefa03c version 2.0.2
-bug fixes
 -ui improvements (dark mode)
 -no icon shown when executed w/ cmdline options
 -'Check For Update...' added to main application menu
2018-12-19 19:25:23 -10:00

30 lines
580 B
Objective-C

//
// file: AboutWindowController.h
// project: KnockKnock
// 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