2012-05-30 12:10:56 -04:00
|
|
|
/*
|
2015-01-03 16:30:57 -05:00
|
|
|
Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2012-05-30 12:10:56 -04:00
|
|
|
|
2015-01-03 16:33:16 -05:00
|
|
|
This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2012-05-30 12:10:56 -04:00
|
|
|
which should be included with this package. The terms are also available at
|
2015-01-03 16:33:16 -05:00
|
|
|
http://www.gnu.org/licenses/gpl-3.0.html
|
2012-05-30 12:10:56 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "PyDeletionOptions.h"
|
|
|
|
|
|
|
|
@interface DeletionOptions : NSWindowController
|
|
|
|
{
|
|
|
|
|
|
|
|
PyDeletionOptions *model;
|
2012-07-23 10:14:50 -04:00
|
|
|
|
|
|
|
NSTextField *messageTextField;
|
2012-08-01 12:36:23 -04:00
|
|
|
NSButton *linkButton;
|
|
|
|
NSMatrix *linkTypeRadio;
|
2012-07-23 10:14:50 -04:00
|
|
|
NSButton *directButton;
|
2012-05-30 12:10:56 -04:00
|
|
|
}
|
2012-07-23 10:14:50 -04:00
|
|
|
|
|
|
|
@property (readwrite, retain) NSTextField *messageTextField;
|
2012-08-01 12:36:23 -04:00
|
|
|
@property (readwrite, retain) NSButton *linkButton;
|
|
|
|
@property (readwrite, retain) NSMatrix *linkTypeRadio;
|
2012-07-23 10:14:50 -04:00
|
|
|
@property (readwrite, retain) NSButton *directButton;
|
|
|
|
|
2012-05-30 12:10:56 -04:00
|
|
|
- (id)initWithPyRef:(PyObject *)aPyRef;
|
|
|
|
|
2012-07-23 10:14:50 -04:00
|
|
|
- (void)updateOptions;
|
|
|
|
- (void)proceed;
|
|
|
|
- (void)cancel;
|
2012-05-30 12:10:56 -04:00
|
|
|
@end
|