1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2026-03-26 07:21:38 +00:00

Un-xibless-ified DeletionOptions

This commit is contained in:
Virgil Dupras
2017-04-04 20:59:25 -04:00
parent 8495402a3b
commit 9de5a48b1f
6 changed files with 199 additions and 71 deletions

View File

@@ -1,5 +1,5 @@
/*
Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
Copyright 2017 Virgil Dupras
This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
which should be included with this package. The terms are also available at
@@ -14,10 +14,10 @@ http://www.gnu.org/licenses/gpl-3.0.html
PyDeletionOptions *model;
NSTextField *messageTextField;
NSButton *linkButton;
NSMatrix *linkTypeRadio;
NSButton *directButton;
IBOutlet NSTextField *messageTextField;
IBOutlet NSButton *linkButton;
IBOutlet NSMatrix *linkTypeRadio;
IBOutlet NSButton *directButton;
}
@property (readwrite, retain) NSTextField *messageTextField;
@@ -27,7 +27,7 @@ http://www.gnu.org/licenses/gpl-3.0.html
- (id)initWithPyRef:(PyObject *)aPyRef;
- (void)updateOptions;
- (void)proceed;
- (void)cancel;
- (IBAction)updateOptions:(id)sender;
- (IBAction)proceed:(id)sender;
- (IBAction)cancel:(id)sender;
@end