iSightを使ってBooklog,MediaMarkerインポート用CSVファイルを生成するアプリ
Révision | 0780ca560278a0da0f9b97fec585230bde037295 (tree) |
---|---|
l'heure | 2011-04-09 21:43:52 |
Auteur | masakih <masakih@user...> |
Commiter | masakih |
[Mod] 開くサイトの選択方法を変えた。 まだ動かない。
@@ -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 | /** |
@@ -7,20 +7,25 @@ | ||
7 | 7 | // |
8 | 8 | |
9 | 9 | #import <Cocoa/Cocoa.h> |
10 | +#import "BERegisterSite.h" | |
11 | +#import "BEBooksExporter.h" | |
10 | 12 | |
11 | 13 | |
12 | -@interface BEExporterAttribute : NSObject | |
14 | +@interface BEExporterAttribute : NSObject <NSCoding> | |
13 | 15 | { |
14 | 16 | ExporterType type; |
15 | 17 | BOOL isOpenAfterExport; |
16 | 18 | BERegisterSite *site; |
17 | 19 | } |
18 | 20 | |
19 | -@property (nonatomic, retain, readonly) ExporterTypetype; | |
21 | +@property (readonly) ExporterType type; | |
20 | 22 | @property BOOL isOpenAfterExport; |
21 | 23 | @property (nonatomic, retain) BERegisterSite *site; |
22 | 24 | |
25 | +@property (readonly) NSString *name; | |
26 | + | |
23 | 27 | |
24 | 28 | + (NSArray *)attribtues; |
29 | ++ (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue; | |
25 | 30 | |
26 | 31 | @end |
@@ -8,7 +8,96 @@ | ||
8 | 8 | |
9 | 9 | #import "BEExporterAttribute.h" |
10 | 10 | |
11 | +@interface BEExporterAttribute() | |
12 | +@property ExporterType type; | |
13 | +@end | |
11 | 14 | |
12 | 15 | @implementation BEExporterAttribute |
16 | +@synthesize type, isOpenAfterExport, site; | |
17 | + | |
18 | +static NSArray *attributes = nil; | |
19 | + | |
20 | ++ (NSArray *)attribtues | |
21 | +{ | |
22 | + if(attributes) return attributes; | |
23 | + | |
24 | + NSMutableArray *array = [NSMutableArray array]; | |
25 | + | |
26 | + ExporterType types[] = { | |
27 | + typeBooklogExport, | |
28 | + typeMediaMarkerExport, | |
29 | + typeMediaMarkerImport, | |
30 | + | |
31 | + typeHatenaDairyType, | |
32 | + | |
33 | + NSUIntegerMax, | |
34 | + }; | |
35 | + ExporterType aType; | |
36 | + int i = 0; | |
37 | + while((aType = types[i++]) != NSUIntegerMax) { | |
38 | + // | |
39 | + BEExporterAttribute *attr = [[[BEExporterAttribute alloc] init] autorelease]; | |
40 | + attr.type = aType; | |
41 | + // restore from UserDefaults | |
42 | +#warning MUST IMPLEMENT | |
43 | + | |
44 | + if(!attr.site) { | |
45 | + attr.site = [[BERegisterSite sites] objectAtIndex:0]; | |
46 | + } | |
47 | + [array addObject:attr]; | |
48 | + } | |
49 | + | |
50 | + attributes = [[NSArray alloc] initWithArray:array]; | |
51 | + return attributes; | |
52 | +} | |
53 | + | |
54 | ++ (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue | |
55 | +{ | |
56 | + for(BEExporterAttribute *attr in attributes) { | |
57 | + if(attr.type ==[typeValue integerValue]) return attr; | |
58 | + } | |
59 | + return nil; | |
60 | +} | |
61 | + | |
62 | +- (NSString *)name | |
63 | +{ | |
64 | + switch(type) { | |
65 | + case typeBooklogExport: | |
66 | + return NSLocalizedString(@"BooklogExport", @"BooklogExport"); | |
67 | + case typeMediaMarkerExport: | |
68 | + return NSLocalizedString(@"MediaMarkerExport", @"MediaMarkerExport"); | |
69 | + case typeMediaMarkerImport: | |
70 | + return NSLocalizedString(@"MediaMarkerImport", @"MediaMarkerImport"); | |
71 | + case typeHatenaDairyType: | |
72 | + return NSLocalizedString(@"HetenaDairy", @"HetenaDairy"); | |
73 | + } | |
74 | + return @""; | |
75 | +} | |
76 | + | |
77 | +#pragma mark Compare | |
78 | +- (NSUInteger)hash | |
79 | +{ | |
80 | + return type; | |
81 | +} | |
82 | +- (BOOL)isEqual:(BEExporterAttribute *)object | |
83 | +{ | |
84 | + if(![object isKindOfClass:[self class]]) return NO; | |
85 | + return type == object->type; | |
86 | +} | |
13 | 87 | |
88 | +#pragma mark NSCoding Protocol | |
89 | +- (id)initWithCoder:(NSCoder *)aDecoder | |
90 | +{ | |
91 | + self = [super init]; | |
92 | + self.type = [aDecoder decodeInt64ForKey:@"BEExporterType"]; | |
93 | + self.isOpenAfterExport = [aDecoder decodeBoolForKey:@"BEExpoterIsOpenAfterExport"]; | |
94 | + self.site = [aDecoder decodeObjectForKey:@"BEExporterSite"]; | |
95 | + return self; | |
96 | +} | |
97 | +- (void)encodeWithCoder:(NSCoder *)aCoder | |
98 | +{ | |
99 | + [aCoder encodeInt64:type forKey:@"BEExporterType"]; | |
100 | + [aCoder encodeBool:isOpenAfterExport forKey:@"BEExpoterIsOpenAfterExport"]; | |
101 | + [aCoder encodeObject:site forKey:@"BEExporterSite"]; | |
102 | +} | |
14 | 103 | @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,6 +9,7 @@ | ||
9 | 9 | #import "BEGeneralPreference.h" |
10 | 10 | #import "BERegisterSite.h" |
11 | 11 | #import "BEPreference.h" |
12 | +#import "BEExporterAttribute.h" | |
12 | 13 | |
13 | 14 | |
14 | 15 | @implementation BEGeneralPreference |
@@ -19,7 +20,11 @@ | ||
19 | 20 | if(self) { |
20 | 21 | [self setTitle:NSLocalizedString(@"General", @"General")]; |
21 | 22 | sites = [[BERegisterSite sites] retain]; |
23 | + attributes = [[BEExporterAttribute attribtues] retain]; | |
22 | 24 | selection = [BEPreference preference].openSite; |
25 | + if(!selection) { | |
26 | + selection = [attributes objectAtIndex:0]; | |
27 | + } | |
23 | 28 | [selection retain]; |
24 | 29 | } |
25 | 30 | return self; |
@@ -27,6 +32,7 @@ | ||
27 | 32 | - (void)dealloc |
28 | 33 | { |
29 | 34 | [sites release]; |
35 | + [attributes release]; | |
30 | 36 | [selection retain]; |
31 | 37 | [super dealloc]; |
32 | 38 | } |
@@ -16,7 +16,8 @@ | ||
16 | 16 | #import "BEBooksExporter.h" |
17 | 17 | |
18 | 18 | #import "BEPreference.h" |
19 | -#import "BERegisterSite.h" | |
19 | +//#import "BERegisterSite.h" | |
20 | +#import "BEExporterAttribute.h" | |
20 | 21 | |
21 | 22 | |
22 | 23 |
@@ -176,9 +177,9 @@ | ||
176 | 177 | |
177 | 178 | NSWorkspace *ws = [NSWorkspace sharedWorkspace]; |
178 | 179 | [ws selectFile:[[panel URL] path] inFileViewerRootedAtPath:@""]; |
179 | - BEPreference *pref = [BEPreference preference]; | |
180 | - if(pref.isOpenAfterExport) { | |
181 | - [ws openURL:pref.openSite.registerPageURL]; | |
180 | + BEExporterAttribute *attr = [BEExporterAttribute attributeByType:accessoryController.type]; | |
181 | + if(attr.isOpenAfterExport) { | |
182 | + [ws openURL:attr.site.registerPageURL]; | |
182 | 183 | } |
183 | 184 | } |
184 | 185 | - (IBAction)delete:(id)sender |
@@ -12,8 +12,7 @@ | ||
12 | 12 | </object> |
13 | 13 | <object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> |
14 | 14 | <bool key="EncodedWithXMLCoder">YES</bool> |
15 | - <integer value="103"/> | |
16 | - <integer value="1"/> | |
15 | + <integer value="130"/> | |
17 | 16 | </object> |
18 | 17 | <object class="NSArray" key="IBDocument.PluginDependencies"> |
19 | 18 | <bool key="EncodedWithXMLCoder">YES</bool> |
@@ -39,236 +38,6 @@ | ||
39 | 38 | <object class="NSCustomObject" id="1004"> |
40 | 39 | <string key="NSClassName">NSApplication</string> |
41 | 40 | </object> |
42 | - <object class="NSCustomView" id="1005"> | |
43 | - <reference key="NSNextResponder"/> | |
44 | - <int key="NSvFlags">256</int> | |
45 | - <object class="NSMutableArray" key="NSSubviews"> | |
46 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
47 | - <object class="NSButton" id="1050586753"> | |
48 | - <reference key="NSNextResponder" ref="1005"/> | |
49 | - <int key="NSvFlags">268</int> | |
50 | - <string key="NSFrame">{{18, 129}, {238, 18}}</string> | |
51 | - <reference key="NSSuperview" ref="1005"/> | |
52 | - <bool key="NSEnabled">YES</bool> | |
53 | - <object class="NSButtonCell" key="NSCell" id="449211228"> | |
54 | - <int key="NSCellFlags">-2080244224</int> | |
55 | - <int key="NSCellFlags2">0</int> | |
56 | - <string key="NSContents">Open register page after exported</string> | |
57 | - <object class="NSFont" key="NSSupport" id="746854810"> | |
58 | - <string key="NSName">LucidaGrande</string> | |
59 | - <double key="NSSize">13</double> | |
60 | - <int key="NSfFlags">1044</int> | |
61 | - </object> | |
62 | - <reference key="NSControlView" ref="1050586753"/> | |
63 | - <int key="NSButtonFlags">1211912703</int> | |
64 | - <int key="NSButtonFlags2">2</int> | |
65 | - <object class="NSCustomResource" key="NSNormalImage" id="490922717"> | |
66 | - <string key="NSClassName">NSImage</string> | |
67 | - <string key="NSResourceName">NSSwitch</string> | |
68 | - </object> | |
69 | - <object class="NSButtonImageSource" key="NSAlternateImage" id="464277412"> | |
70 | - <string key="NSImageName">NSSwitch</string> | |
71 | - </object> | |
72 | - <string key="NSAlternateContents"/> | |
73 | - <string key="NSKeyEquivalent"/> | |
74 | - <int key="NSPeriodicDelay">200</int> | |
75 | - <int key="NSPeriodicInterval">25</int> | |
76 | - </object> | |
77 | - </object> | |
78 | - <object class="NSBox" id="627651099"> | |
79 | - <reference key="NSNextResponder" ref="1005"/> | |
80 | - <int key="NSvFlags">36</int> | |
81 | - <object class="NSMutableArray" key="NSSubviews"> | |
82 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
83 | - <object class="NSView" id="335837830"> | |
84 | - <reference key="NSNextResponder" ref="627651099"/> | |
85 | - <int key="NSvFlags">256</int> | |
86 | - <object class="NSMutableArray" key="NSSubviews"> | |
87 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
88 | - <object class="NSTextField" id="173361654"> | |
89 | - <reference key="NSNextResponder" ref="335837830"/> | |
90 | - <int key="NSvFlags">268</int> | |
91 | - <string key="NSFrame">{{74, 14}, {148, 22}}</string> | |
92 | - <reference key="NSSuperview" ref="335837830"/> | |
93 | - <bool key="NSEnabled">YES</bool> | |
94 | - <object class="NSTextFieldCell" key="NSCell" id="1043071553"> | |
95 | - <int key="NSCellFlags">-1804468671</int> | |
96 | - <int key="NSCellFlags2">272630784</int> | |
97 | - <string key="NSContents"/> | |
98 | - <reference key="NSSupport" ref="746854810"/> | |
99 | - <reference key="NSControlView" ref="173361654"/> | |
100 | - <bool key="NSDrawsBackground">YES</bool> | |
101 | - <object class="NSColor" key="NSBackgroundColor" id="1006362850"> | |
102 | - <int key="NSColorSpace">6</int> | |
103 | - <string key="NSCatalogName">System</string> | |
104 | - <string key="NSColorName">textBackgroundColor</string> | |
105 | - <object class="NSColor" key="NSColor"> | |
106 | - <int key="NSColorSpace">3</int> | |
107 | - <bytes key="NSWhite">MQA</bytes> | |
108 | - </object> | |
109 | - </object> | |
110 | - <object class="NSColor" key="NSTextColor" id="509929294"> | |
111 | - <int key="NSColorSpace">6</int> | |
112 | - <string key="NSCatalogName">System</string> | |
113 | - <string key="NSColorName">textColor</string> | |
114 | - <object class="NSColor" key="NSColor" id="76424852"> | |
115 | - <int key="NSColorSpace">3</int> | |
116 | - <bytes key="NSWhite">MAA</bytes> | |
117 | - </object> | |
118 | - </object> | |
119 | - </object> | |
120 | - </object> | |
121 | - <object class="NSPopUpButton" id="882926558"> | |
122 | - <reference key="NSNextResponder" ref="335837830"/> | |
123 | - <int key="NSvFlags">268</int> | |
124 | - <string key="NSFrame">{{71, 52}, {154, 26}}</string> | |
125 | - <reference key="NSSuperview" ref="335837830"/> | |
126 | - <bool key="NSEnabled">YES</bool> | |
127 | - <object class="NSPopUpButtonCell" key="NSCell" id="553289638"> | |
128 | - <int key="NSCellFlags">-2076049856</int> | |
129 | - <int key="NSCellFlags2">2048</int> | |
130 | - <reference key="NSSupport" ref="746854810"/> | |
131 | - <reference key="NSControlView" ref="882926558"/> | |
132 | - <int key="NSButtonFlags">109199615</int> | |
133 | - <int key="NSButtonFlags2">129</int> | |
134 | - <string key="NSAlternateContents"/> | |
135 | - <string key="NSKeyEquivalent"/> | |
136 | - <int key="NSPeriodicDelay">400</int> | |
137 | - <int key="NSPeriodicInterval">75</int> | |
138 | - <object class="NSMenuItem" key="NSMenuItem" id="566777067"> | |
139 | - <reference key="NSMenu" ref="904294826"/> | |
140 | - <string key="NSTitle">Item 1</string> | |
141 | - <string key="NSKeyEquiv"/> | |
142 | - <int key="NSKeyEquivModMask">1048576</int> | |
143 | - <int key="NSMnemonicLoc">2147483647</int> | |
144 | - <int key="NSState">1</int> | |
145 | - <object class="NSCustomResource" key="NSOnImage" id="377796260"> | |
146 | - <string key="NSClassName">NSImage</string> | |
147 | - <string key="NSResourceName">NSMenuCheckmark</string> | |
148 | - </object> | |
149 | - <object class="NSCustomResource" key="NSMixedImage" id="413825263"> | |
150 | - <string key="NSClassName">NSImage</string> | |
151 | - <string key="NSResourceName">NSMenuMixedState</string> | |
152 | - </object> | |
153 | - <string key="NSAction">_popUpItemAction:</string> | |
154 | - <reference key="NSTarget" ref="553289638"/> | |
155 | - </object> | |
156 | - <bool key="NSMenuItemRespectAlignment">YES</bool> | |
157 | - <object class="NSMenu" key="NSMenu" id="904294826"> | |
158 | - <string key="NSTitle">OtherViews</string> | |
159 | - <object class="NSMutableArray" key="NSMenuItems"> | |
160 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
161 | - <reference ref="566777067"/> | |
162 | - <object class="NSMenuItem" id="475941471"> | |
163 | - <reference key="NSMenu" ref="904294826"/> | |
164 | - <string key="NSTitle">Item 2</string> | |
165 | - <string key="NSKeyEquiv"/> | |
166 | - <int key="NSKeyEquivModMask">1048576</int> | |
167 | - <int key="NSMnemonicLoc">2147483647</int> | |
168 | - <reference key="NSOnImage" ref="377796260"/> | |
169 | - <reference key="NSMixedImage" ref="413825263"/> | |
170 | - <string key="NSAction">_popUpItemAction:</string> | |
171 | - <reference key="NSTarget" ref="553289638"/> | |
172 | - </object> | |
173 | - <object class="NSMenuItem" id="545569333"> | |
174 | - <reference key="NSMenu" ref="904294826"/> | |
175 | - <string key="NSTitle">Item 3</string> | |
176 | - <string key="NSKeyEquiv"/> | |
177 | - <int key="NSKeyEquivModMask">1048576</int> | |
178 | - <int key="NSMnemonicLoc">2147483647</int> | |
179 | - <reference key="NSOnImage" ref="377796260"/> | |
180 | - <reference key="NSMixedImage" ref="413825263"/> | |
181 | - <string key="NSAction">_popUpItemAction:</string> | |
182 | - <reference key="NSTarget" ref="553289638"/> | |
183 | - </object> | |
184 | - </object> | |
185 | - <reference key="NSMenuFont" ref="746854810"/> | |
186 | - </object> | |
187 | - <int key="NSPreferredEdge">1</int> | |
188 | - <bool key="NSUsesItemFromMenu">YES</bool> | |
189 | - <bool key="NSAltersState">YES</bool> | |
190 | - <int key="NSArrowPosition">2</int> | |
191 | - </object> | |
192 | - </object> | |
193 | - <object class="NSTextField" id="693788738"> | |
194 | - <reference key="NSNextResponder" ref="335837830"/> | |
195 | - <int key="NSvFlags">268</int> | |
196 | - <string key="NSFrame">{{15, 57}, {54, 17}}</string> | |
197 | - <reference key="NSSuperview" ref="335837830"/> | |
198 | - <bool key="NSEnabled">YES</bool> | |
199 | - <object class="NSTextFieldCell" key="NSCell" id="1051534466"> | |
200 | - <int key="NSCellFlags">68288064</int> | |
201 | - <int key="NSCellFlags2">71304192</int> | |
202 | - <string key="NSContents">Site:</string> | |
203 | - <reference key="NSSupport" ref="746854810"/> | |
204 | - <reference key="NSControlView" ref="693788738"/> | |
205 | - <object class="NSColor" key="NSBackgroundColor" id="570986040"> | |
206 | - <int key="NSColorSpace">6</int> | |
207 | - <string key="NSCatalogName">System</string> | |
208 | - <string key="NSColorName">controlColor</string> | |
209 | - <object class="NSColor" key="NSColor"> | |
210 | - <int key="NSColorSpace">3</int> | |
211 | - <bytes key="NSWhite">MC42NjY2NjY2ODY1AA</bytes> | |
212 | - </object> | |
213 | - </object> | |
214 | - <object class="NSColor" key="NSTextColor" id="886173655"> | |
215 | - <int key="NSColorSpace">6</int> | |
216 | - <string key="NSCatalogName">System</string> | |
217 | - <string key="NSColorName">controlTextColor</string> | |
218 | - <reference key="NSColor" ref="76424852"/> | |
219 | - </object> | |
220 | - </object> | |
221 | - </object> | |
222 | - <object class="NSTextField" id="431188278"> | |
223 | - <reference key="NSNextResponder" ref="335837830"/> | |
224 | - <int key="NSvFlags">268</int> | |
225 | - <string key="NSFrame">{{15, 16}, {54, 17}}</string> | |
226 | - <reference key="NSSuperview" ref="335837830"/> | |
227 | - <bool key="NSEnabled">YES</bool> | |
228 | - <object class="NSTextFieldCell" key="NSCell" id="803552079"> | |
229 | - <int key="NSCellFlags">68288064</int> | |
230 | - <int key="NSCellFlags2">71304192</int> | |
231 | - <string key="NSContents">User ID:</string> | |
232 | - <reference key="NSSupport" ref="746854810"/> | |
233 | - <reference key="NSControlView" ref="431188278"/> | |
234 | - <reference key="NSBackgroundColor" ref="570986040"/> | |
235 | - <reference key="NSTextColor" ref="886173655"/> | |
236 | - </object> | |
237 | - </object> | |
238 | - </object> | |
239 | - <string key="NSFrame">{{1, 1}, {240, 86}}</string> | |
240 | - <reference key="NSSuperview" ref="627651099"/> | |
241 | - </object> | |
242 | - </object> | |
243 | - <string key="NSFrame">{{17, 16}, {242, 102}}</string> | |
244 | - <reference key="NSSuperview" ref="1005"/> | |
245 | - <string key="NSOffsets">{0, 0}</string> | |
246 | - <object class="NSTextFieldCell" key="NSTitleCell"> | |
247 | - <int key="NSCellFlags">67239424</int> | |
248 | - <int key="NSCellFlags2">0</int> | |
249 | - <string key="NSContents">Register Page</string> | |
250 | - <object class="NSFont" key="NSSupport" id="26"> | |
251 | - <string key="NSName">LucidaGrande</string> | |
252 | - <double key="NSSize">11</double> | |
253 | - <int key="NSfFlags">3100</int> | |
254 | - </object> | |
255 | - <reference key="NSBackgroundColor" ref="1006362850"/> | |
256 | - <object class="NSColor" key="NSTextColor"> | |
257 | - <int key="NSColorSpace">3</int> | |
258 | - <bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes> | |
259 | - </object> | |
260 | - </object> | |
261 | - <reference key="NSContentView" ref="335837830"/> | |
262 | - <int key="NSBorderType">1</int> | |
263 | - <int key="NSBoxType">0</int> | |
264 | - <int key="NSTitlePosition">2</int> | |
265 | - <bool key="NSTransparent">NO</bool> | |
266 | - </object> | |
267 | - </object> | |
268 | - <string key="NSFrameSize">{276, 165}</string> | |
269 | - <reference key="NSSuperview"/> | |
270 | - <string key="NSClassName">NSView</string> | |
271 | - </object> | |
272 | 41 | <object class="NSArrayController" id="764388977"> |
273 | 42 | <object class="NSMutableArray" key="NSDeclaredKeys"> |
274 | 43 | <bool key="EncodedWithXMLCoder">YES</bool> |
@@ -276,6 +45,7 @@ | ||
276 | 45 | <string>account</string> |
277 | 46 | <string>needID</string> |
278 | 47 | <string>isNeedID</string> |
48 | + <string>site.name</string> | |
279 | 49 | </object> |
280 | 50 | <string key="NSObjectClassName">BERegisterSite</string> |
281 | 51 | <bool key="NSAutomaticallyPreparesContent">YES</bool> |
@@ -303,7 +73,11 @@ | ||
303 | 73 | <object class="NSPopUpButtonCell" key="NSCell" id="258443856"> |
304 | 74 | <int key="NSCellFlags">-2076049856</int> |
305 | 75 | <int key="NSCellFlags2">2048</int> |
306 | - <reference key="NSSupport" ref="746854810"/> | |
76 | + <object class="NSFont" key="NSSupport" id="746854810"> | |
77 | + <string key="NSName">LucidaGrande</string> | |
78 | + <double key="NSSize">13</double> | |
79 | + <int key="NSfFlags">1044</int> | |
80 | + </object> | |
307 | 81 | <reference key="NSControlView" ref="187438968"/> |
308 | 82 | <int key="NSButtonFlags">109199615</int> |
309 | 83 | <int key="NSButtonFlags2">129</int> |
@@ -318,8 +92,14 @@ | ||
318 | 92 | <int key="NSKeyEquivModMask">1048576</int> |
319 | 93 | <int key="NSMnemonicLoc">2147483647</int> |
320 | 94 | <int key="NSState">1</int> |
321 | - <reference key="NSOnImage" ref="377796260"/> | |
322 | - <reference key="NSMixedImage" ref="413825263"/> | |
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> | |
323 | 103 | <string key="NSAction">_popUpItemAction:</string> |
324 | 104 | <reference key="NSTarget" ref="258443856"/> |
325 | 105 | </object> |
@@ -335,8 +115,8 @@ | ||
335 | 115 | <string key="NSKeyEquiv"/> |
336 | 116 | <int key="NSKeyEquivModMask">1048576</int> |
337 | 117 | <int key="NSMnemonicLoc">2147483647</int> |
338 | - <reference key="NSOnImage" ref="377796260"/> | |
339 | - <reference key="NSMixedImage" ref="413825263"/> | |
118 | + <reference key="NSOnImage" ref="1050589734"/> | |
119 | + <reference key="NSMixedImage" ref="995331589"/> | |
340 | 120 | <string key="NSAction">_popUpItemAction:</string> |
341 | 121 | <reference key="NSTarget" ref="258443856"/> |
342 | 122 | </object> |
@@ -346,8 +126,8 @@ | ||
346 | 126 | <string key="NSKeyEquiv"/> |
347 | 127 | <int key="NSKeyEquivModMask">1048576</int> |
348 | 128 | <int key="NSMnemonicLoc">2147483647</int> |
349 | - <reference key="NSOnImage" ref="377796260"/> | |
350 | - <reference key="NSMixedImage" ref="413825263"/> | |
129 | + <reference key="NSOnImage" ref="1050589734"/> | |
130 | + <reference key="NSMixedImage" ref="995331589"/> | |
351 | 131 | <string key="NSAction">_popUpItemAction:</string> |
352 | 132 | <reference key="NSTarget" ref="258443856"/> |
353 | 133 | </object> |
@@ -382,8 +162,24 @@ | ||
382 | 162 | <string key="NSContents">User ID:</string> |
383 | 163 | <reference key="NSSupport" ref="746854810"/> |
384 | 164 | <reference key="NSControlView" ref="977832199"/> |
385 | - <reference key="NSBackgroundColor" ref="570986040"/> | |
386 | - <reference key="NSTextColor" ref="886173655"/> | |
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> | |
387 | 183 | </object> |
388 | 184 | </object> |
389 | 185 | <object class="NSTextField" id="590273973"> |
@@ -399,8 +195,21 @@ | ||
399 | 195 | <reference key="NSSupport" ref="746854810"/> |
400 | 196 | <reference key="NSControlView" ref="590273973"/> |
401 | 197 | <bool key="NSDrawsBackground">YES</bool> |
402 | - <reference key="NSBackgroundColor" ref="1006362850"/> | |
403 | - <reference key="NSTextColor" ref="509929294"/> | |
198 | + <object class="NSColor" key="NSBackgroundColor" id="1006362850"> | |
199 | + <int key="NSColorSpace">6</int> | |
200 | + <string key="NSCatalogName">System</string> | |
201 | + <string key="NSColorName">textBackgroundColor</string> | |
202 | + <object class="NSColor" key="NSColor"> | |
203 | + <int key="NSColorSpace">3</int> | |
204 | + <bytes key="NSWhite">MQA</bytes> | |
205 | + </object> | |
206 | + </object> | |
207 | + <object class="NSColor" key="NSTextColor"> | |
208 | + <int key="NSColorSpace">6</int> | |
209 | + <string key="NSCatalogName">System</string> | |
210 | + <string key="NSColorName">textColor</string> | |
211 | + <reference key="NSColor" ref="76424852"/> | |
212 | + </object> | |
404 | 213 | </object> |
405 | 214 | </object> |
406 | 215 | <object class="NSButton" id="524046644"> |
@@ -417,8 +226,13 @@ | ||
417 | 226 | <reference key="NSControlView" ref="524046644"/> |
418 | 227 | <int key="NSButtonFlags">1211912703</int> |
419 | 228 | <int key="NSButtonFlags2">2</int> |
420 | - <reference key="NSNormalImage" ref="490922717"/> | |
421 | - <reference key="NSAlternateImage" ref="464277412"/> | |
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> | |
235 | + </object> | |
422 | 236 | <string key="NSAlternateContents"/> |
423 | 237 | <string key="NSKeyEquivalent"/> |
424 | 238 | <int key="NSPeriodicDelay">200</int> |
@@ -449,8 +263,8 @@ | ||
449 | 263 | <int key="NSKeyEquivModMask">1048576</int> |
450 | 264 | <int key="NSMnemonicLoc">2147483647</int> |
451 | 265 | <int key="NSState">1</int> |
452 | - <reference key="NSOnImage" ref="377796260"/> | |
453 | - <reference key="NSMixedImage" ref="413825263"/> | |
266 | + <reference key="NSOnImage" ref="1050589734"/> | |
267 | + <reference key="NSMixedImage" ref="995331589"/> | |
454 | 268 | <string key="NSAction">_popUpItemAction:</string> |
455 | 269 | <reference key="NSTarget" ref="449244900"/> |
456 | 270 | </object> |
@@ -466,8 +280,8 @@ | ||
466 | 280 | <string key="NSKeyEquiv"/> |
467 | 281 | <int key="NSKeyEquivModMask">1048576</int> |
468 | 282 | <int key="NSMnemonicLoc">2147483647</int> |
469 | - <reference key="NSOnImage" ref="377796260"/> | |
470 | - <reference key="NSMixedImage" ref="413825263"/> | |
283 | + <reference key="NSOnImage" ref="1050589734"/> | |
284 | + <reference key="NSMixedImage" ref="995331589"/> | |
471 | 285 | <string key="NSAction">_popUpItemAction:</string> |
472 | 286 | <reference key="NSTarget" ref="449244900"/> |
473 | 287 | </object> |
@@ -477,8 +291,8 @@ | ||
477 | 291 | <string key="NSKeyEquiv"/> |
478 | 292 | <int key="NSKeyEquivModMask">1048576</int> |
479 | 293 | <int key="NSMnemonicLoc">2147483647</int> |
480 | - <reference key="NSOnImage" ref="377796260"/> | |
481 | - <reference key="NSMixedImage" ref="413825263"/> | |
294 | + <reference key="NSOnImage" ref="1050589734"/> | |
295 | + <reference key="NSMixedImage" ref="995331589"/> | |
482 | 296 | <string key="NSAction">_popUpItemAction:</string> |
483 | 297 | <reference key="NSTarget" ref="449244900"/> |
484 | 298 | </object> |
@@ -519,7 +333,11 @@ | ||
519 | 333 | <int key="NSCellFlags">67239424</int> |
520 | 334 | <int key="NSCellFlags2">0</int> |
521 | 335 | <string key="NSContents">Box</string> |
522 | - <reference key="NSSupport" ref="26"/> | |
336 | + <object class="NSFont" key="NSSupport"> | |
337 | + <string key="NSName">LucidaGrande</string> | |
338 | + <double key="NSSize">11</double> | |
339 | + <int key="NSfFlags">3100</int> | |
340 | + </object> | |
523 | 341 | <reference key="NSBackgroundColor" ref="1006362850"/> |
524 | 342 | <object class="NSColor" key="NSTextColor"> |
525 | 343 | <int key="NSColorSpace">3</int> |
@@ -537,19 +355,24 @@ | ||
537 | 355 | <reference key="NSSuperview"/> |
538 | 356 | <string key="NSClassName">NSView</string> |
539 | 357 | </object> |
358 | + <object class="NSArrayController" id="235156763"> | |
359 | + <object class="NSMutableArray" key="NSDeclaredKeys"> | |
360 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
361 | + <string>name</string> | |
362 | + </object> | |
363 | + <bool key="NSEditable">YES</bool> | |
364 | + <object class="_NSManagedProxy" key="_NSManagedProxy"/> | |
365 | + <bool key="NSAvoidsEmptySelection">YES</bool> | |
366 | + <bool key="NSPreservesSelection">YES</bool> | |
367 | + <bool key="NSSelectsInsertedObjects">YES</bool> | |
368 | + <bool key="NSFilterRestrictsInsertion">YES</bool> | |
369 | + <bool key="NSClearsFilterPredicateOnInsertion">YES</bool> | |
370 | + </object> | |
540 | 371 | </object> |
541 | 372 | <object class="IBObjectContainer" key="IBDocument.Objects"> |
542 | 373 | <object class="NSMutableArray" key="connectionRecords"> |
543 | 374 | <bool key="EncodedWithXMLCoder">YES</bool> |
544 | 375 | <object class="IBConnectionRecord"> |
545 | - <object class="IBOutletConnection" key="connection"> | |
546 | - <string key="label">view</string> | |
547 | - <reference key="source" ref="1001"/> | |
548 | - <reference key="destination" ref="1005"/> | |
549 | - </object> | |
550 | - <int key="connectionID">2</int> | |
551 | - </object> | |
552 | - <object class="IBConnectionRecord"> | |
553 | 376 | <object class="IBBindingConnection" key="connection"> |
554 | 377 | <string key="label">contentArray: sites</string> |
555 | 378 | <reference key="source" ref="764388977"/> |
@@ -568,10 +391,10 @@ | ||
568 | 391 | <object class="IBConnectionRecord"> |
569 | 392 | <object class="IBBindingConnection" key="connection"> |
570 | 393 | <string key="label">content: arrangedObjects</string> |
571 | - <reference key="source" ref="882926558"/> | |
394 | + <reference key="source" ref="267248710"/> | |
572 | 395 | <reference key="destination" ref="764388977"/> |
573 | - <object class="NSNibBindingConnector" key="connector" id="337563163"> | |
574 | - <reference key="NSSource" ref="882926558"/> | |
396 | + <object class="NSNibBindingConnector" key="connector" id="220786628"> | |
397 | + <reference key="NSSource" ref="267248710"/> | |
575 | 398 | <reference key="NSDestination" ref="764388977"/> |
576 | 399 | <string key="NSLabel">content: arrangedObjects</string> |
577 | 400 | <string key="NSBinding">content</string> |
@@ -579,233 +402,191 @@ | ||
579 | 402 | <int key="NSNibBindingConnectorVersion">2</int> |
580 | 403 | </object> |
581 | 404 | </object> |
582 | - <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> | |
583 | 422 | </object> |
584 | 423 | <object class="IBConnectionRecord"> |
585 | 424 | <object class="IBBindingConnection" key="connection"> |
586 | 425 | <string key="label">contentValues: arrangedObjects.name</string> |
587 | - <reference key="source" ref="882926558"/> | |
426 | + <reference key="source" ref="267248710"/> | |
588 | 427 | <reference key="destination" ref="764388977"/> |
589 | 428 | <object class="NSNibBindingConnector" key="connector" id="690439354"> |
590 | - <reference key="NSSource" ref="882926558"/> | |
429 | + <reference key="NSSource" ref="267248710"/> | |
591 | 430 | <reference key="NSDestination" ref="764388977"/> |
592 | 431 | <string key="NSLabel">contentValues: arrangedObjects.name</string> |
593 | 432 | <string key="NSBinding">contentValues</string> |
594 | 433 | <string key="NSKeyPath">arrangedObjects.name</string> |
595 | - <reference key="NSPreviousConnector" ref="337563163"/> | |
434 | + <reference key="NSPreviousConnector" ref="220786628"/> | |
596 | 435 | <int key="NSNibBindingConnectorVersion">2</int> |
597 | 436 | </object> |
598 | 437 | </object> |
599 | - <int key="connectionID">56</int> | |
438 | + <int key="connectionID">147</int> | |
600 | 439 | </object> |
601 | 440 | <object class="IBConnectionRecord"> |
602 | 441 | <object class="IBBindingConnection" key="connection"> |
603 | - <string key="label">value: values.openAfterExported</string> | |
604 | - <reference key="source" ref="1050586753"/> | |
605 | - <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"/> | |
606 | 445 | <object class="NSNibBindingConnector" key="connector"> |
607 | - <reference key="NSSource" ref="1050586753"/> | |
608 | - <reference key="NSDestination" ref="770136993"/> | |
609 | - <string key="NSLabel">value: values.openAfterExported</string> | |
610 | - <string key="NSBinding">value</string> | |
611 | - <string key="NSKeyPath">values.openAfterExported</string> | |
612 | - <int key="NSNibBindingConnectorVersion">2</int> | |
613 | - </object> | |
614 | - </object> | |
615 | - <int key="connectionID">62</int> | |
616 | - </object> | |
617 | - <object class="IBConnectionRecord"> | |
618 | - <object class="IBBindingConnection" key="connection"> | |
619 | - <string key="label">enabled: values.openAfterExported</string> | |
620 | - <reference key="source" ref="173361654"/> | |
621 | - <reference key="destination" ref="770136993"/> | |
622 | - <object class="NSNibBindingConnector" key="connector" id="203017429"> | |
623 | - <reference key="NSSource" ref="173361654"/> | |
624 | - <reference key="NSDestination" ref="770136993"/> | |
625 | - <string key="NSLabel">enabled: values.openAfterExported</string> | |
626 | - <string key="NSBinding">enabled</string> | |
627 | - <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"/> | |
628 | 452 | <int key="NSNibBindingConnectorVersion">2</int> |
629 | 453 | </object> |
630 | 454 | </object> |
631 | - <int key="connectionID">75</int> | |
455 | + <int key="connectionID">148</int> | |
632 | 456 | </object> |
633 | 457 | <object class="IBConnectionRecord"> |
634 | - <object class="IBBindingConnection" key="connection"> | |
635 | - <string key="label">enabled: values.openAfterExported</string> | |
636 | - <reference key="source" ref="882926558"/> | |
637 | - <reference key="destination" ref="770136993"/> | |
638 | - <object class="NSNibBindingConnector" key="connector"> | |
639 | - <reference key="NSSource" ref="882926558"/> | |
640 | - <reference key="NSDestination" ref="770136993"/> | |
641 | - <string key="NSLabel">enabled: values.openAfterExported</string> | |
642 | - <string key="NSBinding">enabled</string> | |
643 | - <string key="NSKeyPath">values.openAfterExported</string> | |
644 | - <int key="NSNibBindingConnectorVersion">2</int> | |
645 | - </object> | |
458 | + <object class="IBOutletConnection" key="connection"> | |
459 | + <string key="label">view</string> | |
460 | + <reference key="source" ref="1001"/> | |
461 | + <reference key="destination" ref="151985773"/> | |
646 | 462 | </object> |
647 | - <int key="connectionID">76</int> | |
463 | + <int key="connectionID">149</int> | |
648 | 464 | </object> |
649 | 465 | <object class="IBConnectionRecord"> |
650 | 466 | <object class="IBBindingConnection" key="connection"> |
651 | - <string key="label">selectedObject: selection</string> | |
652 | - <reference key="source" ref="882926558"/> | |
467 | + <string key="label">contentArray: attributes</string> | |
468 | + <reference key="source" ref="235156763"/> | |
653 | 469 | <reference key="destination" ref="1001"/> |
654 | 470 | <object class="NSNibBindingConnector" key="connector"> |
655 | - <reference key="NSSource" ref="882926558"/> | |
471 | + <reference key="NSSource" ref="235156763"/> | |
656 | 472 | <reference key="NSDestination" ref="1001"/> |
657 | - <string key="NSLabel">selectedObject: selection</string> | |
658 | - <string key="NSBinding">selectedObject</string> | |
659 | - <string key="NSKeyPath">selection</string> | |
660 | - <reference key="NSPreviousConnector" ref="690439354"/> | |
473 | + <string key="NSLabel">contentArray: attributes</string> | |
474 | + <string key="NSBinding">contentArray</string> | |
475 | + <string key="NSKeyPath">attributes</string> | |
661 | 476 | <int key="NSNibBindingConnectorVersion">2</int> |
662 | 477 | </object> |
663 | 478 | </object> |
664 | - <int key="connectionID">94</int> | |
479 | + <int key="connectionID">151</int> | |
665 | 480 | </object> |
666 | 481 | <object class="IBConnectionRecord"> |
667 | 482 | <object class="IBBindingConnection" key="connection"> |
668 | - <string key="label">enabled2: selection.needID</string> | |
669 | - <reference key="source" ref="173361654"/> | |
670 | - <reference key="destination" ref="1001"/> | |
671 | - <object class="NSNibBindingConnector" key="connector"> | |
672 | - <reference key="NSSource" ref="173361654"/> | |
673 | - <reference key="NSDestination" ref="1001"/> | |
674 | - <string key="NSLabel">enabled2: selection.needID</string> | |
675 | - <string key="NSBinding">enabled2</string> | |
676 | - <string key="NSKeyPath">selection.needID</string> | |
677 | - <object class="NSDictionary" key="NSOptions"> | |
678 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
679 | - <object class="NSArray" key="dict.sortedKeys"> | |
680 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
681 | - <string>NSMultipleValuesPlaceholder</string> | |
682 | - <string>NSNoSelectionPlaceholder</string> | |
683 | - <string>NSNotApplicablePlaceholder</string> | |
684 | - <string>NSNullPlaceholder</string> | |
685 | - </object> | |
686 | - <object class="NSMutableArray" key="dict.values"> | |
687 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
688 | - <integer value="-1"/> | |
689 | - <integer value="-1"/> | |
690 | - <integer value="-1"/> | |
691 | - <integer value="-1"/> | |
692 | - </object> | |
693 | - </object> | |
694 | - <reference key="NSPreviousConnector" ref="203017429"/> | |
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> | |
695 | 492 | <int key="NSNibBindingConnectorVersion">2</int> |
696 | 493 | </object> |
697 | 494 | </object> |
698 | - <int key="connectionID">95</int> | |
495 | + <int key="connectionID">153</int> | |
699 | 496 | </object> |
700 | 497 | <object class="IBConnectionRecord"> |
701 | 498 | <object class="IBBindingConnection" key="connection"> |
702 | - <string key="label">value: selection.account</string> | |
703 | - <reference key="source" ref="173361654"/> | |
499 | + <string key="label">value: selection.isOpenAfterExport</string> | |
500 | + <reference key="source" ref="524046644"/> | |
704 | 501 | <reference key="destination" ref="1001"/> |
705 | 502 | <object class="NSNibBindingConnector" key="connector"> |
706 | - <reference key="NSSource" ref="173361654"/> | |
503 | + <reference key="NSSource" ref="524046644"/> | |
707 | 504 | <reference key="NSDestination" ref="1001"/> |
708 | - <string key="NSLabel">value: selection.account</string> | |
505 | + <string key="NSLabel">value: selection.isOpenAfterExport</string> | |
709 | 506 | <string key="NSBinding">value</string> |
710 | - <string key="NSKeyPath">selection.account</string> | |
711 | - <int key="NSNibBindingConnectorVersion">2</int> | |
712 | - </object> | |
713 | - </object> | |
714 | - <int key="connectionID">96</int> | |
715 | - </object> | |
716 | - <object class="IBConnectionRecord"> | |
717 | - <object class="IBBindingConnection" key="connection"> | |
718 | - <string key="label">content: arrangedObjects</string> | |
719 | - <reference key="source" ref="267248710"/> | |
720 | - <reference key="destination" ref="764388977"/> | |
721 | - <object class="NSNibBindingConnector" key="connector" id="220786628"> | |
722 | - <reference key="NSSource" ref="267248710"/> | |
723 | - <reference key="NSDestination" ref="764388977"/> | |
724 | - <string key="NSLabel">content: arrangedObjects</string> | |
725 | - <string key="NSBinding">content</string> | |
726 | - <string key="NSKeyPath">arrangedObjects</string> | |
507 | + <string key="NSKeyPath">selection.isOpenAfterExport</string> | |
727 | 508 | <int key="NSNibBindingConnectorVersion">2</int> |
728 | 509 | </object> |
729 | 510 | </object> |
730 | - <int key="connectionID">116</int> | |
511 | + <int key="connectionID">156</int> | |
731 | 512 | </object> |
732 | 513 | <object class="IBConnectionRecord"> |
733 | 514 | <object class="IBBindingConnection" key="connection"> |
734 | 515 | <string key="label">contentValues: arrangedObjects.name</string> |
735 | - <reference key="source" ref="267248710"/> | |
736 | - <reference key="destination" ref="764388977"/> | |
737 | - <object class="NSNibBindingConnector" key="connector" id="1047110965"> | |
738 | - <reference key="NSSource" ref="267248710"/> | |
739 | - <reference key="NSDestination" ref="764388977"/> | |
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"/> | |
740 | 521 | <string key="NSLabel">contentValues: arrangedObjects.name</string> |
741 | 522 | <string key="NSBinding">contentValues</string> |
742 | 523 | <string key="NSKeyPath">arrangedObjects.name</string> |
743 | - <reference key="NSPreviousConnector" ref="220786628"/> | |
524 | + <reference key="NSPreviousConnector" ref="337563163"/> | |
744 | 525 | <int key="NSNibBindingConnectorVersion">2</int> |
745 | 526 | </object> |
746 | 527 | </object> |
747 | - <int key="connectionID">117</int> | |
528 | + <int key="connectionID">157</int> | |
748 | 529 | </object> |
749 | 530 | <object class="IBConnectionRecord"> |
750 | 531 | <object class="IBBindingConnection" key="connection"> |
751 | 532 | <string key="label">selectedObject: selection</string> |
752 | - <reference key="source" ref="267248710"/> | |
533 | + <reference key="source" ref="187438968"/> | |
753 | 534 | <reference key="destination" ref="1001"/> |
754 | 535 | <object class="NSNibBindingConnector" key="connector"> |
755 | - <reference key="NSSource" ref="267248710"/> | |
536 | + <reference key="NSSource" ref="187438968"/> | |
756 | 537 | <reference key="NSDestination" ref="1001"/> |
757 | 538 | <string key="NSLabel">selectedObject: selection</string> |
758 | 539 | <string key="NSBinding">selectedObject</string> |
759 | 540 | <string key="NSKeyPath">selection</string> |
760 | - <reference key="NSPreviousConnector" ref="1047110965"/> | |
541 | + <reference key="NSPreviousConnector" ref="1073058116"/> | |
761 | 542 | <int key="NSNibBindingConnectorVersion">2</int> |
762 | 543 | </object> |
763 | 544 | </object> |
764 | - <int key="connectionID">118</int> | |
545 | + <int key="connectionID">158</int> | |
765 | 546 | </object> |
766 | 547 | <object class="IBConnectionRecord"> |
767 | 548 | <object class="IBBindingConnection" key="connection"> |
768 | - <string key="label">value: selection.account</string> | |
769 | - <reference key="source" ref="590273973"/> | |
549 | + <string key="label">enabled: selection.isOpenAfterExport</string> | |
550 | + <reference key="source" ref="267248710"/> | |
770 | 551 | <reference key="destination" ref="1001"/> |
771 | 552 | <object class="NSNibBindingConnector" key="connector"> |
772 | - <reference key="NSSource" ref="590273973"/> | |
553 | + <reference key="NSSource" ref="267248710"/> | |
773 | 554 | <reference key="NSDestination" ref="1001"/> |
774 | - <string key="NSLabel">value: selection.account</string> | |
775 | - <string key="NSBinding">value</string> | |
776 | - <string key="NSKeyPath">selection.account</string> | |
555 | + <string key="NSLabel">enabled: selection.isOpenAfterExport</string> | |
556 | + <string key="NSBinding">enabled</string> | |
557 | + <string key="NSKeyPath">selection.isOpenAfterExport</string> | |
777 | 558 | <int key="NSNibBindingConnectorVersion">2</int> |
778 | 559 | </object> |
779 | 560 | </object> |
780 | - <int key="connectionID">127</int> | |
561 | + <int key="connectionID">159</int> | |
781 | 562 | </object> |
782 | 563 | <object class="IBConnectionRecord"> |
783 | 564 | <object class="IBBindingConnection" key="connection"> |
784 | - <string key="label">enabled: values.openAfterExported</string> | |
565 | + <string key="label">enabled: selection.isOpenAfterExport</string> | |
785 | 566 | <reference key="source" ref="590273973"/> |
786 | - <reference key="destination" ref="770136993"/> | |
787 | - <object class="NSNibBindingConnector" key="connector" id="178702227"> | |
567 | + <reference key="destination" ref="1001"/> | |
568 | + <object class="NSNibBindingConnector" key="connector" id="562544300"> | |
788 | 569 | <reference key="NSSource" ref="590273973"/> |
789 | - <reference key="NSDestination" ref="770136993"/> | |
790 | - <string key="NSLabel">enabled: values.openAfterExported</string> | |
570 | + <reference key="NSDestination" ref="1001"/> | |
571 | + <string key="NSLabel">enabled: selection.isOpenAfterExport</string> | |
791 | 572 | <string key="NSBinding">enabled</string> |
792 | - <string key="NSKeyPath">values.openAfterExported</string> | |
573 | + <string key="NSKeyPath">selection.isOpenAfterExport</string> | |
793 | 574 | <int key="NSNibBindingConnectorVersion">2</int> |
794 | 575 | </object> |
795 | 576 | </object> |
796 | - <int key="connectionID">128</int> | |
577 | + <int key="connectionID">162</int> | |
797 | 578 | </object> |
798 | 579 | <object class="IBConnectionRecord"> |
799 | 580 | <object class="IBBindingConnection" key="connection"> |
800 | - <string key="label">enabled2: selection.needID</string> | |
581 | + <string key="label">enabled2: selection.site.needID</string> | |
801 | 582 | <reference key="source" ref="590273973"/> |
802 | 583 | <reference key="destination" ref="1001"/> |
803 | 584 | <object class="NSNibBindingConnector" key="connector"> |
804 | 585 | <reference key="NSSource" ref="590273973"/> |
805 | 586 | <reference key="NSDestination" ref="1001"/> |
806 | - <string key="NSLabel">enabled2: selection.needID</string> | |
587 | + <string key="NSLabel">enabled2: selection.site.needID</string> | |
807 | 588 | <string key="NSBinding">enabled2</string> |
808 | - <string key="NSKeyPath">selection.needID</string> | |
589 | + <string key="NSKeyPath">selection.site.needID</string> | |
809 | 590 | <object class="NSDictionary" key="NSOptions"> |
810 | 591 | <bool key="EncodedWithXMLCoder">YES</bool> |
811 | 592 | <object class="NSArray" key="dict.sortedKeys"> |
@@ -823,11 +604,11 @@ | ||
823 | 604 | <integer value="-1"/> |
824 | 605 | </object> |
825 | 606 | </object> |
826 | - <reference key="NSPreviousConnector" ref="178702227"/> | |
607 | + <reference key="NSPreviousConnector" ref="562544300"/> | |
827 | 608 | <int key="NSNibBindingConnectorVersion">2</int> |
828 | 609 | </object> |
829 | 610 | </object> |
830 | - <int key="connectionID">129</int> | |
611 | + <int key="connectionID">163</int> | |
831 | 612 | </object> |
832 | 613 | </object> |
833 | 614 | <object class="IBMutableOrderedSet" key="objectRecords"> |
@@ -858,134 +639,12 @@ | ||
858 | 639 | <string key="objectName">Application</string> |
859 | 640 | </object> |
860 | 641 | <object class="IBObjectRecord"> |
861 | - <int key="objectID">1</int> | |
862 | - <reference key="object" ref="1005"/> | |
863 | - <object class="NSMutableArray" key="children"> | |
864 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
865 | - <reference ref="1050586753"/> | |
866 | - <reference ref="627651099"/> | |
867 | - </object> | |
868 | - <reference key="parent" ref="0"/> | |
869 | - </object> | |
870 | - <object class="IBObjectRecord"> | |
871 | 642 | <int key="objectID">3</int> |
872 | 643 | <reference key="object" ref="764388977"/> |
873 | 644 | <reference key="parent" ref="0"/> |
874 | 645 | <string key="objectName">Sites</string> |
875 | 646 | </object> |
876 | 647 | <object class="IBObjectRecord"> |
877 | - <int key="objectID">14</int> | |
878 | - <reference key="object" ref="627651099"/> | |
879 | - <object class="NSMutableArray" key="children"> | |
880 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
881 | - <reference ref="173361654"/> | |
882 | - <reference ref="882926558"/> | |
883 | - <reference ref="693788738"/> | |
884 | - <reference ref="431188278"/> | |
885 | - </object> | |
886 | - <reference key="parent" ref="1005"/> | |
887 | - </object> | |
888 | - <object class="IBObjectRecord"> | |
889 | - <int key="objectID">10</int> | |
890 | - <reference key="object" ref="173361654"/> | |
891 | - <object class="NSMutableArray" key="children"> | |
892 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
893 | - <reference ref="1043071553"/> | |
894 | - </object> | |
895 | - <reference key="parent" ref="627651099"/> | |
896 | - </object> | |
897 | - <object class="IBObjectRecord"> | |
898 | - <int key="objectID">11</int> | |
899 | - <reference key="object" ref="1043071553"/> | |
900 | - <reference key="parent" ref="173361654"/> | |
901 | - </object> | |
902 | - <object class="IBObjectRecord"> | |
903 | - <int key="objectID">4</int> | |
904 | - <reference key="object" ref="882926558"/> | |
905 | - <object class="NSMutableArray" key="children"> | |
906 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
907 | - <reference ref="553289638"/> | |
908 | - </object> | |
909 | - <reference key="parent" ref="627651099"/> | |
910 | - </object> | |
911 | - <object class="IBObjectRecord"> | |
912 | - <int key="objectID">5</int> | |
913 | - <reference key="object" ref="553289638"/> | |
914 | - <object class="NSMutableArray" key="children"> | |
915 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
916 | - <reference ref="904294826"/> | |
917 | - </object> | |
918 | - <reference key="parent" ref="882926558"/> | |
919 | - </object> | |
920 | - <object class="IBObjectRecord"> | |
921 | - <int key="objectID">6</int> | |
922 | - <reference key="object" ref="904294826"/> | |
923 | - <object class="NSMutableArray" key="children"> | |
924 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
925 | - <reference ref="545569333"/> | |
926 | - <reference ref="475941471"/> | |
927 | - <reference ref="566777067"/> | |
928 | - </object> | |
929 | - <reference key="parent" ref="553289638"/> | |
930 | - </object> | |
931 | - <object class="IBObjectRecord"> | |
932 | - <int key="objectID">9</int> | |
933 | - <reference key="object" ref="545569333"/> | |
934 | - <reference key="parent" ref="904294826"/> | |
935 | - </object> | |
936 | - <object class="IBObjectRecord"> | |
937 | - <int key="objectID">8</int> | |
938 | - <reference key="object" ref="475941471"/> | |
939 | - <reference key="parent" ref="904294826"/> | |
940 | - </object> | |
941 | - <object class="IBObjectRecord"> | |
942 | - <int key="objectID">7</int> | |
943 | - <reference key="object" ref="566777067"/> | |
944 | - <reference key="parent" ref="904294826"/> | |
945 | - </object> | |
946 | - <object class="IBObjectRecord"> | |
947 | - <int key="objectID">12</int> | |
948 | - <reference key="object" ref="693788738"/> | |
949 | - <object class="NSMutableArray" key="children"> | |
950 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
951 | - <reference ref="1051534466"/> | |
952 | - </object> | |
953 | - <reference key="parent" ref="627651099"/> | |
954 | - </object> | |
955 | - <object class="IBObjectRecord"> | |
956 | - <int key="objectID">13</int> | |
957 | - <reference key="object" ref="1051534466"/> | |
958 | - <reference key="parent" ref="693788738"/> | |
959 | - </object> | |
960 | - <object class="IBObjectRecord"> | |
961 | - <int key="objectID">15</int> | |
962 | - <reference key="object" ref="1050586753"/> | |
963 | - <object class="NSMutableArray" key="children"> | |
964 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
965 | - <reference ref="449211228"/> | |
966 | - </object> | |
967 | - <reference key="parent" ref="1005"/> | |
968 | - </object> | |
969 | - <object class="IBObjectRecord"> | |
970 | - <int key="objectID">16</int> | |
971 | - <reference key="object" ref="449211228"/> | |
972 | - <reference key="parent" ref="1050586753"/> | |
973 | - </object> | |
974 | - <object class="IBObjectRecord"> | |
975 | - <int key="objectID">17</int> | |
976 | - <reference key="object" ref="431188278"/> | |
977 | - <object class="NSMutableArray" key="children"> | |
978 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
979 | - <reference ref="803552079"/> | |
980 | - </object> | |
981 | - <reference key="parent" ref="627651099"/> | |
982 | - </object> | |
983 | - <object class="IBObjectRecord"> | |
984 | - <int key="objectID">18</int> | |
985 | - <reference key="object" ref="803552079"/> | |
986 | - <reference key="parent" ref="431188278"/> | |
987 | - </object> | |
988 | - <object class="IBObjectRecord"> | |
989 | 648 | <int key="objectID">60</int> |
990 | 649 | <reference key="object" ref="770136993"/> |
991 | 650 | <reference key="parent" ref="0"/> |
@@ -1157,21 +816,20 @@ | ||
1157 | 816 | <reference key="object" ref="899781362"/> |
1158 | 817 | <reference key="parent" ref="676651368"/> |
1159 | 818 | </object> |
819 | + <object class="IBObjectRecord"> | |
820 | + <int key="objectID">150</int> | |
821 | + <reference key="object" ref="235156763"/> | |
822 | + <reference key="parent" ref="0"/> | |
823 | + <string key="objectName">Attributes</string> | |
824 | + </object> | |
1160 | 825 | </object> |
1161 | 826 | </object> |
1162 | 827 | <object class="NSMutableDictionary" key="flattenedProperties"> |
1163 | 828 | <bool key="EncodedWithXMLCoder">YES</bool> |
1164 | 829 | <object class="NSArray" key="dict.sortedKeys"> |
1165 | 830 | <bool key="EncodedWithXMLCoder">YES</bool> |
1166 | - <string>1.IBEditorWindowLastContentRect</string> | |
1167 | - <string>1.IBPluginDependency</string> | |
1168 | - <string>1.WindowOrigin</string> | |
1169 | - <string>1.editorWindowContentRectSynchronizationRect</string> | |
1170 | - <string>10.IBPluginDependency</string> | |
1171 | - <string>10.IBViewBoundsToFrameTransform</string> | |
1172 | 831 | <string>103.IBEditorWindowLastContentRect</string> |
1173 | 832 | <string>103.IBPluginDependency</string> |
1174 | - <string>11.IBPluginDependency</string> | |
1175 | 833 | <string>110.IBPluginDependency</string> |
1176 | 834 | <string>110.IBViewBoundsToFrameTransform</string> |
1177 | 835 | <string>111.IBPluginDependency</string> |
@@ -1179,8 +837,6 @@ | ||
1179 | 837 | <string>113.IBPluginDependency</string> |
1180 | 838 | <string>114.IBPluginDependency</string> |
1181 | 839 | <string>115.IBPluginDependency</string> |
1182 | - <string>12.IBPluginDependency</string> | |
1183 | - <string>12.IBViewBoundsToFrameTransform</string> | |
1184 | 840 | <string>120.IBPluginDependency</string> |
1185 | 841 | <string>120.IBViewBoundsToFrameTransform</string> |
1186 | 842 | <string>121.IBPluginDependency</string> |
@@ -1190,7 +846,6 @@ | ||
1190 | 846 | <string>124.IBViewBoundsToFrameTransform</string> |
1191 | 847 | <string>125.IBPluginDependency</string> |
1192 | 848 | <string>126.IBPluginDependency</string> |
1193 | - <string>13.IBPluginDependency</string> | |
1194 | 849 | <string>130.IBViewBoundsToFrameTransform</string> |
1195 | 850 | <string>134.IBPluginDependency</string> |
1196 | 851 | <string>134.IBViewBoundsToFrameTransform</string> |
@@ -1199,36 +854,14 @@ | ||
1199 | 854 | <string>137.IBPluginDependency</string> |
1200 | 855 | <string>138.IBPluginDependency</string> |
1201 | 856 | <string>139.IBPluginDependency</string> |
1202 | - <string>14.IBViewBoundsToFrameTransform</string> | |
1203 | 857 | <string>140.IBPluginDependency</string> |
1204 | 858 | <string>141.IBPluginDependency</string> |
1205 | - <string>15.IBPluginDependency</string> | |
1206 | - <string>15.IBViewBoundsToFrameTransform</string> | |
1207 | - <string>16.IBPluginDependency</string> | |
1208 | - <string>17.IBPluginDependency</string> | |
1209 | - <string>17.IBViewBoundsToFrameTransform</string> | |
1210 | - <string>18.IBPluginDependency</string> | |
859 | + <string>150.IBPluginDependency</string> | |
1211 | 860 | <string>3.IBPluginDependency</string> |
1212 | - <string>4.IBPluginDependency</string> | |
1213 | - <string>4.IBViewBoundsToFrameTransform</string> | |
1214 | - <string>5.IBPluginDependency</string> | |
1215 | - <string>6.IBPluginDependency</string> | |
1216 | - <string>7.IBPluginDependency</string> | |
1217 | - <string>8.IBPluginDependency</string> | |
1218 | - <string>9.IBPluginDependency</string> | |
1219 | 861 | </object> |
1220 | 862 | <object class="NSMutableArray" key="dict.values"> |
1221 | 863 | <bool key="EncodedWithXMLCoder">YES</bool> |
1222 | - <string>{{636, 536}, {276, 165}}</string> | |
1223 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1224 | - <string>{628, 654}</string> | |
1225 | - <string>{{217, 442}, {480, 272}}</string> | |
1226 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1227 | - <object class="NSAffineTransform"> | |
1228 | - <bytes key="NSTransformStruct">P4AAAL+AAABClAAAwggAAA</bytes> | |
1229 | - </object> | |
1230 | - <string>{{257, 576}, {301, 166}}</string> | |
1231 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
864 | + <string>{{715, 340}, {301, 166}}</string> | |
1232 | 865 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1233 | 866 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1234 | 867 | <object class="NSAffineTransform"> |
@@ -1241,10 +874,6 @@ | ||
1241 | 874 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1242 | 875 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1243 | 876 | <object class="NSAffineTransform"> |
1244 | - <bytes key="NSTransformStruct">P4AAAL+AAABBcAAAwpAAAA</bytes> | |
1245 | - </object> | |
1246 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1247 | - <object class="NSAffineTransform"> | |
1248 | 877 | <bytes key="NSTransformStruct">P4AAAL+AAABBgAAAwqYAAA</bytes> |
1249 | 878 | </object> |
1250 | 879 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
@@ -1258,7 +887,6 @@ | ||
1258 | 887 | </object> |
1259 | 888 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1260 | 889 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1261 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1262 | 890 | <object class="NSAffineTransform"> |
1263 | 891 | <bytes key="NSTransformStruct">AUGIAABCsgAAA</bytes> |
1264 | 892 | </object> |
@@ -1271,27 +899,6 @@ | ||
1271 | 899 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1272 | 900 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1273 | 901 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1274 | - <object class="NSAffineTransform"> | |
1275 | - <bytes key="NSTransformStruct">AUGIAABCqAAAA</bytes> | |
1276 | - </object> | |
1277 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1278 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1279 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1280 | - <object class="NSAffineTransform"> | |
1281 | - <bytes key="NSTransformStruct">P4AAAL+AAABBkAAAwxEAAA</bytes> | |
1282 | - </object> | |
1283 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1284 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1285 | - <object class="NSAffineTransform"> | |
1286 | - <bytes key="NSTransformStruct">P4AAAL+AAABBcAAAwfgAAA</bytes> | |
1287 | - </object> | |
1288 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1289 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1290 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1291 | - <object class="NSAffineTransform"> | |
1292 | - <bytes key="NSTransformStruct">P4AAAL+AAABCjgAAwpgAAA</bytes> | |
1293 | - </object> | |
1294 | - <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1295 | 902 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1296 | 903 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
1297 | 904 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
@@ -1314,7 +921,7 @@ | ||
1314 | 921 | </object> |
1315 | 922 | </object> |
1316 | 923 | <nil key="sourceID"/> |
1317 | - <int key="maxID">141</int> | |
924 | + <int key="maxID">163</int> | |
1318 | 925 | </object> |
1319 | 926 | <object class="IBClassDescriber" key="IBDocument.Classes"> |
1320 | 927 | <object class="NSMutableArray" key="referencedPartialClassDescriptions"> |