mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
04d7880a0c
--HG-- rename : cocoa/base/xib/DetailsPanel.xib => cocoa/base/en.lproj/DetailsPanel.xib rename : cocoa/base/xib/DirectoryPanel.xib => cocoa/base/en.lproj/DirectoryPanel.xib rename : cocoa/base/xib/MainMenu.xib => cocoa/base/en.lproj/MainMenu.xib rename : cocoa/base/xib/ProblemDialog.xib => cocoa/base/en.lproj/ProblemDialog.xib rename : cocoa/base/xib/ResultWindow.xib => cocoa/base/en.lproj/ResultWindow.xib rename : cocoa/me/xib/Preferences.xib => cocoa/me/en.lproj/Preferences.xib rename : cocoa/pe/xib/DetailsPanel.xib => cocoa/pe/en.lproj/DetailsPanel.xib rename : cocoa/pe/xib/Preferences.xib => cocoa/pe/en.lproj/Preferences.xib rename : cocoa/se/xib/Preferences.xib => cocoa/se/en.lproj/Preferences.xib
35 lines
896 B
Objective-C
35 lines
896 B
Objective-C
/*
|
|
Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
This software is licensed under the "BSD" 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/bsd_license
|
|
*/
|
|
|
|
#import "DirectoryPanel.h"
|
|
#import "Consts.h"
|
|
|
|
@implementation DirectoryPanelPE
|
|
- (id)initWithParentApp:(id)aParentApp
|
|
{
|
|
self = [super initWithParentApp:aParentApp];
|
|
[[self window] setTitle:@"dupeGuru Picture Edition"];
|
|
_alwaysShowPopUp = YES;
|
|
return self;
|
|
}
|
|
|
|
- (void)fillPopUpMenu
|
|
{
|
|
[super fillPopUpMenu];
|
|
NSMenu *m = [addButtonPopUp menu];
|
|
NSMenuItem *mi = [m insertItemWithTitle:TR(@"Add iPhoto Library") action:@selector(addiPhoto:)
|
|
keyEquivalent:@"" atIndex:1];
|
|
[mi setTarget:self];
|
|
}
|
|
|
|
- (IBAction)addiPhoto:(id)sender
|
|
{
|
|
[self addDirectory:@"iPhoto Library"];
|
|
}
|
|
@end
|