mirror of
https://github.com/objective-see/BlockBlock.git
synced 2026-03-22 07:02:39 +00:00
57ca40fc7f
BlockBlock v1.0 (beta)
30 lines
589 B
Objective-C
30 lines
589 B
Objective-C
//
|
|
// file: AboutWindowController.h
|
|
// project: BlockBlock (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
|