Files
ReiKey/shared/AboutWindowController.h
Patrick Wardle 81f354320d version 1.0.0 checkin
added installer
improved icon (fixes #6)
added quit option to login item menu (fixes #4)
improved preference handling (fixes #3)
now ignore alerts from same process
2019-01-03 14:50:47 -10:00

31 lines
593 B
Objective-C

//
// AboutWindowController.h
// ReiKey
//
// Created by Patrick Wardle on 12/24/18.
// Copyright © 2018 Objective-See. All rights reserved.
//
@import Cocoa;
@interface AboutWindowController : NSWindowController <NSWindowDelegate>
{
}
/* PROPERTIES */
//version label/string
@property (weak) IBOutlet NSTextField *versionLabel;
//patrons
@property (unsafe_unretained) IBOutlet NSTextView *patrons;
/* METHODS */
//automatically invoked when user clicks any of the buttons
// perform actions, such as loading patreon or products URL
-(IBAction)buttonHandler:(id)sender;
@end