mirror of
https://github.com/MacPass/MacPass.git
synced 2026-01-30 16:48:17 +00:00
IconSelectionView now can be used to set default icons. Setting other Icons is broken for now. Setting custom icons doesn't work at all.
This commit is contained in:
@@ -86,6 +86,7 @@
|
|||||||
<font key="font" metaFont="system"/>
|
<font key="font" metaFont="system"/>
|
||||||
</buttonCell>
|
</buttonCell>
|
||||||
<connections>
|
<connections>
|
||||||
|
<action selector="_selectImage:" target="-2" id="eFg-h5-9jy"/>
|
||||||
<binding destination="61" name="image" keyPath="representedObject" id="139"/>
|
<binding destination="61" name="image" keyPath="representedObject" id="139"/>
|
||||||
</connections>
|
</connections>
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
@@ -14,6 +14,10 @@
|
|||||||
|
|
||||||
@implementation KPKNode (IconImage)
|
@implementation KPKNode (IconImage)
|
||||||
|
|
||||||
|
+ (NSSet *)keyPathsForValuesAffectingIconImage {
|
||||||
|
return [NSSet setWithArray:@[@"customIcon", @"icon"]];
|
||||||
|
}
|
||||||
|
|
||||||
- (NSImage *)iconImage {
|
- (NSImage *)iconImage {
|
||||||
if(self.customIcon) {
|
if(self.customIcon) {
|
||||||
return self.customIcon.image;
|
return self.customIcon.image;
|
||||||
|
|||||||
@@ -14,8 +14,9 @@
|
|||||||
@interface MPAutotypeContext : NSObject <NSCopying>
|
@interface MPAutotypeContext : NSObject <NSCopying>
|
||||||
|
|
||||||
@property (nonatomic, strong) KPKEntry *entry;
|
@property (nonatomic, strong) KPKEntry *entry;
|
||||||
@property (nonatomic, copy) NSString *commandsSequence;
|
@property (nonatomic, copy) NSString *command;
|
||||||
@property (nonatomic, assign) NSUInteger value;
|
@property (nonatomic, assign, readonly) BOOL isCommand;
|
||||||
|
@property (nonatomic, assign) NSInteger value;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Designated initializer
|
* Designated initializer
|
||||||
|
|||||||
@@ -12,6 +12,12 @@
|
|||||||
#import "KPKEntry.h"
|
#import "KPKEntry.h"
|
||||||
#import "KPKWindowAssociation.h"
|
#import "KPKWindowAssociation.h"
|
||||||
|
|
||||||
|
@interface MPAutotypeContext ()
|
||||||
|
|
||||||
|
@property (nonatomic, assign) BOOL isCommand;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
@implementation MPAutotypeContext
|
@implementation MPAutotypeContext
|
||||||
|
|
||||||
- (instancetype)initWithWindowAssociation:(KPKWindowAssociation *)association {
|
- (instancetype)initWithWindowAssociation:(KPKWindowAssociation *)association {
|
||||||
@@ -38,20 +44,35 @@
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
self.entry = entry;
|
self.entry = entry;
|
||||||
self.commandsSequence = sequence;
|
NSError *error;
|
||||||
NSRegularExpression *regexp = [[NSRegularExpression alloc] initWithPattern:@"{[a-z]+([0-9]*)}" options:NSRegularExpressionIgnoreMetacharacters error:0];
|
NSRegularExpression *regexp = [[NSRegularExpression alloc] initWithPattern:@"\\{([a-z]+) ?([0-9]*)\\}" options:NSRegularExpressionCaseInsensitive error:&error];
|
||||||
if(regexp) {
|
if(regexp) {
|
||||||
NSArray *matches = [regexp matchesInString:self.commandsSequence options:0 range:NSMakeRange(0, [self.commandsSequence length])];
|
[regexp enumerateMatchesInString:sequence options:0 range:NSMakeRange(0, [sequence length]) usingBlock:^(NSTextCheckingResult *result, NSMatchingFlags flags, BOOL *stop) {
|
||||||
if(matches) {
|
NSRange commandRange = [result rangeAtIndex:1];
|
||||||
}
|
NSRange valueRange = [result rangeAtIndex:2];
|
||||||
|
if(commandRange.location != NSNotFound && commandRange.length != 0) {
|
||||||
|
self.command = [sequence substringWithRange:commandRange];
|
||||||
|
self.isCommand = YES;
|
||||||
|
}
|
||||||
|
if(valueRange.location != NSNotFound && valueRange.length != 0) {
|
||||||
|
self.value = [[sequence substringWithRange:valueRange] integerValue];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
self.value = NSNotFound;
|
||||||
|
}
|
||||||
|
}];
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
NSLog(@"Error while trying to parse Autotype sequence: %@", [error localizedDescription]);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (id)copyWithZone:(NSZone *)zone {
|
- (id)copyWithZone:(NSZone *)zone {
|
||||||
MPAutotypeContext *copy = [[MPAutotypeContext alloc] initWithEntry:self.entry andSequence:self.commandsSequence];
|
MPAutotypeContext *copy = [[MPAutotypeContext alloc] initWithEntry:self.entry andSequence:self.command];
|
||||||
return copy;
|
return copy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ NSString *const kMPApplciationNameKey = @"applicationName";
|
|||||||
if(candiates > 1) {
|
if(candiates > 1) {
|
||||||
// open Dialog to select from possible entries
|
// open Dialog to select from possible entries
|
||||||
}
|
}
|
||||||
/* Oder the Applciation to the front that we may have put to the background */
|
/* Just in case it's not there anymore, order the app for the window we want to autotype back to the foreground! */
|
||||||
[self _orderApplicationToFront:applicationName];
|
[self _orderApplicationToFront:applicationName];
|
||||||
/*
|
/*
|
||||||
Implement!
|
Implement!
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell";
|
|||||||
- (void)didLoadView {
|
- (void)didLoadView {
|
||||||
[[self view] setWantsLayer:YES];
|
[[self view] setWantsLayer:YES];
|
||||||
[self _hideFilterBarAnimated];
|
[self _hideFilterBarAnimated];
|
||||||
|
|
||||||
[_bottomBar setBorderType:HNHBorderTop];
|
[_bottomBar setBorderType:HNHBorderTop];
|
||||||
[self.addEntryButton setAction:[MPActionHelper actionOfType:MPActionAddEntry]];
|
[self.addEntryButton setAction:[MPActionHelper actionOfType:MPActionAddEntry]];
|
||||||
|
|
||||||
@@ -192,7 +192,6 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell";
|
|||||||
|
|
||||||
[self _setupHeaderMenu];
|
[self _setupHeaderMenu];
|
||||||
[parentColumn setHidden:YES];
|
[parentColumn setHidden:YES];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSResponder *)reconmendedFirstResponder {
|
- (NSResponder *)reconmendedFirstResponder {
|
||||||
@@ -676,7 +675,13 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell";
|
|||||||
KPKEntry *selectedEntry = [self _clickedOrSelectedEntry];
|
KPKEntry *selectedEntry = [self _clickedOrSelectedEntry];
|
||||||
if(selectedEntry && [selectedEntry.url length] > 0) {
|
if(selectedEntry && [selectedEntry.url length] > 0) {
|
||||||
NSURL *webURL = [NSURL URLWithString:selectedEntry.url];
|
NSURL *webURL = [NSURL URLWithString:selectedEntry.url];
|
||||||
|
NSString *scheme = [webURL scheme];
|
||||||
|
if(!scheme) {
|
||||||
|
webURL = [NSURL URLWithString:[NSString stringWithFormat:@"http://%@", selectedEntry.url]];
|
||||||
|
}
|
||||||
[[NSWorkspace sharedWorkspace] openURL:webURL];
|
[[NSWorkspace sharedWorkspace] openURL:webURL];
|
||||||
|
/* Add custom browser support */
|
||||||
|
//[[NSWorkspace sharedWorkspace] openURLs:@[webURL] withAppBundleIdentifier:@"org.mozilla.firefox" options:NSWorkspaceLaunchAsync additionalEventParamDescriptor:nil launchIdentifiers:NULL];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,11 +8,20 @@
|
|||||||
|
|
||||||
#import "MPViewController.h"
|
#import "MPViewController.h"
|
||||||
|
|
||||||
|
extern NSInteger const kMPDefaultIcon;
|
||||||
|
|
||||||
@interface MPIconSelectViewController : MPViewController <NSCollectionViewDelegate>
|
@interface MPIconSelectViewController : MPViewController <NSCollectionViewDelegate>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Is the selected Icon, kMPDefaultIcon if the default icons was selected
|
||||||
|
*/
|
||||||
|
@property (nonatomic, assign) NSInteger selectedIcon;
|
||||||
|
|
||||||
@property (weak) IBOutlet NSCollectionView *iconCollectionView;
|
@property (weak) IBOutlet NSCollectionView *iconCollectionView;
|
||||||
@property (weak) IBOutlet NSButton *imageButton;
|
@property (weak) IBOutlet NSButton *imageButton;
|
||||||
|
@property (weak) NSPopover *popover;
|
||||||
|
|
||||||
|
- (void)reset;
|
||||||
- (IBAction)useDefault:(id)sender;
|
- (IBAction)useDefault:(id)sender;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|||||||
@@ -8,6 +8,10 @@
|
|||||||
|
|
||||||
#import "MPIconSelectViewController.h"
|
#import "MPIconSelectViewController.h"
|
||||||
#import "MPIconHelper.h"
|
#import "MPIconHelper.h"
|
||||||
|
#import "MPDocument.h"
|
||||||
|
|
||||||
|
|
||||||
|
NSInteger const kMPDefaultIcon = -1;
|
||||||
|
|
||||||
@interface MPIconSelectViewController ()
|
@interface MPIconSelectViewController ()
|
||||||
@end
|
@end
|
||||||
@@ -32,9 +36,22 @@
|
|||||||
[self.iconCollectionView setSelectable:YES];
|
[self.iconCollectionView setSelectable:YES];
|
||||||
[self.iconCollectionView setAllowsMultipleSelection:NO];
|
[self.iconCollectionView setAllowsMultipleSelection:NO];
|
||||||
[self.iconCollectionView setContent:[MPIconHelper databaseIcons]];
|
[self.iconCollectionView setContent:[MPIconHelper databaseIcons]];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
- (IBAction)useDefault:(id)sender {
|
- (IBAction)useDefault:(id)sender {
|
||||||
|
self.selectedIcon = kMPDefaultIcon;
|
||||||
|
[self.popover performClose:self];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)reset {
|
||||||
|
self.selectedIcon = kMPDefaultIcon;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (IBAction)_selectImage:(id)sender {
|
||||||
|
NSButton *button = sender;
|
||||||
|
NSImage *image = [button image];
|
||||||
|
self.selectedIcon = [[self.iconCollectionView content] indexOfObject:image];
|
||||||
|
[self.popover performClose:self];
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|||||||
@@ -18,6 +18,8 @@
|
|||||||
|
|
||||||
#import "KPKTree.h"
|
#import "KPKTree.h"
|
||||||
#import "KPKMetaData.h"
|
#import "KPKMetaData.h"
|
||||||
|
#import "KPKGroup.h"
|
||||||
|
#import "KPKEntry.h"
|
||||||
|
|
||||||
#import "HNHGradientView.h"
|
#import "HNHGradientView.h"
|
||||||
#import "MPPopupImageView.h"
|
#import "MPPopupImageView.h"
|
||||||
@@ -34,6 +36,8 @@ typedef NS_ENUM(NSUInteger, MPContentTab) {
|
|||||||
NSPopover *_popover;
|
NSPopover *_popover;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@property (strong) MPIconSelectViewController *iconSelectionViewController;
|
||||||
|
|
||||||
@property (nonatomic, strong) NSDate *modificationDate;
|
@property (nonatomic, strong) NSDate *modificationDate;
|
||||||
@property (nonatomic, strong) NSDate *creationDate;
|
@property (nonatomic, strong) NSDate *creationDate;
|
||||||
|
|
||||||
@@ -160,11 +164,31 @@ typedef NS_ENUM(NSUInteger, MPContentTab) {
|
|||||||
_popover = [[NSPopover alloc] init];
|
_popover = [[NSPopover alloc] init];
|
||||||
_popover.delegate = self;
|
_popover.delegate = self;
|
||||||
_popover.behavior = NSPopoverBehaviorTransient;
|
_popover.behavior = NSPopoverBehaviorTransient;
|
||||||
_popover.contentViewController = [[MPIconSelectViewController alloc] init];
|
if(!self.iconSelectionViewController) {
|
||||||
|
self.iconSelectionViewController = [[MPIconSelectViewController alloc] init];
|
||||||
|
}
|
||||||
|
[self.iconSelectionViewController reset];
|
||||||
|
self.iconSelectionViewController.popover = _popover;
|
||||||
|
_popover.contentViewController = self.iconSelectionViewController;
|
||||||
[_popover showRelativeToRect:NSZeroRect ofView:self.itemImageView preferredEdge:NSMinYEdge];
|
[_popover showRelativeToRect:NSZeroRect ofView:self.itemImageView preferredEdge:NSMinYEdge];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)popoverDidClose:(NSNotification *)notification {
|
- (void)popoverDidClose:(NSNotification *)notification {
|
||||||
|
MPIconSelectViewController *viewController = (MPIconSelectViewController *)_popover.contentViewController;
|
||||||
|
MPDocument *document = [[self windowController] document];
|
||||||
|
BOOL useDefault = (viewController.selectedIcon == -1);
|
||||||
|
switch (self.activeTab) {
|
||||||
|
case MPGroupTab:
|
||||||
|
document.selectedGroup.icon = useDefault ? MPIconFolder : viewController.selectedIcon;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case MPEntryTab:
|
||||||
|
document.selectedEntry.icon = useDefault ? MPIconPassword : viewController.selectedIcon;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
_popover = nil;
|
_popover = nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,844 +1,132 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="4514" systemVersion="13A603" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
|
||||||
<data>
|
<dependencies>
|
||||||
<int key="IBDocument.SystemTarget">1080</int>
|
<deployment defaultVersion="1080" identifier="macosx"/>
|
||||||
<string key="IBDocument.SystemVersion">12E55</string>
|
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="4514"/>
|
||||||
<string key="IBDocument.InterfaceBuilderVersion">3084</string>
|
</dependencies>
|
||||||
<string key="IBDocument.AppKitVersion">1187.39</string>
|
<objects>
|
||||||
<string key="IBDocument.HIToolboxVersion">626.00</string>
|
<customObject id="-2" userLabel="File's Owner" customClass="MPWorkflowSettingsController">
|
||||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
<connections>
|
||||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<outlet property="view" destination="1" id="52"/>
|
||||||
<string key="NS.object.0">3084</string>
|
</connections>
|
||||||
</object>
|
</customObject>
|
||||||
<array key="IBDocument.IntegratedClassDependencies">
|
<customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
|
||||||
<string>IBNSLayoutConstraint</string>
|
<customObject id="-3" userLabel="Application"/>
|
||||||
<string>NSBox</string>
|
<customView translatesAutoresizingMaskIntoConstraints="NO" id="1">
|
||||||
<string>NSCustomObject</string>
|
<rect key="frame" x="0.0" y="0.0" width="400" height="157"/>
|
||||||
<string>NSCustomView</string>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
<string>NSMenu</string>
|
<subviews>
|
||||||
<string>NSMenuItem</string>
|
<box autoresizesSubviews="NO" title="Entry Table" borderType="line" translatesAutoresizingMaskIntoConstraints="NO" id="2">
|
||||||
<string>NSPopUpButton</string>
|
<rect key="frame" x="17" y="16" width="366" height="92"/>
|
||||||
<string>NSPopUpButtonCell</string>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
<string>NSTextField</string>
|
<view key="contentView">
|
||||||
<string>NSTextFieldCell</string>
|
<rect key="frame" x="1" y="1" width="364" height="76"/>
|
||||||
</array>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
<array key="IBDocument.PluginDependencies">
|
<subviews>
|
||||||
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
<textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="9">
|
||||||
</array>
|
<rect key="frame" x="19" y="47" width="138" height="17"/>
|
||||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Double-click on URL:" id="10">
|
||||||
<integer value="1" key="NS.object.0"/>
|
<font key="font" metaFont="system"/>
|
||||||
</object>
|
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
|
||||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
|
||||||
<object class="NSCustomObject" id="1001">
|
</textFieldCell>
|
||||||
<string key="NSClassName">MPWorkflowSettingsController</string>
|
</textField>
|
||||||
</object>
|
<popUpButton verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="13">
|
||||||
<object class="NSCustomObject" id="1003">
|
<rect key="frame" x="161" y="42" width="105" height="26"/>
|
||||||
<string key="NSClassName">FirstResponder</string>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
</object>
|
<popUpButtonCell key="cell" type="push" title="Copies URL" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" enabled="NO" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="14">
|
||||||
<object class="NSCustomObject" id="1004">
|
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
|
||||||
<string key="NSClassName">NSApplication</string>
|
<font key="font" metaFont="system"/>
|
||||||
</object>
|
<menu key="menu" title="OtherViews" id="15">
|
||||||
<object class="NSCustomView" id="1005">
|
<items>
|
||||||
<reference key="NSNextResponder"/>
|
<menuItem title="Copies URL" state="on" id="16"/>
|
||||||
<int key="NSvFlags">268</int>
|
<menuItem title="Opens URL" id="17"/>
|
||||||
<array class="NSMutableArray" key="NSSubviews">
|
</items>
|
||||||
<object class="NSBox" id="131168310">
|
</menu>
|
||||||
<reference key="NSNextResponder" ref="1005"/>
|
</popUpButtonCell>
|
||||||
<int key="NSvFlags">12</int>
|
</popUpButton>
|
||||||
<array class="NSMutableArray" key="NSSubviews">
|
<textField verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="36">
|
||||||
<object class="NSView" id="577080683">
|
<rect key="frame" x="16" y="16" width="141" height="17"/>
|
||||||
<reference key="NSNextResponder" ref="131168310"/>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
<int key="NSvFlags">274</int>
|
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" enabled="NO" sendsActionOnEndEditing="YES" title="Double-click on Title:" id="37">
|
||||||
<array class="NSMutableArray" key="NSSubviews">
|
<font key="font" metaFont="system"/>
|
||||||
<object class="NSTextField" id="247012581">
|
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
|
||||||
<reference key="NSNextResponder" ref="577080683"/>
|
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
|
||||||
<int key="NSvFlags">268</int>
|
</textFieldCell>
|
||||||
<string key="NSFrame">{{19, 47}, {138, 17}}</string>
|
</textField>
|
||||||
<reference key="NSSuperview" ref="577080683"/>
|
<popUpButton verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="40">
|
||||||
<reference key="NSWindow"/>
|
<rect key="frame" x="161" y="11" width="136" height="26"/>
|
||||||
<reference key="NSNextKeyView" ref="1001166858"/>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
<string key="NSReuseIdentifierKey">_NS:1535</string>
|
<popUpButtonCell key="cell" type="push" title="Opens Inspector" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" enabled="NO" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" id="41">
|
||||||
<bool key="NSEnabled">YES</bool>
|
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
|
||||||
<object class="NSTextFieldCell" key="NSCell" id="422396011">
|
<font key="font" metaFont="system"/>
|
||||||
<int key="NSCellFlags">68157504</int>
|
<menu key="menu" title="OtherViews" id="42">
|
||||||
<int key="NSCellFlags2">272630784</int>
|
<items>
|
||||||
<string key="NSContents">Double-click on URL:</string>
|
<menuItem title="Opens Inspector" state="on" id="44"/>
|
||||||
<object class="NSFont" key="NSSupport" id="690182552">
|
<menuItem title="is Ignored" id="43"/>
|
||||||
<string key="NSName">LucidaGrande</string>
|
</items>
|
||||||
<double key="NSSize">13</double>
|
</menu>
|
||||||
<int key="NSfFlags">1044</int>
|
</popUpButtonCell>
|
||||||
</object>
|
</popUpButton>
|
||||||
<string key="NSCellIdentifier">_NS:1535</string>
|
</subviews>
|
||||||
<reference key="NSControlView" ref="247012581"/>
|
</view>
|
||||||
<object class="NSColor" key="NSBackgroundColor" id="704840751">
|
<constraints>
|
||||||
<int key="NSColorSpace">6</int>
|
<constraint firstItem="13" firstAttribute="centerY" secondItem="9" secondAttribute="centerY" id="29"/>
|
||||||
<string key="NSCatalogName">System</string>
|
<constraint firstItem="13" firstAttribute="top" secondItem="2" secondAttribute="top" constant="25" id="31"/>
|
||||||
<string key="NSColorName">controlColor</string>
|
<constraint firstItem="36" firstAttribute="leading" secondItem="2" secondAttribute="leading" constant="16" id="38"/>
|
||||||
<object class="NSColor" key="NSColor">
|
<constraint firstItem="40" firstAttribute="leading" secondItem="36" secondAttribute="trailing" constant="8" symbolic="YES" id="46"/>
|
||||||
<int key="NSColorSpace">3</int>
|
<constraint firstItem="36" firstAttribute="centerY" secondItem="40" secondAttribute="centerY" id="47"/>
|
||||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
<constraint firstItem="13" firstAttribute="leading" secondItem="40" secondAttribute="leading" id="48"/>
|
||||||
</object>
|
<constraint firstItem="13" firstAttribute="leading" secondItem="9" secondAttribute="trailing" constant="8" symbolic="YES" id="49"/>
|
||||||
</object>
|
<constraint firstAttribute="bottom" secondItem="40" secondAttribute="bottom" constant="11" id="50"/>
|
||||||
<object class="NSColor" key="NSTextColor" id="895353428">
|
<constraint firstItem="40" firstAttribute="centerY" secondItem="36" secondAttribute="centerY" id="FK0-n1-AML"/>
|
||||||
<int key="NSColorSpace">6</int>
|
<constraint firstItem="40" firstAttribute="top" secondItem="13" secondAttribute="bottom" constant="10" symbolic="YES" id="e1n-KF-a73"/>
|
||||||
<string key="NSCatalogName">System</string>
|
<constraint firstItem="13" firstAttribute="top" relation="greaterThanOrEqual" secondItem="2" secondAttribute="top" id="pc6-OG-QdD"/>
|
||||||
<string key="NSColorName">controlTextColor</string>
|
</constraints>
|
||||||
<object class="NSColor" key="NSColor">
|
<color key="borderColor" white="0.0" alpha="0.41999999999999998" colorSpace="calibratedWhite"/>
|
||||||
<int key="NSColorSpace">3</int>
|
<color key="fillColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
|
||||||
<bytes key="NSWhite">MAA</bytes>
|
</box>
|
||||||
</object>
|
<popUpButton verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ehI-gq-lsb">
|
||||||
</object>
|
<rect key="frame" x="116" y="113" width="134" height="26"/>
|
||||||
</object>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
<popUpButtonCell key="cell" type="push" title="Default Browser" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" enabled="NO" state="on" borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2" selectedItem="7YX-EA-9KA" id="7Ip-sU-sAK">
|
||||||
</object>
|
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
|
||||||
<object class="NSPopUpButton" id="1001166858">
|
<font key="font" metaFont="system"/>
|
||||||
<reference key="NSNextResponder" ref="577080683"/>
|
<menu key="menu" title="OtherViews" id="XgO-Tj-QjO">
|
||||||
<int key="NSvFlags">268</int>
|
<items>
|
||||||
<string key="NSFrame">{{160, 42}, {106, 26}}</string>
|
<menuItem title="Default Browser" state="on" id="7YX-EA-9KA"/>
|
||||||
<reference key="NSSuperview" ref="577080683"/>
|
<menuItem title="Item 2" id="gej-kA-GzQ"/>
|
||||||
<reference key="NSWindow"/>
|
<menuItem title="Item 3" id="zC2-cM-KDv"/>
|
||||||
<reference key="NSNextKeyView" ref="356870762"/>
|
</items>
|
||||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
</menu>
|
||||||
<bool key="NSEnabled">YES</bool>
|
</popUpButtonCell>
|
||||||
<object class="NSPopUpButtonCell" key="NSCell" id="159593719">
|
</popUpButton>
|
||||||
<int key="NSCellFlags">-1539309504</int>
|
<textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="lOo-NI-b07">
|
||||||
<int key="NSCellFlags2">2048</int>
|
<rect key="frame" x="20" y="116" width="92" height="21"/>
|
||||||
<reference key="NSSupport" ref="690182552"/>
|
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
|
||||||
<string key="NSCellIdentifier">_NS:9</string>
|
<textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" enabled="NO" sendsActionOnEndEditing="YES" title="Open URLs in:" id="soD-wI-YOH">
|
||||||
<reference key="NSControlView" ref="1001166858"/>
|
<font key="font" metaFont="system"/>
|
||||||
<int key="NSButtonFlags">109199360</int>
|
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
|
||||||
<int key="NSButtonFlags2">129</int>
|
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
|
||||||
<string key="NSAlternateContents"/>
|
</textFieldCell>
|
||||||
<string key="NSKeyEquivalent"/>
|
</textField>
|
||||||
<int key="NSPeriodicDelay">400</int>
|
</subviews>
|
||||||
<int key="NSPeriodicInterval">75</int>
|
<constraints>
|
||||||
<object class="NSMenuItem" key="NSMenuItem" id="447306537">
|
<constraint firstItem="2" firstAttribute="leading" secondItem="1" secondAttribute="leading" constant="20" symbolic="YES" id="5"/>
|
||||||
<reference key="NSMenu" ref="299365203"/>
|
<constraint firstAttribute="trailing" secondItem="2" secondAttribute="trailing" constant="20" symbolic="YES" id="8"/>
|
||||||
<string key="NSTitle">Copies URL</string>
|
<constraint firstAttribute="bottom" secondItem="2" secondAttribute="bottom" constant="20" symbolic="YES" id="51"/>
|
||||||
<string key="NSKeyEquiv"/>
|
<constraint firstAttribute="width" constant="400" id="53"/>
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
<constraint firstAttribute="height" relation="greaterThanOrEqual" constant="128" id="54"/>
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
<constraint firstItem="2" firstAttribute="top" secondItem="ehI-gq-lsb" secondAttribute="bottom" constant="8" symbolic="YES" id="CnN-aU-Qa1"/>
|
||||||
<int key="NSState">1</int>
|
<constraint firstItem="ehI-gq-lsb" firstAttribute="leading" secondItem="lOo-NI-b07" secondAttribute="trailing" constant="8" symbolic="YES" id="KxB-TG-rH5"/>
|
||||||
<object class="NSCustomResource" key="NSOnImage" id="329968786">
|
<constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="ehI-gq-lsb" secondAttribute="trailing" constant="20" symbolic="YES" id="Ldw-aO-wuX"/>
|
||||||
<string key="NSClassName">NSImage</string>
|
<constraint firstItem="ehI-gq-lsb" firstAttribute="top" secondItem="1" secondAttribute="top" constant="20" symbolic="YES" id="MAe-l7-8k2"/>
|
||||||
<string key="NSResourceName">NSMenuCheckmark</string>
|
<constraint firstItem="lOo-NI-b07" firstAttribute="centerY" secondItem="ehI-gq-lsb" secondAttribute="centerY" id="agv-2Z-m5A"/>
|
||||||
</object>
|
<constraint firstItem="lOo-NI-b07" firstAttribute="leading" secondItem="1" secondAttribute="leading" constant="22" id="kaP-lB-tDY"/>
|
||||||
<object class="NSCustomResource" key="NSMixedImage" id="909982749">
|
<constraint firstItem="lOo-NI-b07" firstAttribute="top" secondItem="1" secondAttribute="top" constant="20" symbolic="YES" id="tEf-Ag-oTi"/>
|
||||||
<string key="NSClassName">NSImage</string>
|
<constraint firstItem="2" firstAttribute="top" secondItem="lOo-NI-b07" secondAttribute="bottom" constant="8" symbolic="YES" id="xlS-Dj-cOt"/>
|
||||||
<string key="NSResourceName">NSMenuMixedState</string>
|
</constraints>
|
||||||
</object>
|
</customView>
|
||||||
<string key="NSAction">_popUpItemAction:</string>
|
</objects>
|
||||||
<reference key="NSTarget" ref="159593719"/>
|
</document>
|
||||||
</object>
|
|
||||||
<bool key="NSMenuItemRespectAlignment">YES</bool>
|
|
||||||
<object class="NSMenu" key="NSMenu" id="299365203">
|
|
||||||
<string key="NSTitle">OtherViews</string>
|
|
||||||
<array class="NSMutableArray" key="NSMenuItems">
|
|
||||||
<reference ref="447306537"/>
|
|
||||||
<object class="NSMenuItem" id="27203355">
|
|
||||||
<reference key="NSMenu" ref="299365203"/>
|
|
||||||
<string key="NSTitle">Opens URL</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="329968786"/>
|
|
||||||
<reference key="NSMixedImage" ref="909982749"/>
|
|
||||||
<string key="NSAction">_popUpItemAction:</string>
|
|
||||||
<reference key="NSTarget" ref="159593719"/>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<reference key="NSMenuFont" ref="690182552"/>
|
|
||||||
</object>
|
|
||||||
<int key="NSSelectedIndex">-1</int>
|
|
||||||
<int key="NSPreferredEdge">1</int>
|
|
||||||
<bool key="NSUsesItemFromMenu">YES</bool>
|
|
||||||
<bool key="NSAltersState">YES</bool>
|
|
||||||
<int key="NSArrowPosition">2</int>
|
|
||||||
</object>
|
|
||||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
|
||||||
</object>
|
|
||||||
<object class="NSTextField" id="356870762">
|
|
||||||
<reference key="NSNextResponder" ref="577080683"/>
|
|
||||||
<int key="NSvFlags">268</int>
|
|
||||||
<string key="NSFrame">{{15, 16}, {142, 17}}</string>
|
|
||||||
<reference key="NSSuperview" ref="577080683"/>
|
|
||||||
<reference key="NSWindow"/>
|
|
||||||
<reference key="NSNextKeyView" ref="142889634"/>
|
|
||||||
<string key="NSReuseIdentifierKey">_NS:1535</string>
|
|
||||||
<bool key="NSEnabled">YES</bool>
|
|
||||||
<object class="NSTextFieldCell" key="NSCell" id="679560367">
|
|
||||||
<int key="NSCellFlags">605028416</int>
|
|
||||||
<int key="NSCellFlags2">272630784</int>
|
|
||||||
<string key="NSContents">Double-click on Title:</string>
|
|
||||||
<reference key="NSSupport" ref="690182552"/>
|
|
||||||
<string key="NSCellIdentifier">_NS:1535</string>
|
|
||||||
<reference key="NSControlView" ref="356870762"/>
|
|
||||||
<reference key="NSBackgroundColor" ref="704840751"/>
|
|
||||||
<reference key="NSTextColor" ref="895353428"/>
|
|
||||||
</object>
|
|
||||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
|
||||||
</object>
|
|
||||||
<object class="NSPopUpButton" id="142889634">
|
|
||||||
<reference key="NSNextResponder" ref="577080683"/>
|
|
||||||
<int key="NSvFlags">268</int>
|
|
||||||
<string key="NSFrame">{{160, 11}, {138, 26}}</string>
|
|
||||||
<reference key="NSSuperview" ref="577080683"/>
|
|
||||||
<reference key="NSWindow"/>
|
|
||||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
|
||||||
<bool key="NSEnabled">YES</bool>
|
|
||||||
<object class="NSPopUpButtonCell" key="NSCell" id="1050415728">
|
|
||||||
<int key="NSCellFlags">-1539309504</int>
|
|
||||||
<int key="NSCellFlags2">2048</int>
|
|
||||||
<reference key="NSSupport" ref="690182552"/>
|
|
||||||
<string key="NSCellIdentifier">_NS:9</string>
|
|
||||||
<reference key="NSControlView" ref="142889634"/>
|
|
||||||
<int key="NSButtonFlags">109199360</int>
|
|
||||||
<int key="NSButtonFlags2">129</int>
|
|
||||||
<string key="NSAlternateContents"/>
|
|
||||||
<string key="NSKeyEquivalent"/>
|
|
||||||
<int key="NSPeriodicDelay">400</int>
|
|
||||||
<int key="NSPeriodicInterval">75</int>
|
|
||||||
<object class="NSMenuItem" key="NSMenuItem" id="1019941845">
|
|
||||||
<reference key="NSMenu" ref="800359418"/>
|
|
||||||
<string key="NSTitle">Opens Inspector</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<int key="NSState">1</int>
|
|
||||||
<reference key="NSOnImage" ref="329968786"/>
|
|
||||||
<reference key="NSMixedImage" ref="909982749"/>
|
|
||||||
<string key="NSAction">_popUpItemAction:</string>
|
|
||||||
<reference key="NSTarget" ref="1050415728"/>
|
|
||||||
</object>
|
|
||||||
<bool key="NSMenuItemRespectAlignment">YES</bool>
|
|
||||||
<object class="NSMenu" key="NSMenu" id="800359418">
|
|
||||||
<string key="NSTitle">OtherViews</string>
|
|
||||||
<array class="NSMutableArray" key="NSMenuItems">
|
|
||||||
<reference ref="1019941845"/>
|
|
||||||
<object class="NSMenuItem" id="854050820">
|
|
||||||
<reference key="NSMenu" ref="800359418"/>
|
|
||||||
<string key="NSTitle">is Ignored</string>
|
|
||||||
<string key="NSKeyEquiv"/>
|
|
||||||
<int key="NSKeyEquivModMask">1048576</int>
|
|
||||||
<int key="NSMnemonicLoc">2147483647</int>
|
|
||||||
<reference key="NSOnImage" ref="329968786"/>
|
|
||||||
<reference key="NSMixedImage" ref="909982749"/>
|
|
||||||
<string key="NSAction">_popUpItemAction:</string>
|
|
||||||
<reference key="NSTarget" ref="1050415728"/>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<reference key="NSMenuFont" ref="690182552"/>
|
|
||||||
</object>
|
|
||||||
<int key="NSSelectedIndex">-1</int>
|
|
||||||
<int key="NSPreferredEdge">1</int>
|
|
||||||
<bool key="NSUsesItemFromMenu">YES</bool>
|
|
||||||
<bool key="NSAltersState">YES</bool>
|
|
||||||
<int key="NSArrowPosition">2</int>
|
|
||||||
</object>
|
|
||||||
<bool key="NSAllowsLogicalLayoutDirection">NO</bool>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<string key="NSFrame">{{1, 1}, {364, 76}}</string>
|
|
||||||
<reference key="NSSuperview" ref="131168310"/>
|
|
||||||
<reference key="NSWindow"/>
|
|
||||||
<reference key="NSNextKeyView" ref="247012581"/>
|
|
||||||
<string key="NSReuseIdentifierKey">_NS:11</string>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<string key="NSFrame">{{17, 16}, {366, 92}}</string>
|
|
||||||
<reference key="NSSuperview" ref="1005"/>
|
|
||||||
<reference key="NSWindow"/>
|
|
||||||
<reference key="NSNextKeyView" ref="577080683"/>
|
|
||||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
|
||||||
<string key="NSOffsets">{0, 0}</string>
|
|
||||||
<object class="NSTextFieldCell" key="NSTitleCell">
|
|
||||||
<int key="NSCellFlags">67108864</int>
|
|
||||||
<int key="NSCellFlags2">0</int>
|
|
||||||
<string key="NSContents">Entry Table</string>
|
|
||||||
<object class="NSFont" key="NSSupport">
|
|
||||||
<string key="NSName">LucidaGrande</string>
|
|
||||||
<double key="NSSize">11</double>
|
|
||||||
<int key="NSfFlags">3100</int>
|
|
||||||
</object>
|
|
||||||
<object class="NSColor" key="NSBackgroundColor">
|
|
||||||
<int key="NSColorSpace">6</int>
|
|
||||||
<string key="NSCatalogName">System</string>
|
|
||||||
<string key="NSColorName">textBackgroundColor</string>
|
|
||||||
<object class="NSColor" key="NSColor">
|
|
||||||
<int key="NSColorSpace">3</int>
|
|
||||||
<bytes key="NSWhite">MQA</bytes>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="NSColor" key="NSTextColor">
|
|
||||||
<int key="NSColorSpace">3</int>
|
|
||||||
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<reference key="NSContentView" ref="577080683"/>
|
|
||||||
<int key="NSBorderType">1</int>
|
|
||||||
<int key="NSBoxType">0</int>
|
|
||||||
<int key="NSTitlePosition">2</int>
|
|
||||||
<bool key="NSTransparent">NO</bool>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<string key="NSFrameSize">{400, 128}</string>
|
|
||||||
<reference key="NSSuperview"/>
|
|
||||||
<reference key="NSWindow"/>
|
|
||||||
<reference key="NSNextKeyView" ref="131168310"/>
|
|
||||||
<string key="NSClassName">NSView</string>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
|
||||||
<array class="NSMutableArray" key="connectionRecords">
|
|
||||||
<object class="IBConnectionRecord">
|
|
||||||
<object class="IBOutletConnection" key="connection">
|
|
||||||
<string key="label">view</string>
|
|
||||||
<reference key="source" ref="1001"/>
|
|
||||||
<reference key="destination" ref="1005"/>
|
|
||||||
</object>
|
|
||||||
<int key="connectionID">52</int>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
|
||||||
<array key="orderedObjects">
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">0</int>
|
|
||||||
<array key="object" id="0"/>
|
|
||||||
<reference key="children" ref="1000"/>
|
|
||||||
<nil key="parent"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">-2</int>
|
|
||||||
<reference key="object" ref="1001"/>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
<string key="objectName">File's Owner</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">-1</int>
|
|
||||||
<reference key="object" ref="1003"/>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
<string key="objectName">First Responder</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">-3</int>
|
|
||||||
<reference key="object" ref="1004"/>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
<string key="objectName">Application</string>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">1</int>
|
|
||||||
<reference key="object" ref="1005"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="131168310"/>
|
|
||||||
<object class="IBNSLayoutConstraint" id="912641165">
|
|
||||||
<reference key="firstItem" ref="1005"/>
|
|
||||||
<int key="firstAttribute">4</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="131168310"/>
|
|
||||||
<int key="secondAttribute">4</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBNSLayoutSymbolicConstant" key="constant">
|
|
||||||
<double key="value">20</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="1005"/>
|
|
||||||
<int key="scoringType">8</int>
|
|
||||||
<float key="scoringTypeFloat">29</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="548428012">
|
|
||||||
<reference key="firstItem" ref="1005"/>
|
|
||||||
<int key="firstAttribute">6</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="131168310"/>
|
|
||||||
<int key="secondAttribute">6</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBNSLayoutSymbolicConstant" key="constant">
|
|
||||||
<double key="value">20</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="1005"/>
|
|
||||||
<int key="scoringType">8</int>
|
|
||||||
<float key="scoringTypeFloat">29</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="949687502">
|
|
||||||
<reference key="firstItem" ref="131168310"/>
|
|
||||||
<int key="firstAttribute">5</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="1005"/>
|
|
||||||
<int key="secondAttribute">5</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBNSLayoutSymbolicConstant" key="constant">
|
|
||||||
<double key="value">20</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="1005"/>
|
|
||||||
<int key="scoringType">8</int>
|
|
||||||
<float key="scoringTypeFloat">29</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="779501733">
|
|
||||||
<reference key="firstItem" ref="131168310"/>
|
|
||||||
<int key="firstAttribute">3</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="1005"/>
|
|
||||||
<int key="secondAttribute">3</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBNSLayoutSymbolicConstant" key="constant">
|
|
||||||
<double key="value">20</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="1005"/>
|
|
||||||
<int key="scoringType">8</int>
|
|
||||||
<float key="scoringTypeFloat">29</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="468074278">
|
|
||||||
<reference key="firstItem" ref="1005"/>
|
|
||||||
<int key="firstAttribute">8</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<nil key="secondItem"/>
|
|
||||||
<int key="secondAttribute">0</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBLayoutConstant" key="constant">
|
|
||||||
<double key="value">128</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="1005"/>
|
|
||||||
<int key="scoringType">9</int>
|
|
||||||
<float key="scoringTypeFloat">40</float>
|
|
||||||
<int key="contentType">1</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="736964125">
|
|
||||||
<reference key="firstItem" ref="1005"/>
|
|
||||||
<int key="firstAttribute">7</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<nil key="secondItem"/>
|
|
||||||
<int key="secondAttribute">0</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBLayoutConstant" key="constant">
|
|
||||||
<double key="value">400</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="1005"/>
|
|
||||||
<int key="scoringType">9</int>
|
|
||||||
<float key="scoringTypeFloat">40</float>
|
|
||||||
<int key="contentType">1</int>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="0"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">2</int>
|
|
||||||
<reference key="object" ref="131168310"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<object class="IBNSLayoutConstraint" id="111204516">
|
|
||||||
<reference key="firstItem" ref="131168310"/>
|
|
||||||
<int key="firstAttribute">4</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="142889634"/>
|
|
||||||
<int key="secondAttribute">4</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBLayoutConstant" key="constant">
|
|
||||||
<double key="value">11</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="131168310"/>
|
|
||||||
<int key="scoringType">8</int>
|
|
||||||
<float key="scoringTypeFloat">29</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="986615684">
|
|
||||||
<reference key="firstItem" ref="142889634"/>
|
|
||||||
<int key="firstAttribute">5</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="356870762"/>
|
|
||||||
<int key="secondAttribute">6</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBNSLayoutSymbolicConstant" key="constant">
|
|
||||||
<double key="value">8</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="131168310"/>
|
|
||||||
<int key="scoringType">6</int>
|
|
||||||
<float key="scoringTypeFloat">24</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="489954542">
|
|
||||||
<reference key="firstItem" ref="1001166858"/>
|
|
||||||
<int key="firstAttribute">5</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="247012581"/>
|
|
||||||
<int key="secondAttribute">6</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBNSLayoutSymbolicConstant" key="constant">
|
|
||||||
<double key="value">8</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="131168310"/>
|
|
||||||
<int key="scoringType">6</int>
|
|
||||||
<float key="scoringTypeFloat">24</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="985216132">
|
|
||||||
<reference key="firstItem" ref="1001166858"/>
|
|
||||||
<int key="firstAttribute">5</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="142889634"/>
|
|
||||||
<int key="secondAttribute">5</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBLayoutConstant" key="constant">
|
|
||||||
<double key="value">0.0</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="131168310"/>
|
|
||||||
<int key="scoringType">6</int>
|
|
||||||
<float key="scoringTypeFloat">24</float>
|
|
||||||
<int key="contentType">2</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="839528990">
|
|
||||||
<reference key="firstItem" ref="1001166858"/>
|
|
||||||
<int key="firstAttribute">3</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="131168310"/>
|
|
||||||
<int key="secondAttribute">3</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBLayoutConstant" key="constant">
|
|
||||||
<double key="value">25</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="131168310"/>
|
|
||||||
<int key="scoringType">8</int>
|
|
||||||
<float key="scoringTypeFloat">29</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="429946844">
|
|
||||||
<reference key="firstItem" ref="1001166858"/>
|
|
||||||
<int key="firstAttribute">10</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="247012581"/>
|
|
||||||
<int key="secondAttribute">10</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBLayoutConstant" key="constant">
|
|
||||||
<double key="value">0.0</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="131168310"/>
|
|
||||||
<int key="scoringType">6</int>
|
|
||||||
<float key="scoringTypeFloat">24</float>
|
|
||||||
<int key="contentType">2</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="163786502">
|
|
||||||
<reference key="firstItem" ref="356870762"/>
|
|
||||||
<int key="firstAttribute">10</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="142889634"/>
|
|
||||||
<int key="secondAttribute">10</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBLayoutConstant" key="constant">
|
|
||||||
<double key="value">0.0</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="131168310"/>
|
|
||||||
<int key="scoringType">6</int>
|
|
||||||
<float key="scoringTypeFloat">24</float>
|
|
||||||
<int key="contentType">2</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBNSLayoutConstraint" id="553842781">
|
|
||||||
<reference key="firstItem" ref="356870762"/>
|
|
||||||
<int key="firstAttribute">5</int>
|
|
||||||
<int key="relation">0</int>
|
|
||||||
<reference key="secondItem" ref="131168310"/>
|
|
||||||
<int key="secondAttribute">5</int>
|
|
||||||
<float key="multiplier">1</float>
|
|
||||||
<object class="IBLayoutConstant" key="constant">
|
|
||||||
<double key="value">16</double>
|
|
||||||
</object>
|
|
||||||
<float key="priority">1000</float>
|
|
||||||
<reference key="containingView" ref="131168310"/>
|
|
||||||
<int key="scoringType">8</int>
|
|
||||||
<float key="scoringTypeFloat">29</float>
|
|
||||||
<int key="contentType">3</int>
|
|
||||||
</object>
|
|
||||||
<reference ref="142889634"/>
|
|
||||||
<reference ref="356870762"/>
|
|
||||||
<reference ref="1001166858"/>
|
|
||||||
<reference ref="247012581"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="1005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">3</int>
|
|
||||||
<reference key="object" ref="779501733"/>
|
|
||||||
<reference key="parent" ref="1005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">5</int>
|
|
||||||
<reference key="object" ref="949687502"/>
|
|
||||||
<reference key="parent" ref="1005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">8</int>
|
|
||||||
<reference key="object" ref="548428012"/>
|
|
||||||
<reference key="parent" ref="1005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">9</int>
|
|
||||||
<reference key="object" ref="247012581"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="422396011"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">10</int>
|
|
||||||
<reference key="object" ref="422396011"/>
|
|
||||||
<reference key="parent" ref="247012581"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">13</int>
|
|
||||||
<reference key="object" ref="1001166858"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="159593719"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">14</int>
|
|
||||||
<reference key="object" ref="159593719"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="299365203"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="1001166858"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">15</int>
|
|
||||||
<reference key="object" ref="299365203"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="447306537"/>
|
|
||||||
<reference ref="27203355"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="159593719"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">16</int>
|
|
||||||
<reference key="object" ref="447306537"/>
|
|
||||||
<reference key="parent" ref="299365203"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">17</int>
|
|
||||||
<reference key="object" ref="27203355"/>
|
|
||||||
<reference key="parent" ref="299365203"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">29</int>
|
|
||||||
<reference key="object" ref="429946844"/>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">31</int>
|
|
||||||
<reference key="object" ref="839528990"/>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">36</int>
|
|
||||||
<reference key="object" ref="356870762"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="679560367"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">37</int>
|
|
||||||
<reference key="object" ref="679560367"/>
|
|
||||||
<reference key="parent" ref="356870762"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">38</int>
|
|
||||||
<reference key="object" ref="553842781"/>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">40</int>
|
|
||||||
<reference key="object" ref="142889634"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="1050415728"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">41</int>
|
|
||||||
<reference key="object" ref="1050415728"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="800359418"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="142889634"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">42</int>
|
|
||||||
<reference key="object" ref="800359418"/>
|
|
||||||
<array class="NSMutableArray" key="children">
|
|
||||||
<reference ref="854050820"/>
|
|
||||||
<reference ref="1019941845"/>
|
|
||||||
</array>
|
|
||||||
<reference key="parent" ref="1050415728"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">43</int>
|
|
||||||
<reference key="object" ref="854050820"/>
|
|
||||||
<reference key="parent" ref="800359418"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">44</int>
|
|
||||||
<reference key="object" ref="1019941845"/>
|
|
||||||
<reference key="parent" ref="800359418"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">46</int>
|
|
||||||
<reference key="object" ref="986615684"/>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">47</int>
|
|
||||||
<reference key="object" ref="163786502"/>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">48</int>
|
|
||||||
<reference key="object" ref="985216132"/>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">49</int>
|
|
||||||
<reference key="object" ref="489954542"/>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">50</int>
|
|
||||||
<reference key="object" ref="111204516"/>
|
|
||||||
<reference key="parent" ref="131168310"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">51</int>
|
|
||||||
<reference key="object" ref="912641165"/>
|
|
||||||
<reference key="parent" ref="1005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">53</int>
|
|
||||||
<reference key="object" ref="736964125"/>
|
|
||||||
<reference key="parent" ref="1005"/>
|
|
||||||
</object>
|
|
||||||
<object class="IBObjectRecord">
|
|
||||||
<int key="objectID">54</int>
|
|
||||||
<reference key="object" ref="468074278"/>
|
|
||||||
<reference key="parent" ref="1005"/>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
</object>
|
|
||||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
|
||||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<array key="1.IBNSViewMetadataConstraints">
|
|
||||||
<reference ref="736964125"/>
|
|
||||||
<reference ref="468074278"/>
|
|
||||||
<reference ref="779501733"/>
|
|
||||||
<reference ref="949687502"/>
|
|
||||||
<reference ref="548428012"/>
|
|
||||||
<reference ref="912641165"/>
|
|
||||||
</array>
|
|
||||||
<boolean value="NO" key="1.IBNSViewMetadataLastInspectedTranslatesAutoresizingMaskIntoConstraints"/>
|
|
||||||
<boolean value="NO" key="1.IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
|
||||||
<string key="1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="10.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<boolean value="NO" key="13.IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
|
||||||
<string key="13.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="14.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="15.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="16.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="17.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<array class="NSMutableArray" key="2.IBNSViewMetadataConstraints">
|
|
||||||
<reference ref="553842781"/>
|
|
||||||
<reference ref="163786502"/>
|
|
||||||
<reference ref="429946844"/>
|
|
||||||
<reference ref="839528990"/>
|
|
||||||
<reference ref="985216132"/>
|
|
||||||
<reference ref="489954542"/>
|
|
||||||
<reference ref="986615684"/>
|
|
||||||
<reference ref="111204516"/>
|
|
||||||
</array>
|
|
||||||
<boolean value="NO" key="2.IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
|
||||||
<string key="2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="31.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<boolean value="NO" key="36.IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
|
||||||
<string key="36.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="37.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="38.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<boolean value="NO" key="40.IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
|
||||||
<string key="40.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="41.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="42.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="43.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="44.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="46.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="47.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="48.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="49.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="5.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="50.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="51.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="53.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="54.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<string key="8.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
<boolean value="NO" key="9.IBNSViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
|
||||||
<string key="9.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
|
||||||
</dictionary>
|
|
||||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
|
||||||
<nil key="activeLocalization"/>
|
|
||||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
|
||||||
<nil key="sourceID"/>
|
|
||||||
<int key="maxID">54</int>
|
|
||||||
</object>
|
|
||||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
|
||||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">MPViewController</string>
|
|
||||||
<string key="superclassName">NSViewController</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBProjectSource</string>
|
|
||||||
<string key="minorKey">./Classes/MPViewController.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">MPWorkflowSettingsController</string>
|
|
||||||
<string key="superclassName">MPViewController</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBProjectSource</string>
|
|
||||||
<string key="minorKey">./Classes/MPWorkflowSettingsController.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
<object class="IBPartialClassDescription">
|
|
||||||
<string key="className">NSLayoutConstraint</string>
|
|
||||||
<string key="superclassName">NSObject</string>
|
|
||||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
||||||
<string key="majorKey">IBProjectSource</string>
|
|
||||||
<string key="minorKey">./Classes/NSLayoutConstraint.h</string>
|
|
||||||
</object>
|
|
||||||
</object>
|
|
||||||
</array>
|
|
||||||
</object>
|
|
||||||
<int key="IBDocument.localizationMode">0</int>
|
|
||||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
|
||||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
|
||||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
|
||||||
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
|
||||||
<string key="NSMenuCheckmark">{11, 11}</string>
|
|
||||||
<string key="NSMenuMixedState">{10, 3}</string>
|
|
||||||
</dictionary>
|
|
||||||
<bool key="IBDocument.UseAutolayout">YES</bool>
|
|
||||||
</data>
|
|
||||||
</archive>
|
|
||||||
Reference in New Issue
Block a user