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