Status menu.
[ADDED] OS X: A status menu that allows you to lock and quit MP.
This commit is contained in:
parent
dfc62fa8a8
commit
f882d0fb53
@ -37,7 +37,7 @@
|
|||||||
- (void)printStore;
|
- (void)printStore;
|
||||||
|
|
||||||
- (void)loadStoredKey;
|
- (void)loadStoredKey;
|
||||||
- (void)signOut;
|
- (IBAction)signOut:(id)sender;
|
||||||
|
|
||||||
- (BOOL)tryMasterPassword:(NSString *)tryPassword;
|
- (BOOL)tryMasterPassword:(NSString *)tryPassword;
|
||||||
- (void)updateKey:(NSData *)key;
|
- (void)updateKey:(NSData *)key;
|
||||||
|
@ -222,7 +222,7 @@ static NSDictionary *keyHashQuery() {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)signOut {
|
- (IBAction)signOut:(id)sender {
|
||||||
|
|
||||||
[self updateKey:nil];
|
[self updateKey:nil];
|
||||||
}
|
}
|
||||||
|
@ -11,11 +11,13 @@
|
|||||||
|
|
||||||
@interface MPAppDelegate : NSObject <NSApplicationDelegate>
|
@interface MPAppDelegate : NSObject <NSApplicationDelegate>
|
||||||
|
|
||||||
@property (assign) IBOutlet NSWindow *window;
|
|
||||||
@property (strong) NSStatusItem *statusItem;
|
@property (strong) NSStatusItem *statusItem;
|
||||||
|
@property (weak) IBOutlet NSMenuItem *unlockItem;
|
||||||
|
@property (weak) IBOutlet NSMenuItem *lockItem;
|
||||||
|
@property (weak) IBOutlet NSMenuItem *showItem;
|
||||||
|
@property (strong) IBOutlet NSMenu *statusMenu;
|
||||||
|
|
||||||
- (IBAction)saveAction:(id)sender;
|
- (IBAction)activate:(id)sender;
|
||||||
|
- (IBAction)unlock:(id)sender;
|
||||||
- (void)loadKey;
|
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
@ -16,13 +16,14 @@
|
|||||||
|
|
||||||
@property (readwrite, strong, nonatomic) MPPasswordWindowController *passwordWindow;
|
@property (readwrite, strong, nonatomic) MPPasswordWindowController *passwordWindow;
|
||||||
|
|
||||||
- (void)activate;
|
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation MPAppDelegate
|
@implementation MPAppDelegate
|
||||||
@synthesize window;
|
|
||||||
@synthesize statusItem;
|
@synthesize statusItem;
|
||||||
|
@synthesize unlockItem;
|
||||||
|
@synthesize lockItem;
|
||||||
|
@synthesize showItem;
|
||||||
|
@synthesize statusMenu;
|
||||||
@synthesize passwordWindow;
|
@synthesize passwordWindow;
|
||||||
|
|
||||||
@dynamic persistentStoreCoordinator, managedObjectModel, managedObjectContext;
|
@dynamic persistentStoreCoordinator, managedObjectModel, managedObjectContext;
|
||||||
@ -50,26 +51,34 @@ static OSStatus MPHotKeyHander(EventHandlerCallRef nextHandler, EventRef theEven
|
|||||||
|
|
||||||
// Check which hotkey this was.
|
// Check which hotkey this was.
|
||||||
if (hotKeyID.signature == MPShowHotKey.signature && hotKeyID.id == MPShowHotKey.id) {
|
if (hotKeyID.signature == MPShowHotKey.signature && hotKeyID.id == MPShowHotKey.id) {
|
||||||
[((__bridge MPAppDelegate *)userData) activate];
|
[((__bridge MPAppDelegate *)userData) activate:nil];
|
||||||
return noErr;
|
return noErr;
|
||||||
}
|
}
|
||||||
|
|
||||||
return eventNotHandledErr;
|
return eventNotHandledErr;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)activate {
|
- (void)showMenu {
|
||||||
|
|
||||||
|
[self.showItem setEnabled:![self.passwordWindow.window isVisible]];
|
||||||
|
[self.statusItem popUpStatusItemMenu:self.statusMenu];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (IBAction)activate:(id)sender {
|
||||||
|
|
||||||
[[NSApplication sharedApplication] activateIgnoringOtherApps:YES];
|
[[NSApplication sharedApplication] activateIgnoringOtherApps:YES];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
|
||||||
|
|
||||||
|
[self addObserver:self forKeyPath:@"key" options:0 context:nil];
|
||||||
|
|
||||||
// Status item.
|
// Status item.
|
||||||
self.statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength];
|
self.statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength];
|
||||||
self.statusItem.title = @"•••";
|
self.statusItem.title = @"•••";
|
||||||
self.statusItem.highlightMode = YES;
|
self.statusItem.highlightMode = YES;
|
||||||
self.statusItem.target = self;
|
self.statusItem.target = self;
|
||||||
self.statusItem.action = @selector(activate);
|
self.statusItem.action = @selector(showMenu);
|
||||||
|
|
||||||
// Global hotkey.
|
// Global hotkey.
|
||||||
EventHotKeyRef hotKeyRef;
|
EventHotKeyRef hotKeyRef;
|
||||||
@ -89,10 +98,22 @@ static OSStatus MPHotKeyHander(EventHandlerCallRef nextHandler, EventRef theEven
|
|||||||
self.passwordWindow = [[MPPasswordWindowController alloc] initWithWindowNibName:@"MPPasswordWindowController"];
|
self.passwordWindow = [[MPPasswordWindowController alloc] initWithWindowNibName:@"MPPasswordWindowController"];
|
||||||
[self.passwordWindow showWindow:self];
|
[self.passwordWindow showWindow:self];
|
||||||
|
|
||||||
[self loadKey];
|
[self unlock:self];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)loadKey {
|
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
|
||||||
|
|
||||||
|
if ([keyPath isEqualToString:@"key"]) {
|
||||||
|
if (self.key)
|
||||||
|
[self.lockItem setEnabled:YES];
|
||||||
|
else {
|
||||||
|
[self.lockItem setEnabled:NO];
|
||||||
|
[self.passwordWindow close];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- (IBAction)unlock:(id)sender {
|
||||||
|
|
||||||
if (!self.key)
|
if (!self.key)
|
||||||
// Try and load the key from the keychain.
|
// Try and load the key from the keychain.
|
||||||
@ -143,20 +164,6 @@ static OSStatus MPHotKeyHander(EventHandlerCallRef nextHandler, EventRef theEven
|
|||||||
return [[self managedObjectContext] undoManager];
|
return [[self managedObjectContext] undoManager];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Performs the save action for the application, which is to send the save: message to the application's managed object context. Any encountered errors are presented to the user.
|
|
||||||
- (IBAction)saveAction:(id)sender
|
|
||||||
{
|
|
||||||
NSError *error = nil;
|
|
||||||
|
|
||||||
if (![[self managedObjectContext] commitEditing]) {
|
|
||||||
NSLog(@"%@:%@ unable to commit editing before saving", [self class], NSStringFromSelector(_cmd));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (![[self managedObjectContext] save:&error]) {
|
|
||||||
[[NSApplication sharedApplication] presentError:error];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
|
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
|
||||||
{
|
{
|
||||||
// Save changes in the application's managed object context before the application terminates.
|
// Save changes in the application's managed object context before the application terminates.
|
||||||
|
@ -3,18 +3,18 @@
|
|||||||
<data>
|
<data>
|
||||||
<int key="IBDocument.SystemTarget">1070</int>
|
<int key="IBDocument.SystemTarget">1070</int>
|
||||||
<string key="IBDocument.SystemVersion">11D50</string>
|
<string key="IBDocument.SystemVersion">11D50</string>
|
||||||
<string key="IBDocument.InterfaceBuilderVersion">2177</string>
|
<string key="IBDocument.InterfaceBuilderVersion">2182</string>
|
||||||
<string key="IBDocument.AppKitVersion">1138.32</string>
|
<string key="IBDocument.AppKitVersion">1138.32</string>
|
||||||
<string key="IBDocument.HIToolboxVersion">568.00</string>
|
<string key="IBDocument.HIToolboxVersion">568.00</string>
|
||||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="NS.object.0">2177</string>
|
<string key="NS.object.0">2182</string>
|
||||||
</object>
|
</object>
|
||||||
<array key="IBDocument.IntegratedClassDependencies">
|
<array key="IBDocument.IntegratedClassDependencies">
|
||||||
<string>NSUserDefaultsController</string>
|
|
||||||
<string>NSMenu</string>
|
|
||||||
<string>NSMenuItem</string>
|
<string>NSMenuItem</string>
|
||||||
|
<string>NSMenu</string>
|
||||||
<string>NSCustomObject</string>
|
<string>NSCustomObject</string>
|
||||||
|
<string>NSUserDefaultsController</string>
|
||||||
</array>
|
</array>
|
||||||
<array key="IBDocument.PluginDependencies">
|
<array key="IBDocument.PluginDependencies">
|
||||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
@ -35,231 +35,62 @@
|
|||||||
</object>
|
</object>
|
||||||
<object class="NSMenu" id="649796088">
|
<object class="NSMenu" id="649796088">
|
||||||
<string key="NSTitle">AMainMenu</string>
|
<string key="NSTitle">AMainMenu</string>
|
||||||
<array class="NSMutableArray" key="NSMenuItems">
|
<array class="NSMutableArray" key="NSMenuItems"/>
|
||||||
<object class="NSMenuItem" id="694149608">
|
|
||||||
<reference key="NSMenu" ref="649796088"/>
|
|
||||||
<string key="NSTitle">Master Password</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<object class="NSCustomResource" key="NSOnImage" id="35465992">
|
|
||||||
<string key="NSClassName">NSImage</string>
|
|
||||||
<string key="NSResourceName">NSMenuCheckmark</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSCustomResource" key="NSMixedImage" id="502551668">
|
|
||||||
<string key="NSClassName">NSImage</string>
|
|
||||||
<string key="NSResourceName">NSMenuMixedState</string>
|
|
||||||
</object>
|
|
||||||
<string key="NSAction">submenuAction:</string>
|
|
||||||
<object class="NSMenu" key="NSSubmenu" id="110575045">
|
|
||||||
<string key="NSTitle">Master Password</string>
|
|
||||||
<array class="NSMutableArray" key="NSMenuItems">
|
|
||||||
<object class="NSMenuItem" id="238522557">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<string key="NSTitle">About Master Password</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="304266470">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<bool key="NSIsDisabled">YES</bool>
|
|
||||||
<bool key="NSIsSeparator">YES</bool>
|
|
||||||
<string key="NSTitle"/>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="609285721">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<string key="NSTitle">Preferences…</string>
|
|
||||||
<string key="NSKeyEquiv">,</string>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="481834944">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<bool key="NSIsDisabled">YES</bool>
|
|
||||||
<bool key="NSIsSeparator">YES</bool>
|
|
||||||
<string key="NSTitle"/>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="1046388886">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<string key="NSTitle">Services</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
<string key="NSAction">submenuAction:</string>
|
|
||||||
<object class="NSMenu" key="NSSubmenu" id="752062318">
|
|
||||||
<string key="NSTitle">Services</string>
|
|
||||||
<array class="NSMutableArray" key="NSMenuItems"/>
|
|
||||||
<string key="NSName">_NSServicesMenu</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="646227648">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<bool key="NSIsDisabled">YES</bool>
|
|
||||||
<bool key="NSIsSeparator">YES</bool>
|
|
||||||
<string key="NSTitle"/>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="755159360">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<string key="NSTitle">Hide Master Password</string>
|
|
||||||
<string key="NSKeyEquiv">h</string>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="342932134">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<string key="NSTitle">Hide Others</string>
|
|
||||||
<string key="NSKeyEquiv">h</string>
|
|
||||||
<int key="NSKeyEquivModMask">1572864</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="908899353">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<string key="NSTitle">Show All</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="1056857174">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<bool key="NSIsDisabled">YES</bool>
|
|
||||||
<bool key="NSIsSeparator">YES</bool>
|
|
||||||
<string key="NSTitle"/>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="632727374">
|
|
||||||
<reference key="NSMenu" ref="110575045"/>
|
|
||||||
<string key="NSTitle">Quit Master Password</string>
|
|
||||||
<string key="NSKeyEquiv">q</string>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<string key="NSName">_NSAppleMenu</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="713487014">
|
|
||||||
<reference key="NSMenu" ref="649796088"/>
|
|
||||||
<string key="NSTitle">Window</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
<string key="NSAction">submenuAction:</string>
|
|
||||||
<object class="NSMenu" key="NSSubmenu" id="835318025">
|
|
||||||
<string key="NSTitle">Window</string>
|
|
||||||
<array class="NSMutableArray" key="NSMenuItems">
|
|
||||||
<object class="NSMenuItem" id="1011231497">
|
|
||||||
<reference key="NSMenu" ref="835318025"/>
|
|
||||||
<string key="NSTitle">Minimize</string>
|
|
||||||
<string key="NSKeyEquiv">m</string>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="575023229">
|
|
||||||
<reference key="NSMenu" ref="835318025"/>
|
|
||||||
<string key="NSTitle">Zoom</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="299356726">
|
|
||||||
<reference key="NSMenu" ref="835318025"/>
|
|
||||||
<bool key="NSIsDisabled">YES</bool>
|
|
||||||
<bool key="NSIsSeparator">YES</bool>
|
|
||||||
<string key="NSTitle"/>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="625202149">
|
|
||||||
<reference key="NSMenu" ref="835318025"/>
|
|
||||||
<string key="NSTitle">Bring All to Front</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<string key="NSName">_NSWindowsMenu</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMenuItem" id="448692316">
|
|
||||||
<reference key="NSMenu" ref="649796088"/>
|
|
||||||
<string key="NSTitle">Help</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
<string key="NSAction">submenuAction:</string>
|
|
||||||
<object class="NSMenu" key="NSSubmenu" id="992780483">
|
|
||||||
<string key="NSTitle">Help</string>
|
|
||||||
<array class="NSMutableArray" key="NSMenuItems">
|
|
||||||
<object class="NSMenuItem" id="105068016">
|
|
||||||
<reference key="NSMenu" ref="992780483"/>
|
|
||||||
<string key="NSTitle">Master Password Help</string>
|
|
||||||
<string key="NSKeyEquiv">?</string>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="35465992"/>
|
|
||||||
<reference key="NSMixedImage" ref="502551668"/>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<string key="NSName">_NSHelpMenu</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<string key="NSName">_NSMainMenu</string>
|
<string key="NSName">_NSMainMenu</string>
|
||||||
</object>
|
</object>
|
||||||
<object class="NSCustomObject" id="976324537">
|
<object class="NSCustomObject" id="976324537">
|
||||||
<string key="NSClassName">MPAppDelegate</string>
|
<string key="NSClassName">MPAppDelegate</string>
|
||||||
</object>
|
</object>
|
||||||
<object class="NSCustomObject" id="755631768">
|
|
||||||
<string key="NSClassName">NSFontManager</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSUserDefaultsController" id="705910970">
|
<object class="NSUserDefaultsController" id="705910970">
|
||||||
<bool key="NSSharedInstance">YES</bool>
|
<bool key="NSSharedInstance">YES</bool>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="NSMenu" id="764588027">
|
||||||
|
<string key="NSTitle"/>
|
||||||
|
<array class="NSMutableArray" key="NSMenuItems">
|
||||||
|
<object class="NSMenuItem" id="846612332">
|
||||||
|
<reference key="NSMenu" ref="764588027"/>
|
||||||
|
<string key="NSTitle">Show</string>
|
||||||
|
<string key="NSKeyEquiv"/>
|
||||||
|
<int key="NSMnemonicLoc">2147483647</int>
|
||||||
|
<object class="NSCustomResource" key="NSOnImage" id="552246001">
|
||||||
|
<string key="NSClassName">NSImage</string>
|
||||||
|
<string key="NSResourceName">NSMenuCheckmark</string>
|
||||||
|
</object>
|
||||||
|
<object class="NSCustomResource" key="NSMixedImage" id="752047669">
|
||||||
|
<string key="NSClassName">NSImage</string>
|
||||||
|
<string key="NSResourceName">NSMenuMixedState</string>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="NSMenuItem" id="466252869">
|
||||||
|
<reference key="NSMenu" ref="764588027"/>
|
||||||
|
<bool key="NSIsDisabled">YES</bool>
|
||||||
|
<bool key="NSIsSeparator">YES</bool>
|
||||||
|
<string key="NSTitle"/>
|
||||||
|
<string key="NSKeyEquiv"/>
|
||||||
|
<int key="NSMnemonicLoc">2147483647</int>
|
||||||
|
<reference key="NSOnImage" ref="552246001"/>
|
||||||
|
<reference key="NSMixedImage" ref="752047669"/>
|
||||||
|
</object>
|
||||||
|
<object class="NSMenuItem" id="229948989">
|
||||||
|
<reference key="NSMenu" ref="764588027"/>
|
||||||
|
<bool key="NSIsDisabled">YES</bool>
|
||||||
|
<string key="NSTitle">Lock</string>
|
||||||
|
<string key="NSKeyEquiv"/>
|
||||||
|
<int key="NSMnemonicLoc">2147483647</int>
|
||||||
|
<reference key="NSOnImage" ref="552246001"/>
|
||||||
|
<reference key="NSMixedImage" ref="752047669"/>
|
||||||
|
</object>
|
||||||
|
<object class="NSMenuItem" id="291035877">
|
||||||
|
<reference key="NSMenu" ref="764588027"/>
|
||||||
|
<string key="NSTitle">Quit</string>
|
||||||
|
<string key="NSKeyEquiv"/>
|
||||||
|
<int key="NSMnemonicLoc">2147483647</int>
|
||||||
|
<reference key="NSOnImage" ref="552246001"/>
|
||||||
|
<reference key="NSMixedImage" ref="752047669"/>
|
||||||
|
</object>
|
||||||
|
</array>
|
||||||
|
<bool key="NSNoAutoenable">YES</bool>
|
||||||
|
</object>
|
||||||
</array>
|
</array>
|
||||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||||
<array class="NSMutableArray" key="connectionRecords">
|
<array class="NSMutableArray" key="connectionRecords">
|
||||||
@ -267,17 +98,9 @@
|
|||||||
<object class="IBActionConnection" key="connection">
|
<object class="IBActionConnection" key="connection">
|
||||||
<string key="label">terminate:</string>
|
<string key="label">terminate:</string>
|
||||||
<reference key="source" ref="1050"/>
|
<reference key="source" ref="1050"/>
|
||||||
<reference key="destination" ref="632727374"/>
|
<reference key="destination" ref="291035877"/>
|
||||||
</object>
|
</object>
|
||||||
<int key="connectionID">449</int>
|
<int key="connectionID">734</int>
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBActionConnection" key="connection">
|
|
||||||
<string key="label">orderFrontStandardAboutPanel:</string>
|
|
||||||
<reference key="source" ref="1021"/>
|
|
||||||
<reference key="destination" ref="238522557"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">142</int>
|
|
||||||
</object>
|
</object>
|
||||||
<object class="IBConnectionRecord">
|
<object class="IBConnectionRecord">
|
||||||
<object class="IBOutletConnection" key="connection">
|
<object class="IBOutletConnection" key="connection">
|
||||||
@ -288,60 +111,44 @@
|
|||||||
<int key="connectionID">495</int>
|
<int key="connectionID">495</int>
|
||||||
</object>
|
</object>
|
||||||
<object class="IBConnectionRecord">
|
<object class="IBConnectionRecord">
|
||||||
<object class="IBActionConnection" key="connection">
|
<object class="IBOutletConnection" key="connection">
|
||||||
<string key="label">performMiniaturize:</string>
|
<string key="label">lockItem</string>
|
||||||
<reference key="source" ref="1014"/>
|
<reference key="source" ref="976324537"/>
|
||||||
<reference key="destination" ref="1011231497"/>
|
<reference key="destination" ref="229948989"/>
|
||||||
</object>
|
</object>
|
||||||
<int key="connectionID">37</int>
|
<int key="connectionID">726</int>
|
||||||
</object>
|
</object>
|
||||||
<object class="IBConnectionRecord">
|
<object class="IBConnectionRecord">
|
||||||
<object class="IBActionConnection" key="connection">
|
<object class="IBActionConnection" key="connection">
|
||||||
<string key="label">arrangeInFront:</string>
|
<string key="label">signOut:</string>
|
||||||
<reference key="source" ref="1014"/>
|
<reference key="source" ref="976324537"/>
|
||||||
<reference key="destination" ref="625202149"/>
|
<reference key="destination" ref="229948989"/>
|
||||||
</object>
|
</object>
|
||||||
<int key="connectionID">39</int>
|
<int key="connectionID">727</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBOutletConnection" key="connection">
|
||||||
|
<string key="label">showItem</string>
|
||||||
|
<reference key="source" ref="976324537"/>
|
||||||
|
<reference key="destination" ref="846612332"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">730</int>
|
||||||
|
</object>
|
||||||
|
<object class="IBConnectionRecord">
|
||||||
|
<object class="IBOutletConnection" key="connection">
|
||||||
|
<string key="label">statusMenu</string>
|
||||||
|
<reference key="source" ref="976324537"/>
|
||||||
|
<reference key="destination" ref="764588027"/>
|
||||||
|
</object>
|
||||||
|
<int key="connectionID">731</int>
|
||||||
</object>
|
</object>
|
||||||
<object class="IBConnectionRecord">
|
<object class="IBConnectionRecord">
|
||||||
<object class="IBActionConnection" key="connection">
|
<object class="IBActionConnection" key="connection">
|
||||||
<string key="label">performZoom:</string>
|
<string key="label">activate:</string>
|
||||||
<reference key="source" ref="1014"/>
|
<reference key="source" ref="976324537"/>
|
||||||
<reference key="destination" ref="575023229"/>
|
<reference key="destination" ref="846612332"/>
|
||||||
</object>
|
</object>
|
||||||
<int key="connectionID">240</int>
|
<int key="connectionID">736</int>
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBActionConnection" key="connection">
|
|
||||||
<string key="label">hide:</string>
|
|
||||||
<reference key="source" ref="1014"/>
|
|
||||||
<reference key="destination" ref="755159360"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">367</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBActionConnection" key="connection">
|
|
||||||
<string key="label">hideOtherApplications:</string>
|
|
||||||
<reference key="source" ref="1014"/>
|
|
||||||
<reference key="destination" ref="342932134"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">368</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBActionConnection" key="connection">
|
|
||||||
<string key="label">unhideAllApplications:</string>
|
|
||||||
<reference key="source" ref="1014"/>
|
|
||||||
<reference key="destination" ref="908899353"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">370</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBActionConnection" key="connection">
|
|
||||||
<string key="label">showHelp:</string>
|
|
||||||
<reference key="source" ref="1014"/>
|
|
||||||
<reference key="destination" ref="105068016"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">493</int>
|
|
||||||
</object>
|
</object>
|
||||||
</array>
|
</array>
|
||||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||||
@ -373,167 +180,9 @@
|
|||||||
<object class="IBObjectRecord">
|
<object class="IBObjectRecord">
|
||||||
<int key="objectID">29</int>
|
<int key="objectID">29</int>
|
||||||
<reference key="object" ref="649796088"/>
|
<reference key="object" ref="649796088"/>
|
||||||
<array class="NSMutableArray" key="children">
|
<array class="NSMutableArray" key="children"/>
|
||||||
<reference ref="713487014"/>
|
|
||||||
<reference ref="694149608"/>
|
|
||||||
<reference ref="448692316"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="0"/>
|
<reference key="parent" ref="0"/>
|
||||||
</object>
|
</object>
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">19</int>
|
|
||||||
<reference key="object" ref="713487014"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="835318025"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="649796088"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">56</int>
|
|
||||||
<reference key="object" ref="694149608"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="110575045"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="649796088"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">57</int>
|
|
||||||
<reference key="object" ref="110575045"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="238522557"/>
|
|
||||||
<reference ref="755159360"/>
|
|
||||||
<reference ref="908899353"/>
|
|
||||||
<reference ref="632727374"/>
|
|
||||||
<reference ref="646227648"/>
|
|
||||||
<reference ref="609285721"/>
|
|
||||||
<reference ref="481834944"/>
|
|
||||||
<reference ref="304266470"/>
|
|
||||||
<reference ref="1046388886"/>
|
|
||||||
<reference ref="1056857174"/>
|
|
||||||
<reference ref="342932134"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="694149608"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">58</int>
|
|
||||||
<reference key="object" ref="238522557"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">134</int>
|
|
||||||
<reference key="object" ref="755159360"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">150</int>
|
|
||||||
<reference key="object" ref="908899353"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">136</int>
|
|
||||||
<reference key="object" ref="632727374"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">144</int>
|
|
||||||
<reference key="object" ref="646227648"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">129</int>
|
|
||||||
<reference key="object" ref="609285721"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">143</int>
|
|
||||||
<reference key="object" ref="481834944"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">236</int>
|
|
||||||
<reference key="object" ref="304266470"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">131</int>
|
|
||||||
<reference key="object" ref="1046388886"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="752062318"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">149</int>
|
|
||||||
<reference key="object" ref="1056857174"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">145</int>
|
|
||||||
<reference key="object" ref="342932134"/>
|
|
||||||
<reference key="parent" ref="110575045"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">130</int>
|
|
||||||
<reference key="object" ref="752062318"/>
|
|
||||||
<reference key="parent" ref="1046388886"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">24</int>
|
|
||||||
<reference key="object" ref="835318025"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="299356726"/>
|
|
||||||
<reference ref="625202149"/>
|
|
||||||
<reference ref="575023229"/>
|
|
||||||
<reference ref="1011231497"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="713487014"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">92</int>
|
|
||||||
<reference key="object" ref="299356726"/>
|
|
||||||
<reference key="parent" ref="835318025"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">5</int>
|
|
||||||
<reference key="object" ref="625202149"/>
|
|
||||||
<reference key="parent" ref="835318025"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">239</int>
|
|
||||||
<reference key="object" ref="575023229"/>
|
|
||||||
<reference key="parent" ref="835318025"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">23</int>
|
|
||||||
<reference key="object" ref="1011231497"/>
|
|
||||||
<reference key="parent" ref="835318025"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">420</int>
|
|
||||||
<reference key="object" ref="755631768"/>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">490</int>
|
|
||||||
<reference key="object" ref="448692316"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="992780483"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="649796088"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">491</int>
|
|
||||||
<reference key="object" ref="992780483"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="105068016"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="448692316"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">492</int>
|
|
||||||
<reference key="object" ref="105068016"/>
|
|
||||||
<reference key="parent" ref="992780483"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
<object class="IBObjectRecord">
|
||||||
<int key="objectID">494</int>
|
<int key="objectID">494</int>
|
||||||
<reference key="object" ref="976324537"/>
|
<reference key="object" ref="976324537"/>
|
||||||
@ -544,80 +193,59 @@
|
|||||||
<reference key="object" ref="705910970"/>
|
<reference key="object" ref="705910970"/>
|
||||||
<reference key="parent" ref="0"/>
|
<reference key="parent" ref="0"/>
|
||||||
</object>
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">716</int>
|
||||||
|
<reference key="object" ref="764588027"/>
|
||||||
|
<array class="NSMutableArray" key="children">
|
||||||
|
<reference ref="291035877"/>
|
||||||
|
<reference ref="466252869"/>
|
||||||
|
<reference ref="846612332"/>
|
||||||
|
<reference ref="229948989"/>
|
||||||
|
</array>
|
||||||
|
<reference key="parent" ref="0"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">717</int>
|
||||||
|
<reference key="object" ref="291035877"/>
|
||||||
|
<reference key="parent" ref="764588027"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">718</int>
|
||||||
|
<reference key="object" ref="466252869"/>
|
||||||
|
<reference key="parent" ref="764588027"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">719</int>
|
||||||
|
<reference key="object" ref="846612332"/>
|
||||||
|
<reference key="parent" ref="764588027"/>
|
||||||
|
</object>
|
||||||
|
<object class="IBObjectRecord">
|
||||||
|
<int key="objectID">720</int>
|
||||||
|
<reference key="object" ref="229948989"/>
|
||||||
|
<reference key="parent" ref="764588027"/>
|
||||||
|
</object>
|
||||||
</array>
|
</array>
|
||||||
</object>
|
</object>
|
||||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="129.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="130.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="131.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="134.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="136.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="143.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="144.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="145.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="149.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="150.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="236.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="239.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="420.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="490.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="491.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="492.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="494.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="494.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="5.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="548.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="548.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="56.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="716.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="57.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="717.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="58.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="718.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
<string key="92.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<string key="719.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
|
<string key="720.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
||||||
</dictionary>
|
</dictionary>
|
||||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||||
<nil key="activeLocalization"/>
|
<nil key="activeLocalization"/>
|
||||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||||
<nil key="sourceID"/>
|
<nil key="sourceID"/>
|
||||||
<int key="maxID">715</int>
|
<int key="maxID">736</int>
|
||||||
</object>
|
|
||||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
|
||||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">MPAppDelegate</string>
|
|
||||||
<string key="superclassName">NSObject</string>
|
|
||||||
<object class="NSMutableDictionary" key="actions">
|
|
||||||
<string key="NS.key.0">saveAction:</string>
|
|
||||||
<string key="NS.object.0">id</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="actionInfosByName">
|
|
||||||
<string key="NS.key.0">saveAction:</string>
|
|
||||||
<object class="IBActionInfo" key="NS.object.0">
|
|
||||||
<string key="name">saveAction:</string>
|
|
||||||
<string key="candidateClassName">id</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="outlets">
|
|
||||||
<string key="NS.key.0">window</string>
|
|
||||||
<string key="NS.object.0">NSWindow</string>
|
|
||||||
</object>
|
|
||||||
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
|
||||||
<string key="NS.key.0">window</string>
|
|
||||||
<object class="IBToOneOutletInfo" key="NS.object.0">
|
|
||||||
<string key="name">window</string>
|
|
||||||
<string key="candidateClassName">NSWindow</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBProjectSource</string>
|
|
||||||
<string key="minorKey">./Classes/MPAppDelegate.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
</object>
|
</object>
|
||||||
|
<object class="IBClassDescriber" key="IBDocument.Classes"/>
|
||||||
<int key="IBDocument.localizationMode">0</int>
|
<int key="IBDocument.localizationMode">0</int>
|
||||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
||||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
||||||
|
Loading…
Reference in New Issue
Block a user