iSightを使ってBooklog,MediaMarkerインポート用CSVファイルを生成するアプリ
| Revision | cc19491d86466e5a854daf5a12f85e628570feb0 (tree) |
|---|---|
| Time | 2011-04-10 10:36:22 |
| Author | masakih <masakih@user...> |
| Commiter | masakih |
Merge branch 'OpenWeb'
| @@ -15,13 +15,13 @@ | ||
| 15 | 15 | @implementation BEApplicationDelegate |
| 16 | 16 | + (void)initialize |
| 17 | 17 | { |
| 18 | - NSArray *sites = [BERegisterSite sites]; | |
| 19 | - NSDictionary *userDefaultsValuesDict; | |
| 20 | - NSData *site = [NSKeyedArchiver archivedDataWithRootObject:[sites objectAtIndex:0]]; | |
| 21 | - userDefaultsValuesDict = [NSDictionary dictionaryWithObjectsAndKeys:site, BEOpenSite, nil]; | |
| 22 | - [[NSUserDefaults standardUserDefaults] registerDefaults:userDefaultsValuesDict]; | |
| 18 | +// NSArray *sites = [BERegisterSite sites]; | |
| 19 | +// NSDictionary *userDefaultsValuesDict; | |
| 20 | +// NSData *site = [NSKeyedArchiver archivedDataWithRootObject:[sites objectAtIndex:0]]; | |
| 21 | +// userDefaultsValuesDict = [NSDictionary dictionaryWithObjectsAndKeys:site, BEOpenSite, nil]; | |
| 22 | +// [[NSUserDefaults standardUserDefaults] registerDefaults:userDefaultsValuesDict]; | |
| 23 | 23 | |
| 24 | - [[NSUserDefaultsController sharedUserDefaultsController] setInitialValues:userDefaultsValuesDict]; | |
| 24 | +// [[NSUserDefaultsController sharedUserDefaultsController] setInitialValues:userDefaultsValuesDict]; | |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** |
| @@ -0,0 +1,31 @@ | ||
| 1 | +// | |
| 2 | +// BEExporterAttribute.h | |
| 3 | +// BooksExporter | |
| 4 | +// | |
| 5 | +// Created by Hori,Masaki on 11/03/27. | |
| 6 | +// Copyright 2011 masakih. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <Cocoa/Cocoa.h> | |
| 10 | +#import "BERegisterSite.h" | |
| 11 | +#import "BEBooksExporter.h" | |
| 12 | + | |
| 13 | + | |
| 14 | +@interface BEExporterAttribute : NSObject <NSCoding> | |
| 15 | +{ | |
| 16 | + ExporterType type; | |
| 17 | + BOOL isOpenAfterExport; | |
| 18 | + BERegisterSite *site; | |
| 19 | +} | |
| 20 | + | |
| 21 | +@property (readonly) ExporterType type; | |
| 22 | +@property BOOL isOpenAfterExport; | |
| 23 | +@property (nonatomic, retain) BERegisterSite *site; | |
| 24 | + | |
| 25 | +@property (readonly) NSString *name; | |
| 26 | + | |
| 27 | + | |
| 28 | ++ (NSArray *)attribtues; | |
| 29 | ++ (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue; | |
| 30 | + | |
| 31 | +@end |
| @@ -0,0 +1,149 @@ | ||
| 1 | +// | |
| 2 | +// BEExporterAttribute.m | |
| 3 | +// BooksExporter | |
| 4 | +// | |
| 5 | +// Created by Hori,Masaki on 11/03/27. | |
| 6 | +// Copyright 2011 masakih. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import "BEExporterAttribute.h" | |
| 10 | +#import "BEPreference.h" | |
| 11 | + | |
| 12 | + | |
| 13 | +@interface BEExporterAttribute() | |
| 14 | +@property ExporterType type; | |
| 15 | +@end | |
| 16 | + | |
| 17 | +@implementation BEExporterAttribute | |
| 18 | +@synthesize type, isOpenAfterExport, site; | |
| 19 | + | |
| 20 | +static NSArray *attributes = nil; | |
| 21 | + | |
| 22 | ++ (NSArray *)attribtues | |
| 23 | +{ | |
| 24 | + if(attributes) return attributes; | |
| 25 | + | |
| 26 | + NSMutableArray *array = [NSMutableArray array]; | |
| 27 | + | |
| 28 | + ExporterType types[] = { | |
| 29 | + typeBooklogExport, | |
| 30 | + typeMediaMarkerExport, | |
| 31 | + typeMediaMarkerImport, | |
| 32 | + | |
| 33 | + typeHatenaDairyType, | |
| 34 | + | |
| 35 | + NSUIntegerMax, | |
| 36 | + }; | |
| 37 | + ExporterType aType; | |
| 38 | + int i = 0; | |
| 39 | + while((aType = types[i++]) != NSUIntegerMax) { | |
| 40 | + // | |
| 41 | + BEExporterAttribute *attr = [[[BEExporterAttribute alloc] init] autorelease]; | |
| 42 | + attr.type = aType; | |
| 43 | + if(!attr.site) { | |
| 44 | + attr.site = [[BERegisterSite sites] objectAtIndex:0]; | |
| 45 | + } | |
| 46 | + [array addObject:attr]; | |
| 47 | + } | |
| 48 | + | |
| 49 | + | |
| 50 | + NSArray *stored = [BEPreference preference].attributes; | |
| 51 | + if(!stored) { | |
| 52 | + attributes = [[NSArray alloc] initWithArray:array]; | |
| 53 | + return attributes; | |
| 54 | + } | |
| 55 | + if([array isEqual:stored]) { | |
| 56 | + attributes = [stored retain]; | |
| 57 | + return attributes; | |
| 58 | + } | |
| 59 | + NSMutableArray *newAttr = [stored mutableCopy]; | |
| 60 | + for(id obj in array) { | |
| 61 | + if(![newAttr containsObject:obj]) { | |
| 62 | + [newAttr addObject:obj]; | |
| 63 | + } | |
| 64 | + } | |
| 65 | + | |
| 66 | + attributes = [[NSArray alloc] initWithArray:newAttr]; | |
| 67 | + return attributes; | |
| 68 | +} | |
| 69 | + | |
| 70 | ++ (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue | |
| 71 | +{ | |
| 72 | + for(BEExporterAttribute *attr in attributes) { | |
| 73 | + if(attr.type ==[typeValue integerValue]) return attr; | |
| 74 | + } | |
| 75 | + return nil; | |
| 76 | +} | |
| 77 | +- (void)restoreAttributes | |
| 78 | +{ | |
| 79 | + NSArray *stored = [BEPreference preference].attributes; | |
| 80 | + if(!stored) { | |
| 81 | + attributes = [[BEExporterAttribute attribtues] retain]; | |
| 82 | + return; | |
| 83 | + } | |
| 84 | + | |
| 85 | + NSArray *origin = [BEExporterAttribute attribtues]; | |
| 86 | + if([origin isEqual:stored]) { | |
| 87 | + attributes = [stored retain]; | |
| 88 | + return; | |
| 89 | + } | |
| 90 | + | |
| 91 | + NSMutableArray *newAttr = [stored mutableCopy]; | |
| 92 | + for(id obj in origin) { | |
| 93 | + if(![newAttr containsObject:obj]) { | |
| 94 | + [newAttr addObject:obj]; | |
| 95 | + } | |
| 96 | + } | |
| 97 | + attributes = [[NSArray alloc] initWithArray:newAttr]; | |
| 98 | +} | |
| 99 | + | |
| 100 | +- (NSString *)name | |
| 101 | +{ | |
| 102 | + switch(type) { | |
| 103 | + case typeBooklogExport: | |
| 104 | + return NSLocalizedString(@"BooklogExport", @"BooklogExport"); | |
| 105 | + case typeMediaMarkerExport: | |
| 106 | + return NSLocalizedString(@"MediaMarkerExport", @"MediaMarkerExport"); | |
| 107 | + case typeMediaMarkerImport: | |
| 108 | + return NSLocalizedString(@"MediaMarkerImport", @"MediaMarkerImport"); | |
| 109 | + case typeHatenaDairyType: | |
| 110 | + return NSLocalizedString(@"HetenaDairy", @"HetenaDairy"); | |
| 111 | + } | |
| 112 | + return @""; | |
| 113 | +} | |
| 114 | + | |
| 115 | +#pragma mark Compare | |
| 116 | +- (NSUInteger)hash | |
| 117 | +{ | |
| 118 | + return type; | |
| 119 | +} | |
| 120 | +- (BOOL)isEqual:(BEExporterAttribute *)object | |
| 121 | +{ | |
| 122 | + if(![object isKindOfClass:[self class]]) return NO; | |
| 123 | + return type == object->type; | |
| 124 | +} | |
| 125 | + | |
| 126 | +#pragma mark NSCoding Protocol | |
| 127 | +- (id)initWithCoder:(NSCoder *)aDecoder | |
| 128 | +{ | |
| 129 | + self = [super init]; | |
| 130 | + self.type = [aDecoder decodeInt64ForKey:@"BEExporterType"]; | |
| 131 | + self.isOpenAfterExport = [aDecoder decodeBoolForKey:@"BEExpoterIsOpenAfterExport"]; | |
| 132 | + self.site = [aDecoder decodeObjectForKey:@"BEExporterSite"]; | |
| 133 | + return self; | |
| 134 | +} | |
| 135 | +- (void)encodeWithCoder:(NSCoder *)aCoder | |
| 136 | +{ | |
| 137 | + [aCoder encodeInt64:type forKey:@"BEExporterType"]; | |
| 138 | + [aCoder encodeBool:isOpenAfterExport forKey:@"BEExpoterIsOpenAfterExport"]; | |
| 139 | + [aCoder encodeObject:site forKey:@"BEExporterSite"]; | |
| 140 | +} | |
| 141 | + | |
| 142 | + | |
| 143 | +- (id)description | |
| 144 | +{ | |
| 145 | + return [NSString stringWithFormat: | |
| 146 | + @"Type->%d, open->%@, Site->%@", | |
| 147 | + type, isOpenAfterExport ? @"YES":@"NO", site]; | |
| 148 | +} | |
| 149 | +@end |
| @@ -12,6 +12,8 @@ | ||
| 12 | 12 | @interface BEGeneralPreference : NSViewController |
| 13 | 13 | { |
| 14 | 14 | NSArray *sites; |
| 15 | + | |
| 16 | + NSArray *attributes; | |
| 15 | 17 | id selection; |
| 16 | 18 | } |
| 17 | 19 |
| @@ -9,8 +9,13 @@ | ||
| 9 | 9 | #import "BEGeneralPreference.h" |
| 10 | 10 | #import "BERegisterSite.h" |
| 11 | 11 | #import "BEPreference.h" |
| 12 | +#import "BEExporterAttribute.h" | |
| 12 | 13 | |
| 13 | 14 | |
| 15 | +@interface BEGeneralPreference (BEPrivate) | |
| 16 | +- (void)setSelection:(id)newSelection; | |
| 17 | +@end | |
| 18 | + | |
| 14 | 19 | @implementation BEGeneralPreference |
| 15 | 20 | |
| 16 | 21 | - (id)init |
| @@ -19,26 +24,41 @@ | ||
| 19 | 24 | if(self) { |
| 20 | 25 | [self setTitle:NSLocalizedString(@"General", @"General")]; |
| 21 | 26 | sites = [[BERegisterSite sites] retain]; |
| 22 | - selection = [BEPreference preference].openSite; | |
| 23 | - [selection retain]; | |
| 27 | + attributes = [[BEExporterAttribute attribtues] retain]; | |
| 28 | + [self setSelection:[attributes objectAtIndex:0]]; | |
| 24 | 29 | } |
| 25 | 30 | return self; |
| 26 | 31 | } |
| 27 | 32 | - (void)dealloc |
| 28 | 33 | { |
| 29 | 34 | [sites release]; |
| 30 | - [selection retain]; | |
| 35 | + [attributes release]; | |
| 36 | + [self setSelection:nil]; | |
| 31 | 37 | [super dealloc]; |
| 32 | 38 | } |
| 33 | 39 | |
| 34 | 40 | - (void)setSelection:(id)newSelection |
| 35 | 41 | { |
| 36 | 42 | if(selection == newSelection) return; |
| 43 | + | |
| 44 | + if(selection) { | |
| 45 | + [selection removeObserver:self forKeyPath:@"isOpenAfterExport"]; | |
| 46 | + [selection removeObserver:self forKeyPath:@"site"]; | |
| 47 | + } | |
| 37 | 48 | id temp = selection; |
| 38 | 49 | selection = [newSelection retain]; |
| 39 | 50 | [temp release]; |
| 40 | 51 | |
| 41 | - [BEPreference preference].openSite = selection; | |
| 52 | + [selection addObserver:self forKeyPath:@"isOpenAfterExport" options:0 context:NULL]; | |
| 53 | + [selection addObserver:self forKeyPath:@"site" options:0 context:NULL]; | |
| 54 | +} | |
| 55 | +- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context | |
| 56 | +{ | |
| 57 | + if(![keyPath isEqualToString:@"isOpenAfterExport"] && ![keyPath isEqualToString:@"site"]) { | |
| 58 | + return [super observeValueForKeyPath:keyPath ofObject:object change:change context:context]; | |
| 59 | + } | |
| 60 | + | |
| 61 | + [BEPreference preference].attributes = attributes; | |
| 42 | 62 | } |
| 43 | 63 | |
| 44 | 64 | - (NSString *)iconName |
| @@ -15,6 +15,7 @@ | ||
| 15 | 15 | |
| 16 | 16 | #import "BEBooksExporter.h" |
| 17 | 17 | #import "BEPreference.h" |
| 18 | +#import "BEExporterAttribute.h" | |
| 18 | 19 | |
| 19 | 20 | |
| 20 | 21 | @implementation BEMainWindowController |
| @@ -173,6 +174,11 @@ | ||
| 173 | 174 | |
| 174 | 175 | NSWorkspace *ws = [NSWorkspace sharedWorkspace]; |
| 175 | 176 | [ws selectFile:[[panel URL] path] inFileViewerRootedAtPath:@""]; |
| 177 | + | |
| 178 | + BEExporterAttribute *attr = [BEExporterAttribute attributeByType:accessoryController.type]; | |
| 179 | + if(attr.isOpenAfterExport) { | |
| 180 | + [ws openURL:attr.site.registerPageURL]; | |
| 181 | + } | |
| 176 | 182 | } |
| 177 | 183 | - (IBAction)delete:(id)sender |
| 178 | 184 | { |
| @@ -21,8 +21,8 @@ extern NSString *const BEDoNotCheckExport; // NSNumber of BOOL. | ||
| 21 | 21 | |
| 22 | 22 | + (BEPreference *)preference; |
| 23 | 23 | |
| 24 | -@property (getter=isOpenAfterExport) BOOL openAfterExport; | |
| 25 | -@property (nonatomic, retain) BERegisterSite *openSite; | |
| 26 | 24 | |
| 27 | 25 | @property BOOL doNotCheckExport; |
| 26 | + | |
| 27 | +@property (nonatomic, retain) NSArray *attributes; // Array of BEExporterAttribute. | |
| 28 | 28 | @end |
| @@ -14,6 +14,7 @@ NSString *const BEOpenSite = @"targetSite"; | ||
| 14 | 14 | |
| 15 | 15 | NSString *const BEDoNotCheckExport = @"doNotCheckExport"; |
| 16 | 16 | |
| 17 | +static NSString *const BESiteOpenAttributes = @"SiteOpenAttributes"; | |
| 17 | 18 | |
| 18 | 19 | @implementation BEPreference |
| 19 | 20 | static BEPreference *sharedInstance = nil; |
| @@ -37,26 +38,16 @@ static BEPreference *sharedInstance = nil; | ||
| 37 | 38 | [ud setObject:object forKey:key]; |
| 38 | 39 | } |
| 39 | 40 | |
| 40 | -- (BOOL)isOpenAfterExport | |
| 41 | +- (NSArray *)attributes | |
| 41 | 42 | { |
| 42 | - id val = [self objectForKey:BEOpenAfterExported]; | |
| 43 | - return [val boolValue]; | |
| 44 | -} | |
| 45 | -- (void)setOpenAfterExport:(BOOL)flag | |
| 46 | -{ | |
| 47 | - [self setObject:[NSNumber numberWithBool:flag] | |
| 48 | - forKey:BEOpenAfterExported]; | |
| 49 | -} | |
| 50 | - | |
| 51 | -- (BERegisterSite *)openSite | |
| 52 | -{ | |
| 53 | - id data = [self objectForKey:BEOpenSite]; | |
| 43 | + NSData *data = [self objectForKey:BESiteOpenAttributes]; | |
| 44 | + if(!data) return nil; | |
| 54 | 45 | return [NSKeyedUnarchiver unarchiveObjectWithData:data]; |
| 55 | 46 | } |
| 56 | -- (void)setOpenSite:(BERegisterSite *)site | |
| 47 | +- (void)setAttributes:(NSArray *)attributes | |
| 57 | 48 | { |
| 58 | - id data = [NSKeyedArchiver archivedDataWithRootObject:site]; | |
| 59 | - [self setObject:data forKey:BEOpenSite]; | |
| 49 | + NSData *data = [NSKeyedArchiver archivedDataWithRootObject:attributes]; | |
| 50 | + [self setObject:data forKey:BESiteOpenAttributes]; | |
| 60 | 51 | } |
| 61 | 52 | |
| 62 | 53 | - (BOOL)doNotCheckExport |
| @@ -130,4 +130,11 @@ static NSArray *sSites = nil; | ||
| 130 | 130 | [aCoder encodeObject:account forKey:@"account"]; |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | +- (id)description | |
| 134 | +{ | |
| 135 | + return [NSString stringWithFormat: | |
| 136 | + @"Name->%@, Home->%@, Reg->%@, id->%@, ac->%@", | |
| 137 | + name, home, registerPage, needID, account]; | |
| 138 | +} | |
| 139 | + | |
| 133 | 140 | @end |
| @@ -49,6 +49,7 @@ | ||
| 49 | 49 | F44EED8F131BD03300CAA969 /* BEBooksExporter.m in Sources */ = {isa = PBXBuildFile; fileRef = F44EED8E131BD03300CAA969 /* BEBooksExporter.m */; }; |
| 50 | 50 | F44EED9A131BD15300CAA969 /* BEBooklogBooksExporter.m in Sources */ = {isa = PBXBuildFile; fileRef = F44EED99131BD15300CAA969 /* BEBooklogBooksExporter.m */; }; |
| 51 | 51 | F44EEE2B131BF48A00CAA969 /* BEMediaMarkerBooksExporter.m in Sources */ = {isa = PBXBuildFile; fileRef = F44EEE2A131BF48A00CAA969 /* BEMediaMarkerBooksExporter.m */; }; |
| 52 | + F45A0748135140BC0029B353 /* BEExporterAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = F45A0746135140BC0029B353 /* BEExporterAttribute.m */; }; | |
| 52 | 53 | F4CD1387131D2384007788DC /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4CD1385131D2384007788DC /* MainMenu.xib */; }; |
| 53 | 54 | F4CD141F131D2ADF007788DC /* BooksExporter.xcdatamodel in Sources */ = {isa = PBXBuildFile; fileRef = F4CD141E131D2ADF007788DC /* BooksExporter.xcdatamodel */; }; |
| 54 | 55 | F4D9D9B5133BA44A009DCEE6 /* RegisterSites.plist in Resources */ = {isa = PBXBuildFile; fileRef = F4D9D9B4133BA44A009DCEE6 /* RegisterSites.plist */; }; |
| @@ -200,6 +201,8 @@ | ||
| 200 | 201 | F44EED99131BD15300CAA969 /* BEBooklogBooksExporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BEBooklogBooksExporter.m; sourceTree = "<group>"; }; |
| 201 | 202 | F44EEE29131BF48A00CAA969 /* BEMediaMarkerBooksExporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BEMediaMarkerBooksExporter.h; sourceTree = "<group>"; }; |
| 202 | 203 | F44EEE2A131BF48A00CAA969 /* BEMediaMarkerBooksExporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BEMediaMarkerBooksExporter.m; sourceTree = "<group>"; }; |
| 204 | + F45A0746135140BC0029B353 /* BEExporterAttribute.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BEExporterAttribute.m; sourceTree = "<group>"; }; | |
| 205 | + F45A0747135140BC0029B353 /* BEExporterAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BEExporterAttribute.h; sourceTree = "<group>"; }; | |
| 203 | 206 | F4CD1386131D2384007788DC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; }; |
| 204 | 207 | F4CD141E131D2ADF007788DC /* BooksExporter.xcdatamodel */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = wrapper.xcdatamodel; path = BooksExporter.xcdatamodel; sourceTree = "<group>"; }; |
| 205 | 208 | F4D9D9B4133BA44A009DCEE6 /* RegisterSites.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = RegisterSites.plist; sourceTree = "<group>"; }; |
| @@ -364,6 +367,8 @@ | ||
| 364 | 367 | F44EED13131BC11E00CAA969 /* BEExportAccessoryViewController.m */, |
| 365 | 368 | F4D9D9D0133CD88E009DCEE6 /* BERegisterSite.h */, |
| 366 | 369 | F4D9D9D1133CD88E009DCEE6 /* BERegisterSite.m */, |
| 370 | + F45A0747135140BC0029B353 /* BEExporterAttribute.h */, | |
| 371 | + F45A0746135140BC0029B353 /* BEExporterAttribute.m */, | |
| 367 | 372 | F44EEEF0131D1DD800CAA969 /* BarcodeScanner */, |
| 368 | 373 | ); |
| 369 | 374 | name = Classes; |
| @@ -652,6 +657,7 @@ | ||
| 652 | 657 | F4D9D9D2133CD88E009DCEE6 /* BERegisterSite.m in Sources */, |
| 653 | 658 | F4D9D9EB133CDE2B009DCEE6 /* BEPreferencePanel.m in Sources */, |
| 654 | 659 | F4D9DD8F133E4D1E009DCEE6 /* BEPreference.m in Sources */, |
| 660 | + F45A0748135140BC0029B353 /* BEExporterAttribute.m in Sources */, | |
| 655 | 661 | ); |
| 656 | 662 | runOnlyForDeploymentPostprocessing = 0; |
| 657 | 663 | }; |
| @@ -12,7 +12,7 @@ | ||
| 12 | 12 | </object> |
| 13 | 13 | <object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> |
| 14 | 14 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 15 | - <integer value="14"/> | |
| 15 | + <integer value="130"/> | |
| 16 | 16 | </object> |
| 17 | 17 | <object class="NSArray" key="IBDocument.PluginDependencies"> |
| 18 | 18 | <bool key="EncodedWithXMLCoder">YES</bool> |
| @@ -38,64 +38,162 @@ | ||
| 38 | 38 | <object class="NSCustomObject" id="1004"> |
| 39 | 39 | <string key="NSClassName">NSApplication</string> |
| 40 | 40 | </object> |
| 41 | - <object class="NSCustomView" id="1005"> | |
| 41 | + <object class="NSArrayController" id="764388977"> | |
| 42 | + <object class="NSMutableArray" key="NSDeclaredKeys"> | |
| 43 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
| 44 | + <string>name</string> | |
| 45 | + <string>account</string> | |
| 46 | + <string>needID</string> | |
| 47 | + <string>isNeedID</string> | |
| 48 | + <string>site.name</string> | |
| 49 | + </object> | |
| 50 | + <string key="NSObjectClassName">BERegisterSite</string> | |
| 51 | + <bool key="NSAutomaticallyPreparesContent">YES</bool> | |
| 52 | + <object class="_NSManagedProxy" key="_NSManagedProxy"/> | |
| 53 | + <bool key="NSAvoidsEmptySelection">YES</bool> | |
| 54 | + <bool key="NSPreservesSelection">YES</bool> | |
| 55 | + <bool key="NSSelectsInsertedObjects">YES</bool> | |
| 56 | + <bool key="NSFilterRestrictsInsertion">YES</bool> | |
| 57 | + <bool key="NSClearsFilterPredicateOnInsertion">YES</bool> | |
| 58 | + </object> | |
| 59 | + <object class="NSUserDefaultsController" id="770136993"> | |
| 60 | + <bool key="NSSharedInstance">YES</bool> | |
| 61 | + </object> | |
| 62 | + <object class="NSCustomView" id="151985773"> | |
| 42 | 63 | <reference key="NSNextResponder"/> |
| 43 | 64 | <int key="NSvFlags">256</int> |
| 44 | 65 | <object class="NSMutableArray" key="NSSubviews"> |
| 45 | 66 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 46 | - <object class="NSButton" id="1050586753"> | |
| 47 | - <reference key="NSNextResponder" ref="1005"/> | |
| 67 | + <object class="NSPopUpButton" id="187438968"> | |
| 68 | + <reference key="NSNextResponder" ref="151985773"/> | |
| 48 | 69 | <int key="NSvFlags">268</int> |
| 49 | - <string key="NSFrame">{{18, 129}, {238, 18}}</string> | |
| 50 | - <reference key="NSSuperview" ref="1005"/> | |
| 70 | + <string key="NSFrame">{{17, 122}, {156, 26}}</string> | |
| 71 | + <reference key="NSSuperview" ref="151985773"/> | |
| 51 | 72 | <bool key="NSEnabled">YES</bool> |
| 52 | - <object class="NSButtonCell" key="NSCell" id="449211228"> | |
| 53 | - <int key="NSCellFlags">-2080244224</int> | |
| 54 | - <int key="NSCellFlags2">0</int> | |
| 55 | - <string key="NSContents">Open register page after exported</string> | |
| 73 | + <object class="NSPopUpButtonCell" key="NSCell" id="258443856"> | |
| 74 | + <int key="NSCellFlags">-2076049856</int> | |
| 75 | + <int key="NSCellFlags2">2048</int> | |
| 56 | 76 | <object class="NSFont" key="NSSupport" id="746854810"> |
| 57 | 77 | <string key="NSName">LucidaGrande</string> |
| 58 | 78 | <double key="NSSize">13</double> |
| 59 | 79 | <int key="NSfFlags">1044</int> |
| 60 | 80 | </object> |
| 61 | - <reference key="NSControlView" ref="1050586753"/> | |
| 62 | - <int key="NSButtonFlags">1211912703</int> | |
| 63 | - <int key="NSButtonFlags2">2</int> | |
| 64 | - <object class="NSCustomResource" key="NSNormalImage"> | |
| 65 | - <string key="NSClassName">NSImage</string> | |
| 66 | - <string key="NSResourceName">NSSwitch</string> | |
| 67 | - </object> | |
| 68 | - <object class="NSButtonImageSource" key="NSAlternateImage"> | |
| 69 | - <string key="NSImageName">NSSwitch</string> | |
| 70 | - </object> | |
| 81 | + <reference key="NSControlView" ref="187438968"/> | |
| 82 | + <int key="NSButtonFlags">109199615</int> | |
| 83 | + <int key="NSButtonFlags2">129</int> | |
| 71 | 84 | <string key="NSAlternateContents"/> |
| 72 | 85 | <string key="NSKeyEquivalent"/> |
| 73 | - <int key="NSPeriodicDelay">200</int> | |
| 74 | - <int key="NSPeriodicInterval">25</int> | |
| 86 | + <int key="NSPeriodicDelay">400</int> | |
| 87 | + <int key="NSPeriodicInterval">75</int> | |
| 88 | + <object class="NSMenuItem" key="NSMenuItem" id="293650496"> | |
| 89 | + <reference key="NSMenu" ref="676651368"/> | |
| 90 | + <string key="NSTitle">Item 1</string> | |
| 91 | + <string key="NSKeyEquiv"/> | |
| 92 | + <int key="NSKeyEquivModMask">1048576</int> | |
| 93 | + <int key="NSMnemonicLoc">2147483647</int> | |
| 94 | + <int key="NSState">1</int> | |
| 95 | + <object class="NSCustomResource" key="NSOnImage" id="1050589734"> | |
| 96 | + <string key="NSClassName">NSImage</string> | |
| 97 | + <string key="NSResourceName">NSMenuCheckmark</string> | |
| 98 | + </object> | |
| 99 | + <object class="NSCustomResource" key="NSMixedImage" id="995331589"> | |
| 100 | + <string key="NSClassName">NSImage</string> | |
| 101 | + <string key="NSResourceName">NSMenuMixedState</string> | |
| 102 | + </object> | |
| 103 | + <string key="NSAction">_popUpItemAction:</string> | |
| 104 | + <reference key="NSTarget" ref="258443856"/> | |
| 105 | + </object> | |
| 106 | + <bool key="NSMenuItemRespectAlignment">YES</bool> | |
| 107 | + <object class="NSMenu" key="NSMenu" id="676651368"> | |
| 108 | + <string key="NSTitle">OtherViews</string> | |
| 109 | + <object class="NSMutableArray" key="NSMenuItems"> | |
| 110 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
| 111 | + <reference ref="293650496"/> | |
| 112 | + <object class="NSMenuItem" id="519311819"> | |
| 113 | + <reference key="NSMenu" ref="676651368"/> | |
| 114 | + <string key="NSTitle">Item 2</string> | |
| 115 | + <string key="NSKeyEquiv"/> | |
| 116 | + <int key="NSKeyEquivModMask">1048576</int> | |
| 117 | + <int key="NSMnemonicLoc">2147483647</int> | |
| 118 | + <reference key="NSOnImage" ref="1050589734"/> | |
| 119 | + <reference key="NSMixedImage" ref="995331589"/> | |
| 120 | + <string key="NSAction">_popUpItemAction:</string> | |
| 121 | + <reference key="NSTarget" ref="258443856"/> | |
| 122 | + </object> | |
| 123 | + <object class="NSMenuItem" id="899781362"> | |
| 124 | + <reference key="NSMenu" ref="676651368"/> | |
| 125 | + <string key="NSTitle">Item 3</string> | |
| 126 | + <string key="NSKeyEquiv"/> | |
| 127 | + <int key="NSKeyEquivModMask">1048576</int> | |
| 128 | + <int key="NSMnemonicLoc">2147483647</int> | |
| 129 | + <reference key="NSOnImage" ref="1050589734"/> | |
| 130 | + <reference key="NSMixedImage" ref="995331589"/> | |
| 131 | + <string key="NSAction">_popUpItemAction:</string> | |
| 132 | + <reference key="NSTarget" ref="258443856"/> | |
| 133 | + </object> | |
| 134 | + </object> | |
| 135 | + <reference key="NSMenuFont" ref="746854810"/> | |
| 136 | + </object> | |
| 137 | + <int key="NSPreferredEdge">1</int> | |
| 138 | + <bool key="NSUsesItemFromMenu">YES</bool> | |
| 139 | + <bool key="NSAltersState">YES</bool> | |
| 140 | + <int key="NSArrowPosition">2</int> | |
| 75 | 141 | </object> |
| 76 | 142 | </object> |
| 77 | - <object class="NSBox" id="627651099"> | |
| 78 | - <reference key="NSNextResponder" ref="1005"/> | |
| 143 | + <object class="NSBox" id="183974536"> | |
| 144 | + <reference key="NSNextResponder" ref="151985773"/> | |
| 79 | 145 | <int key="NSvFlags">36</int> |
| 80 | 146 | <object class="NSMutableArray" key="NSSubviews"> |
| 81 | 147 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 82 | - <object class="NSView" id="335837830"> | |
| 83 | - <reference key="NSNextResponder" ref="627651099"/> | |
| 148 | + <object class="NSView" id="692902308"> | |
| 149 | + <reference key="NSNextResponder" ref="183974536"/> | |
| 84 | 150 | <int key="NSvFlags">256</int> |
| 85 | 151 | <object class="NSMutableArray" key="NSSubviews"> |
| 86 | 152 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 87 | - <object class="NSTextField" id="173361654"> | |
| 88 | - <reference key="NSNextResponder" ref="335837830"/> | |
| 153 | + <object class="NSTextField" id="977832199"> | |
| 154 | + <reference key="NSNextResponder" ref="692902308"/> | |
| 155 | + <int key="NSvFlags">268</int> | |
| 156 | + <string key="NSFrame">{{15, 16}, {54, 17}}</string> | |
| 157 | + <reference key="NSSuperview" ref="692902308"/> | |
| 158 | + <bool key="NSEnabled">YES</bool> | |
| 159 | + <object class="NSTextFieldCell" key="NSCell" id="85078118"> | |
| 160 | + <int key="NSCellFlags">68288064</int> | |
| 161 | + <int key="NSCellFlags2">71304192</int> | |
| 162 | + <string key="NSContents">User ID:</string> | |
| 163 | + <reference key="NSSupport" ref="746854810"/> | |
| 164 | + <reference key="NSControlView" ref="977832199"/> | |
| 165 | + <object class="NSColor" key="NSBackgroundColor" id="570986040"> | |
| 166 | + <int key="NSColorSpace">6</int> | |
| 167 | + <string key="NSCatalogName">System</string> | |
| 168 | + <string key="NSColorName">controlColor</string> | |
| 169 | + <object class="NSColor" key="NSColor"> | |
| 170 | + <int key="NSColorSpace">3</int> | |
| 171 | + <bytes key="NSWhite">MC42NjY2NjY2ODY1AA</bytes> | |
| 172 | + </object> | |
| 173 | + </object> | |
| 174 | + <object class="NSColor" key="NSTextColor" id="886173655"> | |
| 175 | + <int key="NSColorSpace">6</int> | |
| 176 | + <string key="NSCatalogName">System</string> | |
| 177 | + <string key="NSColorName">controlTextColor</string> | |
| 178 | + <object class="NSColor" key="NSColor" id="76424852"> | |
| 179 | + <int key="NSColorSpace">3</int> | |
| 180 | + <bytes key="NSWhite">MAA</bytes> | |
| 181 | + </object> | |
| 182 | + </object> | |
| 183 | + </object> | |
| 184 | + </object> | |
| 185 | + <object class="NSTextField" id="590273973"> | |
| 186 | + <reference key="NSNextResponder" ref="692902308"/> | |
| 89 | 187 | <int key="NSvFlags">268</int> |
| 90 | 188 | <string key="NSFrame">{{74, 14}, {148, 22}}</string> |
| 91 | - <reference key="NSSuperview" ref="335837830"/> | |
| 189 | + <reference key="NSSuperview" ref="692902308"/> | |
| 92 | 190 | <bool key="NSEnabled">YES</bool> |
| 93 | - <object class="NSTextFieldCell" key="NSCell" id="1043071553"> | |
| 191 | + <object class="NSTextFieldCell" key="NSCell" id="38339054"> | |
| 94 | 192 | <int key="NSCellFlags">-1804468671</int> |
| 95 | 193 | <int key="NSCellFlags2">272630784</int> |
| 96 | 194 | <string key="NSContents"/> |
| 97 | 195 | <reference key="NSSupport" ref="746854810"/> |
| 98 | - <reference key="NSControlView" ref="173361654"/> | |
| 196 | + <reference key="NSControlView" ref="590273973"/> | |
| 99 | 197 | <bool key="NSDrawsBackground">YES</bool> |
| 100 | 198 | <object class="NSColor" key="NSBackgroundColor" id="1006362850"> |
| 101 | 199 | <int key="NSColorSpace">6</int> |
| @@ -110,75 +208,93 @@ | ||
| 110 | 208 | <int key="NSColorSpace">6</int> |
| 111 | 209 | <string key="NSCatalogName">System</string> |
| 112 | 210 | <string key="NSColorName">textColor</string> |
| 113 | - <object class="NSColor" key="NSColor" id="76424852"> | |
| 114 | - <int key="NSColorSpace">3</int> | |
| 115 | - <bytes key="NSWhite">MAA</bytes> | |
| 116 | - </object> | |
| 211 | + <reference key="NSColor" ref="76424852"/> | |
| 212 | + </object> | |
| 213 | + </object> | |
| 214 | + </object> | |
| 215 | + <object class="NSButton" id="524046644"> | |
| 216 | + <reference key="NSNextResponder" ref="692902308"/> | |
| 217 | + <int key="NSvFlags">268</int> | |
| 218 | + <string key="NSFrame">{{16, 74}, {238, 18}}</string> | |
| 219 | + <reference key="NSSuperview" ref="692902308"/> | |
| 220 | + <bool key="NSEnabled">YES</bool> | |
| 221 | + <object class="NSButtonCell" key="NSCell" id="331353583"> | |
| 222 | + <int key="NSCellFlags">-2080244224</int> | |
| 223 | + <int key="NSCellFlags2">0</int> | |
| 224 | + <string key="NSContents">Open register page after exported</string> | |
| 225 | + <reference key="NSSupport" ref="746854810"/> | |
| 226 | + <reference key="NSControlView" ref="524046644"/> | |
| 227 | + <int key="NSButtonFlags">1211912703</int> | |
| 228 | + <int key="NSButtonFlags2">2</int> | |
| 229 | + <object class="NSCustomResource" key="NSNormalImage"> | |
| 230 | + <string key="NSClassName">NSImage</string> | |
| 231 | + <string key="NSResourceName">NSSwitch</string> | |
| 232 | + </object> | |
| 233 | + <object class="NSButtonImageSource" key="NSAlternateImage"> | |
| 234 | + <string key="NSImageName">NSSwitch</string> | |
| 117 | 235 | </object> |
| 236 | + <string key="NSAlternateContents"/> | |
| 237 | + <string key="NSKeyEquivalent"/> | |
| 238 | + <int key="NSPeriodicDelay">200</int> | |
| 239 | + <int key="NSPeriodicInterval">25</int> | |
| 118 | 240 | </object> |
| 119 | 241 | </object> |
| 120 | - <object class="NSPopUpButton" id="882926558"> | |
| 121 | - <reference key="NSNextResponder" ref="335837830"/> | |
| 242 | + <object class="NSPopUpButton" id="267248710"> | |
| 243 | + <reference key="NSNextResponder" ref="692902308"/> | |
| 122 | 244 | <int key="NSvFlags">268</int> |
| 123 | - <string key="NSFrame">{{71, 52}, {154, 26}}</string> | |
| 124 | - <reference key="NSSuperview" ref="335837830"/> | |
| 245 | + <string key="NSFrame">{{71, 44}, {154, 26}}</string> | |
| 246 | + <reference key="NSSuperview" ref="692902308"/> | |
| 125 | 247 | <bool key="NSEnabled">YES</bool> |
| 126 | - <object class="NSPopUpButtonCell" key="NSCell" id="553289638"> | |
| 248 | + <object class="NSPopUpButtonCell" key="NSCell" id="449244900"> | |
| 127 | 249 | <int key="NSCellFlags">-2076049856</int> |
| 128 | 250 | <int key="NSCellFlags2">2048</int> |
| 129 | 251 | <reference key="NSSupport" ref="746854810"/> |
| 130 | - <reference key="NSControlView" ref="882926558"/> | |
| 252 | + <reference key="NSControlView" ref="267248710"/> | |
| 131 | 253 | <int key="NSButtonFlags">109199615</int> |
| 132 | 254 | <int key="NSButtonFlags2">129</int> |
| 133 | 255 | <string key="NSAlternateContents"/> |
| 134 | 256 | <string key="NSKeyEquivalent"/> |
| 135 | 257 | <int key="NSPeriodicDelay">400</int> |
| 136 | 258 | <int key="NSPeriodicInterval">75</int> |
| 137 | - <object class="NSMenuItem" key="NSMenuItem" id="566777067"> | |
| 138 | - <reference key="NSMenu" ref="904294826"/> | |
| 259 | + <object class="NSMenuItem" key="NSMenuItem" id="791063710"> | |
| 260 | + <reference key="NSMenu" ref="97363384"/> | |
| 139 | 261 | <string key="NSTitle">Item 1</string> |
| 140 | 262 | <string key="NSKeyEquiv"/> |
| 141 | 263 | <int key="NSKeyEquivModMask">1048576</int> |
| 142 | 264 | <int key="NSMnemonicLoc">2147483647</int> |
| 143 | 265 | <int key="NSState">1</int> |
| 144 | - <object class="NSCustomResource" key="NSOnImage" id="377796260"> | |
| 145 | - <string key="NSClassName">NSImage</string> | |
| 146 | - <string key="NSResourceName">NSMenuCheckmark</string> | |
| 147 | - </object> | |
| 148 | - <object class="NSCustomResource" key="NSMixedImage" id="413825263"> | |
| 149 | - <string key="NSClassName">NSImage</string> | |
| 150 | - <string key="NSResourceName">NSMenuMixedState</string> | |
| 151 | - </object> | |
| 266 | + <reference key="NSOnImage" ref="1050589734"/> | |
| 267 | + <reference key="NSMixedImage" ref="995331589"/> | |
| 152 | 268 | <string key="NSAction">_popUpItemAction:</string> |
| 153 | - <reference key="NSTarget" ref="553289638"/> | |
| 269 | + <reference key="NSTarget" ref="449244900"/> | |
| 154 | 270 | </object> |
| 155 | 271 | <bool key="NSMenuItemRespectAlignment">YES</bool> |
| 156 | - <object class="NSMenu" key="NSMenu" id="904294826"> | |
| 272 | + <object class="NSMenu" key="NSMenu" id="97363384"> | |
| 157 | 273 | <string key="NSTitle">OtherViews</string> |
| 158 | 274 | <object class="NSMutableArray" key="NSMenuItems"> |
| 159 | 275 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 160 | - <reference ref="566777067"/> | |
| 161 | - <object class="NSMenuItem" id="475941471"> | |
| 162 | - <reference key="NSMenu" ref="904294826"/> | |
| 276 | + <reference ref="791063710"/> | |
| 277 | + <object class="NSMenuItem" id="147185615"> | |
| 278 | + <reference key="NSMenu" ref="97363384"/> | |
| 163 | 279 | <string key="NSTitle">Item 2</string> |
| 164 | 280 | <string key="NSKeyEquiv"/> |
| 165 | 281 | <int key="NSKeyEquivModMask">1048576</int> |
| 166 | 282 | <int key="NSMnemonicLoc">2147483647</int> |
| 167 | - <reference key="NSOnImage" ref="377796260"/> | |
| 168 | - <reference key="NSMixedImage" ref="413825263"/> | |
| 283 | + <reference key="NSOnImage" ref="1050589734"/> | |
| 284 | + <reference key="NSMixedImage" ref="995331589"/> | |
| 169 | 285 | <string key="NSAction">_popUpItemAction:</string> |
| 170 | - <reference key="NSTarget" ref="553289638"/> | |
| 286 | + <reference key="NSTarget" ref="449244900"/> | |
| 171 | 287 | </object> |
| 172 | - <object class="NSMenuItem" id="545569333"> | |
| 173 | - <reference key="NSMenu" ref="904294826"/> | |
| 288 | + <object class="NSMenuItem" id="347183867"> | |
| 289 | + <reference key="NSMenu" ref="97363384"/> | |
| 174 | 290 | <string key="NSTitle">Item 3</string> |
| 175 | 291 | <string key="NSKeyEquiv"/> |
| 176 | 292 | <int key="NSKeyEquivModMask">1048576</int> |
| 177 | 293 | <int key="NSMnemonicLoc">2147483647</int> |
| 178 | - <reference key="NSOnImage" ref="377796260"/> | |
| 179 | - <reference key="NSMixedImage" ref="413825263"/> | |
| 294 | + <reference key="NSOnImage" ref="1050589734"/> | |
| 295 | + <reference key="NSMixedImage" ref="995331589"/> | |
| 180 | 296 | <string key="NSAction">_popUpItemAction:</string> |
| 181 | - <reference key="NSTarget" ref="553289638"/> | |
| 297 | + <reference key="NSTarget" ref="449244900"/> | |
| 182 | 298 | </object> |
| 183 | 299 | </object> |
| 184 | 300 | <reference key="NSMenuFont" ref="746854810"/> |
| @@ -189,63 +305,34 @@ | ||
| 189 | 305 | <int key="NSArrowPosition">2</int> |
| 190 | 306 | </object> |
| 191 | 307 | </object> |
| 192 | - <object class="NSTextField" id="693788738"> | |
| 193 | - <reference key="NSNextResponder" ref="335837830"/> | |
| 308 | + <object class="NSTextField" id="484188188"> | |
| 309 | + <reference key="NSNextResponder" ref="692902308"/> | |
| 194 | 310 | <int key="NSvFlags">268</int> |
| 195 | - <string key="NSFrame">{{15, 57}, {54, 17}}</string> | |
| 196 | - <reference key="NSSuperview" ref="335837830"/> | |
| 311 | + <string key="NSFrame">{{15, 49}, {54, 17}}</string> | |
| 312 | + <reference key="NSSuperview" ref="692902308"/> | |
| 197 | 313 | <bool key="NSEnabled">YES</bool> |
| 198 | - <object class="NSTextFieldCell" key="NSCell" id="1051534466"> | |
| 314 | + <object class="NSTextFieldCell" key="NSCell" id="1003616132"> | |
| 199 | 315 | <int key="NSCellFlags">68288064</int> |
| 200 | 316 | <int key="NSCellFlags2">71304192</int> |
| 201 | 317 | <string key="NSContents">Site:</string> |
| 202 | 318 | <reference key="NSSupport" ref="746854810"/> |
| 203 | - <reference key="NSControlView" ref="693788738"/> | |
| 204 | - <object class="NSColor" key="NSBackgroundColor" id="570986040"> | |
| 205 | - <int key="NSColorSpace">6</int> | |
| 206 | - <string key="NSCatalogName">System</string> | |
| 207 | - <string key="NSColorName">controlColor</string> | |
| 208 | - <object class="NSColor" key="NSColor"> | |
| 209 | - <int key="NSColorSpace">3</int> | |
| 210 | - <bytes key="NSWhite">MC42NjY2NjY2ODY1AA</bytes> | |
| 211 | - </object> | |
| 212 | - </object> | |
| 213 | - <object class="NSColor" key="NSTextColor" id="886173655"> | |
| 214 | - <int key="NSColorSpace">6</int> | |
| 215 | - <string key="NSCatalogName">System</string> | |
| 216 | - <string key="NSColorName">controlTextColor</string> | |
| 217 | - <reference key="NSColor" ref="76424852"/> | |
| 218 | - </object> | |
| 219 | - </object> | |
| 220 | - </object> | |
| 221 | - <object class="NSTextField" id="431188278"> | |
| 222 | - <reference key="NSNextResponder" ref="335837830"/> | |
| 223 | - <int key="NSvFlags">268</int> | |
| 224 | - <string key="NSFrame">{{15, 16}, {54, 17}}</string> | |
| 225 | - <reference key="NSSuperview" ref="335837830"/> | |
| 226 | - <bool key="NSEnabled">YES</bool> | |
| 227 | - <object class="NSTextFieldCell" key="NSCell" id="803552079"> | |
| 228 | - <int key="NSCellFlags">68288064</int> | |
| 229 | - <int key="NSCellFlags2">71304192</int> | |
| 230 | - <string key="NSContents">User ID:</string> | |
| 231 | - <reference key="NSSupport" ref="746854810"/> | |
| 232 | - <reference key="NSControlView" ref="431188278"/> | |
| 319 | + <reference key="NSControlView" ref="484188188"/> | |
| 233 | 320 | <reference key="NSBackgroundColor" ref="570986040"/> |
| 234 | 321 | <reference key="NSTextColor" ref="886173655"/> |
| 235 | 322 | </object> |
| 236 | 323 | </object> |
| 237 | 324 | </object> |
| 238 | - <string key="NSFrame">{{1, 1}, {240, 86}}</string> | |
| 239 | - <reference key="NSSuperview" ref="627651099"/> | |
| 325 | + <string key="NSFrame">{{1, 1}, {265, 102}}</string> | |
| 326 | + <reference key="NSSuperview" ref="183974536"/> | |
| 240 | 327 | </object> |
| 241 | 328 | </object> |
| 242 | - <string key="NSFrame">{{17, 16}, {242, 102}}</string> | |
| 243 | - <reference key="NSSuperview" ref="1005"/> | |
| 329 | + <string key="NSFrame">{{17, 16}, {267, 104}}</string> | |
| 330 | + <reference key="NSSuperview" ref="151985773"/> | |
| 244 | 331 | <string key="NSOffsets">{0, 0}</string> |
| 245 | 332 | <object class="NSTextFieldCell" key="NSTitleCell"> |
| 246 | 333 | <int key="NSCellFlags">67239424</int> |
| 247 | 334 | <int key="NSCellFlags2">0</int> |
| 248 | - <string key="NSContents">Register Page</string> | |
| 335 | + <string key="NSContents">Box</string> | |
| 249 | 336 | <object class="NSFont" key="NSSupport"> |
| 250 | 337 | <string key="NSName">LucidaGrande</string> |
| 251 | 338 | <double key="NSSize">11</double> |
| @@ -257,27 +344,23 @@ | ||
| 257 | 344 | <bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes> |
| 258 | 345 | </object> |
| 259 | 346 | </object> |
| 260 | - <reference key="NSContentView" ref="335837830"/> | |
| 347 | + <reference key="NSContentView" ref="692902308"/> | |
| 261 | 348 | <int key="NSBorderType">1</int> |
| 262 | 349 | <int key="NSBoxType">0</int> |
| 263 | - <int key="NSTitlePosition">2</int> | |
| 350 | + <int key="NSTitlePosition">0</int> | |
| 264 | 351 | <bool key="NSTransparent">NO</bool> |
| 265 | 352 | </object> |
| 266 | 353 | </object> |
| 267 | - <string key="NSFrameSize">{276, 165}</string> | |
| 354 | + <string key="NSFrameSize">{301, 166}</string> | |
| 268 | 355 | <reference key="NSSuperview"/> |
| 269 | 356 | <string key="NSClassName">NSView</string> |
| 270 | 357 | </object> |
| 271 | - <object class="NSArrayController" id="764388977"> | |
| 358 | + <object class="NSArrayController" id="235156763"> | |
| 272 | 359 | <object class="NSMutableArray" key="NSDeclaredKeys"> |
| 273 | 360 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 274 | 361 | <string>name</string> |
| 275 | - <string>account</string> | |
| 276 | - <string>needID</string> | |
| 277 | - <string>isNeedID</string> | |
| 278 | 362 | </object> |
| 279 | - <string key="NSObjectClassName">BERegisterSite</string> | |
| 280 | - <bool key="NSAutomaticallyPreparesContent">YES</bool> | |
| 363 | + <bool key="NSEditable">YES</bool> | |
| 281 | 364 | <object class="_NSManagedProxy" key="_NSManagedProxy"/> |
| 282 | 365 | <bool key="NSAvoidsEmptySelection">YES</bool> |
| 283 | 366 | <bool key="NSPreservesSelection">YES</bool> |
| @@ -285,22 +368,11 @@ | ||
| 285 | 368 | <bool key="NSFilterRestrictsInsertion">YES</bool> |
| 286 | 369 | <bool key="NSClearsFilterPredicateOnInsertion">YES</bool> |
| 287 | 370 | </object> |
| 288 | - <object class="NSUserDefaultsController" id="770136993"> | |
| 289 | - <bool key="NSSharedInstance">YES</bool> | |
| 290 | - </object> | |
| 291 | 371 | </object> |
| 292 | 372 | <object class="IBObjectContainer" key="IBDocument.Objects"> |
| 293 | 373 | <object class="NSMutableArray" key="connectionRecords"> |
| 294 | 374 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 295 | 375 | <object class="IBConnectionRecord"> |
| 296 | - <object class="IBOutletConnection" key="connection"> | |
| 297 | - <string key="label">view</string> | |
| 298 | - <reference key="source" ref="1001"/> | |
| 299 | - <reference key="destination" ref="1005"/> | |
| 300 | - </object> | |
| 301 | - <int key="connectionID">2</int> | |
| 302 | - </object> | |
| 303 | - <object class="IBConnectionRecord"> | |
| 304 | 376 | <object class="IBBindingConnection" key="connection"> |
| 305 | 377 | <string key="label">contentArray: sites</string> |
| 306 | 378 | <reference key="source" ref="764388977"/> |
| @@ -319,10 +391,10 @@ | ||
| 319 | 391 | <object class="IBConnectionRecord"> |
| 320 | 392 | <object class="IBBindingConnection" key="connection"> |
| 321 | 393 | <string key="label">content: arrangedObjects</string> |
| 322 | - <reference key="source" ref="882926558"/> | |
| 394 | + <reference key="source" ref="267248710"/> | |
| 323 | 395 | <reference key="destination" ref="764388977"/> |
| 324 | - <object class="NSNibBindingConnector" key="connector" id="337563163"> | |
| 325 | - <reference key="NSSource" ref="882926558"/> | |
| 396 | + <object class="NSNibBindingConnector" key="connector" id="220786628"> | |
| 397 | + <reference key="NSSource" ref="267248710"/> | |
| 326 | 398 | <reference key="NSDestination" ref="764388977"/> |
| 327 | 399 | <string key="NSLabel">content: arrangedObjects</string> |
| 328 | 400 | <string key="NSBinding">content</string> |
| @@ -330,101 +402,191 @@ | ||
| 330 | 402 | <int key="NSNibBindingConnectorVersion">2</int> |
| 331 | 403 | </object> |
| 332 | 404 | </object> |
| 333 | - <int key="connectionID">55</int> | |
| 405 | + <int key="connectionID">116</int> | |
| 406 | + </object> | |
| 407 | + <object class="IBConnectionRecord"> | |
| 408 | + <object class="IBBindingConnection" key="connection"> | |
| 409 | + <string key="label">value: selection.site.account</string> | |
| 410 | + <reference key="source" ref="590273973"/> | |
| 411 | + <reference key="destination" ref="1001"/> | |
| 412 | + <object class="NSNibBindingConnector" key="connector"> | |
| 413 | + <reference key="NSSource" ref="590273973"/> | |
| 414 | + <reference key="NSDestination" ref="1001"/> | |
| 415 | + <string key="NSLabel">value: selection.site.account</string> | |
| 416 | + <string key="NSBinding">value</string> | |
| 417 | + <string key="NSKeyPath">selection.site.account</string> | |
| 418 | + <int key="NSNibBindingConnectorVersion">2</int> | |
| 419 | + </object> | |
| 420 | + </object> | |
| 421 | + <int key="connectionID">145</int> | |
| 334 | 422 | </object> |
| 335 | 423 | <object class="IBConnectionRecord"> |
| 336 | 424 | <object class="IBBindingConnection" key="connection"> |
| 337 | 425 | <string key="label">contentValues: arrangedObjects.name</string> |
| 338 | - <reference key="source" ref="882926558"/> | |
| 426 | + <reference key="source" ref="267248710"/> | |
| 339 | 427 | <reference key="destination" ref="764388977"/> |
| 340 | 428 | <object class="NSNibBindingConnector" key="connector" id="690439354"> |
| 341 | - <reference key="NSSource" ref="882926558"/> | |
| 429 | + <reference key="NSSource" ref="267248710"/> | |
| 342 | 430 | <reference key="NSDestination" ref="764388977"/> |
| 343 | 431 | <string key="NSLabel">contentValues: arrangedObjects.name</string> |
| 344 | 432 | <string key="NSBinding">contentValues</string> |
| 345 | 433 | <string key="NSKeyPath">arrangedObjects.name</string> |
| 346 | - <reference key="NSPreviousConnector" ref="337563163"/> | |
| 434 | + <reference key="NSPreviousConnector" ref="220786628"/> | |
| 347 | 435 | <int key="NSNibBindingConnectorVersion">2</int> |
| 348 | 436 | </object> |
| 349 | 437 | </object> |
| 350 | - <int key="connectionID">56</int> | |
| 438 | + <int key="connectionID">147</int> | |
| 351 | 439 | </object> |
| 352 | 440 | <object class="IBConnectionRecord"> |
| 353 | 441 | <object class="IBBindingConnection" key="connection"> |
| 354 | - <string key="label">value: values.openAfterExported</string> | |
| 355 | - <reference key="source" ref="1050586753"/> | |
| 356 | - <reference key="destination" ref="770136993"/> | |
| 442 | + <string key="label">selectedObject: selection.site</string> | |
| 443 | + <reference key="source" ref="267248710"/> | |
| 444 | + <reference key="destination" ref="1001"/> | |
| 357 | 445 | <object class="NSNibBindingConnector" key="connector"> |
| 358 | - <reference key="NSSource" ref="1050586753"/> | |
| 359 | - <reference key="NSDestination" ref="770136993"/> | |
| 360 | - <string key="NSLabel">value: values.openAfterExported</string> | |
| 361 | - <string key="NSBinding">value</string> | |
| 362 | - <string key="NSKeyPath">values.openAfterExported</string> | |
| 446 | + <reference key="NSSource" ref="267248710"/> | |
| 447 | + <reference key="NSDestination" ref="1001"/> | |
| 448 | + <string key="NSLabel">selectedObject: selection.site</string> | |
| 449 | + <string key="NSBinding">selectedObject</string> | |
| 450 | + <string key="NSKeyPath">selection.site</string> | |
| 451 | + <reference key="NSPreviousConnector" ref="690439354"/> | |
| 363 | 452 | <int key="NSNibBindingConnectorVersion">2</int> |
| 364 | 453 | </object> |
| 365 | 454 | </object> |
| 366 | - <int key="connectionID">62</int> | |
| 455 | + <int key="connectionID">148</int> | |
| 456 | + </object> | |
| 457 | + <object class="IBConnectionRecord"> | |
| 458 | + <object class="IBOutletConnection" key="connection"> | |
| 459 | + <string key="label">view</string> | |
| 460 | + <reference key="source" ref="1001"/> | |
| 461 | + <reference key="destination" ref="151985773"/> | |
| 462 | + </object> | |
| 463 | + <int key="connectionID">149</int> | |
| 367 | 464 | </object> |
| 368 | 465 | <object class="IBConnectionRecord"> |
| 369 | 466 | <object class="IBBindingConnection" key="connection"> |
| 370 | - <string key="label">enabled: values.openAfterExported</string> | |
| 371 | - <reference key="source" ref="173361654"/> | |
| 372 | - <reference key="destination" ref="770136993"/> | |
| 373 | - <object class="NSNibBindingConnector" key="connector" id="203017429"> | |
| 374 | - <reference key="NSSource" ref="173361654"/> | |
| 375 | - <reference key="NSDestination" ref="770136993"/> | |
| 376 | - <string key="NSLabel">enabled: values.openAfterExported</string> | |
| 377 | - <string key="NSBinding">enabled</string> | |
| 378 | - <string key="NSKeyPath">values.openAfterExported</string> | |
| 467 | + <string key="label">contentArray: attributes</string> | |
| 468 | + <reference key="source" ref="235156763"/> | |
| 469 | + <reference key="destination" ref="1001"/> | |
| 470 | + <object class="NSNibBindingConnector" key="connector"> | |
| 471 | + <reference key="NSSource" ref="235156763"/> | |
| 472 | + <reference key="NSDestination" ref="1001"/> | |
| 473 | + <string key="NSLabel">contentArray: attributes</string> | |
| 474 | + <string key="NSBinding">contentArray</string> | |
| 475 | + <string key="NSKeyPath">attributes</string> | |
| 379 | 476 | <int key="NSNibBindingConnectorVersion">2</int> |
| 380 | 477 | </object> |
| 381 | 478 | </object> |
| 382 | - <int key="connectionID">75</int> | |
| 479 | + <int key="connectionID">151</int> | |
| 383 | 480 | </object> |
| 384 | 481 | <object class="IBConnectionRecord"> |
| 385 | 482 | <object class="IBBindingConnection" key="connection"> |
| 386 | - <string key="label">enabled: values.openAfterExported</string> | |
| 387 | - <reference key="source" ref="882926558"/> | |
| 388 | - <reference key="destination" ref="770136993"/> | |
| 483 | + <string key="label">content: arrangedObjects</string> | |
| 484 | + <reference key="source" ref="187438968"/> | |
| 485 | + <reference key="destination" ref="235156763"/> | |
| 486 | + <object class="NSNibBindingConnector" key="connector" id="337563163"> | |
| 487 | + <reference key="NSSource" ref="187438968"/> | |
| 488 | + <reference key="NSDestination" ref="235156763"/> | |
| 489 | + <string key="NSLabel">content: arrangedObjects</string> | |
| 490 | + <string key="NSBinding">content</string> | |
| 491 | + <string key="NSKeyPath">arrangedObjects</string> | |
| 492 | + <int key="NSNibBindingConnectorVersion">2</int> | |
| 493 | + </object> | |
| 494 | + </object> | |
| 495 | + <int key="connectionID">153</int> | |
| 496 | + </object> | |
| 497 | + <object class="IBConnectionRecord"> | |
| 498 | + <object class="IBBindingConnection" key="connection"> | |
| 499 | + <string key="label">value: selection.isOpenAfterExport</string> | |
| 500 | + <reference key="source" ref="524046644"/> | |
| 501 | + <reference key="destination" ref="1001"/> | |
| 389 | 502 | <object class="NSNibBindingConnector" key="connector"> |
| 390 | - <reference key="NSSource" ref="882926558"/> | |
| 391 | - <reference key="NSDestination" ref="770136993"/> | |
| 392 | - <string key="NSLabel">enabled: values.openAfterExported</string> | |
| 393 | - <string key="NSBinding">enabled</string> | |
| 394 | - <string key="NSKeyPath">values.openAfterExported</string> | |
| 503 | + <reference key="NSSource" ref="524046644"/> | |
| 504 | + <reference key="NSDestination" ref="1001"/> | |
| 505 | + <string key="NSLabel">value: selection.isOpenAfterExport</string> | |
| 506 | + <string key="NSBinding">value</string> | |
| 507 | + <string key="NSKeyPath">selection.isOpenAfterExport</string> | |
| 508 | + <int key="NSNibBindingConnectorVersion">2</int> | |
| 509 | + </object> | |
| 510 | + </object> | |
| 511 | + <int key="connectionID">156</int> | |
| 512 | + </object> | |
| 513 | + <object class="IBConnectionRecord"> | |
| 514 | + <object class="IBBindingConnection" key="connection"> | |
| 515 | + <string key="label">contentValues: arrangedObjects.name</string> | |
| 516 | + <reference key="source" ref="187438968"/> | |
| 517 | + <reference key="destination" ref="235156763"/> | |
| 518 | + <object class="NSNibBindingConnector" key="connector" id="1073058116"> | |
| 519 | + <reference key="NSSource" ref="187438968"/> | |
| 520 | + <reference key="NSDestination" ref="235156763"/> | |
| 521 | + <string key="NSLabel">contentValues: arrangedObjects.name</string> | |
| 522 | + <string key="NSBinding">contentValues</string> | |
| 523 | + <string key="NSKeyPath">arrangedObjects.name</string> | |
| 524 | + <reference key="NSPreviousConnector" ref="337563163"/> | |
| 395 | 525 | <int key="NSNibBindingConnectorVersion">2</int> |
| 396 | 526 | </object> |
| 397 | 527 | </object> |
| 398 | - <int key="connectionID">76</int> | |
| 528 | + <int key="connectionID">157</int> | |
| 399 | 529 | </object> |
| 400 | 530 | <object class="IBConnectionRecord"> |
| 401 | 531 | <object class="IBBindingConnection" key="connection"> |
| 402 | 532 | <string key="label">selectedObject: selection</string> |
| 403 | - <reference key="source" ref="882926558"/> | |
| 533 | + <reference key="source" ref="187438968"/> | |
| 404 | 534 | <reference key="destination" ref="1001"/> |
| 405 | 535 | <object class="NSNibBindingConnector" key="connector"> |
| 406 | - <reference key="NSSource" ref="882926558"/> | |
| 536 | + <reference key="NSSource" ref="187438968"/> | |
| 407 | 537 | <reference key="NSDestination" ref="1001"/> |
| 408 | 538 | <string key="NSLabel">selectedObject: selection</string> |
| 409 | 539 | <string key="NSBinding">selectedObject</string> |
| 410 | 540 | <string key="NSKeyPath">selection</string> |
| 411 | - <reference key="NSPreviousConnector" ref="690439354"/> | |
| 541 | + <reference key="NSPreviousConnector" ref="1073058116"/> | |
| 412 | 542 | <int key="NSNibBindingConnectorVersion">2</int> |
| 413 | 543 | </object> |
| 414 | 544 | </object> |
| 415 | - <int key="connectionID">94</int> | |
| 545 | + <int key="connectionID">158</int> | |
| 416 | 546 | </object> |
| 417 | 547 | <object class="IBConnectionRecord"> |
| 418 | 548 | <object class="IBBindingConnection" key="connection"> |
| 419 | - <string key="label">enabled2: selection.needID</string> | |
| 420 | - <reference key="source" ref="173361654"/> | |
| 549 | + <string key="label">enabled: selection.isOpenAfterExport</string> | |
| 550 | + <reference key="source" ref="267248710"/> | |
| 421 | 551 | <reference key="destination" ref="1001"/> |
| 422 | 552 | <object class="NSNibBindingConnector" key="connector"> |
| 423 | - <reference key="NSSource" ref="173361654"/> | |
| 553 | + <reference key="NSSource" ref="267248710"/> | |
| 424 | 554 | <reference key="NSDestination" ref="1001"/> |
| 425 | - <string key="NSLabel">enabled2: selection.needID</string> | |
| 555 | + <string key="NSLabel">enabled: selection.isOpenAfterExport</string> | |
| 556 | + <string key="NSBinding">enabled</string> | |
| 557 | + <string key="NSKeyPath">selection.isOpenAfterExport</string> | |
| 558 | + <int key="NSNibBindingConnectorVersion">2</int> | |
| 559 | + </object> | |
| 560 | + </object> | |
| 561 | + <int key="connectionID">159</int> | |
| 562 | + </object> | |
| 563 | + <object class="IBConnectionRecord"> | |
| 564 | + <object class="IBBindingConnection" key="connection"> | |
| 565 | + <string key="label">enabled: selection.isOpenAfterExport</string> | |
| 566 | + <reference key="source" ref="590273973"/> | |
| 567 | + <reference key="destination" ref="1001"/> | |
| 568 | + <object class="NSNibBindingConnector" key="connector" id="562544300"> | |
| 569 | + <reference key="NSSource" ref="590273973"/> | |
| 570 | + <reference key="NSDestination" ref="1001"/> | |
| 571 | + <string key="NSLabel">enabled: selection.isOpenAfterExport</string> | |
| 572 | + <string key="NSBinding">enabled</string> | |
| 573 | + <string key="NSKeyPath">selection.isOpenAfterExport</string> | |
| 574 | + <int key="NSNibBindingConnectorVersion">2</int> | |
| 575 | + </object> | |
| 576 | + </object> | |
| 577 | + <int key="connectionID">162</int> | |
| 578 | + </object> | |
| 579 | + <object class="IBConnectionRecord"> | |
| 580 | + <object class="IBBindingConnection" key="connection"> | |
| 581 | + <string key="label">enabled2: selection.site.needID</string> | |
| 582 | + <reference key="source" ref="590273973"/> | |
| 583 | + <reference key="destination" ref="1001"/> | |
| 584 | + <object class="NSNibBindingConnector" key="connector"> | |
| 585 | + <reference key="NSSource" ref="590273973"/> | |
| 586 | + <reference key="NSDestination" ref="1001"/> | |
| 587 | + <string key="NSLabel">enabled2: selection.site.needID</string> | |
| 426 | 588 | <string key="NSBinding">enabled2</string> |
| 427 | - <string key="NSKeyPath">selection.needID</string> | |
| 589 | + <string key="NSKeyPath">selection.site.needID</string> | |
| 428 | 590 | <object class="NSDictionary" key="NSOptions"> |
| 429 | 591 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 430 | 592 | <object class="NSArray" key="dict.sortedKeys"> |
| @@ -442,27 +604,11 @@ | ||
| 442 | 604 | <integer value="-1"/> |
| 443 | 605 | </object> |
| 444 | 606 | </object> |
| 445 | - <reference key="NSPreviousConnector" ref="203017429"/> | |
| 446 | - <int key="NSNibBindingConnectorVersion">2</int> | |
| 447 | - </object> | |
| 448 | - </object> | |
| 449 | - <int key="connectionID">95</int> | |
| 450 | - </object> | |
| 451 | - <object class="IBConnectionRecord"> | |
| 452 | - <object class="IBBindingConnection" key="connection"> | |
| 453 | - <string key="label">value: selection.account</string> | |
| 454 | - <reference key="source" ref="173361654"/> | |
| 455 | - <reference key="destination" ref="1001"/> | |
| 456 | - <object class="NSNibBindingConnector" key="connector"> | |
| 457 | - <reference key="NSSource" ref="173361654"/> | |
| 458 | - <reference key="NSDestination" ref="1001"/> | |
| 459 | - <string key="NSLabel">value: selection.account</string> | |
| 460 | - <string key="NSBinding">value</string> | |
| 461 | - <string key="NSKeyPath">selection.account</string> | |
| 607 | + <reference key="NSPreviousConnector" ref="562544300"/> | |
| 462 | 608 | <int key="NSNibBindingConnectorVersion">2</int> |
| 463 | 609 | </object> |
| 464 | 610 | </object> |
| 465 | - <int key="connectionID">96</int> | |
| 611 | + <int key="connectionID">163</int> | |
| 466 | 612 | </object> |
| 467 | 613 | </object> |
| 468 | 614 | <object class="IBMutableOrderedSet" key="objectRecords"> |
| @@ -493,137 +639,188 @@ | ||
| 493 | 639 | <string key="objectName">Application</string> |
| 494 | 640 | </object> |
| 495 | 641 | <object class="IBObjectRecord"> |
| 496 | - <int key="objectID">1</int> | |
| 497 | - <reference key="object" ref="1005"/> | |
| 642 | + <int key="objectID">3</int> | |
| 643 | + <reference key="object" ref="764388977"/> | |
| 644 | + <reference key="parent" ref="0"/> | |
| 645 | + <string key="objectName">Sites</string> | |
| 646 | + </object> | |
| 647 | + <object class="IBObjectRecord"> | |
| 648 | + <int key="objectID">60</int> | |
| 649 | + <reference key="object" ref="770136993"/> | |
| 650 | + <reference key="parent" ref="0"/> | |
| 651 | + </object> | |
| 652 | + <object class="IBObjectRecord"> | |
| 653 | + <int key="objectID">103</int> | |
| 654 | + <reference key="object" ref="151985773"/> | |
| 498 | 655 | <object class="NSMutableArray" key="children"> |
| 499 | 656 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 500 | - <reference ref="1050586753"/> | |
| 501 | - <reference ref="627651099"/> | |
| 657 | + <reference ref="183974536"/> | |
| 658 | + <reference ref="187438968"/> | |
| 502 | 659 | </object> |
| 503 | 660 | <reference key="parent" ref="0"/> |
| 504 | 661 | </object> |
| 505 | 662 | <object class="IBObjectRecord"> |
| 506 | - <int key="objectID">3</int> | |
| 507 | - <reference key="object" ref="764388977"/> | |
| 508 | - <reference key="parent" ref="0"/> | |
| 509 | - <string key="objectName">Sites</string> | |
| 663 | + <int key="objectID">130</int> | |
| 664 | + <reference key="object" ref="183974536"/> | |
| 665 | + <object class="NSMutableArray" key="children"> | |
| 666 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
| 667 | + <reference ref="977832199"/> | |
| 668 | + <reference ref="590273973"/> | |
| 669 | + <reference ref="267248710"/> | |
| 670 | + <reference ref="484188188"/> | |
| 671 | + <reference ref="524046644"/> | |
| 672 | + </object> | |
| 673 | + <reference key="parent" ref="151985773"/> | |
| 510 | 674 | </object> |
| 511 | 675 | <object class="IBObjectRecord"> |
| 512 | - <int key="objectID">14</int> | |
| 513 | - <reference key="object" ref="627651099"/> | |
| 676 | + <int key="objectID">124</int> | |
| 677 | + <reference key="object" ref="977832199"/> | |
| 514 | 678 | <object class="NSMutableArray" key="children"> |
| 515 | 679 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 516 | - <reference ref="173361654"/> | |
| 517 | - <reference ref="882926558"/> | |
| 518 | - <reference ref="693788738"/> | |
| 519 | - <reference ref="431188278"/> | |
| 680 | + <reference ref="85078118"/> | |
| 520 | 681 | </object> |
| 521 | - <reference key="parent" ref="1005"/> | |
| 682 | + <reference key="parent" ref="183974536"/> | |
| 522 | 683 | </object> |
| 523 | 684 | <object class="IBObjectRecord"> |
| 524 | - <int key="objectID">10</int> | |
| 525 | - <reference key="object" ref="173361654"/> | |
| 685 | + <int key="objectID">125</int> | |
| 686 | + <reference key="object" ref="85078118"/> | |
| 687 | + <reference key="parent" ref="977832199"/> | |
| 688 | + </object> | |
| 689 | + <object class="IBObjectRecord"> | |
| 690 | + <int key="objectID">123</int> | |
| 691 | + <reference key="object" ref="590273973"/> | |
| 692 | + <object class="NSMutableArray" key="children"> | |
| 693 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
| 694 | + <reference ref="38339054"/> | |
| 695 | + </object> | |
| 696 | + <reference key="parent" ref="183974536"/> | |
| 697 | + </object> | |
| 698 | + <object class="IBObjectRecord"> | |
| 699 | + <int key="objectID">126</int> | |
| 700 | + <reference key="object" ref="38339054"/> | |
| 701 | + <reference key="parent" ref="590273973"/> | |
| 702 | + </object> | |
| 703 | + <object class="IBObjectRecord"> | |
| 704 | + <int key="objectID">120</int> | |
| 705 | + <reference key="object" ref="524046644"/> | |
| 526 | 706 | <object class="NSMutableArray" key="children"> |
| 527 | 707 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 528 | - <reference ref="1043071553"/> | |
| 708 | + <reference ref="331353583"/> | |
| 529 | 709 | </object> |
| 530 | - <reference key="parent" ref="627651099"/> | |
| 710 | + <reference key="parent" ref="183974536"/> | |
| 531 | 711 | </object> |
| 532 | 712 | <object class="IBObjectRecord"> |
| 533 | - <int key="objectID">11</int> | |
| 534 | - <reference key="object" ref="1043071553"/> | |
| 535 | - <reference key="parent" ref="173361654"/> | |
| 713 | + <int key="objectID">121</int> | |
| 714 | + <reference key="object" ref="331353583"/> | |
| 715 | + <reference key="parent" ref="524046644"/> | |
| 536 | 716 | </object> |
| 537 | 717 | <object class="IBObjectRecord"> |
| 538 | - <int key="objectID">4</int> | |
| 539 | - <reference key="object" ref="882926558"/> | |
| 718 | + <int key="objectID">110</int> | |
| 719 | + <reference key="object" ref="267248710"/> | |
| 540 | 720 | <object class="NSMutableArray" key="children"> |
| 541 | 721 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 542 | - <reference ref="553289638"/> | |
| 722 | + <reference ref="449244900"/> | |
| 543 | 723 | </object> |
| 544 | - <reference key="parent" ref="627651099"/> | |
| 724 | + <reference key="parent" ref="183974536"/> | |
| 545 | 725 | </object> |
| 546 | 726 | <object class="IBObjectRecord"> |
| 547 | - <int key="objectID">5</int> | |
| 548 | - <reference key="object" ref="553289638"/> | |
| 727 | + <int key="objectID">111</int> | |
| 728 | + <reference key="object" ref="449244900"/> | |
| 549 | 729 | <object class="NSMutableArray" key="children"> |
| 550 | 730 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 551 | - <reference ref="904294826"/> | |
| 731 | + <reference ref="97363384"/> | |
| 552 | 732 | </object> |
| 553 | - <reference key="parent" ref="882926558"/> | |
| 733 | + <reference key="parent" ref="267248710"/> | |
| 554 | 734 | </object> |
| 555 | 735 | <object class="IBObjectRecord"> |
| 556 | - <int key="objectID">6</int> | |
| 557 | - <reference key="object" ref="904294826"/> | |
| 736 | + <int key="objectID">112</int> | |
| 737 | + <reference key="object" ref="97363384"/> | |
| 558 | 738 | <object class="NSMutableArray" key="children"> |
| 559 | 739 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 560 | - <reference ref="545569333"/> | |
| 561 | - <reference ref="475941471"/> | |
| 562 | - <reference ref="566777067"/> | |
| 740 | + <reference ref="347183867"/> | |
| 741 | + <reference ref="147185615"/> | |
| 742 | + <reference ref="791063710"/> | |
| 563 | 743 | </object> |
| 564 | - <reference key="parent" ref="553289638"/> | |
| 744 | + <reference key="parent" ref="449244900"/> | |
| 565 | 745 | </object> |
| 566 | 746 | <object class="IBObjectRecord"> |
| 567 | - <int key="objectID">9</int> | |
| 568 | - <reference key="object" ref="545569333"/> | |
| 569 | - <reference key="parent" ref="904294826"/> | |
| 747 | + <int key="objectID">115</int> | |
| 748 | + <reference key="object" ref="347183867"/> | |
| 749 | + <reference key="parent" ref="97363384"/> | |
| 570 | 750 | </object> |
| 571 | 751 | <object class="IBObjectRecord"> |
| 572 | - <int key="objectID">8</int> | |
| 573 | - <reference key="object" ref="475941471"/> | |
| 574 | - <reference key="parent" ref="904294826"/> | |
| 752 | + <int key="objectID">114</int> | |
| 753 | + <reference key="object" ref="147185615"/> | |
| 754 | + <reference key="parent" ref="97363384"/> | |
| 575 | 755 | </object> |
| 576 | 756 | <object class="IBObjectRecord"> |
| 577 | - <int key="objectID">7</int> | |
| 578 | - <reference key="object" ref="566777067"/> | |
| 579 | - <reference key="parent" ref="904294826"/> | |
| 757 | + <int key="objectID">113</int> | |
| 758 | + <reference key="object" ref="791063710"/> | |
| 759 | + <reference key="parent" ref="97363384"/> | |
| 580 | 760 | </object> |
| 581 | 761 | <object class="IBObjectRecord"> |
| 582 | - <int key="objectID">12</int> | |
| 583 | - <reference key="object" ref="693788738"/> | |
| 762 | + <int key="objectID">134</int> | |
| 763 | + <reference key="object" ref="484188188"/> | |
| 584 | 764 | <object class="NSMutableArray" key="children"> |
| 585 | 765 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 586 | - <reference ref="1051534466"/> | |
| 766 | + <reference ref="1003616132"/> | |
| 587 | 767 | </object> |
| 588 | - <reference key="parent" ref="627651099"/> | |
| 768 | + <reference key="parent" ref="183974536"/> | |
| 589 | 769 | </object> |
| 590 | 770 | <object class="IBObjectRecord"> |
| 591 | - <int key="objectID">13</int> | |
| 592 | - <reference key="object" ref="1051534466"/> | |
| 593 | - <reference key="parent" ref="693788738"/> | |
| 771 | + <int key="objectID">135</int> | |
| 772 | + <reference key="object" ref="1003616132"/> | |
| 773 | + <reference key="parent" ref="484188188"/> | |
| 594 | 774 | </object> |
| 595 | 775 | <object class="IBObjectRecord"> |
| 596 | - <int key="objectID">15</int> | |
| 597 | - <reference key="object" ref="1050586753"/> | |
| 776 | + <int key="objectID">136</int> | |
| 777 | + <reference key="object" ref="187438968"/> | |
| 598 | 778 | <object class="NSMutableArray" key="children"> |
| 599 | 779 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 600 | - <reference ref="449211228"/> | |
| 780 | + <reference ref="258443856"/> | |
| 601 | 781 | </object> |
| 602 | - <reference key="parent" ref="1005"/> | |
| 782 | + <reference key="parent" ref="151985773"/> | |
| 603 | 783 | </object> |
| 604 | 784 | <object class="IBObjectRecord"> |
| 605 | - <int key="objectID">16</int> | |
| 606 | - <reference key="object" ref="449211228"/> | |
| 607 | - <reference key="parent" ref="1050586753"/> | |
| 785 | + <int key="objectID">137</int> | |
| 786 | + <reference key="object" ref="258443856"/> | |
| 787 | + <object class="NSMutableArray" key="children"> | |
| 788 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
| 789 | + <reference ref="676651368"/> | |
| 790 | + </object> | |
| 791 | + <reference key="parent" ref="187438968"/> | |
| 608 | 792 | </object> |
| 609 | 793 | <object class="IBObjectRecord"> |
| 610 | - <int key="objectID">17</int> | |
| 611 | - <reference key="object" ref="431188278"/> | |
| 794 | + <int key="objectID">138</int> | |
| 795 | + <reference key="object" ref="676651368"/> | |
| 612 | 796 | <object class="NSMutableArray" key="children"> |
| 613 | 797 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 614 | - <reference ref="803552079"/> | |
| 798 | + <reference ref="293650496"/> | |
| 799 | + <reference ref="519311819"/> | |
| 800 | + <reference ref="899781362"/> | |
| 615 | 801 | </object> |
| 616 | - <reference key="parent" ref="627651099"/> | |
| 802 | + <reference key="parent" ref="258443856"/> | |
| 617 | 803 | </object> |
| 618 | 804 | <object class="IBObjectRecord"> |
| 619 | - <int key="objectID">18</int> | |
| 620 | - <reference key="object" ref="803552079"/> | |
| 621 | - <reference key="parent" ref="431188278"/> | |
| 805 | + <int key="objectID">139</int> | |
| 806 | + <reference key="object" ref="293650496"/> | |
| 807 | + <reference key="parent" ref="676651368"/> | |
| 622 | 808 | </object> |
| 623 | 809 | <object class="IBObjectRecord"> |
| 624 | - <int key="objectID">60</int> | |
| 625 | - <reference key="object" ref="770136993"/> | |
| 810 | + <int key="objectID">140</int> | |
| 811 | + <reference key="object" ref="519311819"/> | |
| 812 | + <reference key="parent" ref="676651368"/> | |
| 813 | + </object> | |
| 814 | + <object class="IBObjectRecord"> | |
| 815 | + <int key="objectID">141</int> | |
| 816 | + <reference key="object" ref="899781362"/> | |
| 817 | + <reference key="parent" ref="676651368"/> | |
| 818 | + </object> | |
| 819 | + <object class="IBObjectRecord"> | |
| 820 | + <int key="objectID">150</int> | |
| 821 | + <reference key="object" ref="235156763"/> | |
| 626 | 822 | <reference key="parent" ref="0"/> |
| 823 | + <string key="objectName">Attributes</string> | |
| 627 | 824 | </object> |
| 628 | 825 | </object> |
| 629 | 826 | </object> |
| @@ -631,67 +828,81 @@ | ||
| 631 | 828 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 632 | 829 | <object class="NSArray" key="dict.sortedKeys"> |
| 633 | 830 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 634 | - <string>1.IBEditorWindowLastContentRect</string> | |
| 635 | - <string>1.IBPluginDependency</string> | |
| 636 | - <string>1.WindowOrigin</string> | |
| 637 | - <string>1.editorWindowContentRectSynchronizationRect</string> | |
| 638 | - <string>10.IBPluginDependency</string> | |
| 639 | - <string>11.IBPluginDependency</string> | |
| 640 | - <string>12.IBPluginDependency</string> | |
| 641 | - <string>12.IBViewBoundsToFrameTransform</string> | |
| 642 | - <string>13.IBPluginDependency</string> | |
| 643 | - <string>14.IBViewBoundsToFrameTransform</string> | |
| 644 | - <string>15.IBPluginDependency</string> | |
| 645 | - <string>15.IBViewBoundsToFrameTransform</string> | |
| 646 | - <string>16.IBPluginDependency</string> | |
| 647 | - <string>17.IBPluginDependency</string> | |
| 648 | - <string>17.IBViewBoundsToFrameTransform</string> | |
| 649 | - <string>18.IBPluginDependency</string> | |
| 831 | + <string>103.IBEditorWindowLastContentRect</string> | |
| 832 | + <string>103.IBPluginDependency</string> | |
| 833 | + <string>110.IBPluginDependency</string> | |
| 834 | + <string>110.IBViewBoundsToFrameTransform</string> | |
| 835 | + <string>111.IBPluginDependency</string> | |
| 836 | + <string>112.IBPluginDependency</string> | |
| 837 | + <string>113.IBPluginDependency</string> | |
| 838 | + <string>114.IBPluginDependency</string> | |
| 839 | + <string>115.IBPluginDependency</string> | |
| 840 | + <string>120.IBPluginDependency</string> | |
| 841 | + <string>120.IBViewBoundsToFrameTransform</string> | |
| 842 | + <string>121.IBPluginDependency</string> | |
| 843 | + <string>123.IBPluginDependency</string> | |
| 844 | + <string>123.IBViewBoundsToFrameTransform</string> | |
| 845 | + <string>124.IBPluginDependency</string> | |
| 846 | + <string>124.IBViewBoundsToFrameTransform</string> | |
| 847 | + <string>125.IBPluginDependency</string> | |
| 848 | + <string>126.IBPluginDependency</string> | |
| 849 | + <string>130.IBViewBoundsToFrameTransform</string> | |
| 850 | + <string>134.IBPluginDependency</string> | |
| 851 | + <string>134.IBViewBoundsToFrameTransform</string> | |
| 852 | + <string>135.IBPluginDependency</string> | |
| 853 | + <string>136.IBPluginDependency</string> | |
| 854 | + <string>137.IBPluginDependency</string> | |
| 855 | + <string>138.IBPluginDependency</string> | |
| 856 | + <string>139.IBPluginDependency</string> | |
| 857 | + <string>140.IBPluginDependency</string> | |
| 858 | + <string>141.IBPluginDependency</string> | |
| 859 | + <string>150.IBPluginDependency</string> | |
| 650 | 860 | <string>3.IBPluginDependency</string> |
| 651 | - <string>4.IBPluginDependency</string> | |
| 652 | - <string>4.IBViewBoundsToFrameTransform</string> | |
| 653 | - <string>5.IBPluginDependency</string> | |
| 654 | - <string>6.IBPluginDependency</string> | |
| 655 | - <string>7.IBPluginDependency</string> | |
| 656 | - <string>8.IBPluginDependency</string> | |
| 657 | - <string>9.IBPluginDependency</string> | |
| 658 | 861 | </object> |
| 659 | 862 | <object class="NSMutableArray" key="dict.values"> |
| 660 | 863 | <bool key="EncodedWithXMLCoder">YES</bool> |
| 661 | - <string>{{636, 536}, {276, 165}}</string> | |
| 864 | + <string>{{715, 340}, {301, 166}}</string> | |
| 865 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 866 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 867 | + <object class="NSAffineTransform"> | |
| 868 | + <bytes key="NSTransformStruct">P4AAAL+AAABCjgAAwzQAAA</bytes> | |
| 869 | + </object> | |
| 870 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 871 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 662 | 872 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 663 | - <string>{628, 654}</string> | |
| 664 | - <string>{{217, 442}, {480, 272}}</string> | |
| 665 | 873 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 666 | 874 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 667 | 875 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 668 | 876 | <object class="NSAffineTransform"> |
| 669 | - <bytes key="NSTransformStruct">P4AAAL+AAABBcAAAwtIAAA</bytes> | |
| 877 | + <bytes key="NSTransformStruct">P4AAAL+AAABBgAAAwqYAAA</bytes> | |
| 670 | 878 | </object> |
| 671 | 879 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 880 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 672 | 881 | <object class="NSAffineTransform"> |
| 673 | - <bytes key="NSTransformStruct">AUGIAABCqAAAA</bytes> | |
| 882 | + <bytes key="NSTransformStruct">P4AAAL+AAABClAAAwqgAAA</bytes> | |
| 674 | 883 | </object> |
| 675 | 884 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 676 | 885 | <object class="NSAffineTransform"> |
| 677 | - <bytes key="NSTransformStruct">P4AAAL+AAABCKAAAwzcAAA</bytes> | |
| 886 | + <bytes key="NSTransformStruct">P4AAAL+AAABBcAAAwqIAAA</bytes> | |
| 678 | 887 | </object> |
| 679 | 888 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 680 | 889 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 681 | 890 | <object class="NSAffineTransform"> |
| 682 | - <bytes key="NSTransformStruct">P4AAAL+AAABBkAAAwngAAA</bytes> | |
| 891 | + <bytes key="NSTransformStruct">AUGIAABCsgAAA</bytes> | |
| 683 | 892 | </object> |
| 684 | 893 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 685 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 686 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 687 | 894 | <object class="NSAffineTransform"> |
| 688 | - <bytes key="NSTransformStruct">P4AAAL+AAABCpgAAwtwAAA</bytes> | |
| 895 | + <bytes key="NSTransformStruct">P4AAAL+AAABBcAAAwpAAAA</bytes> | |
| 689 | 896 | </object> |
| 690 | 897 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 691 | 898 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 692 | 899 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 693 | 900 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 694 | 901 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
| 902 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 903 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 904 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 905 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
| 695 | 906 | </object> |
| 696 | 907 | </object> |
| 697 | 908 | <object class="NSMutableDictionary" key="unlocalizedProperties"> |
| @@ -710,7 +921,7 @@ | ||
| 710 | 921 | </object> |
| 711 | 922 | </object> |
| 712 | 923 | <nil key="sourceID"/> |
| 713 | - <int key="maxID">102</int> | |
| 924 | + <int key="maxID">163</int> | |
| 714 | 925 | </object> |
| 715 | 926 | <object class="IBClassDescriber" key="IBDocument.Classes"> |
| 716 | 927 | <object class="NSMutableArray" key="referencedPartialClassDescriptions"> |