2009-08-05 08:59:46 +00:00
|
|
|
/*
|
2010-01-01 20:11:34 +00:00
|
|
|
Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
|
|
|
|
This software is licensed under the "HS" License as described in the "LICENSE" file,
|
|
|
|
which should be included with this package. The terms are also available at
|
|
|
|
http://www.hardcoded.net/licenses/hs_license
|
|
|
|
*/
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "RecentDirectories.h"
|
|
|
|
#import "PyDupeGuru.h"
|
2009-10-30 14:40:17 +00:00
|
|
|
#import "ResultWindow.h"
|
2009-11-02 15:16:34 +00:00
|
|
|
#import "DetailsPanel.h"
|
2010-02-05 15:51:00 +00:00
|
|
|
#import "DirectoryPanel.h"
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
@interface AppDelegateBase : NSObject
|
|
|
|
{
|
|
|
|
IBOutlet PyDupeGuruBase *py;
|
|
|
|
IBOutlet RecentDirectories *recentDirectories;
|
|
|
|
IBOutlet NSMenuItem *unlockMenuItem;
|
2009-10-30 14:40:17 +00:00
|
|
|
IBOutlet ResultWindowBase *result;
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2010-02-05 16:05:00 +00:00
|
|
|
DirectoryPanel *_directoryPanel;
|
2010-02-05 16:15:45 +00:00
|
|
|
DetailsPanel *_detailsPanel;
|
2010-02-05 15:51:00 +00:00
|
|
|
BOOL _savedResults;
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
- (IBAction)unlockApp:(id)sender;
|
|
|
|
|
|
|
|
- (PyDupeGuruBase *)py;
|
|
|
|
- (RecentDirectories *)recentDirectories;
|
2010-02-05 16:05:00 +00:00
|
|
|
- (DirectoryPanel *)directoryPanel;
|
2010-02-05 16:15:45 +00:00
|
|
|
- (DetailsPanel *)detailsPanel;
|
2010-02-05 15:51:00 +00:00
|
|
|
- (void)saveResults;
|
2009-06-01 09:55:11 +00:00
|
|
|
@end
|