diff options
author | ch1p <me@ch1p.com> | 2015-08-14 01:04:22 +0300 |
---|---|---|
committer | ch1p <me@ch1p.com> | 2015-08-14 01:04:22 +0300 |
commit | 8c1a7423a0e526f2896d17be768abeccbeb77ad7 (patch) | |
tree | 67ad777e65ff6b0cca64a27ab5bb8455b575ffae /VKPC/HostsHackWindowController.h |
initial
Diffstat (limited to 'VKPC/HostsHackWindowController.h')
-rw-r--r-- | VKPC/HostsHackWindowController.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/VKPC/HostsHackWindowController.h b/VKPC/HostsHackWindowController.h new file mode 100644 index 0000000..e12d363 --- /dev/null +++ b/VKPC/HostsHackWindowController.h @@ -0,0 +1,26 @@ +// +// HostsHackWindowController.h +// VKPC +// +// Created by Eugene on 10/30/14. +// Copyright (c) 2014 Eugene Z. All rights reserved. +// + +#import <Cocoa/Cocoa.h> +#import "WindowController.h" +#import "FlippedView.h" + +//@class FlippedView; + +@interface HostsHackWindowController : WindowController<NSWindowDelegate> + +//@property (strong) IBOutlet NSWindow *window; +@property (weak) IBOutlet NSTextField *configurationRequiredTextField; +@property (weak) IBOutlet NSButton *button; + +- (IBAction)buttonPressed:(id)sender; +- (void)setButtonRetry; +- (void)setButtonContinue; +- (void)setButtonWait; + +@end |