BathyScapheのTitleRulerAppearanceを手軽に変更するツール
Revisão | c201d83a0a4843708e97b65f5a997a01ff728bfe (tree) |
---|---|
Hora | 2012-04-03 00:30:51 |
Autor | masakih <masakih@user...> |
Commiter | masakih |
[New] BathyScaphe 2.1.1に対応
@@ -26,9 +26,14 @@ typedef enum _BSTitleRulerModeType { | ||
26 | 26 | |
27 | 27 | BSTitleRulerModeType _currentMode; |
28 | 28 | |
29 | + NSTextField *m_titleField; | |
30 | + | |
29 | 31 | // addtional variables. |
30 | 32 | NSControlTint representControlTint; |
31 | 33 | NSInteger representActiveState; // 0: Inactive. 1: Active. |
34 | + | |
35 | + BOOL drawsCarvedText; | |
36 | + NSColor *textColor; | |
32 | 37 | } |
33 | 38 | |
34 | 39 | - (BSTitleRulerAppearance *)appearance; |
@@ -29,9 +29,22 @@ | ||
29 | 29 | |
30 | 30 | - (void)setAppearance:(BSTitleRulerAppearance *)appearance |
31 | 31 | { |
32 | + [self unbind:@"drawsCarvedText"]; | |
33 | + [self unbind:@"textColor"]; | |
34 | + | |
32 | 35 | [appearance retain]; |
33 | 36 | [m_appearance release]; |
34 | 37 | m_appearance = appearance; |
38 | + | |
39 | + [self bind:@"drawsCarvedText" | |
40 | + toObject:appearance | |
41 | + withKeyPath:@"drawsCarvedText" | |
42 | + options:nil]; | |
43 | + [self bind:@"textColor" | |
44 | + toObject:appearance | |
45 | + withKeyPath:@"textColor" | |
46 | + options:nil]; | |
47 | + | |
35 | 48 | [self setNeedsDisplay:YES]; |
36 | 49 | } |
37 | 50 |
@@ -43,7 +56,8 @@ | ||
43 | 56 | - (void)setTitleStr:(NSString *)aString |
44 | 57 | { |
45 | 58 | [self setTitleStrWithoutNeedingDisplay:aString]; |
46 | - [self setNeedsDisplay:YES]; | |
59 | + [m_titleField setStringValue:aString]; | |
60 | +// [self setNeedsDisplay:YES]; | |
47 | 61 | } |
48 | 62 | |
49 | 63 | - (void)setTitleStrWithoutNeedingDisplay:(NSString *)aString |
@@ -84,12 +98,15 @@ | ||
84 | 98 | switch(newType) { |
85 | 99 | case BSTitleRulerShowTitleOnlyMode: |
86 | 100 | newThickness = THICKNESS_FOR_TITLE; |
101 | + [m_titleField setHidden:NO]; | |
87 | 102 | break; |
88 | 103 | case BSTitleRulerShowInfoOnlyMode: |
89 | 104 | newThickness = THICKNESS_FOR_INFO; |
105 | + [m_titleField setHidden:YES]; | |
90 | 106 | break; |
91 | 107 | case BSTitleRulerShowTitleAndInfoMode: |
92 | 108 | newThickness = (THICKNESS_FOR_TITLE + THICKNESS_FOR_INFO); |
109 | + [m_titleField setHidden:NO]; | |
93 | 110 | break; |
94 | 111 | default: |
95 | 112 | newThickness = THICKNESS_FOR_TITLE; |
@@ -120,24 +137,48 @@ | ||
120 | 137 | // [self setNeedsDisplay:YES]; |
121 | 138 | } |
122 | 139 | |
123 | -#pragma mark Private Utilities | |
124 | -- (NSDictionary *)attrTemplateForTitle | |
140 | +- (BOOL)drawsCarvedText | |
125 | 141 | { |
126 | - /*static*/ NSDictionary *tmp = nil; | |
127 | - if (!tmp) { | |
128 | - NSColor *color_; | |
129 | - | |
130 | - color_ = [[self appearance] textColor]; | |
131 | - | |
132 | - tmp = [[NSDictionary alloc] initWithObjectsAndKeys: | |
133 | - [NSFont boldSystemFontOfSize:TITLE_FONT_SIZE], NSFontAttributeName, | |
134 | - color_, NSForegroundColorAttributeName, | |
135 | - nil]; | |
142 | + return drawsCarvedText; | |
143 | +} | |
144 | +- (void)setDrawsCarvedText:(BOOL)flag | |
145 | +{ | |
146 | + if(flag) { | |
147 | + [[m_titleField cell] setBackgroundStyle:NSBackgroundStyleLowered]; | |
148 | + } else { | |
149 | + [[m_titleField cell] setBackgroundStyle:NSBackgroundStyleLight]; | |
136 | 150 | } |
137 | -// return tmp; | |
138 | - return [tmp autorelease]; | |
151 | + drawsCarvedText = flag; | |
152 | +} | |
153 | +- (NSColor *)textColor | |
154 | +{ | |
155 | + return textColor; | |
156 | +} | |
157 | +- (void)setTextColor:(NSColor *)aColor | |
158 | +{ | |
159 | + [textColor release]; | |
160 | + textColor = [aColor retain]; | |
161 | + [m_titleField setTextColor:aColor]; | |
139 | 162 | } |
140 | 163 | |
164 | +#pragma mark Private Utilities | |
165 | +//- (NSDictionary *)attrTemplateForTitle | |
166 | +//{ | |
167 | +// /*static*/ NSDictionary *tmp = nil; | |
168 | +// if (!tmp) { | |
169 | +// NSColor *color_; | |
170 | +// | |
171 | +// color_ = [[self appearance] textColor]; | |
172 | +// | |
173 | +// tmp = [[NSDictionary alloc] initWithObjectsAndKeys: | |
174 | +// [NSFont boldSystemFontOfSize:TITLE_FONT_SIZE], NSFontAttributeName, | |
175 | +// color_, NSForegroundColorAttributeName, | |
176 | +// nil]; | |
177 | +// } | |
178 | +//// return tmp; | |
179 | +// return [tmp autorelease]; | |
180 | +//} | |
181 | + | |
141 | 182 | - (NSDictionary *)attrTemplateForInfo |
142 | 183 | { |
143 | 184 | /*static*/ NSDictionary *tmp2 = nil; |
@@ -155,10 +196,10 @@ | ||
155 | 196 | return [tmp2 autorelease]; |
156 | 197 | } |
157 | 198 | |
158 | -- (NSAttributedString *)titleForDrawing | |
159 | -{ | |
160 | - return [[[NSAttributedString alloc] initWithString:[self titleStr] attributes:[self attrTemplateForTitle]] autorelease]; | |
161 | -} | |
199 | +//- (NSAttributedString *)titleForDrawing | |
200 | +//{ | |
201 | +// return [[[NSAttributedString alloc] initWithString:[self titleStr] attributes:[self attrTemplateForTitle]] autorelease]; | |
202 | +//} | |
162 | 203 | |
163 | 204 | - (NSAttributedString *)infoForDrawing |
164 | 205 | { |
@@ -178,6 +219,27 @@ | ||
178 | 219 | // BSTitleRulerView Properties |
179 | 220 | [self setCurrentMode:BSTitleRulerShowTitleOnlyMode]; |
180 | 221 | // [self setAppearance:appearance]; |
222 | + | |
223 | + // hoge... | |
224 | + NSTextField *field = [[NSTextField alloc] initWithFrame:NSMakeRect(5, 2, frame.size.width - 10, 16)]; | |
225 | + [field setAutoresizingMask:NSViewWidthSizable]; | |
226 | + [field setFont:[NSFont boldSystemFontOfSize:TITLE_FONT_SIZE]]; | |
227 | + [field setDrawsBackground:NO]; | |
228 | + [field setBordered:NO]; | |
229 | + [field setRefusesFirstResponder:YES]; | |
230 | + [field setEditable:NO]; | |
231 | + [field setSelectable:NO]; | |
232 | + [field setMenu:nil]; | |
233 | + if ([[self appearance] drawsCarvedText]) { | |
234 | + [[field cell] setBackgroundStyle:NSBackgroundStyleLowered]; | |
235 | + } | |
236 | + [field setTextColor:[[self appearance] textColor]]; | |
237 | + | |
238 | + m_titleField = field; | |
239 | + | |
240 | + [self setAutoresizesSubviews:YES]; | |
241 | + [self addSubview:field]; | |
242 | + [field release]; | |
181 | 243 | } |
182 | 244 | return self; |
183 | 245 | } |
@@ -204,19 +266,31 @@ | ||
204 | 266 | gradientStartColor = [colors_ objectAtIndex:0]; |
205 | 267 | gradientEndColor = [colors_ objectAtIndex:1]; |
206 | 268 | |
207 | - [[NSBezierPath bezierPathWithRect:aRect] linearGradientFillWithStartColor:gradientStartColor endColor:gradientEndColor]; | |
269 | + if ([[self appearance] drawsBottomBorder]) { | |
270 | + [[NSColor disabledControlTextColor] set]; | |
271 | + NSRect foo = NSMakeRect(aRect.origin.x, aRect.origin.y + aRect.size.height - 1, aRect.size.width, 1.0); | |
272 | + NSRectFill(foo); | |
273 | + aRect.size.height -= 1; | |
274 | + } | |
208 | 275 | |
209 | - if ([appearance drawsCarvedText]) { | |
210 | - // このへん、暫定的 | |
211 | - NSMutableAttributedString *foo = [[self titleForDrawing] mutableCopy]; | |
212 | - NSRange range = NSMakeRange(0,[foo length]); | |
213 | - [foo removeAttribute:NSForegroundColorAttributeName range:range]; | |
214 | - [foo addAttributes:[NSDictionary dictionaryWithObject:[NSColor grayColor] forKey:NSForegroundColorAttributeName] range:range]; | |
215 | - [foo drawInRect:NSInsetRect(aRect, 5.0, 3.0)]; | |
216 | - [foo release]; | |
217 | - } | |
276 | + NSGradient *gradient = [[NSGradient alloc] initWithStartingColor:gradientStartColor endingColor:gradientEndColor]; | |
277 | + [gradient drawInRect:aRect angle:90]; | |
278 | + [gradient release]; | |
279 | +// | |
280 | +// | |
281 | +// [[NSBezierPath bezierPathWithRect:aRect] linearGradientFillWithStartColor:gradientStartColor endColor:gradientEndColor]; | |
218 | 282 | |
219 | - [[self titleForDrawing] drawInRect:NSInsetRect(aRect, 5.0, 2.0)]; | |
283 | +// if ([appearance drawsCarvedText]) { | |
284 | +// // このへん、暫定的 | |
285 | +// NSMutableAttributedString *foo = [[self titleForDrawing] mutableCopy]; | |
286 | +// NSRange range = NSMakeRange(0,[foo length]); | |
287 | +// [foo removeAttribute:NSForegroundColorAttributeName range:range]; | |
288 | +// [foo addAttributes:[NSDictionary dictionaryWithObject:[NSColor grayColor] forKey:NSForegroundColorAttributeName] range:range]; | |
289 | +// [foo drawInRect:NSInsetRect(aRect, 5.0, 3.0)]; | |
290 | +// [foo release]; | |
291 | +// } | |
292 | +// | |
293 | +// [[self titleForDrawing] drawInRect:NSInsetRect(aRect, 5.0, 2.0)]; | |
220 | 294 | } |
221 | 295 | |
222 | 296 | - (BOOL)isOpaque |
@@ -245,17 +319,18 @@ | ||
245 | 319 | |
246 | 320 | - (void)drawRect:(NSRect)aRect |
247 | 321 | { |
322 | + NSRect bRect = [self bounds]; | |
248 | 323 | switch ([self currentMode]) { |
249 | 324 | case BSTitleRulerShowTitleOnlyMode: |
250 | - [self drawTitleBarInRect:aRect]; | |
325 | + [self drawTitleBarInRect:bRect]; | |
251 | 326 | break; |
252 | 327 | case BSTitleRulerShowInfoOnlyMode: |
253 | - [self drawInfoBarInRect:aRect]; | |
328 | + [self drawInfoBarInRect:bRect]; | |
254 | 329 | break; |
255 | 330 | case BSTitleRulerShowTitleAndInfoMode: |
256 | 331 | { |
257 | 332 | NSRect titleRect, infoRect; |
258 | - NSDivideRect(aRect, &infoRect, &titleRect, THICKNESS_FOR_INFO, NSMaxYEdge); | |
333 | + NSDivideRect(bRect, &infoRect, &titleRect, THICKNESS_FOR_INFO, NSMaxYEdge); | |
259 | 334 | [self drawTitleBarInRect:titleRect]; |
260 | 335 | [self drawInfoBarInRect:infoRect]; |
261 | 336 | } |
@@ -19,7 +19,10 @@ | ||
19 | 19 | IBOutlet BSCSTitleRulerImitation* blueActiveView; |
20 | 20 | IBOutlet BSCSTitleRulerImitation* graphiteActiveView; |
21 | 21 | IBOutlet BSCSTitleRulerImitation* inactiveView; |
22 | - IBOutlet BSCSTitleRulerImitation* infoView; | |
22 | + IBOutlet BSCSTitleRulerImitation* infoView; | |
23 | + | |
24 | + IBOutlet NSTextField *textColorLabel; | |
25 | + IBOutlet NSColorWell *textColorWell; | |
23 | 26 | } |
24 | 27 | |
25 | 28 | - (IBAction)saveToBSSupportFolder:(id)sender; |
@@ -13,6 +13,7 @@ | ||
13 | 13 | - (BSTitleRulerAppearance *)appearance; |
14 | 14 | - (NSString *)bathyScapheSupportFolder; |
15 | 15 | - (void)displayItemForKey:(NSString *)key; |
16 | +- (void)validateControls; | |
16 | 17 | @end |
17 | 18 | |
18 | 19 | @implementation BSTRADocument |
@@ -56,32 +57,34 @@ | ||
56 | 57 | NSString *information = NSLocalizedString(@"Information.", @"Information."); |
57 | 58 | |
58 | 59 | [blueActiveView setAppearance:appearance]; |
59 | - [blueActiveView setTitleStrWithoutNeedingDisplay:title]; | |
60 | + [blueActiveView setTitleStr:title]; | |
60 | 61 | [blueActiveView setInfoStrWithoutNeedingDisplay:information]; |
61 | 62 | [blueActiveView setCurrentMode:BSTitleRulerShowTitleOnlyMode]; |
62 | 63 | [blueActiveView setRepresentControlTint:NSBlueControlTint]; |
63 | 64 | [blueActiveView setRepresentActiveState:1]; |
64 | 65 | |
65 | 66 | [graphiteActiveView setAppearance:appearance]; |
66 | - [graphiteActiveView setTitleStrWithoutNeedingDisplay:title]; | |
67 | + [graphiteActiveView setTitleStr:title]; | |
67 | 68 | [graphiteActiveView setInfoStrWithoutNeedingDisplay:information]; |
68 | 69 | [graphiteActiveView setCurrentMode:BSTitleRulerShowTitleOnlyMode]; |
69 | 70 | [graphiteActiveView setRepresentControlTint:NSGraphiteControlTint]; |
70 | 71 | [graphiteActiveView setRepresentActiveState:1]; |
71 | 72 | |
72 | 73 | [inactiveView setAppearance:appearance]; |
73 | - [inactiveView setTitleStrWithoutNeedingDisplay:title]; | |
74 | + [inactiveView setTitleStr:title]; | |
74 | 75 | [inactiveView setInfoStrWithoutNeedingDisplay:information]; |
75 | 76 | [inactiveView setCurrentMode:BSTitleRulerShowTitleOnlyMode]; |
76 | 77 | [inactiveView setRepresentControlTint:NSBlueControlTint]; |
77 | 78 | [inactiveView setRepresentActiveState:0]; |
78 | 79 | |
79 | 80 | [infoView setAppearance:appearance]; |
80 | - [infoView setTitleStrWithoutNeedingDisplay:title]; | |
81 | + [infoView setTitleStr:title]; | |
81 | 82 | [infoView setInfoStrWithoutNeedingDisplay:information]; |
82 | 83 | [infoView setCurrentMode:BSTitleRulerShowInfoOnlyMode]; |
83 | 84 | [infoView setRepresentControlTint:NSBlueControlTint]; |
84 | 85 | [infoView setRepresentActiveState:1]; |
86 | + | |
87 | + [self validateControls]; | |
85 | 88 | } |
86 | 89 | |
87 | 90 | - (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError |
@@ -195,6 +198,18 @@ | ||
195 | 198 | @end |
196 | 199 | |
197 | 200 | @implementation BSTRADocument (Addition) |
201 | + | |
202 | +- (void)validateControls | |
203 | +{ | |
204 | + BOOL carved = [[self appearance] drawsCarvedText]; | |
205 | + | |
206 | + [textColorWell setEnabled:!carved]; | |
207 | + if([textColorWell isActive] && carved) { | |
208 | + [textColorWell deactivate]; | |
209 | + } | |
210 | +// [textColorLabel setTextColor:carved ? [NSColor disabledControlTextColor] : [NSColor controlTextColor]]; | |
211 | +} | |
212 | + | |
198 | 213 | NSString *resolveAlias(NSString *path) |
199 | 214 | { |
200 | 215 | NSString *newPath = nil; |
@@ -280,6 +295,7 @@ final: | ||
280 | 295 | @"infoColor", |
281 | 296 | @"infoBackgroundColor", |
282 | 297 | @"drawsCarvedText", |
298 | + @"drawsBottomBorder", | |
283 | 299 | nil |
284 | 300 | }; |
285 | 301 |
@@ -355,12 +371,17 @@ final: | ||
355 | 371 | if([keyPath isEqual:@"drawsCarvedText"]) { |
356 | 372 | [[undo prepareWithInvocationTarget:appearance] setDrawsCarvedText:[old boolValue]]; |
357 | 373 | } |
374 | + if([keyPath isEqual:@"drawsBottomBorder"]) { | |
375 | + [[undo prepareWithInvocationTarget:appearance] setDrawsBottomBorder:[old boolValue]]; | |
376 | + } | |
358 | 377 | [undo registerUndoWithTarget:self |
359 | 378 | selector:@selector(displayItemForKey:) |
360 | 379 | object:keyPath]; |
361 | 380 | [undo endUndoGrouping]; |
362 | 381 | |
363 | 382 | [self displayItemForKey:keyPath]; |
383 | + | |
384 | + [self validateControls]; | |
364 | 385 | } |
365 | 386 | - (void)displayItemForKey:(NSString *)key |
366 | 387 | { |
@@ -51,7 +51,7 @@ | ||
51 | 51 | /* End PBXContainerItemProxy section */ |
52 | 52 | |
53 | 53 | /* Begin PBXFileReference section */ |
54 | - 089C1660FE840EACC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; }; | |
54 | + 089C1660FE840EACC02AAC07 /* English */ = {isa = PBXFileReference; explicitFileType = text.plist.xml; fileEncoding = 4; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; }; | |
55 | 55 | 1058C7A7FEA54F5311CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; }; |
56 | 56 | 13E42FBA07B3F13500E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; }; |
57 | 57 | 2A37F4ACFDCFA73011CA2CEA /* BSTRADocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BSTRADocument.m; sourceTree = "<group>"; }; |
@@ -80,8 +80,8 @@ | ||
80 | 80 | F479A76F0D861A8300A414C2 /* NSAppleEventDescriptor-Extensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSAppleEventDescriptor-Extensions.h"; sourceTree = "<group>"; }; |
81 | 81 | F479A7700D861A8300A414C2 /* NSAppleEventDescriptor-Extensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSAppleEventDescriptor-Extensions.m"; sourceTree = "<group>"; }; |
82 | 82 | F479A7A50D861C1900A414C2 /* BSTitleRulerAppearance.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = BSTitleRulerAppearance.plist; sourceTree = "<group>"; }; |
83 | - F479A8160D862FA100A414C2 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; }; | |
84 | - F479A8240D86303600A414C2 /* Japanese */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Japanese; path = Japanese.lproj/Localizable.strings; sourceTree = "<group>"; }; | |
83 | + F479A8160D862FA100A414C2 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; }; | |
84 | + F479A8240D86303600A414C2 /* Japanese */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = Japanese; path = Japanese.lproj/Localizable.strings; sourceTree = "<group>"; }; | |
85 | 85 | F479A91E0D8654E300A414C2 /* BSTRAEditor.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = BSTRAEditor.icns; sourceTree = "<group>"; }; |
86 | 86 | F479A92C0D8655EE00A414C2 /* Japanese */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Japanese; path = Japanese.lproj/InfoPlist.strings; sourceTree = "<group>"; }; |
87 | 87 | F479A94A0D865A9000A414C2 /* Japanese */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = Japanese; path = Japanese.lproj/MainMenu.nib; sourceTree = "<group>"; }; |
@@ -1,9 +1,9 @@ | ||
1 | 1 | // |
2 | 2 | // BSTitleRulerAppearance.h |
3 | -// SGAppKit (BathyScaphe) | |
3 | +// BathyScaphe | |
4 | 4 | // |
5 | 5 | // Created by Tsutomu Sawada on 07/08/25. |
6 | -// Copyright 2007-2008 BathyScaphe Project. All rights reserved. | |
6 | +// Copyright 2007-2010 BathyScaphe Project. All rights reserved. | |
7 | 7 | // encoding="UTF-8" |
8 | 8 | // |
9 | 9 |
@@ -20,6 +20,9 @@ | ||
20 | 20 | NSColor *m_textColor; |
21 | 21 | |
22 | 22 | BOOL m_drawsCarvedText; |
23 | + | |
24 | + // BathyScaphe 2.1.1 Addition | |
25 | + BOOL m_drawsBottomBorder; | |
23 | 26 | } |
24 | 27 | |
25 | 28 | - (NSArray *)activeBlueColors; |
@@ -53,4 +56,8 @@ | ||
53 | 56 | |
54 | 57 | - (BOOL)drawsCarvedText; |
55 | 58 | - (void)setDrawsCarvedText:(BOOL)flag; |
59 | + | |
60 | +#pragma mark - | |
61 | +- (BOOL)drawsBottomBorder; | |
62 | +- (void)setDrawsBottomBorder:(BOOL)flag; | |
56 | 63 | @end |
@@ -1,9 +1,9 @@ | ||
1 | 1 | // |
2 | 2 | // BSTitleRulerAppearance.m |
3 | -// SGAppKit (BathyScaphe) | |
3 | +// BathyScaphe | |
4 | 4 | // |
5 | 5 | // Created by Tsutomu Sawada on 07/08/25. |
6 | -// Copyright 2007-2008 BathyScaphe Project. All rights reserved. | |
6 | +// Copyright 2007-2010 BathyScaphe Project. All rights reserved. | |
7 | 7 | // encoding="UTF-8" |
8 | 8 | // |
9 | 9 |
@@ -69,8 +69,6 @@ | ||
69 | 69 | - (void)setActiveBlueStartColor:(NSColor *)color |
70 | 70 | { |
71 | 71 | NSAssert(color, @"color is nil!"); |
72 | - if(color == [[self activeBlueColors] objectAtIndex:0]) return; | |
73 | - | |
74 | 72 | NSColor *anotherColor = [[self activeBlueColors] objectAtIndex:1]; |
75 | 73 | NSArray *newArray = [NSArray arrayWithObjects:color, anotherColor, nil]; |
76 | 74 | [self setActiveBlueColors:newArray]; |
@@ -84,8 +82,6 @@ | ||
84 | 82 | - (void)setActiveBlueEndColor:(NSColor *)color |
85 | 83 | { |
86 | 84 | NSAssert(color, @"color is nil!"); |
87 | - if(color == [[self activeBlueColors] objectAtIndex:1]) return; | |
88 | - | |
89 | 85 | NSColor *anotherColor = [[self activeBlueColors] objectAtIndex:0]; |
90 | 86 | NSArray *newArray = [NSArray arrayWithObjects:anotherColor, color, nil]; |
91 | 87 | [self setActiveBlueColors:newArray]; |
@@ -99,8 +95,6 @@ | ||
99 | 95 | - (void)setActiveGraphiteStartColor:(NSColor *)color |
100 | 96 | { |
101 | 97 | NSAssert(color, @"color is nil!"); |
102 | - if(color == [[self activeGraphiteColors] objectAtIndex:0]) return; | |
103 | - | |
104 | 98 | NSColor *anotherColor = [[self activeGraphiteColors] objectAtIndex:1]; |
105 | 99 | NSArray *newArray = [NSArray arrayWithObjects:color, anotherColor, nil]; |
106 | 100 | [self setActiveGraphiteColors:newArray]; |
@@ -114,8 +108,6 @@ | ||
114 | 108 | - (void)setActiveGraphiteEndColor:(NSColor *)color |
115 | 109 | { |
116 | 110 | NSAssert(color, @"color is nil!"); |
117 | - if(color == [[self activeGraphiteColors] objectAtIndex:1]) return; | |
118 | - | |
119 | 111 | NSColor *anotherColor = [[self activeGraphiteColors] objectAtIndex:0]; |
120 | 112 | NSArray *newArray = [NSArray arrayWithObjects:anotherColor, color, nil]; |
121 | 113 | [self setActiveGraphiteColors:newArray]; |
@@ -129,8 +121,6 @@ | ||
129 | 121 | - (void)setInactiveStartColor:(NSColor *)color |
130 | 122 | { |
131 | 123 | NSAssert(color, @"color is nil!"); |
132 | - if(color == [[self inactiveColors] objectAtIndex:0]) return; | |
133 | - | |
134 | 124 | NSColor *anotherColor = [[self inactiveColors] objectAtIndex:1]; |
135 | 125 | NSArray *newArray = [NSArray arrayWithObjects:color, anotherColor, nil]; |
136 | 126 | [self setInactiveColors:newArray]; |
@@ -144,8 +134,6 @@ | ||
144 | 134 | - (void)setInactiveEndColor:(NSColor *)color |
145 | 135 | { |
146 | 136 | NSAssert(color, @"color is nil!"); |
147 | - if(color == [[self inactiveColors] objectAtIndex:1]) return; | |
148 | - | |
149 | 137 | NSColor *anotherColor = [[self inactiveColors] objectAtIndex:0]; |
150 | 138 | NSArray *newArray = [NSArray arrayWithObjects:anotherColor, color, nil]; |
151 | 139 | [self setInactiveColors:newArray]; |
@@ -159,8 +147,6 @@ | ||
159 | 147 | |
160 | 148 | - (void)setInfoColor:(NSColor *)color |
161 | 149 | { |
162 | - if(color == m_infoTextColor) return; | |
163 | - | |
164 | 150 | [color retain]; |
165 | 151 | [m_infoTextColor release]; |
166 | 152 | m_infoTextColor = color; |
@@ -173,8 +159,6 @@ | ||
173 | 159 | |
174 | 160 | - (void)setInfoBackgroundColor:(NSColor *)color |
175 | 161 | { |
176 | - if(color == m_infoBgColor) return; | |
177 | - | |
178 | 162 | [color retain]; |
179 | 163 | [m_infoBgColor release]; |
180 | 164 | m_infoBgColor = color; |
@@ -187,8 +171,6 @@ | ||
187 | 171 | |
188 | 172 | - (void)setTextColor:(NSColor *)color |
189 | 173 | { |
190 | - if(color == m_textColor) return; | |
191 | - | |
192 | 174 | [color retain]; |
193 | 175 | [m_textColor release]; |
194 | 176 | m_textColor = color; |
@@ -204,6 +186,18 @@ | ||
204 | 186 | m_drawsCarvedText = flag; |
205 | 187 | } |
206 | 188 | |
189 | +#pragma mark 2.1.1 Addition | |
190 | +- (BOOL)drawsBottomBorder | |
191 | +{ | |
192 | + return m_drawsBottomBorder; | |
193 | +} | |
194 | + | |
195 | +- (void)setDrawsBottomBorder:(BOOL)flag | |
196 | +{ | |
197 | + m_drawsBottomBorder = flag; | |
198 | +} | |
199 | + | |
200 | +#pragma mark - | |
207 | 201 | - (id)initWithCoder:(NSCoder *)coder |
208 | 202 | { |
209 | 203 | if (self = [super init]) { |
@@ -215,6 +209,11 @@ | ||
215 | 209 | [self setInfoBackgroundColor:[coder decodeObjectForKey:@"info_bg"]]; |
216 | 210 | [self setTextColor:[coder decodeObjectForKey:@"text"]]; |
217 | 211 | [self setDrawsCarvedText:[coder decodeBoolForKey:@"carved"]]; |
212 | + if ([coder containsValueForKey:@"border"]) { // 2.1.1 Added | |
213 | + [self setDrawsBottomBorder:[coder decodeBoolForKey:@"border"]]; | |
214 | + } else { | |
215 | + [self setDrawsBottomBorder:NO]; | |
216 | + } | |
218 | 217 | } |
219 | 218 | } |
220 | 219 | return self; |
@@ -223,13 +222,14 @@ | ||
223 | 222 | - (void)encodeWithCoder:(NSCoder *)coder |
224 | 223 | { |
225 | 224 | if ([coder allowsKeyedCoding]) { |
225 | + [coder encodeBool:[self drawsBottomBorder] forKey:@"border"]; // 2.1.1 Added | |
226 | 226 | [coder encodeBool:[self drawsCarvedText] forKey:@"carved"]; |
227 | 227 | [coder encodeObject:[self textColor] forKey:@"text"]; |
228 | 228 | [coder encodeObject:[self infoBackgroundColor] forKey:@"info_bg"]; |
229 | 229 | [coder encodeObject:[self infoColor] forKey:@"info"]; |
230 | - [coder encodeObject:[self inactiveColors] forKey: @"inactive"]; | |
231 | - [coder encodeObject:[self activeGraphiteColors] forKey: @"graphite"]; | |
232 | - [coder encodeObject:[self activeBlueColors] forKey: @"blue"]; | |
230 | + [coder encodeObject:[self inactiveColors] forKey:@"inactive"]; | |
231 | + [coder encodeObject:[self activeGraphiteColors] forKey:@"graphite"]; | |
232 | + [coder encodeObject:[self activeBlueColors] forKey:@"blue"]; | |
233 | 233 | } |
234 | 234 | } |
235 | 235 | @end |
@@ -1,43 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
3 | -<plist version="1.0"> | |
4 | -<dict> | |
5 | - <key>IBClasses</key> | |
6 | - <array> | |
7 | - <dict> | |
8 | - <key>ACTIONS</key> | |
9 | - <dict> | |
10 | - <key>saveToBSSupportFolder</key> | |
11 | - <string>id</string> | |
12 | - </dict> | |
13 | - <key>CLASS</key> | |
14 | - <string>BSTRADocument</string> | |
15 | - <key>LANGUAGE</key> | |
16 | - <string>ObjC</string> | |
17 | - <key>OUTLETS</key> | |
18 | - <dict> | |
19 | - <key>blueActiveView</key> | |
20 | - <string>BSCSTitleRulerImitation</string> | |
21 | - <key>graphiteActiveView</key> | |
22 | - <string>BSCSTitleRulerImitation</string> | |
23 | - <key>inactiveView</key> | |
24 | - <string>BSCSTitleRulerImitation</string> | |
25 | - <key>infoView</key> | |
26 | - <string>BSCSTitleRulerImitation</string> | |
27 | - </dict> | |
28 | - <key>SUPERCLASS</key> | |
29 | - <string>NSDocument</string> | |
30 | - </dict> | |
31 | - <dict> | |
32 | - <key>CLASS</key> | |
33 | - <string>BSCSTitleRulerImitation</string> | |
34 | - <key>LANGUAGE</key> | |
35 | - <string>ObjC</string> | |
36 | - <key>SUPERCLASS</key> | |
37 | - <string>NSView</string> | |
38 | - </dict> | |
39 | - </array> | |
40 | - <key>IBVersion</key> | |
41 | - <string>1</string> | |
42 | -</dict> | |
43 | -</plist> |
@@ -0,0 +1,2000 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> | |
3 | + <data> | |
4 | + <int key="IBDocument.SystemTarget">1050</int> | |
5 | + <string key="IBDocument.SystemVersion">11D50</string> | |
6 | + <string key="IBDocument.InterfaceBuilderVersion">851</string> | |
7 | + <string key="IBDocument.AppKitVersion">1138.32</string> | |
8 | + <string key="IBDocument.HIToolboxVersion">568.00</string> | |
9 | + <object class="NSMutableDictionary" key="IBDocument.PluginVersions"> | |
10 | + <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> | |
11 | + <string key="NS.object.0">851</string> | |
12 | + </object> | |
13 | + <object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> | |
14 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
15 | + <integer value="6"/> | |
16 | + </object> | |
17 | + <object class="NSArray" key="IBDocument.PluginDependencies"> | |
18 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
19 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
20 | + </object> | |
21 | + <object class="NSMutableDictionary" key="IBDocument.Metadata"> | |
22 | + <string key="NS.key.0">PluginDependencyRecalculationVersion</string> | |
23 | + <integer value="1" key="NS.object.0"/> | |
24 | + </object> | |
25 | + <object class="NSMutableArray" key="IBDocument.RootObjects" id="519010005"> | |
26 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
27 | + <object class="NSCustomObject" id="557005226"> | |
28 | + <string key="NSClassName">BSTRADocument</string> | |
29 | + </object> | |
30 | + <object class="NSCustomObject" id="907409142"> | |
31 | + <string key="NSClassName">FirstResponder</string> | |
32 | + </object> | |
33 | + <object class="NSCustomObject" id="787454523"> | |
34 | + <string key="NSClassName">NSApplication</string> | |
35 | + </object> | |
36 | + <object class="NSWindowTemplate" id="234317799"> | |
37 | + <int key="NSWindowStyleMask">7</int> | |
38 | + <int key="NSWindowBacking">2</int> | |
39 | + <string key="NSWindowRect">{{110, 303}, {587, 322}}</string> | |
40 | + <int key="NSWTFlags">1886912512</int> | |
41 | + <string key="NSWindowTitle">Window</string> | |
42 | + <string key="NSWindowClass">NSWindow</string> | |
43 | + <string key="NSViewClass">View</string> | |
44 | + <nil key="NSUserInterfaceItemIdentifier"/> | |
45 | + <string key="NSWindowContentMaxSize">{3.4028235e+38, 3.4028235e+38}</string> | |
46 | + <string key="NSWindowContentMinSize">{94, 86}</string> | |
47 | + <object class="NSView" key="NSWindowView" id="962496858"> | |
48 | + <reference key="NSNextResponder"/> | |
49 | + <int key="NSvFlags">256</int> | |
50 | + <object class="NSMutableArray" key="NSSubviews"> | |
51 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
52 | + <object class="NSBox" id="777296115"> | |
53 | + <reference key="NSNextResponder" ref="962496858"/> | |
54 | + <int key="NSvFlags">292</int> | |
55 | + <object class="NSMutableArray" key="NSSubviews"> | |
56 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
57 | + <object class="NSView" id="817857893"> | |
58 | + <reference key="NSNextResponder" ref="777296115"/> | |
59 | + <int key="NSvFlags">274</int> | |
60 | + <object class="NSMutableArray" key="NSSubviews"> | |
61 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
62 | + <object class="NSTextField" id="741414079"> | |
63 | + <reference key="NSNextResponder" ref="817857893"/> | |
64 | + <int key="NSvFlags">268</int> | |
65 | + <string key="NSFrame">{{15, 121}, {113, 17}}</string> | |
66 | + <reference key="NSSuperview" ref="817857893"/> | |
67 | + <bool key="NSEnabled">YES</bool> | |
68 | + <object class="NSTextFieldCell" key="NSCell" id="102480796"> | |
69 | + <int key="NSCellFlags">67239488</int> | |
70 | + <int key="NSCellFlags2">71304192</int> | |
71 | + <string key="NSContents">Active (Blue):</string> | |
72 | + <object class="NSFont" key="NSSupport" id="512091146"> | |
73 | + <string key="NSName">LucidaGrande</string> | |
74 | + <double key="NSSize">13</double> | |
75 | + <int key="NSfFlags">1040</int> | |
76 | + </object> | |
77 | + <reference key="NSControlView" ref="741414079"/> | |
78 | + <object class="NSColor" key="NSBackgroundColor" id="764608540"> | |
79 | + <int key="NSColorSpace">6</int> | |
80 | + <string key="NSCatalogName">System</string> | |
81 | + <string key="NSColorName">controlColor</string> | |
82 | + <object class="NSColor" key="NSColor"> | |
83 | + <int key="NSColorSpace">3</int> | |
84 | + <bytes key="NSWhite">MC42NjY2NjY2ODY1AA</bytes> | |
85 | + </object> | |
86 | + </object> | |
87 | + <object class="NSColor" key="NSTextColor" id="1051709067"> | |
88 | + <int key="NSColorSpace">6</int> | |
89 | + <string key="NSCatalogName">System</string> | |
90 | + <string key="NSColorName">controlTextColor</string> | |
91 | + <object class="NSColor" key="NSColor"> | |
92 | + <int key="NSColorSpace">3</int> | |
93 | + <bytes key="NSWhite">MAA</bytes> | |
94 | + </object> | |
95 | + </object> | |
96 | + </object> | |
97 | + </object> | |
98 | + <object class="NSTextField" id="601342623"> | |
99 | + <reference key="NSNextResponder" ref="817857893"/> | |
100 | + <int key="NSvFlags">268</int> | |
101 | + <string key="NSFrame">{{15, 58}, {113, 17}}</string> | |
102 | + <reference key="NSSuperview" ref="817857893"/> | |
103 | + <bool key="NSEnabled">YES</bool> | |
104 | + <object class="NSTextFieldCell" key="NSCell" id="400740154"> | |
105 | + <int key="NSCellFlags">67239488</int> | |
106 | + <int key="NSCellFlags2">71304192</int> | |
107 | + <string key="NSContents">Inactive:</string> | |
108 | + <reference key="NSSupport" ref="512091146"/> | |
109 | + <reference key="NSControlView" ref="601342623"/> | |
110 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
111 | + <reference key="NSTextColor" ref="1051709067"/> | |
112 | + </object> | |
113 | + </object> | |
114 | + <object class="NSColorWell" id="350255202"> | |
115 | + <reference key="NSNextResponder" ref="817857893"/> | |
116 | + <int key="NSvFlags">268</int> | |
117 | + <object class="NSMutableSet" key="NSDragTypes"> | |
118 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
119 | + <object class="NSArray" key="set.sortedObjects"> | |
120 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
121 | + <string>NSColor pasteboard type</string> | |
122 | + </object> | |
123 | + </object> | |
124 | + <string key="NSFrame">{{388, 14}, {44, 23}}</string> | |
125 | + <reference key="NSSuperview" ref="817857893"/> | |
126 | + <bool key="NSEnabled">YES</bool> | |
127 | + <bool key="NSIsBordered">YES</bool> | |
128 | + <object class="NSColor" key="NSColor"> | |
129 | + <int key="NSColorSpace">1</int> | |
130 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
131 | + </object> | |
132 | + </object> | |
133 | + <object class="NSTextField" id="853846836"> | |
134 | + <reference key="NSNextResponder" ref="817857893"/> | |
135 | + <int key="NSvFlags">268</int> | |
136 | + <string key="NSFrame">{{15, 90}, {113, 17}}</string> | |
137 | + <reference key="NSSuperview" ref="817857893"/> | |
138 | + <bool key="NSEnabled">YES</bool> | |
139 | + <object class="NSTextFieldCell" key="NSCell" id="831511200"> | |
140 | + <int key="NSCellFlags">67239488</int> | |
141 | + <int key="NSCellFlags2">71304192</int> | |
142 | + <string key="NSContents">Active (Graphite):</string> | |
143 | + <reference key="NSSupport" ref="512091146"/> | |
144 | + <reference key="NSControlView" ref="853846836"/> | |
145 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
146 | + <reference key="NSTextColor" ref="1051709067"/> | |
147 | + </object> | |
148 | + </object> | |
149 | + <object class="NSCustomView" id="565897641"> | |
150 | + <reference key="NSNextResponder" ref="817857893"/> | |
151 | + <int key="NSvFlags">268</int> | |
152 | + <string key="NSFrame">{{133, 87}, {263, 22}}</string> | |
153 | + <reference key="NSSuperview" ref="817857893"/> | |
154 | + <string key="NSClassName">BSCSTitleRulerImitation</string> | |
155 | + </object> | |
156 | + <object class="NSColorWell" id="77093498"> | |
157 | + <reference key="NSNextResponder" ref="817857893"/> | |
158 | + <int key="NSvFlags">268</int> | |
159 | + <object class="NSMutableSet" key="NSDragTypes"> | |
160 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
161 | + <object class="NSArray" key="set.sortedObjects"> | |
162 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
163 | + <string>NSColor pasteboard type</string> | |
164 | + </object> | |
165 | + </object> | |
166 | + <string key="NSFrame">{{426, 117}, {44, 23}}</string> | |
167 | + <reference key="NSSuperview" ref="817857893"/> | |
168 | + <bool key="NSEnabled">YES</bool> | |
169 | + <bool key="NSIsBordered">YES</bool> | |
170 | + <object class="NSColor" key="NSColor"> | |
171 | + <int key="NSColorSpace">1</int> | |
172 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
173 | + </object> | |
174 | + </object> | |
175 | + <object class="NSColorWell" id="17797058"> | |
176 | + <reference key="NSNextResponder" ref="817857893"/> | |
177 | + <int key="NSvFlags">268</int> | |
178 | + <object class="NSMutableSet" key="NSDragTypes"> | |
179 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
180 | + <object class="NSArray" key="set.sortedObjects"> | |
181 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
182 | + <string>NSColor pasteboard type</string> | |
183 | + </object> | |
184 | + </object> | |
185 | + <string key="NSFrame">{{493, 117}, {44, 23}}</string> | |
186 | + <reference key="NSSuperview" ref="817857893"/> | |
187 | + <bool key="NSEnabled">YES</bool> | |
188 | + <bool key="NSIsBordered">YES</bool> | |
189 | + <object class="NSColor" key="NSColor"> | |
190 | + <int key="NSColorSpace">1</int> | |
191 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
192 | + </object> | |
193 | + </object> | |
194 | + <object class="NSTextField" id="434527974"> | |
195 | + <reference key="NSNextResponder" ref="817857893"/> | |
196 | + <int key="NSvFlags">268</int> | |
197 | + <string key="NSFrame">{{308, 17}, {75, 17}}</string> | |
198 | + <reference key="NSSuperview" ref="817857893"/> | |
199 | + <bool key="NSEnabled">YES</bool> | |
200 | + <object class="NSTextFieldCell" key="NSCell" id="12260361"> | |
201 | + <int key="NSCellFlags">67239488</int> | |
202 | + <int key="NSCellFlags2">71304192</int> | |
203 | + <string key="NSContents">Text Color:</string> | |
204 | + <reference key="NSSupport" ref="512091146"/> | |
205 | + <reference key="NSControlView" ref="434527974"/> | |
206 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
207 | + <reference key="NSTextColor" ref="1051709067"/> | |
208 | + </object> | |
209 | + </object> | |
210 | + <object class="NSColorWell" id="40602373"> | |
211 | + <reference key="NSNextResponder" ref="817857893"/> | |
212 | + <int key="NSvFlags">268</int> | |
213 | + <object class="NSMutableSet" key="NSDragTypes"> | |
214 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
215 | + <object class="NSArray" key="set.sortedObjects"> | |
216 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
217 | + <string>NSColor pasteboard type</string> | |
218 | + </object> | |
219 | + </object> | |
220 | + <string key="NSFrame">{{426, 86}, {44, 23}}</string> | |
221 | + <reference key="NSSuperview" ref="817857893"/> | |
222 | + <bool key="NSEnabled">YES</bool> | |
223 | + <bool key="NSIsBordered">YES</bool> | |
224 | + <object class="NSColor" key="NSColor"> | |
225 | + <int key="NSColorSpace">1</int> | |
226 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
227 | + </object> | |
228 | + </object> | |
229 | + <object class="NSCustomView" id="151849338"> | |
230 | + <reference key="NSNextResponder" ref="817857893"/> | |
231 | + <int key="NSvFlags">268</int> | |
232 | + <string key="NSFrame">{{133, 118}, {263, 22}}</string> | |
233 | + <reference key="NSSuperview" ref="817857893"/> | |
234 | + <string key="NSClassName">BSCSTitleRulerImitation</string> | |
235 | + </object> | |
236 | + <object class="NSColorWell" id="782015452"> | |
237 | + <reference key="NSNextResponder" ref="817857893"/> | |
238 | + <int key="NSvFlags">268</int> | |
239 | + <object class="NSMutableSet" key="NSDragTypes"> | |
240 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
241 | + <object class="NSArray" key="set.sortedObjects"> | |
242 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
243 | + <string>NSColor pasteboard type</string> | |
244 | + </object> | |
245 | + </object> | |
246 | + <string key="NSFrame">{{493, 55}, {44, 23}}</string> | |
247 | + <reference key="NSSuperview" ref="817857893"/> | |
248 | + <bool key="NSEnabled">YES</bool> | |
249 | + <bool key="NSIsBordered">YES</bool> | |
250 | + <object class="NSColor" key="NSColor"> | |
251 | + <int key="NSColorSpace">1</int> | |
252 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
253 | + </object> | |
254 | + </object> | |
255 | + <object class="NSTextField" id="243590639"> | |
256 | + <reference key="NSNextResponder" ref="817857893"/> | |
257 | + <int key="NSvFlags">268</int> | |
258 | + <string key="NSFrame">{{130, 148}, {269, 17}}</string> | |
259 | + <reference key="NSSuperview" ref="817857893"/> | |
260 | + <bool key="NSEnabled">YES</bool> | |
261 | + <object class="NSTextFieldCell" key="NSCell" id="240476847"> | |
262 | + <int key="NSCellFlags">67239488</int> | |
263 | + <int key="NSCellFlags2">4195328</int> | |
264 | + <string key="NSContents">Preview</string> | |
265 | + <reference key="NSSupport" ref="512091146"/> | |
266 | + <reference key="NSControlView" ref="243590639"/> | |
267 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
268 | + <reference key="NSTextColor" ref="1051709067"/> | |
269 | + </object> | |
270 | + </object> | |
271 | + <object class="NSColorWell" id="53807495"> | |
272 | + <reference key="NSNextResponder" ref="817857893"/> | |
273 | + <int key="NSvFlags">268</int> | |
274 | + <object class="NSMutableSet" key="NSDragTypes"> | |
275 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
276 | + <object class="NSArray" key="set.sortedObjects"> | |
277 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
278 | + <string>NSColor pasteboard type</string> | |
279 | + </object> | |
280 | + </object> | |
281 | + <string key="NSFrame">{{493, 86}, {44, 23}}</string> | |
282 | + <reference key="NSSuperview" ref="817857893"/> | |
283 | + <bool key="NSEnabled">YES</bool> | |
284 | + <bool key="NSIsBordered">YES</bool> | |
285 | + <object class="NSColor" key="NSColor"> | |
286 | + <int key="NSColorSpace">1</int> | |
287 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
288 | + </object> | |
289 | + </object> | |
290 | + <object class="NSTextField" id="657214614"> | |
291 | + <reference key="NSNextResponder" ref="817857893"/> | |
292 | + <int key="NSvFlags">268</int> | |
293 | + <string key="NSFrame">{{402, 148}, {71, 17}}</string> | |
294 | + <reference key="NSSuperview" ref="817857893"/> | |
295 | + <bool key="NSEnabled">YES</bool> | |
296 | + <object class="NSTextFieldCell" key="NSCell" id="412247004"> | |
297 | + <int key="NSCellFlags">67239488</int> | |
298 | + <int key="NSCellFlags2">205521920</int> | |
299 | + <string key="NSContents">Top Color</string> | |
300 | + <reference key="NSSupport" ref="512091146"/> | |
301 | + <reference key="NSControlView" ref="657214614"/> | |
302 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
303 | + <reference key="NSTextColor" ref="1051709067"/> | |
304 | + </object> | |
305 | + </object> | |
306 | + <object class="NSCustomView" id="738906991"> | |
307 | + <reference key="NSNextResponder" ref="817857893"/> | |
308 | + <int key="NSvFlags">268</int> | |
309 | + <string key="NSFrame">{{133, 56}, {263, 22}}</string> | |
310 | + <reference key="NSSuperview" ref="817857893"/> | |
311 | + <string key="NSClassName">BSCSTitleRulerImitation</string> | |
312 | + </object> | |
313 | + <object class="NSColorWell" id="137565368"> | |
314 | + <reference key="NSNextResponder" ref="817857893"/> | |
315 | + <int key="NSvFlags">268</int> | |
316 | + <object class="NSMutableSet" key="NSDragTypes"> | |
317 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
318 | + <object class="NSArray" key="set.sortedObjects"> | |
319 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
320 | + <string>NSColor pasteboard type</string> | |
321 | + </object> | |
322 | + </object> | |
323 | + <string key="NSFrame">{{426, 55}, {44, 23}}</string> | |
324 | + <reference key="NSSuperview" ref="817857893"/> | |
325 | + <bool key="NSEnabled">YES</bool> | |
326 | + <bool key="NSIsBordered">YES</bool> | |
327 | + <object class="NSColor" key="NSColor"> | |
328 | + <int key="NSColorSpace">1</int> | |
329 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
330 | + </object> | |
331 | + </object> | |
332 | + <object class="NSButton" id="567074835"> | |
333 | + <reference key="NSNextResponder" ref="817857893"/> | |
334 | + <int key="NSvFlags">268</int> | |
335 | + <string key="NSFrame">{{441, 16}, {98, 18}}</string> | |
336 | + <reference key="NSSuperview" ref="817857893"/> | |
337 | + <bool key="NSEnabled">YES</bool> | |
338 | + <object class="NSButtonCell" key="NSCell" id="1004934945"> | |
339 | + <int key="NSCellFlags">-2080244224</int> | |
340 | + <int key="NSCellFlags2">0</int> | |
341 | + <string key="NSContents">Carved Text</string> | |
342 | + <reference key="NSSupport" ref="512091146"/> | |
343 | + <reference key="NSControlView" ref="567074835"/> | |
344 | + <int key="NSButtonFlags">1211912703</int> | |
345 | + <int key="NSButtonFlags2">2</int> | |
346 | + <object class="NSCustomResource" key="NSNormalImage" id="983523388"> | |
347 | + <string key="NSClassName">NSImage</string> | |
348 | + <string key="NSResourceName">NSSwitch</string> | |
349 | + </object> | |
350 | + <object class="NSButtonImageSource" key="NSAlternateImage" id="913480516"> | |
351 | + <string key="NSImageName">NSSwitch</string> | |
352 | + </object> | |
353 | + <string key="NSAlternateContents"/> | |
354 | + <string key="NSKeyEquivalent"/> | |
355 | + <int key="NSPeriodicDelay">200</int> | |
356 | + <int key="NSPeriodicInterval">25</int> | |
357 | + </object> | |
358 | + </object> | |
359 | + <object class="NSButton" id="44057677"> | |
360 | + <reference key="NSNextResponder" ref="817857893"/> | |
361 | + <int key="NSvFlags">268</int> | |
362 | + <string key="NSFrame">{{131, 16}, {148, 18}}</string> | |
363 | + <reference key="NSSuperview" ref="817857893"/> | |
364 | + <bool key="NSEnabled">YES</bool> | |
365 | + <object class="NSButtonCell" key="NSCell" id="649231687"> | |
366 | + <int key="NSCellFlags">-2080244224</int> | |
367 | + <int key="NSCellFlags2">0</int> | |
368 | + <string key="NSContents">Bottom Edge Border</string> | |
369 | + <reference key="NSSupport" ref="512091146"/> | |
370 | + <reference key="NSControlView" ref="44057677"/> | |
371 | + <int key="NSButtonFlags">1211912703</int> | |
372 | + <int key="NSButtonFlags2">2</int> | |
373 | + <reference key="NSNormalImage" ref="983523388"/> | |
374 | + <reference key="NSAlternateImage" ref="913480516"/> | |
375 | + <string key="NSAlternateContents"/> | |
376 | + <string key="NSKeyEquivalent"/> | |
377 | + <int key="NSPeriodicDelay">200</int> | |
378 | + <int key="NSPeriodicInterval">25</int> | |
379 | + </object> | |
380 | + </object> | |
381 | + <object class="NSTextField" id="654479626"> | |
382 | + <reference key="NSNextResponder" ref="817857893"/> | |
383 | + <int key="NSvFlags">268</int> | |
384 | + <string key="NSFrame">{{478, 148}, {71, 17}}</string> | |
385 | + <reference key="NSSuperview" ref="817857893"/> | |
386 | + <bool key="NSEnabled">YES</bool> | |
387 | + <object class="NSTextFieldCell" key="NSCell" id="1016894678"> | |
388 | + <int key="NSCellFlags">67239488</int> | |
389 | + <int key="NSCellFlags2">205521920</int> | |
390 | + <string key="NSContents">Bot. Color</string> | |
391 | + <reference key="NSSupport" ref="512091146"/> | |
392 | + <reference key="NSControlView" ref="654479626"/> | |
393 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
394 | + <reference key="NSTextColor" ref="1051709067"/> | |
395 | + </object> | |
396 | + </object> | |
397 | + </object> | |
398 | + <string key="NSFrame">{{1, 1}, {560, 175}}</string> | |
399 | + <reference key="NSSuperview" ref="777296115"/> | |
400 | + </object> | |
401 | + </object> | |
402 | + <string key="NSFrame">{{8, 121}, {562, 191}}</string> | |
403 | + <reference key="NSSuperview" ref="962496858"/> | |
404 | + <string key="NSOffsets">{0, 0}</string> | |
405 | + <object class="NSTextFieldCell" key="NSTitleCell"> | |
406 | + <int key="NSCellFlags">67239424</int> | |
407 | + <int key="NSCellFlags2">0</int> | |
408 | + <string key="NSContents">Thread Title</string> | |
409 | + <object class="NSFont" key="NSSupport" id="26"> | |
410 | + <string key="NSName">LucidaGrande</string> | |
411 | + <double key="NSSize">11</double> | |
412 | + <int key="NSfFlags">3088</int> | |
413 | + </object> | |
414 | + <object class="NSColor" key="NSBackgroundColor" id="221747337"> | |
415 | + <int key="NSColorSpace">6</int> | |
416 | + <string key="NSCatalogName">System</string> | |
417 | + <string key="NSColorName">textBackgroundColor</string> | |
418 | + <object class="NSColor" key="NSColor"> | |
419 | + <int key="NSColorSpace">3</int> | |
420 | + <bytes key="NSWhite">MQA</bytes> | |
421 | + </object> | |
422 | + </object> | |
423 | + <object class="NSColor" key="NSTextColor"> | |
424 | + <int key="NSColorSpace">3</int> | |
425 | + <bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes> | |
426 | + </object> | |
427 | + </object> | |
428 | + <reference key="NSContentView" ref="817857893"/> | |
429 | + <int key="NSBorderType">1</int> | |
430 | + <int key="NSBoxType">0</int> | |
431 | + <int key="NSTitlePosition">2</int> | |
432 | + <bool key="NSTransparent">NO</bool> | |
433 | + </object> | |
434 | + <object class="NSBox" id="992675584"> | |
435 | + <reference key="NSNextResponder" ref="962496858"/> | |
436 | + <int key="NSvFlags">292</int> | |
437 | + <object class="NSMutableArray" key="NSSubviews"> | |
438 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
439 | + <object class="NSView" id="776418830"> | |
440 | + <reference key="NSNextResponder" ref="992675584"/> | |
441 | + <int key="NSvFlags">274</int> | |
442 | + <object class="NSMutableArray" key="NSSubviews"> | |
443 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
444 | + <object class="NSTextField" id="15239345"> | |
445 | + <reference key="NSNextResponder" ref="776418830"/> | |
446 | + <int key="NSvFlags">268</int> | |
447 | + <string key="NSFrame">{{295, 23}, {71, 17}}</string> | |
448 | + <reference key="NSSuperview" ref="776418830"/> | |
449 | + <bool key="NSEnabled">YES</bool> | |
450 | + <object class="NSTextFieldCell" key="NSCell" id="427485349"> | |
451 | + <int key="NSCellFlags">67239488</int> | |
452 | + <int key="NSCellFlags2">71304192</int> | |
453 | + <string key="NSContents">Color:</string> | |
454 | + <reference key="NSSupport" ref="512091146"/> | |
455 | + <reference key="NSControlView" ref="15239345"/> | |
456 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
457 | + <reference key="NSTextColor" ref="1051709067"/> | |
458 | + </object> | |
459 | + </object> | |
460 | + <object class="NSColorWell" id="543864883"> | |
461 | + <reference key="NSNextResponder" ref="776418830"/> | |
462 | + <int key="NSvFlags">268</int> | |
463 | + <object class="NSMutableSet" key="NSDragTypes"> | |
464 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
465 | + <object class="NSArray" key="set.sortedObjects"> | |
466 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
467 | + <string>NSColor pasteboard type</string> | |
468 | + </object> | |
469 | + </object> | |
470 | + <string key="NSFrame">{{371, 20}, {44, 23}}</string> | |
471 | + <reference key="NSSuperview" ref="776418830"/> | |
472 | + <bool key="NSEnabled">YES</bool> | |
473 | + <bool key="NSIsBordered">YES</bool> | |
474 | + <object class="NSColor" key="NSColor"> | |
475 | + <int key="NSColorSpace">1</int> | |
476 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
477 | + </object> | |
478 | + </object> | |
479 | + <object class="NSTextField" id="66633931"> | |
480 | + <reference key="NSNextResponder" ref="776418830"/> | |
481 | + <int key="NSvFlags">268</int> | |
482 | + <string key="NSFrame">{{24, 58}, {269, 17}}</string> | |
483 | + <reference key="NSSuperview" ref="776418830"/> | |
484 | + <bool key="NSEnabled">YES</bool> | |
485 | + <object class="NSTextFieldCell" key="NSCell" id="1071565879"> | |
486 | + <int key="NSCellFlags">67239488</int> | |
487 | + <int key="NSCellFlags2">4195328</int> | |
488 | + <string key="NSContents">Preview</string> | |
489 | + <reference key="NSSupport" ref="512091146"/> | |
490 | + <reference key="NSControlView" ref="66633931"/> | |
491 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
492 | + <reference key="NSTextColor" ref="1051709067"/> | |
493 | + </object> | |
494 | + </object> | |
495 | + <object class="NSTextField" id="646226052"> | |
496 | + <reference key="NSNextResponder" ref="776418830"/> | |
497 | + <int key="NSvFlags">268</int> | |
498 | + <string key="NSFrame">{{422, 23}, {75, 17}}</string> | |
499 | + <reference key="NSSuperview" ref="776418830"/> | |
500 | + <bool key="NSEnabled">YES</bool> | |
501 | + <object class="NSTextFieldCell" key="NSCell" id="589376907"> | |
502 | + <int key="NSCellFlags">67239488</int> | |
503 | + <int key="NSCellFlags2">71304192</int> | |
504 | + <string key="NSContents">Text Color:</string> | |
505 | + <reference key="NSSupport" ref="512091146"/> | |
506 | + <reference key="NSControlView" ref="646226052"/> | |
507 | + <reference key="NSBackgroundColor" ref="764608540"/> | |
508 | + <reference key="NSTextColor" ref="1051709067"/> | |
509 | + </object> | |
510 | + </object> | |
511 | + <object class="NSCustomView" id="472882167"> | |
512 | + <reference key="NSNextResponder" ref="776418830"/> | |
513 | + <int key="NSvFlags">268</int> | |
514 | + <string key="NSFrame">{{27, 14}, {263, 36}}</string> | |
515 | + <reference key="NSSuperview" ref="776418830"/> | |
516 | + <string key="NSClassName">BSCSTitleRulerImitation</string> | |
517 | + </object> | |
518 | + <object class="NSColorWell" id="393451298"> | |
519 | + <reference key="NSNextResponder" ref="776418830"/> | |
520 | + <int key="NSvFlags">268</int> | |
521 | + <object class="NSMutableSet" key="NSDragTypes"> | |
522 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
523 | + <object class="NSArray" key="set.sortedObjects"> | |
524 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
525 | + <string>NSColor pasteboard type</string> | |
526 | + </object> | |
527 | + </object> | |
528 | + <string key="NSFrame">{{498, 20}, {44, 23}}</string> | |
529 | + <reference key="NSSuperview" ref="776418830"/> | |
530 | + <bool key="NSEnabled">YES</bool> | |
531 | + <bool key="NSIsBordered">YES</bool> | |
532 | + <object class="NSColor" key="NSColor"> | |
533 | + <int key="NSColorSpace">1</int> | |
534 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
535 | + </object> | |
536 | + </object> | |
537 | + </object> | |
538 | + <string key="NSFrame">{{1, 1}, {560, 85}}</string> | |
539 | + <reference key="NSSuperview" ref="992675584"/> | |
540 | + </object> | |
541 | + </object> | |
542 | + <string key="NSFrame">{{8, 16}, {562, 101}}</string> | |
543 | + <reference key="NSSuperview" ref="962496858"/> | |
544 | + <string key="NSOffsets">{0, 0}</string> | |
545 | + <object class="NSTextFieldCell" key="NSTitleCell"> | |
546 | + <int key="NSCellFlags">67239424</int> | |
547 | + <int key="NSCellFlags2">0</int> | |
548 | + <string key="NSContents">Information</string> | |
549 | + <reference key="NSSupport" ref="26"/> | |
550 | + <reference key="NSBackgroundColor" ref="221747337"/> | |
551 | + <object class="NSColor" key="NSTextColor"> | |
552 | + <int key="NSColorSpace">3</int> | |
553 | + <bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes> | |
554 | + </object> | |
555 | + </object> | |
556 | + <reference key="NSContentView" ref="776418830"/> | |
557 | + <int key="NSBorderType">1</int> | |
558 | + <int key="NSBoxType">0</int> | |
559 | + <int key="NSTitlePosition">2</int> | |
560 | + <bool key="NSTransparent">NO</bool> | |
561 | + </object> | |
562 | + </object> | |
563 | + <string key="NSFrameSize">{587, 322}</string> | |
564 | + <reference key="NSSuperview"/> | |
565 | + </object> | |
566 | + <string key="NSScreenRect">{{0, 0}, {1280, 832}}</string> | |
567 | + <string key="NSMinSize">{94, 108}</string> | |
568 | + <string key="NSMaxSize">{3.4028235e+38, 3.4028235e+38}</string> | |
569 | + <bool key="NSWindowIsRestorable">YES</bool> | |
570 | + </object> | |
571 | + </object> | |
572 | + <object class="IBObjectContainer" key="IBDocument.Objects"> | |
573 | + <object class="NSMutableArray" key="connectionRecords"> | |
574 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
575 | + <object class="IBConnectionRecord"> | |
576 | + <object class="IBOutletConnection" key="connection"> | |
577 | + <string key="label">delegate</string> | |
578 | + <reference key="source" ref="234317799"/> | |
579 | + <reference key="destination" ref="557005226"/> | |
580 | + </object> | |
581 | + <int key="connectionID">17</int> | |
582 | + </object> | |
583 | + <object class="IBConnectionRecord"> | |
584 | + <object class="IBOutletConnection" key="connection"> | |
585 | + <string key="label">window</string> | |
586 | + <reference key="source" ref="557005226"/> | |
587 | + <reference key="destination" ref="234317799"/> | |
588 | + </object> | |
589 | + <int key="connectionID">18</int> | |
590 | + </object> | |
591 | + <object class="IBConnectionRecord"> | |
592 | + <object class="IBBindingConnection" key="connection"> | |
593 | + <string key="label">value: appearance.activeBlueStartColor</string> | |
594 | + <reference key="source" ref="77093498"/> | |
595 | + <reference key="destination" ref="557005226"/> | |
596 | + <object class="NSNibBindingConnector" key="connector"> | |
597 | + <reference key="NSSource" ref="77093498"/> | |
598 | + <reference key="NSDestination" ref="557005226"/> | |
599 | + <string key="NSLabel">value: appearance.activeBlueStartColor</string> | |
600 | + <string key="NSBinding">value</string> | |
601 | + <string key="NSKeyPath">appearance.activeBlueStartColor</string> | |
602 | + <int key="NSNibBindingConnectorVersion">2</int> | |
603 | + </object> | |
604 | + </object> | |
605 | + <int key="connectionID">100028</int> | |
606 | + </object> | |
607 | + <object class="IBConnectionRecord"> | |
608 | + <object class="IBBindingConnection" key="connection"> | |
609 | + <string key="label">value: appearance.activeBlueEndColor</string> | |
610 | + <reference key="source" ref="17797058"/> | |
611 | + <reference key="destination" ref="557005226"/> | |
612 | + <object class="NSNibBindingConnector" key="connector"> | |
613 | + <reference key="NSSource" ref="17797058"/> | |
614 | + <reference key="NSDestination" ref="557005226"/> | |
615 | + <string key="NSLabel">value: appearance.activeBlueEndColor</string> | |
616 | + <string key="NSBinding">value</string> | |
617 | + <string key="NSKeyPath">appearance.activeBlueEndColor</string> | |
618 | + <int key="NSNibBindingConnectorVersion">2</int> | |
619 | + </object> | |
620 | + </object> | |
621 | + <int key="connectionID">100029</int> | |
622 | + </object> | |
623 | + <object class="IBConnectionRecord"> | |
624 | + <object class="IBOutletConnection" key="connection"> | |
625 | + <string key="label">blueActiveView</string> | |
626 | + <reference key="source" ref="557005226"/> | |
627 | + <reference key="destination" ref="151849338"/> | |
628 | + </object> | |
629 | + <int key="connectionID">100030</int> | |
630 | + </object> | |
631 | + <object class="IBConnectionRecord"> | |
632 | + <object class="IBBindingConnection" key="connection"> | |
633 | + <string key="label">value: appearance.textColor</string> | |
634 | + <reference key="source" ref="350255202"/> | |
635 | + <reference key="destination" ref="557005226"/> | |
636 | + <object class="NSNibBindingConnector" key="connector"> | |
637 | + <reference key="NSSource" ref="350255202"/> | |
638 | + <reference key="NSDestination" ref="557005226"/> | |
639 | + <string key="NSLabel">value: appearance.textColor</string> | |
640 | + <string key="NSBinding">value</string> | |
641 | + <string key="NSKeyPath">appearance.textColor</string> | |
642 | + <int key="NSNibBindingConnectorVersion">2</int> | |
643 | + </object> | |
644 | + </object> | |
645 | + <int key="connectionID">100033</int> | |
646 | + </object> | |
647 | + <object class="IBConnectionRecord"> | |
648 | + <object class="IBBindingConnection" key="connection"> | |
649 | + <string key="label">value: appearance.infoColor</string> | |
650 | + <reference key="source" ref="393451298"/> | |
651 | + <reference key="destination" ref="557005226"/> | |
652 | + <object class="NSNibBindingConnector" key="connector"> | |
653 | + <reference key="NSSource" ref="393451298"/> | |
654 | + <reference key="NSDestination" ref="557005226"/> | |
655 | + <string key="NSLabel">value: appearance.infoColor</string> | |
656 | + <string key="NSBinding">value</string> | |
657 | + <string key="NSKeyPath">appearance.infoColor</string> | |
658 | + <int key="NSNibBindingConnectorVersion">2</int> | |
659 | + </object> | |
660 | + </object> | |
661 | + <int key="connectionID">100034</int> | |
662 | + </object> | |
663 | + <object class="IBConnectionRecord"> | |
664 | + <object class="IBBindingConnection" key="connection"> | |
665 | + <string key="label">value: appearance.drawsCarvedText</string> | |
666 | + <reference key="source" ref="567074835"/> | |
667 | + <reference key="destination" ref="557005226"/> | |
668 | + <object class="NSNibBindingConnector" key="connector"> | |
669 | + <reference key="NSSource" ref="567074835"/> | |
670 | + <reference key="NSDestination" ref="557005226"/> | |
671 | + <string key="NSLabel">value: appearance.drawsCarvedText</string> | |
672 | + <string key="NSBinding">value</string> | |
673 | + <string key="NSKeyPath">appearance.drawsCarvedText</string> | |
674 | + <int key="NSNibBindingConnectorVersion">2</int> | |
675 | + </object> | |
676 | + </object> | |
677 | + <int key="connectionID">100037</int> | |
678 | + </object> | |
679 | + <object class="IBConnectionRecord"> | |
680 | + <object class="IBBindingConnection" key="connection"> | |
681 | + <string key="label">value: appearance.activeGraphiteStartColor</string> | |
682 | + <reference key="source" ref="40602373"/> | |
683 | + <reference key="destination" ref="557005226"/> | |
684 | + <object class="NSNibBindingConnector" key="connector"> | |
685 | + <reference key="NSSource" ref="40602373"/> | |
686 | + <reference key="NSDestination" ref="557005226"/> | |
687 | + <string key="NSLabel">value: appearance.activeGraphiteStartColor</string> | |
688 | + <string key="NSBinding">value</string> | |
689 | + <string key="NSKeyPath">appearance.activeGraphiteStartColor</string> | |
690 | + <int key="NSNibBindingConnectorVersion">2</int> | |
691 | + </object> | |
692 | + </object> | |
693 | + <int key="connectionID">100045</int> | |
694 | + </object> | |
695 | + <object class="IBConnectionRecord"> | |
696 | + <object class="IBBindingConnection" key="connection"> | |
697 | + <string key="label">value: appearance.activeGraphiteEndColor</string> | |
698 | + <reference key="source" ref="53807495"/> | |
699 | + <reference key="destination" ref="557005226"/> | |
700 | + <object class="NSNibBindingConnector" key="connector"> | |
701 | + <reference key="NSSource" ref="53807495"/> | |
702 | + <reference key="NSDestination" ref="557005226"/> | |
703 | + <string key="NSLabel">value: appearance.activeGraphiteEndColor</string> | |
704 | + <string key="NSBinding">value</string> | |
705 | + <string key="NSKeyPath">appearance.activeGraphiteEndColor</string> | |
706 | + <int key="NSNibBindingConnectorVersion">2</int> | |
707 | + </object> | |
708 | + </object> | |
709 | + <int key="connectionID">100046</int> | |
710 | + </object> | |
711 | + <object class="IBConnectionRecord"> | |
712 | + <object class="IBBindingConnection" key="connection"> | |
713 | + <string key="label">value: appearance.inactiveStartColor</string> | |
714 | + <reference key="source" ref="137565368"/> | |
715 | + <reference key="destination" ref="557005226"/> | |
716 | + <object class="NSNibBindingConnector" key="connector"> | |
717 | + <reference key="NSSource" ref="137565368"/> | |
718 | + <reference key="NSDestination" ref="557005226"/> | |
719 | + <string key="NSLabel">value: appearance.inactiveStartColor</string> | |
720 | + <string key="NSBinding">value</string> | |
721 | + <string key="NSKeyPath">appearance.inactiveStartColor</string> | |
722 | + <int key="NSNibBindingConnectorVersion">2</int> | |
723 | + </object> | |
724 | + </object> | |
725 | + <int key="connectionID">100047</int> | |
726 | + </object> | |
727 | + <object class="IBConnectionRecord"> | |
728 | + <object class="IBBindingConnection" key="connection"> | |
729 | + <string key="label">value: appearance.inactiveEndColor</string> | |
730 | + <reference key="source" ref="782015452"/> | |
731 | + <reference key="destination" ref="557005226"/> | |
732 | + <object class="NSNibBindingConnector" key="connector"> | |
733 | + <reference key="NSSource" ref="782015452"/> | |
734 | + <reference key="NSDestination" ref="557005226"/> | |
735 | + <string key="NSLabel">value: appearance.inactiveEndColor</string> | |
736 | + <string key="NSBinding">value</string> | |
737 | + <string key="NSKeyPath">appearance.inactiveEndColor</string> | |
738 | + <int key="NSNibBindingConnectorVersion">2</int> | |
739 | + </object> | |
740 | + </object> | |
741 | + <int key="connectionID">100048</int> | |
742 | + </object> | |
743 | + <object class="IBConnectionRecord"> | |
744 | + <object class="IBOutletConnection" key="connection"> | |
745 | + <string key="label">graphiteActiveView</string> | |
746 | + <reference key="source" ref="557005226"/> | |
747 | + <reference key="destination" ref="565897641"/> | |
748 | + </object> | |
749 | + <int key="connectionID">100049</int> | |
750 | + </object> | |
751 | + <object class="IBConnectionRecord"> | |
752 | + <object class="IBOutletConnection" key="connection"> | |
753 | + <string key="label">inactiveView</string> | |
754 | + <reference key="source" ref="557005226"/> | |
755 | + <reference key="destination" ref="738906991"/> | |
756 | + </object> | |
757 | + <int key="connectionID">100050</int> | |
758 | + </object> | |
759 | + <object class="IBConnectionRecord"> | |
760 | + <object class="IBOutletConnection" key="connection"> | |
761 | + <string key="label">infoView</string> | |
762 | + <reference key="source" ref="557005226"/> | |
763 | + <reference key="destination" ref="472882167"/> | |
764 | + </object> | |
765 | + <int key="connectionID">100051</int> | |
766 | + </object> | |
767 | + <object class="IBConnectionRecord"> | |
768 | + <object class="IBBindingConnection" key="connection"> | |
769 | + <string key="label">value: appearance.infoBackgroundColor</string> | |
770 | + <reference key="source" ref="543864883"/> | |
771 | + <reference key="destination" ref="557005226"/> | |
772 | + <object class="NSNibBindingConnector" key="connector"> | |
773 | + <reference key="NSSource" ref="543864883"/> | |
774 | + <reference key="NSDestination" ref="557005226"/> | |
775 | + <string key="NSLabel">value: appearance.infoBackgroundColor</string> | |
776 | + <string key="NSBinding">value</string> | |
777 | + <string key="NSKeyPath">appearance.infoBackgroundColor</string> | |
778 | + <int key="NSNibBindingConnectorVersion">2</int> | |
779 | + </object> | |
780 | + </object> | |
781 | + <int key="connectionID">100054</int> | |
782 | + </object> | |
783 | + <object class="IBConnectionRecord"> | |
784 | + <object class="IBBindingConnection" key="connection"> | |
785 | + <string key="label">value: appearance.drawsBottomBorder</string> | |
786 | + <reference key="source" ref="44057677"/> | |
787 | + <reference key="destination" ref="557005226"/> | |
788 | + <object class="NSNibBindingConnector" key="connector"> | |
789 | + <reference key="NSSource" ref="44057677"/> | |
790 | + <reference key="NSDestination" ref="557005226"/> | |
791 | + <string key="NSLabel">value: appearance.drawsBottomBorder</string> | |
792 | + <string key="NSBinding">value</string> | |
793 | + <string key="NSKeyPath">appearance.drawsBottomBorder</string> | |
794 | + <int key="NSNibBindingConnectorVersion">2</int> | |
795 | + </object> | |
796 | + </object> | |
797 | + <int key="connectionID">100096</int> | |
798 | + </object> | |
799 | + <object class="IBConnectionRecord"> | |
800 | + <object class="IBOutletConnection" key="connection"> | |
801 | + <string key="label">textColorLabel</string> | |
802 | + <reference key="source" ref="557005226"/> | |
803 | + <reference key="destination" ref="434527974"/> | |
804 | + </object> | |
805 | + <int key="connectionID">100097</int> | |
806 | + </object> | |
807 | + <object class="IBConnectionRecord"> | |
808 | + <object class="IBOutletConnection" key="connection"> | |
809 | + <string key="label">textColorWell</string> | |
810 | + <reference key="source" ref="557005226"/> | |
811 | + <reference key="destination" ref="350255202"/> | |
812 | + </object> | |
813 | + <int key="connectionID">100098</int> | |
814 | + </object> | |
815 | + </object> | |
816 | + <object class="IBMutableOrderedSet" key="objectRecords"> | |
817 | + <object class="NSArray" key="orderedObjects"> | |
818 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
819 | + <object class="IBObjectRecord"> | |
820 | + <int key="objectID">0</int> | |
821 | + <object class="NSArray" key="object" id="0"> | |
822 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
823 | + </object> | |
824 | + <reference key="children" ref="519010005"/> | |
825 | + <nil key="parent"/> | |
826 | + </object> | |
827 | + <object class="IBObjectRecord"> | |
828 | + <int key="objectID">-2</int> | |
829 | + <reference key="object" ref="557005226"/> | |
830 | + <reference key="parent" ref="0"/> | |
831 | + <string key="objectName">File's Owner</string> | |
832 | + </object> | |
833 | + <object class="IBObjectRecord"> | |
834 | + <int key="objectID">-1</int> | |
835 | + <reference key="object" ref="907409142"/> | |
836 | + <reference key="parent" ref="0"/> | |
837 | + <string key="objectName">First Responder</string> | |
838 | + </object> | |
839 | + <object class="IBObjectRecord"> | |
840 | + <int key="objectID">-3</int> | |
841 | + <reference key="object" ref="787454523"/> | |
842 | + <reference key="parent" ref="0"/> | |
843 | + <string key="objectName">Application</string> | |
844 | + </object> | |
845 | + <object class="IBObjectRecord"> | |
846 | + <int key="objectID">5</int> | |
847 | + <reference key="object" ref="234317799"/> | |
848 | + <object class="NSMutableArray" key="children"> | |
849 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
850 | + <reference ref="962496858"/> | |
851 | + </object> | |
852 | + <reference key="parent" ref="0"/> | |
853 | + <string key="objectName">Window</string> | |
854 | + </object> | |
855 | + <object class="IBObjectRecord"> | |
856 | + <int key="objectID">6</int> | |
857 | + <reference key="object" ref="962496858"/> | |
858 | + <object class="NSMutableArray" key="children"> | |
859 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
860 | + <reference ref="777296115"/> | |
861 | + <reference ref="992675584"/> | |
862 | + </object> | |
863 | + <reference key="parent" ref="234317799"/> | |
864 | + </object> | |
865 | + <object class="IBObjectRecord"> | |
866 | + <int key="objectID">100075</int> | |
867 | + <reference key="object" ref="777296115"/> | |
868 | + <object class="NSMutableArray" key="children"> | |
869 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
870 | + <reference ref="741414079"/> | |
871 | + <reference ref="601342623"/> | |
872 | + <reference ref="853846836"/> | |
873 | + <reference ref="565897641"/> | |
874 | + <reference ref="77093498"/> | |
875 | + <reference ref="17797058"/> | |
876 | + <reference ref="40602373"/> | |
877 | + <reference ref="151849338"/> | |
878 | + <reference ref="782015452"/> | |
879 | + <reference ref="243590639"/> | |
880 | + <reference ref="53807495"/> | |
881 | + <reference ref="657214614"/> | |
882 | + <reference ref="738906991"/> | |
883 | + <reference ref="137565368"/> | |
884 | + <reference ref="654479626"/> | |
885 | + <reference ref="350255202"/> | |
886 | + <reference ref="434527974"/> | |
887 | + <reference ref="567074835"/> | |
888 | + <reference ref="44057677"/> | |
889 | + </object> | |
890 | + <reference key="parent" ref="962496858"/> | |
891 | + </object> | |
892 | + <object class="IBObjectRecord"> | |
893 | + <int key="objectID">100077</int> | |
894 | + <reference key="object" ref="992675584"/> | |
895 | + <object class="NSMutableArray" key="children"> | |
896 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
897 | + <reference ref="15239345"/> | |
898 | + <reference ref="543864883"/> | |
899 | + <reference ref="66633931"/> | |
900 | + <reference ref="646226052"/> | |
901 | + <reference ref="472882167"/> | |
902 | + <reference ref="393451298"/> | |
903 | + </object> | |
904 | + <reference key="parent" ref="962496858"/> | |
905 | + </object> | |
906 | + <object class="IBObjectRecord"> | |
907 | + <int key="objectID">100055</int> | |
908 | + <reference key="object" ref="741414079"/> | |
909 | + <object class="NSMutableArray" key="children"> | |
910 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
911 | + <reference ref="102480796"/> | |
912 | + </object> | |
913 | + <reference key="parent" ref="777296115"/> | |
914 | + </object> | |
915 | + <object class="IBObjectRecord"> | |
916 | + <int key="objectID">100083</int> | |
917 | + <reference key="object" ref="102480796"/> | |
918 | + <reference key="parent" ref="741414079"/> | |
919 | + </object> | |
920 | + <object class="IBObjectRecord"> | |
921 | + <int key="objectID">100059</int> | |
922 | + <reference key="object" ref="601342623"/> | |
923 | + <object class="NSMutableArray" key="children"> | |
924 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
925 | + <reference ref="400740154"/> | |
926 | + </object> | |
927 | + <reference key="parent" ref="777296115"/> | |
928 | + </object> | |
929 | + <object class="IBObjectRecord"> | |
930 | + <int key="objectID">100085</int> | |
931 | + <reference key="object" ref="400740154"/> | |
932 | + <reference key="parent" ref="601342623"/> | |
933 | + </object> | |
934 | + <object class="IBObjectRecord"> | |
935 | + <int key="objectID">100031</int> | |
936 | + <reference key="object" ref="350255202"/> | |
937 | + <reference key="parent" ref="777296115"/> | |
938 | + </object> | |
939 | + <object class="IBObjectRecord"> | |
940 | + <int key="objectID">100057</int> | |
941 | + <reference key="object" ref="853846836"/> | |
942 | + <object class="NSMutableArray" key="children"> | |
943 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
944 | + <reference ref="831511200"/> | |
945 | + </object> | |
946 | + <reference key="parent" ref="777296115"/> | |
947 | + </object> | |
948 | + <object class="IBObjectRecord"> | |
949 | + <int key="objectID">100084</int> | |
950 | + <reference key="object" ref="831511200"/> | |
951 | + <reference key="parent" ref="853846836"/> | |
952 | + </object> | |
953 | + <object class="IBObjectRecord"> | |
954 | + <int key="objectID">100038</int> | |
955 | + <reference key="object" ref="565897641"/> | |
956 | + <reference key="parent" ref="777296115"/> | |
957 | + </object> | |
958 | + <object class="IBObjectRecord"> | |
959 | + <int key="objectID">100027</int> | |
960 | + <reference key="object" ref="77093498"/> | |
961 | + <reference key="parent" ref="777296115"/> | |
962 | + </object> | |
963 | + <object class="IBObjectRecord"> | |
964 | + <int key="objectID">100026</int> | |
965 | + <reference key="object" ref="17797058"/> | |
966 | + <reference key="parent" ref="777296115"/> | |
967 | + </object> | |
968 | + <object class="IBObjectRecord"> | |
969 | + <int key="objectID">100061</int> | |
970 | + <reference key="object" ref="434527974"/> | |
971 | + <object class="NSMutableArray" key="children"> | |
972 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
973 | + <reference ref="12260361"/> | |
974 | + </object> | |
975 | + <reference key="parent" ref="777296115"/> | |
976 | + </object> | |
977 | + <object class="IBObjectRecord"> | |
978 | + <int key="objectID">100086</int> | |
979 | + <reference key="object" ref="12260361"/> | |
980 | + <reference key="parent" ref="434527974"/> | |
981 | + </object> | |
982 | + <object class="IBObjectRecord"> | |
983 | + <int key="objectID">100041</int> | |
984 | + <reference key="object" ref="40602373"/> | |
985 | + <reference key="parent" ref="777296115"/> | |
986 | + </object> | |
987 | + <object class="IBObjectRecord"> | |
988 | + <int key="objectID">100025</int> | |
989 | + <reference key="object" ref="151849338"/> | |
990 | + <reference key="parent" ref="777296115"/> | |
991 | + </object> | |
992 | + <object class="IBObjectRecord"> | |
993 | + <int key="objectID">100044</int> | |
994 | + <reference key="object" ref="782015452"/> | |
995 | + <reference key="parent" ref="777296115"/> | |
996 | + </object> | |
997 | + <object class="IBObjectRecord"> | |
998 | + <int key="objectID">100063</int> | |
999 | + <reference key="object" ref="243590639"/> | |
1000 | + <object class="NSMutableArray" key="children"> | |
1001 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1002 | + <reference ref="240476847"/> | |
1003 | + </object> | |
1004 | + <reference key="parent" ref="777296115"/> | |
1005 | + </object> | |
1006 | + <object class="IBObjectRecord"> | |
1007 | + <int key="objectID">100087</int> | |
1008 | + <reference key="object" ref="240476847"/> | |
1009 | + <reference key="parent" ref="243590639"/> | |
1010 | + </object> | |
1011 | + <object class="IBObjectRecord"> | |
1012 | + <int key="objectID">100043</int> | |
1013 | + <reference key="object" ref="53807495"/> | |
1014 | + <reference key="parent" ref="777296115"/> | |
1015 | + </object> | |
1016 | + <object class="IBObjectRecord"> | |
1017 | + <int key="objectID">100065</int> | |
1018 | + <reference key="object" ref="657214614"/> | |
1019 | + <object class="NSMutableArray" key="children"> | |
1020 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1021 | + <reference ref="412247004"/> | |
1022 | + </object> | |
1023 | + <reference key="parent" ref="777296115"/> | |
1024 | + </object> | |
1025 | + <object class="IBObjectRecord"> | |
1026 | + <int key="objectID">100088</int> | |
1027 | + <reference key="object" ref="412247004"/> | |
1028 | + <reference key="parent" ref="657214614"/> | |
1029 | + </object> | |
1030 | + <object class="IBObjectRecord"> | |
1031 | + <int key="objectID">100039</int> | |
1032 | + <reference key="object" ref="738906991"/> | |
1033 | + <reference key="parent" ref="777296115"/> | |
1034 | + </object> | |
1035 | + <object class="IBObjectRecord"> | |
1036 | + <int key="objectID">100042</int> | |
1037 | + <reference key="object" ref="137565368"/> | |
1038 | + <reference key="parent" ref="777296115"/> | |
1039 | + </object> | |
1040 | + <object class="IBObjectRecord"> | |
1041 | + <int key="objectID">100035</int> | |
1042 | + <reference key="object" ref="567074835"/> | |
1043 | + <object class="NSMutableArray" key="children"> | |
1044 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1045 | + <reference ref="1004934945"/> | |
1046 | + </object> | |
1047 | + <reference key="parent" ref="777296115"/> | |
1048 | + </object> | |
1049 | + <object class="IBObjectRecord"> | |
1050 | + <int key="objectID">100082</int> | |
1051 | + <reference key="object" ref="1004934945"/> | |
1052 | + <reference key="parent" ref="567074835"/> | |
1053 | + </object> | |
1054 | + <object class="IBObjectRecord"> | |
1055 | + <int key="objectID">100067</int> | |
1056 | + <reference key="object" ref="654479626"/> | |
1057 | + <object class="NSMutableArray" key="children"> | |
1058 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1059 | + <reference ref="1016894678"/> | |
1060 | + </object> | |
1061 | + <reference key="parent" ref="777296115"/> | |
1062 | + </object> | |
1063 | + <object class="IBObjectRecord"> | |
1064 | + <int key="objectID">100089</int> | |
1065 | + <reference key="object" ref="1016894678"/> | |
1066 | + <reference key="parent" ref="654479626"/> | |
1067 | + </object> | |
1068 | + <object class="IBObjectRecord"> | |
1069 | + <int key="objectID">100071</int> | |
1070 | + <reference key="object" ref="15239345"/> | |
1071 | + <object class="NSMutableArray" key="children"> | |
1072 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1073 | + <reference ref="427485349"/> | |
1074 | + </object> | |
1075 | + <reference key="parent" ref="992675584"/> | |
1076 | + </object> | |
1077 | + <object class="IBObjectRecord"> | |
1078 | + <int key="objectID">100091</int> | |
1079 | + <reference key="object" ref="427485349"/> | |
1080 | + <reference key="parent" ref="15239345"/> | |
1081 | + </object> | |
1082 | + <object class="IBObjectRecord"> | |
1083 | + <int key="objectID">100052</int> | |
1084 | + <reference key="object" ref="543864883"/> | |
1085 | + <reference key="parent" ref="992675584"/> | |
1086 | + </object> | |
1087 | + <object class="IBObjectRecord"> | |
1088 | + <int key="objectID">100069</int> | |
1089 | + <reference key="object" ref="66633931"/> | |
1090 | + <object class="NSMutableArray" key="children"> | |
1091 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1092 | + <reference ref="1071565879"/> | |
1093 | + </object> | |
1094 | + <reference key="parent" ref="992675584"/> | |
1095 | + </object> | |
1096 | + <object class="IBObjectRecord"> | |
1097 | + <int key="objectID">100090</int> | |
1098 | + <reference key="object" ref="1071565879"/> | |
1099 | + <reference key="parent" ref="66633931"/> | |
1100 | + </object> | |
1101 | + <object class="IBObjectRecord"> | |
1102 | + <int key="objectID">100073</int> | |
1103 | + <reference key="object" ref="646226052"/> | |
1104 | + <object class="NSMutableArray" key="children"> | |
1105 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1106 | + <reference ref="589376907"/> | |
1107 | + </object> | |
1108 | + <reference key="parent" ref="992675584"/> | |
1109 | + </object> | |
1110 | + <object class="IBObjectRecord"> | |
1111 | + <int key="objectID">100092</int> | |
1112 | + <reference key="object" ref="589376907"/> | |
1113 | + <reference key="parent" ref="646226052"/> | |
1114 | + </object> | |
1115 | + <object class="IBObjectRecord"> | |
1116 | + <int key="objectID">100040</int> | |
1117 | + <reference key="object" ref="472882167"/> | |
1118 | + <reference key="parent" ref="992675584"/> | |
1119 | + </object> | |
1120 | + <object class="IBObjectRecord"> | |
1121 | + <int key="objectID">100032</int> | |
1122 | + <reference key="object" ref="393451298"/> | |
1123 | + <reference key="parent" ref="992675584"/> | |
1124 | + </object> | |
1125 | + <object class="IBObjectRecord"> | |
1126 | + <int key="objectID">100093</int> | |
1127 | + <reference key="object" ref="44057677"/> | |
1128 | + <object class="NSMutableArray" key="children"> | |
1129 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1130 | + <reference ref="649231687"/> | |
1131 | + </object> | |
1132 | + <reference key="parent" ref="777296115"/> | |
1133 | + </object> | |
1134 | + <object class="IBObjectRecord"> | |
1135 | + <int key="objectID">100094</int> | |
1136 | + <reference key="object" ref="649231687"/> | |
1137 | + <reference key="parent" ref="44057677"/> | |
1138 | + </object> | |
1139 | + </object> | |
1140 | + </object> | |
1141 | + <object class="NSMutableDictionary" key="flattenedProperties"> | |
1142 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1143 | + <object class="NSArray" key="dict.sortedKeys"> | |
1144 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1145 | + <string>-3.IBPluginDependency</string> | |
1146 | + <string>-3.ImportedFromIB2</string> | |
1147 | + <string>100025.IBPluginDependency</string> | |
1148 | + <string>100025.ImportedFromIB2</string> | |
1149 | + <string>100026.IBPluginDependency</string> | |
1150 | + <string>100026.ImportedFromIB2</string> | |
1151 | + <string>100027.IBPluginDependency</string> | |
1152 | + <string>100027.ImportedFromIB2</string> | |
1153 | + <string>100031.IBAttributePlaceholdersKey</string> | |
1154 | + <string>100031.IBPluginDependency</string> | |
1155 | + <string>100031.IBViewBoundsToFrameTransform</string> | |
1156 | + <string>100031.ImportedFromIB2</string> | |
1157 | + <string>100032.IBPluginDependency</string> | |
1158 | + <string>100032.ImportedFromIB2</string> | |
1159 | + <string>100035.IBAttributePlaceholdersKey</string> | |
1160 | + <string>100035.IBPluginDependency</string> | |
1161 | + <string>100035.IBViewBoundsToFrameTransform</string> | |
1162 | + <string>100035.ImportedFromIB2</string> | |
1163 | + <string>100038.IBPluginDependency</string> | |
1164 | + <string>100038.ImportedFromIB2</string> | |
1165 | + <string>100039.IBPluginDependency</string> | |
1166 | + <string>100039.ImportedFromIB2</string> | |
1167 | + <string>100040.IBPluginDependency</string> | |
1168 | + <string>100040.ImportedFromIB2</string> | |
1169 | + <string>100041.IBPluginDependency</string> | |
1170 | + <string>100041.ImportedFromIB2</string> | |
1171 | + <string>100042.IBPluginDependency</string> | |
1172 | + <string>100042.ImportedFromIB2</string> | |
1173 | + <string>100043.IBPluginDependency</string> | |
1174 | + <string>100043.ImportedFromIB2</string> | |
1175 | + <string>100044.IBPluginDependency</string> | |
1176 | + <string>100044.IBViewBoundsToFrameTransform</string> | |
1177 | + <string>100044.ImportedFromIB2</string> | |
1178 | + <string>100052.IBPluginDependency</string> | |
1179 | + <string>100052.ImportedFromIB2</string> | |
1180 | + <string>100055.IBPluginDependency</string> | |
1181 | + <string>100055.ImportedFromIB2</string> | |
1182 | + <string>100057.IBPluginDependency</string> | |
1183 | + <string>100057.ImportedFromIB2</string> | |
1184 | + <string>100059.IBPluginDependency</string> | |
1185 | + <string>100059.ImportedFromIB2</string> | |
1186 | + <string>100061.IBPluginDependency</string> | |
1187 | + <string>100061.IBViewBoundsToFrameTransform</string> | |
1188 | + <string>100061.ImportedFromIB2</string> | |
1189 | + <string>100063.IBPluginDependency</string> | |
1190 | + <string>100063.ImportedFromIB2</string> | |
1191 | + <string>100065.IBPluginDependency</string> | |
1192 | + <string>100065.ImportedFromIB2</string> | |
1193 | + <string>100067.IBPluginDependency</string> | |
1194 | + <string>100067.ImportedFromIB2</string> | |
1195 | + <string>100069.IBPluginDependency</string> | |
1196 | + <string>100069.ImportedFromIB2</string> | |
1197 | + <string>100071.IBPluginDependency</string> | |
1198 | + <string>100071.ImportedFromIB2</string> | |
1199 | + <string>100073.IBPluginDependency</string> | |
1200 | + <string>100073.ImportedFromIB2</string> | |
1201 | + <string>100075.IBPluginDependency</string> | |
1202 | + <string>100075.ImportedFromIB2</string> | |
1203 | + <string>100077.IBPluginDependency</string> | |
1204 | + <string>100077.ImportedFromIB2</string> | |
1205 | + <string>100093.IBPluginDependency</string> | |
1206 | + <string>100093.IBViewBoundsToFrameTransform</string> | |
1207 | + <string>100093.ImportedFromIB2</string> | |
1208 | + <string>5.IBEditorWindowLastContentRect</string> | |
1209 | + <string>5.IBPluginDependency</string> | |
1210 | + <string>5.IBWindowTemplateEditedContentRect</string> | |
1211 | + <string>5.ImportedFromIB2</string> | |
1212 | + <string>5.windowTemplate.hasMinSize</string> | |
1213 | + <string>5.windowTemplate.minSize</string> | |
1214 | + <string>6.IBPluginDependency</string> | |
1215 | + <string>6.ImportedFromIB2</string> | |
1216 | + </object> | |
1217 | + <object class="NSMutableArray" key="dict.values"> | |
1218 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1219 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1220 | + <boolean value="YES"/> | |
1221 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1222 | + <boolean value="YES"/> | |
1223 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1224 | + <boolean value="YES"/> | |
1225 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1226 | + <boolean value="YES"/> | |
1227 | + <object class="NSMutableDictionary"> | |
1228 | + <string key="NS.key.0">ToolTip</string> | |
1229 | + <object class="IBToolTipAttribute" key="NS.object.0"> | |
1230 | + <string key="name">ToolTip</string> | |
1231 | + <reference key="object" ref="350255202"/> | |
1232 | + <string key="toolTip">Ignore Text Color if Carved Text is checked.</string> | |
1233 | + </object> | |
1234 | + </object> | |
1235 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1236 | + <object class="NSAffineTransform"> | |
1237 | + <bytes key="NSTransformStruct">AUNSAABBYAAAA</bytes> | |
1238 | + </object> | |
1239 | + <boolean value="YES"/> | |
1240 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1241 | + <boolean value="YES"/> | |
1242 | + <object class="NSMutableDictionary"> | |
1243 | + <string key="NS.key.0">ToolTip</string> | |
1244 | + <object class="IBToolTipAttribute" key="NS.object.0"> | |
1245 | + <string key="name">ToolTip</string> | |
1246 | + <reference key="object" ref="567074835"/> | |
1247 | + <string key="toolTip">Ignore Text Color if Carved Text is checked.</string> | |
1248 | + </object> | |
1249 | + </object> | |
1250 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1251 | + <object class="NSAffineTransform"> | |
1252 | + <bytes key="NSTransformStruct">P4AAAL+AAABDi4AAwgAAAA</bytes> | |
1253 | + </object> | |
1254 | + <boolean value="YES"/> | |
1255 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1256 | + <boolean value="YES"/> | |
1257 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1258 | + <boolean value="YES"/> | |
1259 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1260 | + <boolean value="YES"/> | |
1261 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1262 | + <boolean value="YES"/> | |
1263 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1264 | + <boolean value="YES"/> | |
1265 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1266 | + <boolean value="YES"/> | |
1267 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1268 | + <object class="NSAffineTransform"> | |
1269 | + <bytes key="NSTransformStruct">AUP2gABCXAAAA</bytes> | |
1270 | + </object> | |
1271 | + <boolean value="YES"/> | |
1272 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1273 | + <boolean value="YES"/> | |
1274 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1275 | + <boolean value="YES"/> | |
1276 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1277 | + <boolean value="YES"/> | |
1278 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1279 | + <boolean value="YES"/> | |
1280 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1281 | + <object class="NSAffineTransform"> | |
1282 | + <bytes key="NSTransformStruct">P4AAAL+AAABDAgAAwgAAAA</bytes> | |
1283 | + </object> | |
1284 | + <boolean value="YES"/> | |
1285 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1286 | + <boolean value="YES"/> | |
1287 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1288 | + <boolean value="YES"/> | |
1289 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1290 | + <boolean value="YES"/> | |
1291 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1292 | + <boolean value="YES"/> | |
1293 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1294 | + <boolean value="YES"/> | |
1295 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1296 | + <boolean value="YES"/> | |
1297 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1298 | + <boolean value="YES"/> | |
1299 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1300 | + <boolean value="YES"/> | |
1301 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1302 | + <object class="NSAffineTransform"> | |
1303 | + <bytes key="NSTransformStruct">P4AAAL+AAABBYAAAwgAAAA</bytes> | |
1304 | + </object> | |
1305 | + <boolean value="YES"/> | |
1306 | + <string>{{38, 526}, {587, 322}}</string> | |
1307 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1308 | + <string>{{38, 526}, {587, 322}}</string> | |
1309 | + <boolean value="YES"/> | |
1310 | + <boolean value="YES"/> | |
1311 | + <string>{94, 86}</string> | |
1312 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1313 | + <boolean value="YES"/> | |
1314 | + </object> | |
1315 | + </object> | |
1316 | + <object class="NSMutableDictionary" key="unlocalizedProperties"> | |
1317 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1318 | + <reference key="dict.sortedKeys" ref="0"/> | |
1319 | + <object class="NSMutableArray" key="dict.values"> | |
1320 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1321 | + </object> | |
1322 | + </object> | |
1323 | + <nil key="activeLocalization"/> | |
1324 | + <object class="NSMutableDictionary" key="localizations"> | |
1325 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1326 | + <reference key="dict.sortedKeys" ref="0"/> | |
1327 | + <object class="NSMutableArray" key="dict.values"> | |
1328 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1329 | + </object> | |
1330 | + </object> | |
1331 | + <nil key="sourceID"/> | |
1332 | + <int key="maxID">100098</int> | |
1333 | + </object> | |
1334 | + <object class="IBClassDescriber" key="IBDocument.Classes"> | |
1335 | + <object class="NSMutableArray" key="referencedPartialClassDescriptions"> | |
1336 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1337 | + <object class="IBPartialClassDescription"> | |
1338 | + <string key="className">BSCSTitleRulerImitation</string> | |
1339 | + <string key="superclassName">NSView</string> | |
1340 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1341 | + <string key="majorKey">IBProjectSource</string> | |
1342 | + <string key="minorKey">BSCSTitleRulerImitation.h</string> | |
1343 | + </object> | |
1344 | + </object> | |
1345 | + <object class="IBPartialClassDescription"> | |
1346 | + <string key="className">BSCSTitleRulerImitation</string> | |
1347 | + <string key="superclassName">NSView</string> | |
1348 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1349 | + <string key="majorKey">IBUserSource</string> | |
1350 | + <string key="minorKey"/> | |
1351 | + </object> | |
1352 | + </object> | |
1353 | + <object class="IBPartialClassDescription"> | |
1354 | + <string key="className">BSTRADocument</string> | |
1355 | + <string key="superclassName">NSDocument</string> | |
1356 | + <object class="NSMutableDictionary" key="actions"> | |
1357 | + <string key="NS.key.0">saveToBSSupportFolder:</string> | |
1358 | + <string key="NS.object.0">id</string> | |
1359 | + </object> | |
1360 | + <object class="NSMutableDictionary" key="actionInfosByName"> | |
1361 | + <string key="NS.key.0">saveToBSSupportFolder:</string> | |
1362 | + <object class="IBActionInfo" key="NS.object.0"> | |
1363 | + <string key="name">saveToBSSupportFolder:</string> | |
1364 | + <string key="candidateClassName">id</string> | |
1365 | + </object> | |
1366 | + </object> | |
1367 | + <object class="NSMutableDictionary" key="outlets"> | |
1368 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1369 | + <object class="NSArray" key="dict.sortedKeys"> | |
1370 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1371 | + <string>blueActiveView</string> | |
1372 | + <string>graphiteActiveView</string> | |
1373 | + <string>inactiveView</string> | |
1374 | + <string>infoView</string> | |
1375 | + <string>textColorLabel</string> | |
1376 | + <string>textColorWell</string> | |
1377 | + </object> | |
1378 | + <object class="NSMutableArray" key="dict.values"> | |
1379 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1380 | + <string>BSCSTitleRulerImitation</string> | |
1381 | + <string>BSCSTitleRulerImitation</string> | |
1382 | + <string>BSCSTitleRulerImitation</string> | |
1383 | + <string>BSCSTitleRulerImitation</string> | |
1384 | + <string>NSTextField</string> | |
1385 | + <string>NSColorWell</string> | |
1386 | + </object> | |
1387 | + </object> | |
1388 | + <object class="NSMutableDictionary" key="toOneOutletInfosByName"> | |
1389 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1390 | + <object class="NSArray" key="dict.sortedKeys"> | |
1391 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1392 | + <string>blueActiveView</string> | |
1393 | + <string>graphiteActiveView</string> | |
1394 | + <string>inactiveView</string> | |
1395 | + <string>infoView</string> | |
1396 | + <string>textColorLabel</string> | |
1397 | + <string>textColorWell</string> | |
1398 | + </object> | |
1399 | + <object class="NSMutableArray" key="dict.values"> | |
1400 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1401 | + <object class="IBToOneOutletInfo"> | |
1402 | + <string key="name">blueActiveView</string> | |
1403 | + <string key="candidateClassName">BSCSTitleRulerImitation</string> | |
1404 | + </object> | |
1405 | + <object class="IBToOneOutletInfo"> | |
1406 | + <string key="name">graphiteActiveView</string> | |
1407 | + <string key="candidateClassName">BSCSTitleRulerImitation</string> | |
1408 | + </object> | |
1409 | + <object class="IBToOneOutletInfo"> | |
1410 | + <string key="name">inactiveView</string> | |
1411 | + <string key="candidateClassName">BSCSTitleRulerImitation</string> | |
1412 | + </object> | |
1413 | + <object class="IBToOneOutletInfo"> | |
1414 | + <string key="name">infoView</string> | |
1415 | + <string key="candidateClassName">BSCSTitleRulerImitation</string> | |
1416 | + </object> | |
1417 | + <object class="IBToOneOutletInfo"> | |
1418 | + <string key="name">textColorLabel</string> | |
1419 | + <string key="candidateClassName">NSTextField</string> | |
1420 | + </object> | |
1421 | + <object class="IBToOneOutletInfo"> | |
1422 | + <string key="name">textColorWell</string> | |
1423 | + <string key="candidateClassName">NSColorWell</string> | |
1424 | + </object> | |
1425 | + </object> | |
1426 | + </object> | |
1427 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1428 | + <string key="majorKey">IBProjectSource</string> | |
1429 | + <string key="minorKey">BSTRADocument.h</string> | |
1430 | + </object> | |
1431 | + </object> | |
1432 | + <object class="IBPartialClassDescription"> | |
1433 | + <string key="className">BSTRADocument</string> | |
1434 | + <string key="superclassName">NSDocument</string> | |
1435 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1436 | + <string key="majorKey">IBUserSource</string> | |
1437 | + <string key="minorKey"/> | |
1438 | + </object> | |
1439 | + </object> | |
1440 | + </object> | |
1441 | + <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+"> | |
1442 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1443 | + <object class="IBPartialClassDescription"> | |
1444 | + <string key="className">NSActionCell</string> | |
1445 | + <string key="superclassName">NSCell</string> | |
1446 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1447 | + <string key="majorKey">IBFrameworkSource</string> | |
1448 | + <string key="minorKey">AppKit.framework/Headers/NSActionCell.h</string> | |
1449 | + </object> | |
1450 | + </object> | |
1451 | + <object class="IBPartialClassDescription"> | |
1452 | + <string key="className">NSApplication</string> | |
1453 | + <string key="superclassName">NSResponder</string> | |
1454 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="823693707"> | |
1455 | + <string key="majorKey">IBFrameworkSource</string> | |
1456 | + <string key="minorKey">AppKit.framework/Headers/NSApplication.h</string> | |
1457 | + </object> | |
1458 | + </object> | |
1459 | + <object class="IBPartialClassDescription"> | |
1460 | + <string key="className">NSApplication</string> | |
1461 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="132493090"> | |
1462 | + <string key="majorKey">IBFrameworkSource</string> | |
1463 | + <string key="minorKey">AppKit.framework/Headers/NSApplicationScripting.h</string> | |
1464 | + </object> | |
1465 | + </object> | |
1466 | + <object class="IBPartialClassDescription"> | |
1467 | + <string key="className">NSApplication</string> | |
1468 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="315701849"> | |
1469 | + <string key="majorKey">IBFrameworkSource</string> | |
1470 | + <string key="minorKey">AppKit.framework/Headers/NSColorPanel.h</string> | |
1471 | + </object> | |
1472 | + </object> | |
1473 | + <object class="IBPartialClassDescription"> | |
1474 | + <string key="className">NSApplication</string> | |
1475 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1476 | + <string key="majorKey">IBFrameworkSource</string> | |
1477 | + <string key="minorKey">AppKit.framework/Headers/NSHelpManager.h</string> | |
1478 | + </object> | |
1479 | + </object> | |
1480 | + <object class="IBPartialClassDescription"> | |
1481 | + <string key="className">NSApplication</string> | |
1482 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1483 | + <string key="majorKey">IBFrameworkSource</string> | |
1484 | + <string key="minorKey">AppKit.framework/Headers/NSPageLayout.h</string> | |
1485 | + </object> | |
1486 | + </object> | |
1487 | + <object class="IBPartialClassDescription"> | |
1488 | + <string key="className">NSApplication</string> | |
1489 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1490 | + <string key="majorKey">IBFrameworkSource</string> | |
1491 | + <string key="minorKey">AppKit.framework/Headers/NSUserInterfaceItemSearching.h</string> | |
1492 | + </object> | |
1493 | + </object> | |
1494 | + <object class="IBPartialClassDescription"> | |
1495 | + <string key="className">NSApplication</string> | |
1496 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="238609351"> | |
1497 | + <string key="majorKey">IBFrameworkSource</string> | |
1498 | + <string key="minorKey">AppKit.framework/Headers/NSWindowRestoration.h</string> | |
1499 | + </object> | |
1500 | + </object> | |
1501 | + <object class="IBPartialClassDescription"> | |
1502 | + <string key="className">NSBox</string> | |
1503 | + <string key="superclassName">NSView</string> | |
1504 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1505 | + <string key="majorKey">IBFrameworkSource</string> | |
1506 | + <string key="minorKey">AppKit.framework/Headers/NSBox.h</string> | |
1507 | + </object> | |
1508 | + </object> | |
1509 | + <object class="IBPartialClassDescription"> | |
1510 | + <string key="className">NSButton</string> | |
1511 | + <string key="superclassName">NSControl</string> | |
1512 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1513 | + <string key="majorKey">IBFrameworkSource</string> | |
1514 | + <string key="minorKey">AppKit.framework/Headers/NSButton.h</string> | |
1515 | + </object> | |
1516 | + </object> | |
1517 | + <object class="IBPartialClassDescription"> | |
1518 | + <string key="className">NSButtonCell</string> | |
1519 | + <string key="superclassName">NSActionCell</string> | |
1520 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1521 | + <string key="majorKey">IBFrameworkSource</string> | |
1522 | + <string key="minorKey">AppKit.framework/Headers/NSButtonCell.h</string> | |
1523 | + </object> | |
1524 | + </object> | |
1525 | + <object class="IBPartialClassDescription"> | |
1526 | + <string key="className">NSCell</string> | |
1527 | + <string key="superclassName">NSObject</string> | |
1528 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1529 | + <string key="majorKey">IBFrameworkSource</string> | |
1530 | + <string key="minorKey">AppKit.framework/Headers/NSCell.h</string> | |
1531 | + </object> | |
1532 | + </object> | |
1533 | + <object class="IBPartialClassDescription"> | |
1534 | + <string key="className">NSColorWell</string> | |
1535 | + <string key="superclassName">NSControl</string> | |
1536 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1537 | + <string key="majorKey">IBFrameworkSource</string> | |
1538 | + <string key="minorKey">AppKit.framework/Headers/NSColorWell.h</string> | |
1539 | + </object> | |
1540 | + </object> | |
1541 | + <object class="IBPartialClassDescription"> | |
1542 | + <string key="className">NSControl</string> | |
1543 | + <string key="superclassName">NSView</string> | |
1544 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="841489765"> | |
1545 | + <string key="majorKey">IBFrameworkSource</string> | |
1546 | + <string key="minorKey">AppKit.framework/Headers/NSControl.h</string> | |
1547 | + </object> | |
1548 | + </object> | |
1549 | + <object class="IBPartialClassDescription"> | |
1550 | + <string key="className">NSControl</string> | |
1551 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="665956052"> | |
1552 | + <string key="majorKey">IBFrameworkSource</string> | |
1553 | + <string key="minorKey">AppKit.framework/Headers/NSLayoutConstraint.h</string> | |
1554 | + </object> | |
1555 | + </object> | |
1556 | + <object class="IBPartialClassDescription"> | |
1557 | + <string key="className">NSDocument</string> | |
1558 | + <string key="superclassName">NSObject</string> | |
1559 | + <object class="NSMutableDictionary" key="actions"> | |
1560 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1561 | + <object class="NSArray" key="dict.sortedKeys"> | |
1562 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1563 | + <string>printDocument:</string> | |
1564 | + <string>revertDocumentToSaved:</string> | |
1565 | + <string>runPageLayout:</string> | |
1566 | + <string>saveDocument:</string> | |
1567 | + <string>saveDocumentAs:</string> | |
1568 | + <string>saveDocumentTo:</string> | |
1569 | + </object> | |
1570 | + <object class="NSMutableArray" key="dict.values"> | |
1571 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1572 | + <string>id</string> | |
1573 | + <string>id</string> | |
1574 | + <string>id</string> | |
1575 | + <string>id</string> | |
1576 | + <string>id</string> | |
1577 | + <string>id</string> | |
1578 | + </object> | |
1579 | + </object> | |
1580 | + <object class="NSMutableDictionary" key="actionInfosByName"> | |
1581 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1582 | + <object class="NSArray" key="dict.sortedKeys"> | |
1583 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1584 | + <string>printDocument:</string> | |
1585 | + <string>revertDocumentToSaved:</string> | |
1586 | + <string>runPageLayout:</string> | |
1587 | + <string>saveDocument:</string> | |
1588 | + <string>saveDocumentAs:</string> | |
1589 | + <string>saveDocumentTo:</string> | |
1590 | + </object> | |
1591 | + <object class="NSMutableArray" key="dict.values"> | |
1592 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1593 | + <object class="IBActionInfo"> | |
1594 | + <string key="name">printDocument:</string> | |
1595 | + <string key="candidateClassName">id</string> | |
1596 | + </object> | |
1597 | + <object class="IBActionInfo"> | |
1598 | + <string key="name">revertDocumentToSaved:</string> | |
1599 | + <string key="candidateClassName">id</string> | |
1600 | + </object> | |
1601 | + <object class="IBActionInfo"> | |
1602 | + <string key="name">runPageLayout:</string> | |
1603 | + <string key="candidateClassName">id</string> | |
1604 | + </object> | |
1605 | + <object class="IBActionInfo"> | |
1606 | + <string key="name">saveDocument:</string> | |
1607 | + <string key="candidateClassName">id</string> | |
1608 | + </object> | |
1609 | + <object class="IBActionInfo"> | |
1610 | + <string key="name">saveDocumentAs:</string> | |
1611 | + <string key="candidateClassName">id</string> | |
1612 | + </object> | |
1613 | + <object class="IBActionInfo"> | |
1614 | + <string key="name">saveDocumentTo:</string> | |
1615 | + <string key="candidateClassName">id</string> | |
1616 | + </object> | |
1617 | + </object> | |
1618 | + </object> | |
1619 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1620 | + <string key="majorKey">IBFrameworkSource</string> | |
1621 | + <string key="minorKey">AppKit.framework/Headers/NSDocument.h</string> | |
1622 | + </object> | |
1623 | + </object> | |
1624 | + <object class="IBPartialClassDescription"> | |
1625 | + <string key="className">NSDocument</string> | |
1626 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1627 | + <string key="majorKey">IBFrameworkSource</string> | |
1628 | + <string key="minorKey">AppKit.framework/Headers/NSDocumentScripting.h</string> | |
1629 | + </object> | |
1630 | + </object> | |
1631 | + <object class="IBPartialClassDescription"> | |
1632 | + <string key="className">NSDocument</string> | |
1633 | + <reference key="sourceIdentifier" ref="238609351"/> | |
1634 | + </object> | |
1635 | + <object class="IBPartialClassDescription"> | |
1636 | + <string key="className">NSFormatter</string> | |
1637 | + <string key="superclassName">NSObject</string> | |
1638 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1639 | + <string key="majorKey">IBFrameworkSource</string> | |
1640 | + <string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string> | |
1641 | + </object> | |
1642 | + </object> | |
1643 | + <object class="IBPartialClassDescription"> | |
1644 | + <string key="className">NSMenu</string> | |
1645 | + <string key="superclassName">NSObject</string> | |
1646 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="284341429"> | |
1647 | + <string key="majorKey">IBFrameworkSource</string> | |
1648 | + <string key="minorKey">AppKit.framework/Headers/NSMenu.h</string> | |
1649 | + </object> | |
1650 | + </object> | |
1651 | + <object class="IBPartialClassDescription"> | |
1652 | + <string key="className">NSObject</string> | |
1653 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1654 | + <string key="majorKey">IBFrameworkSource</string> | |
1655 | + <string key="minorKey">AppKit.framework/Headers/NSAccessibility.h</string> | |
1656 | + </object> | |
1657 | + </object> | |
1658 | + <object class="IBPartialClassDescription"> | |
1659 | + <string key="className">NSObject</string> | |
1660 | + <reference key="sourceIdentifier" ref="823693707"/> | |
1661 | + </object> | |
1662 | + <object class="IBPartialClassDescription"> | |
1663 | + <string key="className">NSObject</string> | |
1664 | + <reference key="sourceIdentifier" ref="132493090"/> | |
1665 | + </object> | |
1666 | + <object class="IBPartialClassDescription"> | |
1667 | + <string key="className">NSObject</string> | |
1668 | + <reference key="sourceIdentifier" ref="315701849"/> | |
1669 | + </object> | |
1670 | + <object class="IBPartialClassDescription"> | |
1671 | + <string key="className">NSObject</string> | |
1672 | + <reference key="sourceIdentifier" ref="841489765"/> | |
1673 | + </object> | |
1674 | + <object class="IBPartialClassDescription"> | |
1675 | + <string key="className">NSObject</string> | |
1676 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1677 | + <string key="majorKey">IBFrameworkSource</string> | |
1678 | + <string key="minorKey">AppKit.framework/Headers/NSDictionaryController.h</string> | |
1679 | + </object> | |
1680 | + </object> | |
1681 | + <object class="IBPartialClassDescription"> | |
1682 | + <string key="className">NSObject</string> | |
1683 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1684 | + <string key="majorKey">IBFrameworkSource</string> | |
1685 | + <string key="minorKey">AppKit.framework/Headers/NSDragging.h</string> | |
1686 | + </object> | |
1687 | + </object> | |
1688 | + <object class="IBPartialClassDescription"> | |
1689 | + <string key="className">NSObject</string> | |
1690 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1691 | + <string key="majorKey">IBFrameworkSource</string> | |
1692 | + <string key="minorKey">AppKit.framework/Headers/NSFontManager.h</string> | |
1693 | + </object> | |
1694 | + </object> | |
1695 | + <object class="IBPartialClassDescription"> | |
1696 | + <string key="className">NSObject</string> | |
1697 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1698 | + <string key="majorKey">IBFrameworkSource</string> | |
1699 | + <string key="minorKey">AppKit.framework/Headers/NSFontPanel.h</string> | |
1700 | + </object> | |
1701 | + </object> | |
1702 | + <object class="IBPartialClassDescription"> | |
1703 | + <string key="className">NSObject</string> | |
1704 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1705 | + <string key="majorKey">IBFrameworkSource</string> | |
1706 | + <string key="minorKey">AppKit.framework/Headers/NSKeyValueBinding.h</string> | |
1707 | + </object> | |
1708 | + </object> | |
1709 | + <object class="IBPartialClassDescription"> | |
1710 | + <string key="className">NSObject</string> | |
1711 | + <reference key="sourceIdentifier" ref="284341429"/> | |
1712 | + </object> | |
1713 | + <object class="IBPartialClassDescription"> | |
1714 | + <string key="className">NSObject</string> | |
1715 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1716 | + <string key="majorKey">IBFrameworkSource</string> | |
1717 | + <string key="minorKey">AppKit.framework/Headers/NSNibLoading.h</string> | |
1718 | + </object> | |
1719 | + </object> | |
1720 | + <object class="IBPartialClassDescription"> | |
1721 | + <string key="className">NSObject</string> | |
1722 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1723 | + <string key="majorKey">IBFrameworkSource</string> | |
1724 | + <string key="minorKey">AppKit.framework/Headers/NSPasteboard.h</string> | |
1725 | + </object> | |
1726 | + </object> | |
1727 | + <object class="IBPartialClassDescription"> | |
1728 | + <string key="className">NSObject</string> | |
1729 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1730 | + <string key="majorKey">IBFrameworkSource</string> | |
1731 | + <string key="minorKey">AppKit.framework/Headers/NSSavePanel.h</string> | |
1732 | + </object> | |
1733 | + </object> | |
1734 | + <object class="IBPartialClassDescription"> | |
1735 | + <string key="className">NSObject</string> | |
1736 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1737 | + <string key="majorKey">IBFrameworkSource</string> | |
1738 | + <string key="minorKey">AppKit.framework/Headers/NSTableView.h</string> | |
1739 | + </object> | |
1740 | + </object> | |
1741 | + <object class="IBPartialClassDescription"> | |
1742 | + <string key="className">NSObject</string> | |
1743 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1744 | + <string key="majorKey">IBFrameworkSource</string> | |
1745 | + <string key="minorKey">AppKit.framework/Headers/NSToolbarItem.h</string> | |
1746 | + </object> | |
1747 | + </object> | |
1748 | + <object class="IBPartialClassDescription"> | |
1749 | + <string key="className">NSObject</string> | |
1750 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="161197240"> | |
1751 | + <string key="majorKey">IBFrameworkSource</string> | |
1752 | + <string key="minorKey">AppKit.framework/Headers/NSView.h</string> | |
1753 | + </object> | |
1754 | + </object> | |
1755 | + <object class="IBPartialClassDescription"> | |
1756 | + <string key="className">NSObject</string> | |
1757 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1758 | + <string key="majorKey">IBFrameworkSource</string> | |
1759 | + <string key="minorKey">Foundation.framework/Headers/NSArchiver.h</string> | |
1760 | + </object> | |
1761 | + </object> | |
1762 | + <object class="IBPartialClassDescription"> | |
1763 | + <string key="className">NSObject</string> | |
1764 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1765 | + <string key="majorKey">IBFrameworkSource</string> | |
1766 | + <string key="minorKey">Foundation.framework/Headers/NSClassDescription.h</string> | |
1767 | + </object> | |
1768 | + </object> | |
1769 | + <object class="IBPartialClassDescription"> | |
1770 | + <string key="className">NSObject</string> | |
1771 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1772 | + <string key="majorKey">IBFrameworkSource</string> | |
1773 | + <string key="minorKey">Foundation.framework/Headers/NSError.h</string> | |
1774 | + </object> | |
1775 | + </object> | |
1776 | + <object class="IBPartialClassDescription"> | |
1777 | + <string key="className">NSObject</string> | |
1778 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1779 | + <string key="majorKey">IBFrameworkSource</string> | |
1780 | + <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string> | |
1781 | + </object> | |
1782 | + </object> | |
1783 | + <object class="IBPartialClassDescription"> | |
1784 | + <string key="className">NSObject</string> | |
1785 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1786 | + <string key="majorKey">IBFrameworkSource</string> | |
1787 | + <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string> | |
1788 | + </object> | |
1789 | + </object> | |
1790 | + <object class="IBPartialClassDescription"> | |
1791 | + <string key="className">NSObject</string> | |
1792 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1793 | + <string key="majorKey">IBFrameworkSource</string> | |
1794 | + <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string> | |
1795 | + </object> | |
1796 | + </object> | |
1797 | + <object class="IBPartialClassDescription"> | |
1798 | + <string key="className">NSObject</string> | |
1799 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1800 | + <string key="majorKey">IBFrameworkSource</string> | |
1801 | + <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string> | |
1802 | + </object> | |
1803 | + </object> | |
1804 | + <object class="IBPartialClassDescription"> | |
1805 | + <string key="className">NSObject</string> | |
1806 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1807 | + <string key="majorKey">IBFrameworkSource</string> | |
1808 | + <string key="minorKey">Foundation.framework/Headers/NSObject.h</string> | |
1809 | + </object> | |
1810 | + </object> | |
1811 | + <object class="IBPartialClassDescription"> | |
1812 | + <string key="className">NSObject</string> | |
1813 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1814 | + <string key="majorKey">IBFrameworkSource</string> | |
1815 | + <string key="minorKey">Foundation.framework/Headers/NSObjectScripting.h</string> | |
1816 | + </object> | |
1817 | + </object> | |
1818 | + <object class="IBPartialClassDescription"> | |
1819 | + <string key="className">NSObject</string> | |
1820 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1821 | + <string key="majorKey">IBFrameworkSource</string> | |
1822 | + <string key="minorKey">Foundation.framework/Headers/NSPortCoder.h</string> | |
1823 | + </object> | |
1824 | + </object> | |
1825 | + <object class="IBPartialClassDescription"> | |
1826 | + <string key="className">NSObject</string> | |
1827 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1828 | + <string key="majorKey">IBFrameworkSource</string> | |
1829 | + <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string> | |
1830 | + </object> | |
1831 | + </object> | |
1832 | + <object class="IBPartialClassDescription"> | |
1833 | + <string key="className">NSObject</string> | |
1834 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1835 | + <string key="majorKey">IBFrameworkSource</string> | |
1836 | + <string key="minorKey">Foundation.framework/Headers/NSScriptClassDescription.h</string> | |
1837 | + </object> | |
1838 | + </object> | |
1839 | + <object class="IBPartialClassDescription"> | |
1840 | + <string key="className">NSObject</string> | |
1841 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1842 | + <string key="majorKey">IBFrameworkSource</string> | |
1843 | + <string key="minorKey">Foundation.framework/Headers/NSScriptKeyValueCoding.h</string> | |
1844 | + </object> | |
1845 | + </object> | |
1846 | + <object class="IBPartialClassDescription"> | |
1847 | + <string key="className">NSObject</string> | |
1848 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1849 | + <string key="majorKey">IBFrameworkSource</string> | |
1850 | + <string key="minorKey">Foundation.framework/Headers/NSScriptObjectSpecifiers.h</string> | |
1851 | + </object> | |
1852 | + </object> | |
1853 | + <object class="IBPartialClassDescription"> | |
1854 | + <string key="className">NSObject</string> | |
1855 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1856 | + <string key="majorKey">IBFrameworkSource</string> | |
1857 | + <string key="minorKey">Foundation.framework/Headers/NSScriptWhoseTests.h</string> | |
1858 | + </object> | |
1859 | + </object> | |
1860 | + <object class="IBPartialClassDescription"> | |
1861 | + <string key="className">NSObject</string> | |
1862 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1863 | + <string key="majorKey">IBFrameworkSource</string> | |
1864 | + <string key="minorKey">Foundation.framework/Headers/NSThread.h</string> | |
1865 | + </object> | |
1866 | + </object> | |
1867 | + <object class="IBPartialClassDescription"> | |
1868 | + <string key="className">NSObject</string> | |
1869 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1870 | + <string key="majorKey">IBFrameworkSource</string> | |
1871 | + <string key="minorKey">Foundation.framework/Headers/NSURL.h</string> | |
1872 | + </object> | |
1873 | + </object> | |
1874 | + <object class="IBPartialClassDescription"> | |
1875 | + <string key="className">NSResponder</string> | |
1876 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1877 | + <string key="majorKey">IBFrameworkSource</string> | |
1878 | + <string key="minorKey">AppKit.framework/Headers/NSInterfaceStyle.h</string> | |
1879 | + </object> | |
1880 | + </object> | |
1881 | + <object class="IBPartialClassDescription"> | |
1882 | + <string key="className">NSResponder</string> | |
1883 | + <string key="superclassName">NSObject</string> | |
1884 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1885 | + <string key="majorKey">IBFrameworkSource</string> | |
1886 | + <string key="minorKey">AppKit.framework/Headers/NSResponder.h</string> | |
1887 | + </object> | |
1888 | + </object> | |
1889 | + <object class="IBPartialClassDescription"> | |
1890 | + <string key="className">NSResponder</string> | |
1891 | + <reference key="sourceIdentifier" ref="238609351"/> | |
1892 | + </object> | |
1893 | + <object class="IBPartialClassDescription"> | |
1894 | + <string key="className">NSTextField</string> | |
1895 | + <string key="superclassName">NSControl</string> | |
1896 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1897 | + <string key="majorKey">IBFrameworkSource</string> | |
1898 | + <string key="minorKey">AppKit.framework/Headers/NSTextField.h</string> | |
1899 | + </object> | |
1900 | + </object> | |
1901 | + <object class="IBPartialClassDescription"> | |
1902 | + <string key="className">NSTextFieldCell</string> | |
1903 | + <string key="superclassName">NSActionCell</string> | |
1904 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1905 | + <string key="majorKey">IBFrameworkSource</string> | |
1906 | + <string key="minorKey">AppKit.framework/Headers/NSTextFieldCell.h</string> | |
1907 | + </object> | |
1908 | + </object> | |
1909 | + <object class="IBPartialClassDescription"> | |
1910 | + <string key="className">NSView</string> | |
1911 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1912 | + <string key="majorKey">IBFrameworkSource</string> | |
1913 | + <string key="minorKey">AppKit.framework/Headers/NSClipView.h</string> | |
1914 | + </object> | |
1915 | + </object> | |
1916 | + <object class="IBPartialClassDescription"> | |
1917 | + <string key="className">NSView</string> | |
1918 | + <reference key="sourceIdentifier" ref="665956052"/> | |
1919 | + </object> | |
1920 | + <object class="IBPartialClassDescription"> | |
1921 | + <string key="className">NSView</string> | |
1922 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1923 | + <string key="majorKey">IBFrameworkSource</string> | |
1924 | + <string key="minorKey">AppKit.framework/Headers/NSMenuItem.h</string> | |
1925 | + </object> | |
1926 | + </object> | |
1927 | + <object class="IBPartialClassDescription"> | |
1928 | + <string key="className">NSView</string> | |
1929 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1930 | + <string key="majorKey">IBFrameworkSource</string> | |
1931 | + <string key="minorKey">AppKit.framework/Headers/NSOpenGLView.h</string> | |
1932 | + </object> | |
1933 | + </object> | |
1934 | + <object class="IBPartialClassDescription"> | |
1935 | + <string key="className">NSView</string> | |
1936 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1937 | + <string key="majorKey">IBFrameworkSource</string> | |
1938 | + <string key="minorKey">AppKit.framework/Headers/NSRulerView.h</string> | |
1939 | + </object> | |
1940 | + </object> | |
1941 | + <object class="IBPartialClassDescription"> | |
1942 | + <string key="className">NSView</string> | |
1943 | + <string key="superclassName">NSResponder</string> | |
1944 | + <reference key="sourceIdentifier" ref="161197240"/> | |
1945 | + </object> | |
1946 | + <object class="IBPartialClassDescription"> | |
1947 | + <string key="className">NSWindow</string> | |
1948 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1949 | + <string key="majorKey">IBFrameworkSource</string> | |
1950 | + <string key="minorKey">AppKit.framework/Headers/NSDrawer.h</string> | |
1951 | + </object> | |
1952 | + </object> | |
1953 | + <object class="IBPartialClassDescription"> | |
1954 | + <string key="className">NSWindow</string> | |
1955 | + <reference key="sourceIdentifier" ref="665956052"/> | |
1956 | + </object> | |
1957 | + <object class="IBPartialClassDescription"> | |
1958 | + <string key="className">NSWindow</string> | |
1959 | + <string key="superclassName">NSResponder</string> | |
1960 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1961 | + <string key="majorKey">IBFrameworkSource</string> | |
1962 | + <string key="minorKey">AppKit.framework/Headers/NSWindow.h</string> | |
1963 | + </object> | |
1964 | + </object> | |
1965 | + <object class="IBPartialClassDescription"> | |
1966 | + <string key="className">NSWindow</string> | |
1967 | + <reference key="sourceIdentifier" ref="238609351"/> | |
1968 | + </object> | |
1969 | + <object class="IBPartialClassDescription"> | |
1970 | + <string key="className">NSWindow</string> | |
1971 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1972 | + <string key="majorKey">IBFrameworkSource</string> | |
1973 | + <string key="minorKey">AppKit.framework/Headers/NSWindowScripting.h</string> | |
1974 | + </object> | |
1975 | + </object> | |
1976 | + </object> | |
1977 | + </object> | |
1978 | + <int key="IBDocument.localizationMode">0</int> | |
1979 | + <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string> | |
1980 | + <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies"> | |
1981 | + <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> | |
1982 | + <integer value="1050" key="NS.object.0"/> | |
1983 | + </object> | |
1984 | + <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> | |
1985 | + <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> | |
1986 | + <integer value="1050" key="NS.object.0"/> | |
1987 | + </object> | |
1988 | + <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> | |
1989 | + <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> | |
1990 | + <integer value="3000" key="NS.object.0"/> | |
1991 | + </object> | |
1992 | + <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> | |
1993 | + <string key="IBDocument.LastKnownRelativeProjectPath">../BSTRAEditor.xcodeproj</string> | |
1994 | + <int key="IBDocument.defaultPropertyAccessControl">3</int> | |
1995 | + <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes"> | |
1996 | + <string key="NS.key.0">NSSwitch</string> | |
1997 | + <string key="NS.object.0">{15, 15}</string> | |
1998 | + </object> | |
1999 | + </data> | |
2000 | +</archive> |
@@ -1,20 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
3 | -<plist version="1.0"> | |
4 | -<dict> | |
5 | - <key>IBFramework Version</key> | |
6 | - <string>629</string> | |
7 | - <key>IBLastKnownRelativeProjectPath</key> | |
8 | - <string>../../BSTRAEditor.xcodeproj</string> | |
9 | - <key>IBOldestOS</key> | |
10 | - <integer>5</integer> | |
11 | - <key>IBOpenObjects</key> | |
12 | - <array> | |
13 | - <integer>6</integer> | |
14 | - </array> | |
15 | - <key>IBSystem Version</key> | |
16 | - <string>9C31</string> | |
17 | - <key>targetFramework</key> | |
18 | - <string>IBCocoaFramework</string> | |
19 | -</dict> | |
20 | -</plist> |
@@ -3,10 +3,10 @@ | ||
3 | 3 | <plist version="1.0"> |
4 | 4 | <dict> |
5 | 5 | <key>CFBundleGetInfoString</key> |
6 | - <string>BSTRAEditor 1.0</string> | |
6 | + <string>BSTRAEditor 1.1</string> | |
7 | 7 | <key>CFBundleName</key> |
8 | 8 | <string>BSTREditor</string> |
9 | 9 | <key>NSHumanReadableCopyright</key> |
10 | - <string>© Hori,Masaki, 2008</string> | |
10 | + <string>© Hori,Masaki, 2008, 2012</string> | |
11 | 11 | </dict> |
12 | 12 | </plist> |
@@ -40,7 +40,7 @@ | ||
40 | 40 | <key>CFBundlePackageType</key> |
41 | 41 | <string>APPL</string> |
42 | 42 | <key>CFBundleShortVersionString</key> |
43 | - <string>1.0</string> | |
43 | + <string>1.1</string> | |
44 | 44 | <key>CFBundleSignature</key> |
45 | 45 | <string>????</string> |
46 | 46 | <key>CFBundleVersion</key> |
@@ -1,43 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
3 | -<plist version="1.0"> | |
4 | -<dict> | |
5 | - <key>IBClasses</key> | |
6 | - <array> | |
7 | - <dict> | |
8 | - <key>ACTIONS</key> | |
9 | - <dict> | |
10 | - <key>saveToBSSupportFolder</key> | |
11 | - <string>id</string> | |
12 | - </dict> | |
13 | - <key>CLASS</key> | |
14 | - <string>BSTRADocument</string> | |
15 | - <key>LANGUAGE</key> | |
16 | - <string>ObjC</string> | |
17 | - <key>OUTLETS</key> | |
18 | - <dict> | |
19 | - <key>blueActiveView</key> | |
20 | - <string>BSCSTitleRulerImitation</string> | |
21 | - <key>graphiteActiveView</key> | |
22 | - <string>BSCSTitleRulerImitation</string> | |
23 | - <key>inactiveView</key> | |
24 | - <string>BSCSTitleRulerImitation</string> | |
25 | - <key>infoView</key> | |
26 | - <string>BSCSTitleRulerImitation</string> | |
27 | - </dict> | |
28 | - <key>SUPERCLASS</key> | |
29 | - <string>NSDocument</string> | |
30 | - </dict> | |
31 | - <dict> | |
32 | - <key>CLASS</key> | |
33 | - <string>BSCSTitleRulerImitation</string> | |
34 | - <key>LANGUAGE</key> | |
35 | - <string>ObjC</string> | |
36 | - <key>SUPERCLASS</key> | |
37 | - <string>NSView</string> | |
38 | - </dict> | |
39 | - </array> | |
40 | - <key>IBVersion</key> | |
41 | - <string>1</string> | |
42 | -</dict> | |
43 | -</plist> |
@@ -0,0 +1,2015 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> | |
3 | + <data> | |
4 | + <int key="IBDocument.SystemTarget">1050</int> | |
5 | + <string key="IBDocument.SystemVersion">11D50</string> | |
6 | + <string key="IBDocument.InterfaceBuilderVersion">851</string> | |
7 | + <string key="IBDocument.AppKitVersion">1138.32</string> | |
8 | + <string key="IBDocument.HIToolboxVersion">568.00</string> | |
9 | + <object class="NSMutableDictionary" key="IBDocument.PluginVersions"> | |
10 | + <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> | |
11 | + <string key="NS.object.0">851</string> | |
12 | + </object> | |
13 | + <object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> | |
14 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
15 | + <integer value="100075"/> | |
16 | + </object> | |
17 | + <object class="NSArray" key="IBDocument.PluginDependencies"> | |
18 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
19 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
20 | + </object> | |
21 | + <object class="NSMutableDictionary" key="IBDocument.Metadata"> | |
22 | + <string key="NS.key.0">PluginDependencyRecalculationVersion</string> | |
23 | + <integer value="1" key="NS.object.0"/> | |
24 | + </object> | |
25 | + <object class="NSMutableArray" key="IBDocument.RootObjects" id="682672009"> | |
26 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
27 | + <object class="NSCustomObject" id="1031196511"> | |
28 | + <string key="NSClassName">BSTRADocument</string> | |
29 | + </object> | |
30 | + <object class="NSCustomObject" id="375934856"> | |
31 | + <string key="NSClassName">FirstResponder</string> | |
32 | + </object> | |
33 | + <object class="NSCustomObject" id="856334241"> | |
34 | + <string key="NSClassName">NSApplication</string> | |
35 | + </object> | |
36 | + <object class="NSWindowTemplate" id="7254494"> | |
37 | + <int key="NSWindowStyleMask">7</int> | |
38 | + <int key="NSWindowBacking">2</int> | |
39 | + <string key="NSWindowRect">{{110, 303}, {643, 322}}</string> | |
40 | + <int key="NSWTFlags">1886912512</int> | |
41 | + <string key="NSWindowTitle">ウィンドウ</string> | |
42 | + <string key="NSWindowClass">NSWindow</string> | |
43 | + <string key="NSViewClass">View</string> | |
44 | + <nil key="NSUserInterfaceItemIdentifier"/> | |
45 | + <string key="NSWindowContentMaxSize">{3.4028235e+38, 3.4028235e+38}</string> | |
46 | + <string key="NSWindowContentMinSize">{94, 86}</string> | |
47 | + <object class="NSView" key="NSWindowView" id="719762547"> | |
48 | + <reference key="NSNextResponder"/> | |
49 | + <int key="NSvFlags">256</int> | |
50 | + <object class="NSMutableArray" key="NSSubviews"> | |
51 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
52 | + <object class="NSBox" id="298761609"> | |
53 | + <reference key="NSNextResponder" ref="719762547"/> | |
54 | + <int key="NSvFlags">292</int> | |
55 | + <object class="NSMutableArray" key="NSSubviews"> | |
56 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
57 | + <object class="NSView" id="33216430"> | |
58 | + <reference key="NSNextResponder" ref="298761609"/> | |
59 | + <int key="NSvFlags">274</int> | |
60 | + <object class="NSMutableArray" key="NSSubviews"> | |
61 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
62 | + <object class="NSTextField" id="211918363"> | |
63 | + <reference key="NSNextResponder" ref="33216430"/> | |
64 | + <int key="NSvFlags">268</int> | |
65 | + <string key="NSFrame">{{56, 121}, {147, 17}}</string> | |
66 | + <reference key="NSSuperview" ref="33216430"/> | |
67 | + <bool key="NSEnabled">YES</bool> | |
68 | + <object class="NSTextFieldCell" key="NSCell" id="646962802"> | |
69 | + <int key="NSCellFlags">67239488</int> | |
70 | + <int key="NSCellFlags2">71304192</int> | |
71 | + <string key="NSContents">アクティブ(ブルー):</string> | |
72 | + <object class="NSFont" key="NSSupport" id="1037665602"> | |
73 | + <string key="NSName">LucidaGrande</string> | |
74 | + <double key="NSSize">13</double> | |
75 | + <int key="NSfFlags">1040</int> | |
76 | + </object> | |
77 | + <string key="NSPlaceholderString"/> | |
78 | + <reference key="NSControlView" ref="211918363"/> | |
79 | + <object class="NSColor" key="NSBackgroundColor" id="755780249"> | |
80 | + <int key="NSColorSpace">6</int> | |
81 | + <string key="NSCatalogName">System</string> | |
82 | + <string key="NSColorName">controlColor</string> | |
83 | + <object class="NSColor" key="NSColor"> | |
84 | + <int key="NSColorSpace">3</int> | |
85 | + <bytes key="NSWhite">MC42NjY2NjY2ODY1AA</bytes> | |
86 | + </object> | |
87 | + </object> | |
88 | + <object class="NSColor" key="NSTextColor" id="482933782"> | |
89 | + <int key="NSColorSpace">6</int> | |
90 | + <string key="NSCatalogName">System</string> | |
91 | + <string key="NSColorName">controlTextColor</string> | |
92 | + <object class="NSColor" key="NSColor" id="585413579"> | |
93 | + <int key="NSColorSpace">3</int> | |
94 | + <bytes key="NSWhite">MAA</bytes> | |
95 | + </object> | |
96 | + </object> | |
97 | + </object> | |
98 | + </object> | |
99 | + <object class="NSTextField" id="506095599"> | |
100 | + <reference key="NSNextResponder" ref="33216430"/> | |
101 | + <int key="NSvFlags">268</int> | |
102 | + <string key="NSFrame">{{90, 58}, {113, 17}}</string> | |
103 | + <reference key="NSSuperview" ref="33216430"/> | |
104 | + <bool key="NSEnabled">YES</bool> | |
105 | + <object class="NSTextFieldCell" key="NSCell" id="37671417"> | |
106 | + <int key="NSCellFlags">67239488</int> | |
107 | + <int key="NSCellFlags2">71304192</int> | |
108 | + <string key="NSContents">インアクティブ:</string> | |
109 | + <reference key="NSSupport" ref="1037665602"/> | |
110 | + <string key="NSPlaceholderString"/> | |
111 | + <reference key="NSControlView" ref="506095599"/> | |
112 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
113 | + <reference key="NSTextColor" ref="482933782"/> | |
114 | + </object> | |
115 | + </object> | |
116 | + <object class="NSColorWell" id="310510041"> | |
117 | + <reference key="NSNextResponder" ref="33216430"/> | |
118 | + <int key="NSvFlags">268</int> | |
119 | + <object class="NSMutableSet" key="NSDragTypes"> | |
120 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
121 | + <object class="NSArray" key="set.sortedObjects"> | |
122 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
123 | + <string>NSColor pasteboard type</string> | |
124 | + </object> | |
125 | + </object> | |
126 | + <string key="NSFrame">{{425, 14}, {44, 23}}</string> | |
127 | + <reference key="NSSuperview" ref="33216430"/> | |
128 | + <bool key="NSEnabled">YES</bool> | |
129 | + <bool key="NSIsBordered">YES</bool> | |
130 | + <object class="NSColor" key="NSColor"> | |
131 | + <int key="NSColorSpace">1</int> | |
132 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
133 | + </object> | |
134 | + </object> | |
135 | + <object class="NSTextField" id="339760918"> | |
136 | + <reference key="NSNextResponder" ref="33216430"/> | |
137 | + <int key="NSvFlags">268</int> | |
138 | + <string key="NSFrame">{{17, 90}, {186, 17}}</string> | |
139 | + <reference key="NSSuperview" ref="33216430"/> | |
140 | + <bool key="NSEnabled">YES</bool> | |
141 | + <object class="NSTextFieldCell" key="NSCell" id="1053706153"> | |
142 | + <int key="NSCellFlags">67239488</int> | |
143 | + <int key="NSCellFlags2">71304192</int> | |
144 | + <string key="NSContents">アクティブ(グラファイト):</string> | |
145 | + <reference key="NSSupport" ref="1037665602"/> | |
146 | + <string key="NSPlaceholderString"/> | |
147 | + <reference key="NSControlView" ref="339760918"/> | |
148 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
149 | + <reference key="NSTextColor" ref="482933782"/> | |
150 | + </object> | |
151 | + </object> | |
152 | + <object class="NSCustomView" id="849818072"> | |
153 | + <reference key="NSNextResponder" ref="33216430"/> | |
154 | + <int key="NSvFlags">268</int> | |
155 | + <string key="NSFrame">{{208, 87}, {263, 22}}</string> | |
156 | + <reference key="NSSuperview" ref="33216430"/> | |
157 | + <string key="NSClassName">BSCSTitleRulerImitation</string> | |
158 | + </object> | |
159 | + <object class="NSColorWell" id="1059309063"> | |
160 | + <reference key="NSNextResponder" ref="33216430"/> | |
161 | + <int key="NSvFlags">268</int> | |
162 | + <object class="NSMutableSet" key="NSDragTypes"> | |
163 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
164 | + <object class="NSArray" key="set.sortedObjects"> | |
165 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
166 | + <string>NSColor pasteboard type</string> | |
167 | + </object> | |
168 | + </object> | |
169 | + <string key="NSFrame">{{492, 118}, {44, 23}}</string> | |
170 | + <reference key="NSSuperview" ref="33216430"/> | |
171 | + <bool key="NSEnabled">YES</bool> | |
172 | + <bool key="NSIsBordered">YES</bool> | |
173 | + <object class="NSColor" key="NSColor"> | |
174 | + <int key="NSColorSpace">1</int> | |
175 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
176 | + </object> | |
177 | + </object> | |
178 | + <object class="NSColorWell" id="673209546"> | |
179 | + <reference key="NSNextResponder" ref="33216430"/> | |
180 | + <int key="NSvFlags">268</int> | |
181 | + <object class="NSMutableSet" key="NSDragTypes"> | |
182 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
183 | + <object class="NSArray" key="set.sortedObjects"> | |
184 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
185 | + <string>NSColor pasteboard type</string> | |
186 | + </object> | |
187 | + </object> | |
188 | + <string key="NSFrame">{{559, 117}, {44, 23}}</string> | |
189 | + <reference key="NSSuperview" ref="33216430"/> | |
190 | + <bool key="NSEnabled">YES</bool> | |
191 | + <bool key="NSIsBordered">YES</bool> | |
192 | + <object class="NSColor" key="NSColor"> | |
193 | + <int key="NSColorSpace">1</int> | |
194 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
195 | + </object> | |
196 | + </object> | |
197 | + <object class="NSTextField" id="469490949"> | |
198 | + <reference key="NSNextResponder" ref="33216430"/> | |
199 | + <int key="NSvFlags">268</int> | |
200 | + <string key="NSFrame">{{349, 17}, {75, 17}}</string> | |
201 | + <reference key="NSSuperview" ref="33216430"/> | |
202 | + <bool key="NSEnabled">YES</bool> | |
203 | + <object class="NSTextFieldCell" key="NSCell" id="955410157"> | |
204 | + <int key="NSCellFlags">67239488</int> | |
205 | + <int key="NSCellFlags2">71304192</int> | |
206 | + <string key="NSContents">文字色:</string> | |
207 | + <reference key="NSSupport" ref="1037665602"/> | |
208 | + <string key="NSPlaceholderString"/> | |
209 | + <reference key="NSControlView" ref="469490949"/> | |
210 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
211 | + <object class="NSColor" key="NSTextColor"> | |
212 | + <int key="NSColorSpace">6</int> | |
213 | + <string key="NSCatalogName">System</string> | |
214 | + <string key="NSColorName">textColor</string> | |
215 | + <reference key="NSColor" ref="585413579"/> | |
216 | + </object> | |
217 | + </object> | |
218 | + </object> | |
219 | + <object class="NSColorWell" id="417410538"> | |
220 | + <reference key="NSNextResponder" ref="33216430"/> | |
221 | + <int key="NSvFlags">268</int> | |
222 | + <object class="NSMutableSet" key="NSDragTypes"> | |
223 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
224 | + <object class="NSArray" key="set.sortedObjects"> | |
225 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
226 | + <string>NSColor pasteboard type</string> | |
227 | + </object> | |
228 | + </object> | |
229 | + <string key="NSFrame">{{492, 87}, {44, 23}}</string> | |
230 | + <reference key="NSSuperview" ref="33216430"/> | |
231 | + <bool key="NSEnabled">YES</bool> | |
232 | + <bool key="NSIsBordered">YES</bool> | |
233 | + <object class="NSColor" key="NSColor"> | |
234 | + <int key="NSColorSpace">1</int> | |
235 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
236 | + </object> | |
237 | + </object> | |
238 | + <object class="NSCustomView" id="118649929"> | |
239 | + <reference key="NSNextResponder" ref="33216430"/> | |
240 | + <int key="NSvFlags">268</int> | |
241 | + <string key="NSFrame">{{208, 118}, {263, 22}}</string> | |
242 | + <reference key="NSSuperview" ref="33216430"/> | |
243 | + <string key="NSClassName">BSCSTitleRulerImitation</string> | |
244 | + </object> | |
245 | + <object class="NSColorWell" id="381332317"> | |
246 | + <reference key="NSNextResponder" ref="33216430"/> | |
247 | + <int key="NSvFlags">268</int> | |
248 | + <object class="NSMutableSet" key="NSDragTypes"> | |
249 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
250 | + <object class="NSArray" key="set.sortedObjects"> | |
251 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
252 | + <string>NSColor pasteboard type</string> | |
253 | + </object> | |
254 | + </object> | |
255 | + <string key="NSFrame">{{559, 55}, {44, 23}}</string> | |
256 | + <reference key="NSSuperview" ref="33216430"/> | |
257 | + <bool key="NSEnabled">YES</bool> | |
258 | + <bool key="NSIsBordered">YES</bool> | |
259 | + <object class="NSColor" key="NSColor"> | |
260 | + <int key="NSColorSpace">1</int> | |
261 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
262 | + </object> | |
263 | + </object> | |
264 | + <object class="NSTextField" id="740500073"> | |
265 | + <reference key="NSNextResponder" ref="33216430"/> | |
266 | + <int key="NSvFlags">268</int> | |
267 | + <string key="NSFrame">{{205, 148}, {269, 17}}</string> | |
268 | + <reference key="NSSuperview" ref="33216430"/> | |
269 | + <bool key="NSEnabled">YES</bool> | |
270 | + <object class="NSTextFieldCell" key="NSCell" id="468936698"> | |
271 | + <int key="NSCellFlags">67239488</int> | |
272 | + <int key="NSCellFlags2">4195328</int> | |
273 | + <string key="NSContents">プレビュー</string> | |
274 | + <reference key="NSSupport" ref="1037665602"/> | |
275 | + <string key="NSPlaceholderString"/> | |
276 | + <reference key="NSControlView" ref="740500073"/> | |
277 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
278 | + <reference key="NSTextColor" ref="482933782"/> | |
279 | + </object> | |
280 | + </object> | |
281 | + <object class="NSColorWell" id="343723473"> | |
282 | + <reference key="NSNextResponder" ref="33216430"/> | |
283 | + <int key="NSvFlags">268</int> | |
284 | + <object class="NSMutableSet" key="NSDragTypes"> | |
285 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
286 | + <object class="NSArray" key="set.sortedObjects"> | |
287 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
288 | + <string>NSColor pasteboard type</string> | |
289 | + </object> | |
290 | + </object> | |
291 | + <string key="NSFrame">{{559, 86}, {44, 23}}</string> | |
292 | + <reference key="NSSuperview" ref="33216430"/> | |
293 | + <bool key="NSEnabled">YES</bool> | |
294 | + <bool key="NSIsBordered">YES</bool> | |
295 | + <object class="NSColor" key="NSColor"> | |
296 | + <int key="NSColorSpace">1</int> | |
297 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
298 | + </object> | |
299 | + </object> | |
300 | + <object class="NSTextField" id="227258326"> | |
301 | + <reference key="NSNextResponder" ref="33216430"/> | |
302 | + <int key="NSvFlags">268</int> | |
303 | + <string key="NSFrame">{{490, 148}, {56, 17}}</string> | |
304 | + <reference key="NSSuperview" ref="33216430"/> | |
305 | + <bool key="NSEnabled">YES</bool> | |
306 | + <object class="NSTextFieldCell" key="NSCell" id="613947293"> | |
307 | + <int key="NSCellFlags">67239488</int> | |
308 | + <int key="NSCellFlags2">205521920</int> | |
309 | + <string key="NSContents">色(上)</string> | |
310 | + <reference key="NSSupport" ref="1037665602"/> | |
311 | + <string key="NSPlaceholderString"/> | |
312 | + <reference key="NSControlView" ref="227258326"/> | |
313 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
314 | + <reference key="NSTextColor" ref="482933782"/> | |
315 | + </object> | |
316 | + </object> | |
317 | + <object class="NSCustomView" id="213182060"> | |
318 | + <reference key="NSNextResponder" ref="33216430"/> | |
319 | + <int key="NSvFlags">268</int> | |
320 | + <string key="NSFrame">{{208, 56}, {263, 22}}</string> | |
321 | + <reference key="NSSuperview" ref="33216430"/> | |
322 | + <string key="NSClassName">BSCSTitleRulerImitation</string> | |
323 | + </object> | |
324 | + <object class="NSColorWell" id="531145634"> | |
325 | + <reference key="NSNextResponder" ref="33216430"/> | |
326 | + <int key="NSvFlags">268</int> | |
327 | + <object class="NSMutableSet" key="NSDragTypes"> | |
328 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
329 | + <object class="NSArray" key="set.sortedObjects"> | |
330 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
331 | + <string>NSColor pasteboard type</string> | |
332 | + </object> | |
333 | + </object> | |
334 | + <string key="NSFrame">{{492, 56}, {44, 23}}</string> | |
335 | + <reference key="NSSuperview" ref="33216430"/> | |
336 | + <bool key="NSEnabled">YES</bool> | |
337 | + <bool key="NSIsBordered">YES</bool> | |
338 | + <object class="NSColor" key="NSColor"> | |
339 | + <int key="NSColorSpace">1</int> | |
340 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
341 | + </object> | |
342 | + </object> | |
343 | + <object class="NSButton" id="597672940"> | |
344 | + <reference key="NSNextResponder" ref="33216430"/> | |
345 | + <int key="NSvFlags">268</int> | |
346 | + <string key="NSFrame">{{479, 16}, {126, 18}}</string> | |
347 | + <reference key="NSSuperview" ref="33216430"/> | |
348 | + <bool key="NSEnabled">YES</bool> | |
349 | + <object class="NSButtonCell" key="NSCell" id="428725038"> | |
350 | + <int key="NSCellFlags">-2080244224</int> | |
351 | + <int key="NSCellFlags2">0</int> | |
352 | + <string key="NSContents">彫り込みテキスト</string> | |
353 | + <reference key="NSSupport" ref="1037665602"/> | |
354 | + <reference key="NSControlView" ref="597672940"/> | |
355 | + <int key="NSButtonFlags">1211912703</int> | |
356 | + <int key="NSButtonFlags2">2</int> | |
357 | + <object class="NSCustomResource" key="NSNormalImage" id="639504330"> | |
358 | + <string key="NSClassName">NSImage</string> | |
359 | + <string key="NSResourceName">NSSwitch</string> | |
360 | + </object> | |
361 | + <object class="NSButtonImageSource" key="NSAlternateImage" id="528864063"> | |
362 | + <string key="NSImageName">NSSwitch</string> | |
363 | + </object> | |
364 | + <string key="NSAlternateContents"/> | |
365 | + <string key="NSKeyEquivalent"/> | |
366 | + <int key="NSPeriodicDelay">200</int> | |
367 | + <int key="NSPeriodicInterval">25</int> | |
368 | + </object> | |
369 | + </object> | |
370 | + <object class="NSButton" id="980973922"> | |
371 | + <reference key="NSNextResponder" ref="33216430"/> | |
372 | + <int key="NSvFlags">268</int> | |
373 | + <string key="NSFrame">{{206, 16}, {87, 18}}</string> | |
374 | + <reference key="NSSuperview" ref="33216430"/> | |
375 | + <bool key="NSEnabled">YES</bool> | |
376 | + <object class="NSButtonCell" key="NSCell" id="169672074"> | |
377 | + <int key="NSCellFlags">-2080244224</int> | |
378 | + <int key="NSCellFlags2">0</int> | |
379 | + <string key="NSContents">下部境界線</string> | |
380 | + <object class="NSFont" key="NSSupport"> | |
381 | + <string key="NSName">AquaKana</string> | |
382 | + <double key="NSSize">13</double> | |
383 | + <int key="NSfFlags">16</int> | |
384 | + </object> | |
385 | + <reference key="NSControlView" ref="980973922"/> | |
386 | + <int key="NSButtonFlags">1211912703</int> | |
387 | + <int key="NSButtonFlags2">2</int> | |
388 | + <reference key="NSNormalImage" ref="639504330"/> | |
389 | + <reference key="NSAlternateImage" ref="528864063"/> | |
390 | + <string key="NSAlternateContents"/> | |
391 | + <string key="NSKeyEquivalent"/> | |
392 | + <int key="NSPeriodicDelay">200</int> | |
393 | + <int key="NSPeriodicInterval">25</int> | |
394 | + </object> | |
395 | + </object> | |
396 | + <object class="NSTextField" id="924124777"> | |
397 | + <reference key="NSNextResponder" ref="33216430"/> | |
398 | + <int key="NSvFlags">268</int> | |
399 | + <string key="NSFrame">{{555, 148}, {56, 17}}</string> | |
400 | + <reference key="NSSuperview" ref="33216430"/> | |
401 | + <bool key="NSEnabled">YES</bool> | |
402 | + <object class="NSTextFieldCell" key="NSCell" id="475691841"> | |
403 | + <int key="NSCellFlags">67239488</int> | |
404 | + <int key="NSCellFlags2">205521920</int> | |
405 | + <string key="NSContents">色(下)</string> | |
406 | + <reference key="NSSupport" ref="1037665602"/> | |
407 | + <string key="NSPlaceholderString"/> | |
408 | + <reference key="NSControlView" ref="924124777"/> | |
409 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
410 | + <reference key="NSTextColor" ref="482933782"/> | |
411 | + </object> | |
412 | + </object> | |
413 | + </object> | |
414 | + <string key="NSFrame">{{1, 1}, {627, 175}}</string> | |
415 | + <reference key="NSSuperview" ref="298761609"/> | |
416 | + </object> | |
417 | + </object> | |
418 | + <string key="NSFrame">{{8, 121}, {629, 191}}</string> | |
419 | + <reference key="NSSuperview" ref="719762547"/> | |
420 | + <string key="NSOffsets">{0, 0}</string> | |
421 | + <object class="NSTextFieldCell" key="NSTitleCell"> | |
422 | + <int key="NSCellFlags">67239424</int> | |
423 | + <int key="NSCellFlags2">0</int> | |
424 | + <string key="NSContents">スレッドタイトル</string> | |
425 | + <object class="NSFont" key="NSSupport" id="26"> | |
426 | + <string key="NSName">LucidaGrande</string> | |
427 | + <double key="NSSize">11</double> | |
428 | + <int key="NSfFlags">3088</int> | |
429 | + </object> | |
430 | + <object class="NSColor" key="NSBackgroundColor" id="189709744"> | |
431 | + <int key="NSColorSpace">6</int> | |
432 | + <string key="NSCatalogName">System</string> | |
433 | + <string key="NSColorName">textBackgroundColor</string> | |
434 | + <object class="NSColor" key="NSColor"> | |
435 | + <int key="NSColorSpace">3</int> | |
436 | + <bytes key="NSWhite">MQA</bytes> | |
437 | + </object> | |
438 | + </object> | |
439 | + <object class="NSColor" key="NSTextColor"> | |
440 | + <int key="NSColorSpace">3</int> | |
441 | + <bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes> | |
442 | + </object> | |
443 | + </object> | |
444 | + <reference key="NSContentView" ref="33216430"/> | |
445 | + <int key="NSBorderType">1</int> | |
446 | + <int key="NSBoxType">0</int> | |
447 | + <int key="NSTitlePosition">2</int> | |
448 | + <bool key="NSTransparent">NO</bool> | |
449 | + </object> | |
450 | + <object class="NSBox" id="1066988680"> | |
451 | + <reference key="NSNextResponder" ref="719762547"/> | |
452 | + <int key="NSvFlags">292</int> | |
453 | + <object class="NSMutableArray" key="NSSubviews"> | |
454 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
455 | + <object class="NSView" id="526686119"> | |
456 | + <reference key="NSNextResponder" ref="1066988680"/> | |
457 | + <int key="NSvFlags">274</int> | |
458 | + <object class="NSMutableArray" key="NSSubviews"> | |
459 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
460 | + <object class="NSTextField" id="439759860"> | |
461 | + <reference key="NSNextResponder" ref="526686119"/> | |
462 | + <int key="NSvFlags">268</int> | |
463 | + <string key="NSFrame">{{362, 23}, {71, 17}}</string> | |
464 | + <reference key="NSSuperview" ref="526686119"/> | |
465 | + <bool key="NSEnabled">YES</bool> | |
466 | + <object class="NSTextFieldCell" key="NSCell" id="909929335"> | |
467 | + <int key="NSCellFlags">67239488</int> | |
468 | + <int key="NSCellFlags2">71304192</int> | |
469 | + <string key="NSContents">色:</string> | |
470 | + <reference key="NSSupport" ref="1037665602"/> | |
471 | + <string key="NSPlaceholderString"/> | |
472 | + <reference key="NSControlView" ref="439759860"/> | |
473 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
474 | + <reference key="NSTextColor" ref="482933782"/> | |
475 | + </object> | |
476 | + </object> | |
477 | + <object class="NSColorWell" id="115837166"> | |
478 | + <reference key="NSNextResponder" ref="526686119"/> | |
479 | + <int key="NSvFlags">268</int> | |
480 | + <object class="NSMutableSet" key="NSDragTypes"> | |
481 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
482 | + <object class="NSArray" key="set.sortedObjects"> | |
483 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
484 | + <string>NSColor pasteboard type</string> | |
485 | + </object> | |
486 | + </object> | |
487 | + <string key="NSFrame">{{438, 20}, {44, 23}}</string> | |
488 | + <reference key="NSSuperview" ref="526686119"/> | |
489 | + <bool key="NSEnabled">YES</bool> | |
490 | + <bool key="NSIsBordered">YES</bool> | |
491 | + <object class="NSColor" key="NSColor"> | |
492 | + <int key="NSColorSpace">1</int> | |
493 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
494 | + </object> | |
495 | + </object> | |
496 | + <object class="NSTextField" id="642476544"> | |
497 | + <reference key="NSNextResponder" ref="526686119"/> | |
498 | + <int key="NSvFlags">268</int> | |
499 | + <string key="NSFrame">{{24, 58}, {269, 17}}</string> | |
500 | + <reference key="NSSuperview" ref="526686119"/> | |
501 | + <bool key="NSEnabled">YES</bool> | |
502 | + <object class="NSTextFieldCell" key="NSCell" id="973604798"> | |
503 | + <int key="NSCellFlags">67239488</int> | |
504 | + <int key="NSCellFlags2">4195328</int> | |
505 | + <string key="NSContents">プレビュー</string> | |
506 | + <reference key="NSSupport" ref="1037665602"/> | |
507 | + <string key="NSPlaceholderString"/> | |
508 | + <reference key="NSControlView" ref="642476544"/> | |
509 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
510 | + <reference key="NSTextColor" ref="482933782"/> | |
511 | + </object> | |
512 | + </object> | |
513 | + <object class="NSTextField" id="765294470"> | |
514 | + <reference key="NSNextResponder" ref="526686119"/> | |
515 | + <int key="NSvFlags">268</int> | |
516 | + <string key="NSFrame">{{489, 23}, {75, 17}}</string> | |
517 | + <reference key="NSSuperview" ref="526686119"/> | |
518 | + <bool key="NSEnabled">YES</bool> | |
519 | + <object class="NSTextFieldCell" key="NSCell" id="763566338"> | |
520 | + <int key="NSCellFlags">67239488</int> | |
521 | + <int key="NSCellFlags2">71304192</int> | |
522 | + <string key="NSContents">文字色:</string> | |
523 | + <reference key="NSSupport" ref="1037665602"/> | |
524 | + <string key="NSPlaceholderString"/> | |
525 | + <reference key="NSControlView" ref="765294470"/> | |
526 | + <reference key="NSBackgroundColor" ref="755780249"/> | |
527 | + <reference key="NSTextColor" ref="482933782"/> | |
528 | + </object> | |
529 | + </object> | |
530 | + <object class="NSCustomView" id="864265100"> | |
531 | + <reference key="NSNextResponder" ref="526686119"/> | |
532 | + <int key="NSvFlags">268</int> | |
533 | + <string key="NSFrame">{{27, 14}, {359, 36}}</string> | |
534 | + <reference key="NSSuperview" ref="526686119"/> | |
535 | + <string key="NSClassName">BSCSTitleRulerImitation</string> | |
536 | + </object> | |
537 | + <object class="NSColorWell" id="319228270"> | |
538 | + <reference key="NSNextResponder" ref="526686119"/> | |
539 | + <int key="NSvFlags">268</int> | |
540 | + <object class="NSMutableSet" key="NSDragTypes"> | |
541 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
542 | + <object class="NSArray" key="set.sortedObjects"> | |
543 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
544 | + <string>NSColor pasteboard type</string> | |
545 | + </object> | |
546 | + </object> | |
547 | + <string key="NSFrame">{{565, 20}, {44, 23}}</string> | |
548 | + <reference key="NSSuperview" ref="526686119"/> | |
549 | + <bool key="NSEnabled">YES</bool> | |
550 | + <bool key="NSIsBordered">YES</bool> | |
551 | + <object class="NSColor" key="NSColor"> | |
552 | + <int key="NSColorSpace">1</int> | |
553 | + <bytes key="NSRGB">MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA</bytes> | |
554 | + </object> | |
555 | + </object> | |
556 | + </object> | |
557 | + <string key="NSFrame">{{1, 1}, {627, 85}}</string> | |
558 | + <reference key="NSSuperview" ref="1066988680"/> | |
559 | + </object> | |
560 | + </object> | |
561 | + <string key="NSFrame">{{8, 16}, {629, 101}}</string> | |
562 | + <reference key="NSSuperview" ref="719762547"/> | |
563 | + <string key="NSOffsets">{0, 0}</string> | |
564 | + <object class="NSTextFieldCell" key="NSTitleCell"> | |
565 | + <int key="NSCellFlags">67239424</int> | |
566 | + <int key="NSCellFlags2">0</int> | |
567 | + <string key="NSContents">情報</string> | |
568 | + <reference key="NSSupport" ref="26"/> | |
569 | + <reference key="NSBackgroundColor" ref="189709744"/> | |
570 | + <object class="NSColor" key="NSTextColor"> | |
571 | + <int key="NSColorSpace">3</int> | |
572 | + <bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes> | |
573 | + </object> | |
574 | + </object> | |
575 | + <reference key="NSContentView" ref="526686119"/> | |
576 | + <int key="NSBorderType">1</int> | |
577 | + <int key="NSBoxType">0</int> | |
578 | + <int key="NSTitlePosition">2</int> | |
579 | + <bool key="NSTransparent">NO</bool> | |
580 | + </object> | |
581 | + </object> | |
582 | + <string key="NSFrameSize">{643, 322}</string> | |
583 | + <reference key="NSSuperview"/> | |
584 | + </object> | |
585 | + <string key="NSScreenRect">{{0, 0}, {1280, 832}}</string> | |
586 | + <string key="NSMinSize">{94, 108}</string> | |
587 | + <string key="NSMaxSize">{3.4028235e+38, 3.4028235e+38}</string> | |
588 | + <bool key="NSWindowIsRestorable">YES</bool> | |
589 | + </object> | |
590 | + </object> | |
591 | + <object class="IBObjectContainer" key="IBDocument.Objects"> | |
592 | + <object class="NSMutableArray" key="connectionRecords"> | |
593 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
594 | + <object class="IBConnectionRecord"> | |
595 | + <object class="IBOutletConnection" key="connection"> | |
596 | + <string key="label">delegate</string> | |
597 | + <reference key="source" ref="7254494"/> | |
598 | + <reference key="destination" ref="1031196511"/> | |
599 | + </object> | |
600 | + <int key="connectionID">17</int> | |
601 | + </object> | |
602 | + <object class="IBConnectionRecord"> | |
603 | + <object class="IBOutletConnection" key="connection"> | |
604 | + <string key="label">window</string> | |
605 | + <reference key="source" ref="1031196511"/> | |
606 | + <reference key="destination" ref="7254494"/> | |
607 | + </object> | |
608 | + <int key="connectionID">18</int> | |
609 | + </object> | |
610 | + <object class="IBConnectionRecord"> | |
611 | + <object class="IBBindingConnection" key="connection"> | |
612 | + <string key="label">value: appearance.activeBlueStartColor</string> | |
613 | + <reference key="source" ref="1059309063"/> | |
614 | + <reference key="destination" ref="1031196511"/> | |
615 | + <object class="NSNibBindingConnector" key="connector"> | |
616 | + <reference key="NSSource" ref="1059309063"/> | |
617 | + <reference key="NSDestination" ref="1031196511"/> | |
618 | + <string key="NSLabel">value: appearance.activeBlueStartColor</string> | |
619 | + <string key="NSBinding">value</string> | |
620 | + <string key="NSKeyPath">appearance.activeBlueStartColor</string> | |
621 | + <int key="NSNibBindingConnectorVersion">2</int> | |
622 | + </object> | |
623 | + </object> | |
624 | + <int key="connectionID">100028</int> | |
625 | + </object> | |
626 | + <object class="IBConnectionRecord"> | |
627 | + <object class="IBBindingConnection" key="connection"> | |
628 | + <string key="label">value: appearance.activeBlueEndColor</string> | |
629 | + <reference key="source" ref="673209546"/> | |
630 | + <reference key="destination" ref="1031196511"/> | |
631 | + <object class="NSNibBindingConnector" key="connector"> | |
632 | + <reference key="NSSource" ref="673209546"/> | |
633 | + <reference key="NSDestination" ref="1031196511"/> | |
634 | + <string key="NSLabel">value: appearance.activeBlueEndColor</string> | |
635 | + <string key="NSBinding">value</string> | |
636 | + <string key="NSKeyPath">appearance.activeBlueEndColor</string> | |
637 | + <int key="NSNibBindingConnectorVersion">2</int> | |
638 | + </object> | |
639 | + </object> | |
640 | + <int key="connectionID">100029</int> | |
641 | + </object> | |
642 | + <object class="IBConnectionRecord"> | |
643 | + <object class="IBOutletConnection" key="connection"> | |
644 | + <string key="label">blueActiveView</string> | |
645 | + <reference key="source" ref="1031196511"/> | |
646 | + <reference key="destination" ref="118649929"/> | |
647 | + </object> | |
648 | + <int key="connectionID">100030</int> | |
649 | + </object> | |
650 | + <object class="IBConnectionRecord"> | |
651 | + <object class="IBBindingConnection" key="connection"> | |
652 | + <string key="label">value: appearance.textColor</string> | |
653 | + <reference key="source" ref="310510041"/> | |
654 | + <reference key="destination" ref="1031196511"/> | |
655 | + <object class="NSNibBindingConnector" key="connector"> | |
656 | + <reference key="NSSource" ref="310510041"/> | |
657 | + <reference key="NSDestination" ref="1031196511"/> | |
658 | + <string key="NSLabel">value: appearance.textColor</string> | |
659 | + <string key="NSBinding">value</string> | |
660 | + <string key="NSKeyPath">appearance.textColor</string> | |
661 | + <int key="NSNibBindingConnectorVersion">2</int> | |
662 | + </object> | |
663 | + </object> | |
664 | + <int key="connectionID">100033</int> | |
665 | + </object> | |
666 | + <object class="IBConnectionRecord"> | |
667 | + <object class="IBBindingConnection" key="connection"> | |
668 | + <string key="label">value: appearance.infoColor</string> | |
669 | + <reference key="source" ref="319228270"/> | |
670 | + <reference key="destination" ref="1031196511"/> | |
671 | + <object class="NSNibBindingConnector" key="connector"> | |
672 | + <reference key="NSSource" ref="319228270"/> | |
673 | + <reference key="NSDestination" ref="1031196511"/> | |
674 | + <string key="NSLabel">value: appearance.infoColor</string> | |
675 | + <string key="NSBinding">value</string> | |
676 | + <string key="NSKeyPath">appearance.infoColor</string> | |
677 | + <int key="NSNibBindingConnectorVersion">2</int> | |
678 | + </object> | |
679 | + </object> | |
680 | + <int key="connectionID">100034</int> | |
681 | + </object> | |
682 | + <object class="IBConnectionRecord"> | |
683 | + <object class="IBBindingConnection" key="connection"> | |
684 | + <string key="label">value: appearance.drawsCarvedText</string> | |
685 | + <reference key="source" ref="597672940"/> | |
686 | + <reference key="destination" ref="1031196511"/> | |
687 | + <object class="NSNibBindingConnector" key="connector"> | |
688 | + <reference key="NSSource" ref="597672940"/> | |
689 | + <reference key="NSDestination" ref="1031196511"/> | |
690 | + <string key="NSLabel">value: appearance.drawsCarvedText</string> | |
691 | + <string key="NSBinding">value</string> | |
692 | + <string key="NSKeyPath">appearance.drawsCarvedText</string> | |
693 | + <int key="NSNibBindingConnectorVersion">2</int> | |
694 | + </object> | |
695 | + </object> | |
696 | + <int key="connectionID">100037</int> | |
697 | + </object> | |
698 | + <object class="IBConnectionRecord"> | |
699 | + <object class="IBBindingConnection" key="connection"> | |
700 | + <string key="label">value: appearance.activeGraphiteStartColor</string> | |
701 | + <reference key="source" ref="417410538"/> | |
702 | + <reference key="destination" ref="1031196511"/> | |
703 | + <object class="NSNibBindingConnector" key="connector"> | |
704 | + <reference key="NSSource" ref="417410538"/> | |
705 | + <reference key="NSDestination" ref="1031196511"/> | |
706 | + <string key="NSLabel">value: appearance.activeGraphiteStartColor</string> | |
707 | + <string key="NSBinding">value</string> | |
708 | + <string key="NSKeyPath">appearance.activeGraphiteStartColor</string> | |
709 | + <int key="NSNibBindingConnectorVersion">2</int> | |
710 | + </object> | |
711 | + </object> | |
712 | + <int key="connectionID">100045</int> | |
713 | + </object> | |
714 | + <object class="IBConnectionRecord"> | |
715 | + <object class="IBBindingConnection" key="connection"> | |
716 | + <string key="label">value: appearance.activeGraphiteEndColor</string> | |
717 | + <reference key="source" ref="343723473"/> | |
718 | + <reference key="destination" ref="1031196511"/> | |
719 | + <object class="NSNibBindingConnector" key="connector"> | |
720 | + <reference key="NSSource" ref="343723473"/> | |
721 | + <reference key="NSDestination" ref="1031196511"/> | |
722 | + <string key="NSLabel">value: appearance.activeGraphiteEndColor</string> | |
723 | + <string key="NSBinding">value</string> | |
724 | + <string key="NSKeyPath">appearance.activeGraphiteEndColor</string> | |
725 | + <int key="NSNibBindingConnectorVersion">2</int> | |
726 | + </object> | |
727 | + </object> | |
728 | + <int key="connectionID">100046</int> | |
729 | + </object> | |
730 | + <object class="IBConnectionRecord"> | |
731 | + <object class="IBBindingConnection" key="connection"> | |
732 | + <string key="label">value: appearance.inactiveStartColor</string> | |
733 | + <reference key="source" ref="531145634"/> | |
734 | + <reference key="destination" ref="1031196511"/> | |
735 | + <object class="NSNibBindingConnector" key="connector"> | |
736 | + <reference key="NSSource" ref="531145634"/> | |
737 | + <reference key="NSDestination" ref="1031196511"/> | |
738 | + <string key="NSLabel">value: appearance.inactiveStartColor</string> | |
739 | + <string key="NSBinding">value</string> | |
740 | + <string key="NSKeyPath">appearance.inactiveStartColor</string> | |
741 | + <int key="NSNibBindingConnectorVersion">2</int> | |
742 | + </object> | |
743 | + </object> | |
744 | + <int key="connectionID">100047</int> | |
745 | + </object> | |
746 | + <object class="IBConnectionRecord"> | |
747 | + <object class="IBBindingConnection" key="connection"> | |
748 | + <string key="label">value: appearance.inactiveEndColor</string> | |
749 | + <reference key="source" ref="381332317"/> | |
750 | + <reference key="destination" ref="1031196511"/> | |
751 | + <object class="NSNibBindingConnector" key="connector"> | |
752 | + <reference key="NSSource" ref="381332317"/> | |
753 | + <reference key="NSDestination" ref="1031196511"/> | |
754 | + <string key="NSLabel">value: appearance.inactiveEndColor</string> | |
755 | + <string key="NSBinding">value</string> | |
756 | + <string key="NSKeyPath">appearance.inactiveEndColor</string> | |
757 | + <int key="NSNibBindingConnectorVersion">2</int> | |
758 | + </object> | |
759 | + </object> | |
760 | + <int key="connectionID">100048</int> | |
761 | + </object> | |
762 | + <object class="IBConnectionRecord"> | |
763 | + <object class="IBOutletConnection" key="connection"> | |
764 | + <string key="label">graphiteActiveView</string> | |
765 | + <reference key="source" ref="1031196511"/> | |
766 | + <reference key="destination" ref="849818072"/> | |
767 | + </object> | |
768 | + <int key="connectionID">100049</int> | |
769 | + </object> | |
770 | + <object class="IBConnectionRecord"> | |
771 | + <object class="IBOutletConnection" key="connection"> | |
772 | + <string key="label">inactiveView</string> | |
773 | + <reference key="source" ref="1031196511"/> | |
774 | + <reference key="destination" ref="213182060"/> | |
775 | + </object> | |
776 | + <int key="connectionID">100050</int> | |
777 | + </object> | |
778 | + <object class="IBConnectionRecord"> | |
779 | + <object class="IBOutletConnection" key="connection"> | |
780 | + <string key="label">infoView</string> | |
781 | + <reference key="source" ref="1031196511"/> | |
782 | + <reference key="destination" ref="864265100"/> | |
783 | + </object> | |
784 | + <int key="connectionID">100051</int> | |
785 | + </object> | |
786 | + <object class="IBConnectionRecord"> | |
787 | + <object class="IBBindingConnection" key="connection"> | |
788 | + <string key="label">value: appearance.infoBackgroundColor</string> | |
789 | + <reference key="source" ref="115837166"/> | |
790 | + <reference key="destination" ref="1031196511"/> | |
791 | + <object class="NSNibBindingConnector" key="connector"> | |
792 | + <reference key="NSSource" ref="115837166"/> | |
793 | + <reference key="NSDestination" ref="1031196511"/> | |
794 | + <string key="NSLabel">value: appearance.infoBackgroundColor</string> | |
795 | + <string key="NSBinding">value</string> | |
796 | + <string key="NSKeyPath">appearance.infoBackgroundColor</string> | |
797 | + <int key="NSNibBindingConnectorVersion">2</int> | |
798 | + </object> | |
799 | + </object> | |
800 | + <int key="connectionID">100054</int> | |
801 | + </object> | |
802 | + <object class="IBConnectionRecord"> | |
803 | + <object class="IBBindingConnection" key="connection"> | |
804 | + <string key="label">value: appearance.drawsBottomBorder</string> | |
805 | + <reference key="source" ref="980973922"/> | |
806 | + <reference key="destination" ref="1031196511"/> | |
807 | + <object class="NSNibBindingConnector" key="connector"> | |
808 | + <reference key="NSSource" ref="980973922"/> | |
809 | + <reference key="NSDestination" ref="1031196511"/> | |
810 | + <string key="NSLabel">value: appearance.drawsBottomBorder</string> | |
811 | + <string key="NSBinding">value</string> | |
812 | + <string key="NSKeyPath">appearance.drawsBottomBorder</string> | |
813 | + <int key="NSNibBindingConnectorVersion">2</int> | |
814 | + </object> | |
815 | + </object> | |
816 | + <int key="connectionID">100096</int> | |
817 | + </object> | |
818 | + <object class="IBConnectionRecord"> | |
819 | + <object class="IBOutletConnection" key="connection"> | |
820 | + <string key="label">textColorWell</string> | |
821 | + <reference key="source" ref="1031196511"/> | |
822 | + <reference key="destination" ref="310510041"/> | |
823 | + </object> | |
824 | + <int key="connectionID">100097</int> | |
825 | + </object> | |
826 | + <object class="IBConnectionRecord"> | |
827 | + <object class="IBOutletConnection" key="connection"> | |
828 | + <string key="label">textColorLabel</string> | |
829 | + <reference key="source" ref="1031196511"/> | |
830 | + <reference key="destination" ref="469490949"/> | |
831 | + </object> | |
832 | + <int key="connectionID">100098</int> | |
833 | + </object> | |
834 | + </object> | |
835 | + <object class="IBMutableOrderedSet" key="objectRecords"> | |
836 | + <object class="NSArray" key="orderedObjects"> | |
837 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
838 | + <object class="IBObjectRecord"> | |
839 | + <int key="objectID">0</int> | |
840 | + <object class="NSArray" key="object" id="0"> | |
841 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
842 | + </object> | |
843 | + <reference key="children" ref="682672009"/> | |
844 | + <nil key="parent"/> | |
845 | + </object> | |
846 | + <object class="IBObjectRecord"> | |
847 | + <int key="objectID">-2</int> | |
848 | + <reference key="object" ref="1031196511"/> | |
849 | + <reference key="parent" ref="0"/> | |
850 | + <string key="objectName">File's Owner</string> | |
851 | + </object> | |
852 | + <object class="IBObjectRecord"> | |
853 | + <int key="objectID">-1</int> | |
854 | + <reference key="object" ref="375934856"/> | |
855 | + <reference key="parent" ref="0"/> | |
856 | + <string key="objectName">First Responder</string> | |
857 | + </object> | |
858 | + <object class="IBObjectRecord"> | |
859 | + <int key="objectID">-3</int> | |
860 | + <reference key="object" ref="856334241"/> | |
861 | + <reference key="parent" ref="0"/> | |
862 | + <string key="objectName">Application</string> | |
863 | + </object> | |
864 | + <object class="IBObjectRecord"> | |
865 | + <int key="objectID">5</int> | |
866 | + <reference key="object" ref="7254494"/> | |
867 | + <object class="NSMutableArray" key="children"> | |
868 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
869 | + <reference ref="719762547"/> | |
870 | + </object> | |
871 | + <reference key="parent" ref="0"/> | |
872 | + <string key="objectName">Window</string> | |
873 | + </object> | |
874 | + <object class="IBObjectRecord"> | |
875 | + <int key="objectID">6</int> | |
876 | + <reference key="object" ref="719762547"/> | |
877 | + <object class="NSMutableArray" key="children"> | |
878 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
879 | + <reference ref="1066988680"/> | |
880 | + <reference ref="298761609"/> | |
881 | + </object> | |
882 | + <reference key="parent" ref="7254494"/> | |
883 | + </object> | |
884 | + <object class="IBObjectRecord"> | |
885 | + <int key="objectID">100077</int> | |
886 | + <reference key="object" ref="1066988680"/> | |
887 | + <object class="NSMutableArray" key="children"> | |
888 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
889 | + <reference ref="439759860"/> | |
890 | + <reference ref="115837166"/> | |
891 | + <reference ref="642476544"/> | |
892 | + <reference ref="765294470"/> | |
893 | + <reference ref="864265100"/> | |
894 | + <reference ref="319228270"/> | |
895 | + </object> | |
896 | + <reference key="parent" ref="719762547"/> | |
897 | + </object> | |
898 | + <object class="IBObjectRecord"> | |
899 | + <int key="objectID">100071</int> | |
900 | + <reference key="object" ref="439759860"/> | |
901 | + <object class="NSMutableArray" key="children"> | |
902 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
903 | + <reference ref="909929335"/> | |
904 | + </object> | |
905 | + <reference key="parent" ref="1066988680"/> | |
906 | + </object> | |
907 | + <object class="IBObjectRecord"> | |
908 | + <int key="objectID">100091</int> | |
909 | + <reference key="object" ref="909929335"/> | |
910 | + <reference key="parent" ref="439759860"/> | |
911 | + </object> | |
912 | + <object class="IBObjectRecord"> | |
913 | + <int key="objectID">100052</int> | |
914 | + <reference key="object" ref="115837166"/> | |
915 | + <reference key="parent" ref="1066988680"/> | |
916 | + </object> | |
917 | + <object class="IBObjectRecord"> | |
918 | + <int key="objectID">100069</int> | |
919 | + <reference key="object" ref="642476544"/> | |
920 | + <object class="NSMutableArray" key="children"> | |
921 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
922 | + <reference ref="973604798"/> | |
923 | + </object> | |
924 | + <reference key="parent" ref="1066988680"/> | |
925 | + </object> | |
926 | + <object class="IBObjectRecord"> | |
927 | + <int key="objectID">100090</int> | |
928 | + <reference key="object" ref="973604798"/> | |
929 | + <reference key="parent" ref="642476544"/> | |
930 | + </object> | |
931 | + <object class="IBObjectRecord"> | |
932 | + <int key="objectID">100073</int> | |
933 | + <reference key="object" ref="765294470"/> | |
934 | + <object class="NSMutableArray" key="children"> | |
935 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
936 | + <reference ref="763566338"/> | |
937 | + </object> | |
938 | + <reference key="parent" ref="1066988680"/> | |
939 | + </object> | |
940 | + <object class="IBObjectRecord"> | |
941 | + <int key="objectID">100092</int> | |
942 | + <reference key="object" ref="763566338"/> | |
943 | + <reference key="parent" ref="765294470"/> | |
944 | + </object> | |
945 | + <object class="IBObjectRecord"> | |
946 | + <int key="objectID">100040</int> | |
947 | + <reference key="object" ref="864265100"/> | |
948 | + <reference key="parent" ref="1066988680"/> | |
949 | + </object> | |
950 | + <object class="IBObjectRecord"> | |
951 | + <int key="objectID">100032</int> | |
952 | + <reference key="object" ref="319228270"/> | |
953 | + <reference key="parent" ref="1066988680"/> | |
954 | + </object> | |
955 | + <object class="IBObjectRecord"> | |
956 | + <int key="objectID">100075</int> | |
957 | + <reference key="object" ref="298761609"/> | |
958 | + <object class="NSMutableArray" key="children"> | |
959 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
960 | + <reference ref="924124777"/> | |
961 | + <reference ref="531145634"/> | |
962 | + <reference ref="213182060"/> | |
963 | + <reference ref="227258326"/> | |
964 | + <reference ref="343723473"/> | |
965 | + <reference ref="740500073"/> | |
966 | + <reference ref="381332317"/> | |
967 | + <reference ref="118649929"/> | |
968 | + <reference ref="417410538"/> | |
969 | + <reference ref="673209546"/> | |
970 | + <reference ref="1059309063"/> | |
971 | + <reference ref="849818072"/> | |
972 | + <reference ref="339760918"/> | |
973 | + <reference ref="506095599"/> | |
974 | + <reference ref="211918363"/> | |
975 | + <reference ref="310510041"/> | |
976 | + <reference ref="469490949"/> | |
977 | + <reference ref="597672940"/> | |
978 | + <reference ref="980973922"/> | |
979 | + </object> | |
980 | + <reference key="parent" ref="719762547"/> | |
981 | + </object> | |
982 | + <object class="IBObjectRecord"> | |
983 | + <int key="objectID">100067</int> | |
984 | + <reference key="object" ref="924124777"/> | |
985 | + <object class="NSMutableArray" key="children"> | |
986 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
987 | + <reference ref="475691841"/> | |
988 | + </object> | |
989 | + <reference key="parent" ref="298761609"/> | |
990 | + </object> | |
991 | + <object class="IBObjectRecord"> | |
992 | + <int key="objectID">100089</int> | |
993 | + <reference key="object" ref="475691841"/> | |
994 | + <reference key="parent" ref="924124777"/> | |
995 | + </object> | |
996 | + <object class="IBObjectRecord"> | |
997 | + <int key="objectID">100035</int> | |
998 | + <reference key="object" ref="597672940"/> | |
999 | + <object class="NSMutableArray" key="children"> | |
1000 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1001 | + <reference ref="428725038"/> | |
1002 | + </object> | |
1003 | + <reference key="parent" ref="298761609"/> | |
1004 | + </object> | |
1005 | + <object class="IBObjectRecord"> | |
1006 | + <int key="objectID">100082</int> | |
1007 | + <reference key="object" ref="428725038"/> | |
1008 | + <reference key="parent" ref="597672940"/> | |
1009 | + </object> | |
1010 | + <object class="IBObjectRecord"> | |
1011 | + <int key="objectID">100042</int> | |
1012 | + <reference key="object" ref="531145634"/> | |
1013 | + <reference key="parent" ref="298761609"/> | |
1014 | + </object> | |
1015 | + <object class="IBObjectRecord"> | |
1016 | + <int key="objectID">100039</int> | |
1017 | + <reference key="object" ref="213182060"/> | |
1018 | + <reference key="parent" ref="298761609"/> | |
1019 | + </object> | |
1020 | + <object class="IBObjectRecord"> | |
1021 | + <int key="objectID">100065</int> | |
1022 | + <reference key="object" ref="227258326"/> | |
1023 | + <object class="NSMutableArray" key="children"> | |
1024 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1025 | + <reference ref="613947293"/> | |
1026 | + </object> | |
1027 | + <reference key="parent" ref="298761609"/> | |
1028 | + </object> | |
1029 | + <object class="IBObjectRecord"> | |
1030 | + <int key="objectID">100088</int> | |
1031 | + <reference key="object" ref="613947293"/> | |
1032 | + <reference key="parent" ref="227258326"/> | |
1033 | + </object> | |
1034 | + <object class="IBObjectRecord"> | |
1035 | + <int key="objectID">100043</int> | |
1036 | + <reference key="object" ref="343723473"/> | |
1037 | + <reference key="parent" ref="298761609"/> | |
1038 | + </object> | |
1039 | + <object class="IBObjectRecord"> | |
1040 | + <int key="objectID">100063</int> | |
1041 | + <reference key="object" ref="740500073"/> | |
1042 | + <object class="NSMutableArray" key="children"> | |
1043 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1044 | + <reference ref="468936698"/> | |
1045 | + </object> | |
1046 | + <reference key="parent" ref="298761609"/> | |
1047 | + </object> | |
1048 | + <object class="IBObjectRecord"> | |
1049 | + <int key="objectID">100087</int> | |
1050 | + <reference key="object" ref="468936698"/> | |
1051 | + <reference key="parent" ref="740500073"/> | |
1052 | + </object> | |
1053 | + <object class="IBObjectRecord"> | |
1054 | + <int key="objectID">100044</int> | |
1055 | + <reference key="object" ref="381332317"/> | |
1056 | + <reference key="parent" ref="298761609"/> | |
1057 | + </object> | |
1058 | + <object class="IBObjectRecord"> | |
1059 | + <int key="objectID">100025</int> | |
1060 | + <reference key="object" ref="118649929"/> | |
1061 | + <reference key="parent" ref="298761609"/> | |
1062 | + </object> | |
1063 | + <object class="IBObjectRecord"> | |
1064 | + <int key="objectID">100041</int> | |
1065 | + <reference key="object" ref="417410538"/> | |
1066 | + <reference key="parent" ref="298761609"/> | |
1067 | + </object> | |
1068 | + <object class="IBObjectRecord"> | |
1069 | + <int key="objectID">100061</int> | |
1070 | + <reference key="object" ref="469490949"/> | |
1071 | + <object class="NSMutableArray" key="children"> | |
1072 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1073 | + <reference ref="955410157"/> | |
1074 | + </object> | |
1075 | + <reference key="parent" ref="298761609"/> | |
1076 | + </object> | |
1077 | + <object class="IBObjectRecord"> | |
1078 | + <int key="objectID">100086</int> | |
1079 | + <reference key="object" ref="955410157"/> | |
1080 | + <reference key="parent" ref="469490949"/> | |
1081 | + </object> | |
1082 | + <object class="IBObjectRecord"> | |
1083 | + <int key="objectID">100026</int> | |
1084 | + <reference key="object" ref="673209546"/> | |
1085 | + <reference key="parent" ref="298761609"/> | |
1086 | + </object> | |
1087 | + <object class="IBObjectRecord"> | |
1088 | + <int key="objectID">100027</int> | |
1089 | + <reference key="object" ref="1059309063"/> | |
1090 | + <reference key="parent" ref="298761609"/> | |
1091 | + </object> | |
1092 | + <object class="IBObjectRecord"> | |
1093 | + <int key="objectID">100038</int> | |
1094 | + <reference key="object" ref="849818072"/> | |
1095 | + <reference key="parent" ref="298761609"/> | |
1096 | + </object> | |
1097 | + <object class="IBObjectRecord"> | |
1098 | + <int key="objectID">100057</int> | |
1099 | + <reference key="object" ref="339760918"/> | |
1100 | + <object class="NSMutableArray" key="children"> | |
1101 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1102 | + <reference ref="1053706153"/> | |
1103 | + </object> | |
1104 | + <reference key="parent" ref="298761609"/> | |
1105 | + </object> | |
1106 | + <object class="IBObjectRecord"> | |
1107 | + <int key="objectID">100084</int> | |
1108 | + <reference key="object" ref="1053706153"/> | |
1109 | + <reference key="parent" ref="339760918"/> | |
1110 | + </object> | |
1111 | + <object class="IBObjectRecord"> | |
1112 | + <int key="objectID">100031</int> | |
1113 | + <reference key="object" ref="310510041"/> | |
1114 | + <reference key="parent" ref="298761609"/> | |
1115 | + </object> | |
1116 | + <object class="IBObjectRecord"> | |
1117 | + <int key="objectID">100059</int> | |
1118 | + <reference key="object" ref="506095599"/> | |
1119 | + <object class="NSMutableArray" key="children"> | |
1120 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1121 | + <reference ref="37671417"/> | |
1122 | + </object> | |
1123 | + <reference key="parent" ref="298761609"/> | |
1124 | + </object> | |
1125 | + <object class="IBObjectRecord"> | |
1126 | + <int key="objectID">100085</int> | |
1127 | + <reference key="object" ref="37671417"/> | |
1128 | + <reference key="parent" ref="506095599"/> | |
1129 | + </object> | |
1130 | + <object class="IBObjectRecord"> | |
1131 | + <int key="objectID">100055</int> | |
1132 | + <reference key="object" ref="211918363"/> | |
1133 | + <object class="NSMutableArray" key="children"> | |
1134 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1135 | + <reference ref="646962802"/> | |
1136 | + </object> | |
1137 | + <reference key="parent" ref="298761609"/> | |
1138 | + </object> | |
1139 | + <object class="IBObjectRecord"> | |
1140 | + <int key="objectID">100083</int> | |
1141 | + <reference key="object" ref="646962802"/> | |
1142 | + <reference key="parent" ref="211918363"/> | |
1143 | + </object> | |
1144 | + <object class="IBObjectRecord"> | |
1145 | + <int key="objectID">100093</int> | |
1146 | + <reference key="object" ref="980973922"/> | |
1147 | + <object class="NSMutableArray" key="children"> | |
1148 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1149 | + <reference ref="169672074"/> | |
1150 | + </object> | |
1151 | + <reference key="parent" ref="298761609"/> | |
1152 | + </object> | |
1153 | + <object class="IBObjectRecord"> | |
1154 | + <int key="objectID">100094</int> | |
1155 | + <reference key="object" ref="169672074"/> | |
1156 | + <reference key="parent" ref="980973922"/> | |
1157 | + </object> | |
1158 | + </object> | |
1159 | + </object> | |
1160 | + <object class="NSMutableDictionary" key="flattenedProperties"> | |
1161 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1162 | + <object class="NSArray" key="dict.sortedKeys"> | |
1163 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1164 | + <string>-3.IBPluginDependency</string> | |
1165 | + <string>-3.ImportedFromIB2</string> | |
1166 | + <string>100025.IBPluginDependency</string> | |
1167 | + <string>100025.ImportedFromIB2</string> | |
1168 | + <string>100026.IBPluginDependency</string> | |
1169 | + <string>100026.ImportedFromIB2</string> | |
1170 | + <string>100027.IBPluginDependency</string> | |
1171 | + <string>100027.ImportedFromIB2</string> | |
1172 | + <string>100031.IBAttributePlaceholdersKey</string> | |
1173 | + <string>100031.IBPluginDependency</string> | |
1174 | + <string>100031.IBViewBoundsToFrameTransform</string> | |
1175 | + <string>100031.ImportedFromIB2</string> | |
1176 | + <string>100032.IBPluginDependency</string> | |
1177 | + <string>100032.ImportedFromIB2</string> | |
1178 | + <string>100035.IBAttributePlaceholdersKey</string> | |
1179 | + <string>100035.IBPluginDependency</string> | |
1180 | + <string>100035.IBViewBoundsToFrameTransform</string> | |
1181 | + <string>100035.ImportedFromIB2</string> | |
1182 | + <string>100038.IBPluginDependency</string> | |
1183 | + <string>100038.ImportedFromIB2</string> | |
1184 | + <string>100039.IBPluginDependency</string> | |
1185 | + <string>100039.ImportedFromIB2</string> | |
1186 | + <string>100040.IBPluginDependency</string> | |
1187 | + <string>100040.ImportedFromIB2</string> | |
1188 | + <string>100041.IBPluginDependency</string> | |
1189 | + <string>100041.ImportedFromIB2</string> | |
1190 | + <string>100042.IBPluginDependency</string> | |
1191 | + <string>100042.ImportedFromIB2</string> | |
1192 | + <string>100043.IBPluginDependency</string> | |
1193 | + <string>100043.ImportedFromIB2</string> | |
1194 | + <string>100044.IBPluginDependency</string> | |
1195 | + <string>100044.ImportedFromIB2</string> | |
1196 | + <string>100052.IBPluginDependency</string> | |
1197 | + <string>100052.ImportedFromIB2</string> | |
1198 | + <string>100055.IBPluginDependency</string> | |
1199 | + <string>100055.ImportedFromIB2</string> | |
1200 | + <string>100057.IBPluginDependency</string> | |
1201 | + <string>100057.ImportedFromIB2</string> | |
1202 | + <string>100059.IBPluginDependency</string> | |
1203 | + <string>100059.ImportedFromIB2</string> | |
1204 | + <string>100061.IBPluginDependency</string> | |
1205 | + <string>100061.IBViewBoundsToFrameTransform</string> | |
1206 | + <string>100061.ImportedFromIB2</string> | |
1207 | + <string>100063.IBPluginDependency</string> | |
1208 | + <string>100063.ImportedFromIB2</string> | |
1209 | + <string>100065.IBPluginDependency</string> | |
1210 | + <string>100065.ImportedFromIB2</string> | |
1211 | + <string>100067.IBPluginDependency</string> | |
1212 | + <string>100067.ImportedFromIB2</string> | |
1213 | + <string>100069.IBPluginDependency</string> | |
1214 | + <string>100069.ImportedFromIB2</string> | |
1215 | + <string>100071.IBPluginDependency</string> | |
1216 | + <string>100071.ImportedFromIB2</string> | |
1217 | + <string>100073.IBPluginDependency</string> | |
1218 | + <string>100073.ImportedFromIB2</string> | |
1219 | + <string>100075.IBPluginDependency</string> | |
1220 | + <string>100075.ImportedFromIB2</string> | |
1221 | + <string>100077.IBPluginDependency</string> | |
1222 | + <string>100077.ImportedFromIB2</string> | |
1223 | + <string>100093.IBPluginDependency</string> | |
1224 | + <string>100093.IBViewBoundsToFrameTransform</string> | |
1225 | + <string>100093.ImportedFromIB2</string> | |
1226 | + <string>5.IBEditorWindowLastContentRect</string> | |
1227 | + <string>5.IBPluginDependency</string> | |
1228 | + <string>5.IBWindowTemplateEditedContentRect</string> | |
1229 | + <string>5.ImportedFromIB2</string> | |
1230 | + <string>5.windowTemplate.hasMinSize</string> | |
1231 | + <string>5.windowTemplate.minSize</string> | |
1232 | + <string>6.IBPluginDependency</string> | |
1233 | + <string>6.ImportedFromIB2</string> | |
1234 | + </object> | |
1235 | + <object class="NSMutableArray" key="dict.values"> | |
1236 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1237 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1238 | + <boolean value="YES"/> | |
1239 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1240 | + <boolean value="YES"/> | |
1241 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1242 | + <boolean value="YES"/> | |
1243 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1244 | + <boolean value="YES"/> | |
1245 | + <object class="NSMutableDictionary"> | |
1246 | + <string key="NS.key.0">ToolTip</string> | |
1247 | + <object class="IBToolTipAttribute" key="NS.object.0"> | |
1248 | + <string key="name">ToolTip</string> | |
1249 | + <reference key="object" ref="310510041"/> | |
1250 | + <string key="toolTip">彫り込みテキストがオンの時は文字色は無視されます</string> | |
1251 | + </object> | |
1252 | + </object> | |
1253 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1254 | + <object class="NSAffineTransform"> | |
1255 | + <bytes key="NSTransformStruct">AUOLAABBYAAAA</bytes> | |
1256 | + </object> | |
1257 | + <boolean value="YES"/> | |
1258 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1259 | + <boolean value="YES"/> | |
1260 | + <object class="NSMutableDictionary"> | |
1261 | + <string key="NS.key.0">ToolTip</string> | |
1262 | + <object class="IBToolTipAttribute" key="NS.object.0"> | |
1263 | + <string key="name">ToolTip</string> | |
1264 | + <reference key="object" ref="597672940"/> | |
1265 | + <string key="toolTip">彫り込みテキストがオンの時は文字色は無視されます</string> | |
1266 | + </object> | |
1267 | + </object> | |
1268 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1269 | + <object class="NSAffineTransform"> | |
1270 | + <bytes key="NSTransformStruct">P4AAAL+AAABDrYAAwgAAAA</bytes> | |
1271 | + </object> | |
1272 | + <boolean value="YES"/> | |
1273 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1274 | + <boolean value="YES"/> | |
1275 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1276 | + <boolean value="YES"/> | |
1277 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1278 | + <boolean value="YES"/> | |
1279 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1280 | + <boolean value="YES"/> | |
1281 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1282 | + <boolean value="YES"/> | |
1283 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1284 | + <boolean value="YES"/> | |
1285 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1286 | + <boolean value="YES"/> | |
1287 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1288 | + <boolean value="YES"/> | |
1289 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1290 | + <boolean value="YES"/> | |
1291 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1292 | + <boolean value="YES"/> | |
1293 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1294 | + <boolean value="YES"/> | |
1295 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1296 | + <object class="NSAffineTransform"> | |
1297 | + <bytes key="NSTransformStruct">P4AAAL+AAABDg4AAwgAAAA</bytes> | |
1298 | + </object> | |
1299 | + <boolean value="YES"/> | |
1300 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1301 | + <boolean value="YES"/> | |
1302 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1303 | + <boolean value="YES"/> | |
1304 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1305 | + <boolean value="YES"/> | |
1306 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1307 | + <boolean value="YES"/> | |
1308 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1309 | + <boolean value="YES"/> | |
1310 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1311 | + <boolean value="YES"/> | |
1312 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1313 | + <boolean value="YES"/> | |
1314 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1315 | + <boolean value="YES"/> | |
1316 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1317 | + <object class="NSAffineTransform"> | |
1318 | + <bytes key="NSTransformStruct">P4AAAL+AAABDTgAAwgAAAA</bytes> | |
1319 | + </object> | |
1320 | + <boolean value="YES"/> | |
1321 | + <string>{{36, 175}, {643, 322}}</string> | |
1322 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1323 | + <string>{{36, 175}, {643, 322}}</string> | |
1324 | + <boolean value="YES"/> | |
1325 | + <boolean value="YES"/> | |
1326 | + <string>{94, 86}</string> | |
1327 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
1328 | + <boolean value="YES"/> | |
1329 | + </object> | |
1330 | + </object> | |
1331 | + <object class="NSMutableDictionary" key="unlocalizedProperties"> | |
1332 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1333 | + <reference key="dict.sortedKeys" ref="0"/> | |
1334 | + <object class="NSMutableArray" key="dict.values"> | |
1335 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1336 | + </object> | |
1337 | + </object> | |
1338 | + <nil key="activeLocalization"/> | |
1339 | + <object class="NSMutableDictionary" key="localizations"> | |
1340 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1341 | + <reference key="dict.sortedKeys" ref="0"/> | |
1342 | + <object class="NSMutableArray" key="dict.values"> | |
1343 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1344 | + </object> | |
1345 | + </object> | |
1346 | + <nil key="sourceID"/> | |
1347 | + <int key="maxID">100098</int> | |
1348 | + </object> | |
1349 | + <object class="IBClassDescriber" key="IBDocument.Classes"> | |
1350 | + <object class="NSMutableArray" key="referencedPartialClassDescriptions"> | |
1351 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1352 | + <object class="IBPartialClassDescription"> | |
1353 | + <string key="className">BSCSTitleRulerImitation</string> | |
1354 | + <string key="superclassName">NSView</string> | |
1355 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1356 | + <string key="majorKey">IBProjectSource</string> | |
1357 | + <string key="minorKey">BSCSTitleRulerImitation.h</string> | |
1358 | + </object> | |
1359 | + </object> | |
1360 | + <object class="IBPartialClassDescription"> | |
1361 | + <string key="className">BSCSTitleRulerImitation</string> | |
1362 | + <string key="superclassName">NSView</string> | |
1363 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1364 | + <string key="majorKey">IBUserSource</string> | |
1365 | + <string key="minorKey"/> | |
1366 | + </object> | |
1367 | + </object> | |
1368 | + <object class="IBPartialClassDescription"> | |
1369 | + <string key="className">BSTRADocument</string> | |
1370 | + <string key="superclassName">NSDocument</string> | |
1371 | + <object class="NSMutableDictionary" key="actions"> | |
1372 | + <string key="NS.key.0">saveToBSSupportFolder:</string> | |
1373 | + <string key="NS.object.0">id</string> | |
1374 | + </object> | |
1375 | + <object class="NSMutableDictionary" key="actionInfosByName"> | |
1376 | + <string key="NS.key.0">saveToBSSupportFolder:</string> | |
1377 | + <object class="IBActionInfo" key="NS.object.0"> | |
1378 | + <string key="name">saveToBSSupportFolder:</string> | |
1379 | + <string key="candidateClassName">id</string> | |
1380 | + </object> | |
1381 | + </object> | |
1382 | + <object class="NSMutableDictionary" key="outlets"> | |
1383 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1384 | + <object class="NSArray" key="dict.sortedKeys"> | |
1385 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1386 | + <string>blueActiveView</string> | |
1387 | + <string>graphiteActiveView</string> | |
1388 | + <string>inactiveView</string> | |
1389 | + <string>infoView</string> | |
1390 | + <string>textColorLabel</string> | |
1391 | + <string>textColorWell</string> | |
1392 | + </object> | |
1393 | + <object class="NSMutableArray" key="dict.values"> | |
1394 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1395 | + <string>BSCSTitleRulerImitation</string> | |
1396 | + <string>BSCSTitleRulerImitation</string> | |
1397 | + <string>BSCSTitleRulerImitation</string> | |
1398 | + <string>BSCSTitleRulerImitation</string> | |
1399 | + <string>NSTextField</string> | |
1400 | + <string>NSColorWell</string> | |
1401 | + </object> | |
1402 | + </object> | |
1403 | + <object class="NSMutableDictionary" key="toOneOutletInfosByName"> | |
1404 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1405 | + <object class="NSArray" key="dict.sortedKeys"> | |
1406 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1407 | + <string>blueActiveView</string> | |
1408 | + <string>graphiteActiveView</string> | |
1409 | + <string>inactiveView</string> | |
1410 | + <string>infoView</string> | |
1411 | + <string>textColorLabel</string> | |
1412 | + <string>textColorWell</string> | |
1413 | + </object> | |
1414 | + <object class="NSMutableArray" key="dict.values"> | |
1415 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1416 | + <object class="IBToOneOutletInfo"> | |
1417 | + <string key="name">blueActiveView</string> | |
1418 | + <string key="candidateClassName">BSCSTitleRulerImitation</string> | |
1419 | + </object> | |
1420 | + <object class="IBToOneOutletInfo"> | |
1421 | + <string key="name">graphiteActiveView</string> | |
1422 | + <string key="candidateClassName">BSCSTitleRulerImitation</string> | |
1423 | + </object> | |
1424 | + <object class="IBToOneOutletInfo"> | |
1425 | + <string key="name">inactiveView</string> | |
1426 | + <string key="candidateClassName">BSCSTitleRulerImitation</string> | |
1427 | + </object> | |
1428 | + <object class="IBToOneOutletInfo"> | |
1429 | + <string key="name">infoView</string> | |
1430 | + <string key="candidateClassName">BSCSTitleRulerImitation</string> | |
1431 | + </object> | |
1432 | + <object class="IBToOneOutletInfo"> | |
1433 | + <string key="name">textColorLabel</string> | |
1434 | + <string key="candidateClassName">NSTextField</string> | |
1435 | + </object> | |
1436 | + <object class="IBToOneOutletInfo"> | |
1437 | + <string key="name">textColorWell</string> | |
1438 | + <string key="candidateClassName">NSColorWell</string> | |
1439 | + </object> | |
1440 | + </object> | |
1441 | + </object> | |
1442 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1443 | + <string key="majorKey">IBProjectSource</string> | |
1444 | + <string key="minorKey">BSTRADocument.h</string> | |
1445 | + </object> | |
1446 | + </object> | |
1447 | + <object class="IBPartialClassDescription"> | |
1448 | + <string key="className">BSTRADocument</string> | |
1449 | + <string key="superclassName">NSDocument</string> | |
1450 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1451 | + <string key="majorKey">IBUserSource</string> | |
1452 | + <string key="minorKey"/> | |
1453 | + </object> | |
1454 | + </object> | |
1455 | + </object> | |
1456 | + <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+"> | |
1457 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1458 | + <object class="IBPartialClassDescription"> | |
1459 | + <string key="className">NSActionCell</string> | |
1460 | + <string key="superclassName">NSCell</string> | |
1461 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1462 | + <string key="majorKey">IBFrameworkSource</string> | |
1463 | + <string key="minorKey">AppKit.framework/Headers/NSActionCell.h</string> | |
1464 | + </object> | |
1465 | + </object> | |
1466 | + <object class="IBPartialClassDescription"> | |
1467 | + <string key="className">NSApplication</string> | |
1468 | + <string key="superclassName">NSResponder</string> | |
1469 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="654214299"> | |
1470 | + <string key="majorKey">IBFrameworkSource</string> | |
1471 | + <string key="minorKey">AppKit.framework/Headers/NSApplication.h</string> | |
1472 | + </object> | |
1473 | + </object> | |
1474 | + <object class="IBPartialClassDescription"> | |
1475 | + <string key="className">NSApplication</string> | |
1476 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="127124762"> | |
1477 | + <string key="majorKey">IBFrameworkSource</string> | |
1478 | + <string key="minorKey">AppKit.framework/Headers/NSApplicationScripting.h</string> | |
1479 | + </object> | |
1480 | + </object> | |
1481 | + <object class="IBPartialClassDescription"> | |
1482 | + <string key="className">NSApplication</string> | |
1483 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="798204292"> | |
1484 | + <string key="majorKey">IBFrameworkSource</string> | |
1485 | + <string key="minorKey">AppKit.framework/Headers/NSColorPanel.h</string> | |
1486 | + </object> | |
1487 | + </object> | |
1488 | + <object class="IBPartialClassDescription"> | |
1489 | + <string key="className">NSApplication</string> | |
1490 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1491 | + <string key="majorKey">IBFrameworkSource</string> | |
1492 | + <string key="minorKey">AppKit.framework/Headers/NSHelpManager.h</string> | |
1493 | + </object> | |
1494 | + </object> | |
1495 | + <object class="IBPartialClassDescription"> | |
1496 | + <string key="className">NSApplication</string> | |
1497 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1498 | + <string key="majorKey">IBFrameworkSource</string> | |
1499 | + <string key="minorKey">AppKit.framework/Headers/NSPageLayout.h</string> | |
1500 | + </object> | |
1501 | + </object> | |
1502 | + <object class="IBPartialClassDescription"> | |
1503 | + <string key="className">NSApplication</string> | |
1504 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1505 | + <string key="majorKey">IBFrameworkSource</string> | |
1506 | + <string key="minorKey">AppKit.framework/Headers/NSUserInterfaceItemSearching.h</string> | |
1507 | + </object> | |
1508 | + </object> | |
1509 | + <object class="IBPartialClassDescription"> | |
1510 | + <string key="className">NSApplication</string> | |
1511 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="812639051"> | |
1512 | + <string key="majorKey">IBFrameworkSource</string> | |
1513 | + <string key="minorKey">AppKit.framework/Headers/NSWindowRestoration.h</string> | |
1514 | + </object> | |
1515 | + </object> | |
1516 | + <object class="IBPartialClassDescription"> | |
1517 | + <string key="className">NSBox</string> | |
1518 | + <string key="superclassName">NSView</string> | |
1519 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1520 | + <string key="majorKey">IBFrameworkSource</string> | |
1521 | + <string key="minorKey">AppKit.framework/Headers/NSBox.h</string> | |
1522 | + </object> | |
1523 | + </object> | |
1524 | + <object class="IBPartialClassDescription"> | |
1525 | + <string key="className">NSButton</string> | |
1526 | + <string key="superclassName">NSControl</string> | |
1527 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1528 | + <string key="majorKey">IBFrameworkSource</string> | |
1529 | + <string key="minorKey">AppKit.framework/Headers/NSButton.h</string> | |
1530 | + </object> | |
1531 | + </object> | |
1532 | + <object class="IBPartialClassDescription"> | |
1533 | + <string key="className">NSButtonCell</string> | |
1534 | + <string key="superclassName">NSActionCell</string> | |
1535 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1536 | + <string key="majorKey">IBFrameworkSource</string> | |
1537 | + <string key="minorKey">AppKit.framework/Headers/NSButtonCell.h</string> | |
1538 | + </object> | |
1539 | + </object> | |
1540 | + <object class="IBPartialClassDescription"> | |
1541 | + <string key="className">NSCell</string> | |
1542 | + <string key="superclassName">NSObject</string> | |
1543 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1544 | + <string key="majorKey">IBFrameworkSource</string> | |
1545 | + <string key="minorKey">AppKit.framework/Headers/NSCell.h</string> | |
1546 | + </object> | |
1547 | + </object> | |
1548 | + <object class="IBPartialClassDescription"> | |
1549 | + <string key="className">NSColorWell</string> | |
1550 | + <string key="superclassName">NSControl</string> | |
1551 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1552 | + <string key="majorKey">IBFrameworkSource</string> | |
1553 | + <string key="minorKey">AppKit.framework/Headers/NSColorWell.h</string> | |
1554 | + </object> | |
1555 | + </object> | |
1556 | + <object class="IBPartialClassDescription"> | |
1557 | + <string key="className">NSControl</string> | |
1558 | + <string key="superclassName">NSView</string> | |
1559 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="253680022"> | |
1560 | + <string key="majorKey">IBFrameworkSource</string> | |
1561 | + <string key="minorKey">AppKit.framework/Headers/NSControl.h</string> | |
1562 | + </object> | |
1563 | + </object> | |
1564 | + <object class="IBPartialClassDescription"> | |
1565 | + <string key="className">NSControl</string> | |
1566 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="34970510"> | |
1567 | + <string key="majorKey">IBFrameworkSource</string> | |
1568 | + <string key="minorKey">AppKit.framework/Headers/NSLayoutConstraint.h</string> | |
1569 | + </object> | |
1570 | + </object> | |
1571 | + <object class="IBPartialClassDescription"> | |
1572 | + <string key="className">NSDocument</string> | |
1573 | + <string key="superclassName">NSObject</string> | |
1574 | + <object class="NSMutableDictionary" key="actions"> | |
1575 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1576 | + <object class="NSArray" key="dict.sortedKeys"> | |
1577 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1578 | + <string>printDocument:</string> | |
1579 | + <string>revertDocumentToSaved:</string> | |
1580 | + <string>runPageLayout:</string> | |
1581 | + <string>saveDocument:</string> | |
1582 | + <string>saveDocumentAs:</string> | |
1583 | + <string>saveDocumentTo:</string> | |
1584 | + </object> | |
1585 | + <object class="NSMutableArray" key="dict.values"> | |
1586 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1587 | + <string>id</string> | |
1588 | + <string>id</string> | |
1589 | + <string>id</string> | |
1590 | + <string>id</string> | |
1591 | + <string>id</string> | |
1592 | + <string>id</string> | |
1593 | + </object> | |
1594 | + </object> | |
1595 | + <object class="NSMutableDictionary" key="actionInfosByName"> | |
1596 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1597 | + <object class="NSArray" key="dict.sortedKeys"> | |
1598 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1599 | + <string>printDocument:</string> | |
1600 | + <string>revertDocumentToSaved:</string> | |
1601 | + <string>runPageLayout:</string> | |
1602 | + <string>saveDocument:</string> | |
1603 | + <string>saveDocumentAs:</string> | |
1604 | + <string>saveDocumentTo:</string> | |
1605 | + </object> | |
1606 | + <object class="NSMutableArray" key="dict.values"> | |
1607 | + <bool key="EncodedWithXMLCoder">YES</bool> | |
1608 | + <object class="IBActionInfo"> | |
1609 | + <string key="name">printDocument:</string> | |
1610 | + <string key="candidateClassName">id</string> | |
1611 | + </object> | |
1612 | + <object class="IBActionInfo"> | |
1613 | + <string key="name">revertDocumentToSaved:</string> | |
1614 | + <string key="candidateClassName">id</string> | |
1615 | + </object> | |
1616 | + <object class="IBActionInfo"> | |
1617 | + <string key="name">runPageLayout:</string> | |
1618 | + <string key="candidateClassName">id</string> | |
1619 | + </object> | |
1620 | + <object class="IBActionInfo"> | |
1621 | + <string key="name">saveDocument:</string> | |
1622 | + <string key="candidateClassName">id</string> | |
1623 | + </object> | |
1624 | + <object class="IBActionInfo"> | |
1625 | + <string key="name">saveDocumentAs:</string> | |
1626 | + <string key="candidateClassName">id</string> | |
1627 | + </object> | |
1628 | + <object class="IBActionInfo"> | |
1629 | + <string key="name">saveDocumentTo:</string> | |
1630 | + <string key="candidateClassName">id</string> | |
1631 | + </object> | |
1632 | + </object> | |
1633 | + </object> | |
1634 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1635 | + <string key="majorKey">IBFrameworkSource</string> | |
1636 | + <string key="minorKey">AppKit.framework/Headers/NSDocument.h</string> | |
1637 | + </object> | |
1638 | + </object> | |
1639 | + <object class="IBPartialClassDescription"> | |
1640 | + <string key="className">NSDocument</string> | |
1641 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1642 | + <string key="majorKey">IBFrameworkSource</string> | |
1643 | + <string key="minorKey">AppKit.framework/Headers/NSDocumentScripting.h</string> | |
1644 | + </object> | |
1645 | + </object> | |
1646 | + <object class="IBPartialClassDescription"> | |
1647 | + <string key="className">NSDocument</string> | |
1648 | + <reference key="sourceIdentifier" ref="812639051"/> | |
1649 | + </object> | |
1650 | + <object class="IBPartialClassDescription"> | |
1651 | + <string key="className">NSFormatter</string> | |
1652 | + <string key="superclassName">NSObject</string> | |
1653 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1654 | + <string key="majorKey">IBFrameworkSource</string> | |
1655 | + <string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string> | |
1656 | + </object> | |
1657 | + </object> | |
1658 | + <object class="IBPartialClassDescription"> | |
1659 | + <string key="className">NSMenu</string> | |
1660 | + <string key="superclassName">NSObject</string> | |
1661 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="245773691"> | |
1662 | + <string key="majorKey">IBFrameworkSource</string> | |
1663 | + <string key="minorKey">AppKit.framework/Headers/NSMenu.h</string> | |
1664 | + </object> | |
1665 | + </object> | |
1666 | + <object class="IBPartialClassDescription"> | |
1667 | + <string key="className">NSObject</string> | |
1668 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1669 | + <string key="majorKey">IBFrameworkSource</string> | |
1670 | + <string key="minorKey">AppKit.framework/Headers/NSAccessibility.h</string> | |
1671 | + </object> | |
1672 | + </object> | |
1673 | + <object class="IBPartialClassDescription"> | |
1674 | + <string key="className">NSObject</string> | |
1675 | + <reference key="sourceIdentifier" ref="654214299"/> | |
1676 | + </object> | |
1677 | + <object class="IBPartialClassDescription"> | |
1678 | + <string key="className">NSObject</string> | |
1679 | + <reference key="sourceIdentifier" ref="127124762"/> | |
1680 | + </object> | |
1681 | + <object class="IBPartialClassDescription"> | |
1682 | + <string key="className">NSObject</string> | |
1683 | + <reference key="sourceIdentifier" ref="798204292"/> | |
1684 | + </object> | |
1685 | + <object class="IBPartialClassDescription"> | |
1686 | + <string key="className">NSObject</string> | |
1687 | + <reference key="sourceIdentifier" ref="253680022"/> | |
1688 | + </object> | |
1689 | + <object class="IBPartialClassDescription"> | |
1690 | + <string key="className">NSObject</string> | |
1691 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1692 | + <string key="majorKey">IBFrameworkSource</string> | |
1693 | + <string key="minorKey">AppKit.framework/Headers/NSDictionaryController.h</string> | |
1694 | + </object> | |
1695 | + </object> | |
1696 | + <object class="IBPartialClassDescription"> | |
1697 | + <string key="className">NSObject</string> | |
1698 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1699 | + <string key="majorKey">IBFrameworkSource</string> | |
1700 | + <string key="minorKey">AppKit.framework/Headers/NSDragging.h</string> | |
1701 | + </object> | |
1702 | + </object> | |
1703 | + <object class="IBPartialClassDescription"> | |
1704 | + <string key="className">NSObject</string> | |
1705 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1706 | + <string key="majorKey">IBFrameworkSource</string> | |
1707 | + <string key="minorKey">AppKit.framework/Headers/NSFontManager.h</string> | |
1708 | + </object> | |
1709 | + </object> | |
1710 | + <object class="IBPartialClassDescription"> | |
1711 | + <string key="className">NSObject</string> | |
1712 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1713 | + <string key="majorKey">IBFrameworkSource</string> | |
1714 | + <string key="minorKey">AppKit.framework/Headers/NSFontPanel.h</string> | |
1715 | + </object> | |
1716 | + </object> | |
1717 | + <object class="IBPartialClassDescription"> | |
1718 | + <string key="className">NSObject</string> | |
1719 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1720 | + <string key="majorKey">IBFrameworkSource</string> | |
1721 | + <string key="minorKey">AppKit.framework/Headers/NSKeyValueBinding.h</string> | |
1722 | + </object> | |
1723 | + </object> | |
1724 | + <object class="IBPartialClassDescription"> | |
1725 | + <string key="className">NSObject</string> | |
1726 | + <reference key="sourceIdentifier" ref="245773691"/> | |
1727 | + </object> | |
1728 | + <object class="IBPartialClassDescription"> | |
1729 | + <string key="className">NSObject</string> | |
1730 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1731 | + <string key="majorKey">IBFrameworkSource</string> | |
1732 | + <string key="minorKey">AppKit.framework/Headers/NSNibLoading.h</string> | |
1733 | + </object> | |
1734 | + </object> | |
1735 | + <object class="IBPartialClassDescription"> | |
1736 | + <string key="className">NSObject</string> | |
1737 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1738 | + <string key="majorKey">IBFrameworkSource</string> | |
1739 | + <string key="minorKey">AppKit.framework/Headers/NSPasteboard.h</string> | |
1740 | + </object> | |
1741 | + </object> | |
1742 | + <object class="IBPartialClassDescription"> | |
1743 | + <string key="className">NSObject</string> | |
1744 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1745 | + <string key="majorKey">IBFrameworkSource</string> | |
1746 | + <string key="minorKey">AppKit.framework/Headers/NSSavePanel.h</string> | |
1747 | + </object> | |
1748 | + </object> | |
1749 | + <object class="IBPartialClassDescription"> | |
1750 | + <string key="className">NSObject</string> | |
1751 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1752 | + <string key="majorKey">IBFrameworkSource</string> | |
1753 | + <string key="minorKey">AppKit.framework/Headers/NSTableView.h</string> | |
1754 | + </object> | |
1755 | + </object> | |
1756 | + <object class="IBPartialClassDescription"> | |
1757 | + <string key="className">NSObject</string> | |
1758 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1759 | + <string key="majorKey">IBFrameworkSource</string> | |
1760 | + <string key="minorKey">AppKit.framework/Headers/NSToolbarItem.h</string> | |
1761 | + </object> | |
1762 | + </object> | |
1763 | + <object class="IBPartialClassDescription"> | |
1764 | + <string key="className">NSObject</string> | |
1765 | + <object class="IBClassDescriptionSource" key="sourceIdentifier" id="572907293"> | |
1766 | + <string key="majorKey">IBFrameworkSource</string> | |
1767 | + <string key="minorKey">AppKit.framework/Headers/NSView.h</string> | |
1768 | + </object> | |
1769 | + </object> | |
1770 | + <object class="IBPartialClassDescription"> | |
1771 | + <string key="className">NSObject</string> | |
1772 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1773 | + <string key="majorKey">IBFrameworkSource</string> | |
1774 | + <string key="minorKey">Foundation.framework/Headers/NSArchiver.h</string> | |
1775 | + </object> | |
1776 | + </object> | |
1777 | + <object class="IBPartialClassDescription"> | |
1778 | + <string key="className">NSObject</string> | |
1779 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1780 | + <string key="majorKey">IBFrameworkSource</string> | |
1781 | + <string key="minorKey">Foundation.framework/Headers/NSClassDescription.h</string> | |
1782 | + </object> | |
1783 | + </object> | |
1784 | + <object class="IBPartialClassDescription"> | |
1785 | + <string key="className">NSObject</string> | |
1786 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1787 | + <string key="majorKey">IBFrameworkSource</string> | |
1788 | + <string key="minorKey">Foundation.framework/Headers/NSError.h</string> | |
1789 | + </object> | |
1790 | + </object> | |
1791 | + <object class="IBPartialClassDescription"> | |
1792 | + <string key="className">NSObject</string> | |
1793 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1794 | + <string key="majorKey">IBFrameworkSource</string> | |
1795 | + <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string> | |
1796 | + </object> | |
1797 | + </object> | |
1798 | + <object class="IBPartialClassDescription"> | |
1799 | + <string key="className">NSObject</string> | |
1800 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1801 | + <string key="majorKey">IBFrameworkSource</string> | |
1802 | + <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string> | |
1803 | + </object> | |
1804 | + </object> | |
1805 | + <object class="IBPartialClassDescription"> | |
1806 | + <string key="className">NSObject</string> | |
1807 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1808 | + <string key="majorKey">IBFrameworkSource</string> | |
1809 | + <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string> | |
1810 | + </object> | |
1811 | + </object> | |
1812 | + <object class="IBPartialClassDescription"> | |
1813 | + <string key="className">NSObject</string> | |
1814 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1815 | + <string key="majorKey">IBFrameworkSource</string> | |
1816 | + <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string> | |
1817 | + </object> | |
1818 | + </object> | |
1819 | + <object class="IBPartialClassDescription"> | |
1820 | + <string key="className">NSObject</string> | |
1821 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1822 | + <string key="majorKey">IBFrameworkSource</string> | |
1823 | + <string key="minorKey">Foundation.framework/Headers/NSObject.h</string> | |
1824 | + </object> | |
1825 | + </object> | |
1826 | + <object class="IBPartialClassDescription"> | |
1827 | + <string key="className">NSObject</string> | |
1828 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1829 | + <string key="majorKey">IBFrameworkSource</string> | |
1830 | + <string key="minorKey">Foundation.framework/Headers/NSObjectScripting.h</string> | |
1831 | + </object> | |
1832 | + </object> | |
1833 | + <object class="IBPartialClassDescription"> | |
1834 | + <string key="className">NSObject</string> | |
1835 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1836 | + <string key="majorKey">IBFrameworkSource</string> | |
1837 | + <string key="minorKey">Foundation.framework/Headers/NSPortCoder.h</string> | |
1838 | + </object> | |
1839 | + </object> | |
1840 | + <object class="IBPartialClassDescription"> | |
1841 | + <string key="className">NSObject</string> | |
1842 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1843 | + <string key="majorKey">IBFrameworkSource</string> | |
1844 | + <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string> | |
1845 | + </object> | |
1846 | + </object> | |
1847 | + <object class="IBPartialClassDescription"> | |
1848 | + <string key="className">NSObject</string> | |
1849 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1850 | + <string key="majorKey">IBFrameworkSource</string> | |
1851 | + <string key="minorKey">Foundation.framework/Headers/NSScriptClassDescription.h</string> | |
1852 | + </object> | |
1853 | + </object> | |
1854 | + <object class="IBPartialClassDescription"> | |
1855 | + <string key="className">NSObject</string> | |
1856 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1857 | + <string key="majorKey">IBFrameworkSource</string> | |
1858 | + <string key="minorKey">Foundation.framework/Headers/NSScriptKeyValueCoding.h</string> | |
1859 | + </object> | |
1860 | + </object> | |
1861 | + <object class="IBPartialClassDescription"> | |
1862 | + <string key="className">NSObject</string> | |
1863 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1864 | + <string key="majorKey">IBFrameworkSource</string> | |
1865 | + <string key="minorKey">Foundation.framework/Headers/NSScriptObjectSpecifiers.h</string> | |
1866 | + </object> | |
1867 | + </object> | |
1868 | + <object class="IBPartialClassDescription"> | |
1869 | + <string key="className">NSObject</string> | |
1870 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1871 | + <string key="majorKey">IBFrameworkSource</string> | |
1872 | + <string key="minorKey">Foundation.framework/Headers/NSScriptWhoseTests.h</string> | |
1873 | + </object> | |
1874 | + </object> | |
1875 | + <object class="IBPartialClassDescription"> | |
1876 | + <string key="className">NSObject</string> | |
1877 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1878 | + <string key="majorKey">IBFrameworkSource</string> | |
1879 | + <string key="minorKey">Foundation.framework/Headers/NSThread.h</string> | |
1880 | + </object> | |
1881 | + </object> | |
1882 | + <object class="IBPartialClassDescription"> | |
1883 | + <string key="className">NSObject</string> | |
1884 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1885 | + <string key="majorKey">IBFrameworkSource</string> | |
1886 | + <string key="minorKey">Foundation.framework/Headers/NSURL.h</string> | |
1887 | + </object> | |
1888 | + </object> | |
1889 | + <object class="IBPartialClassDescription"> | |
1890 | + <string key="className">NSResponder</string> | |
1891 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1892 | + <string key="majorKey">IBFrameworkSource</string> | |
1893 | + <string key="minorKey">AppKit.framework/Headers/NSInterfaceStyle.h</string> | |
1894 | + </object> | |
1895 | + </object> | |
1896 | + <object class="IBPartialClassDescription"> | |
1897 | + <string key="className">NSResponder</string> | |
1898 | + <string key="superclassName">NSObject</string> | |
1899 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1900 | + <string key="majorKey">IBFrameworkSource</string> | |
1901 | + <string key="minorKey">AppKit.framework/Headers/NSResponder.h</string> | |
1902 | + </object> | |
1903 | + </object> | |
1904 | + <object class="IBPartialClassDescription"> | |
1905 | + <string key="className">NSResponder</string> | |
1906 | + <reference key="sourceIdentifier" ref="812639051"/> | |
1907 | + </object> | |
1908 | + <object class="IBPartialClassDescription"> | |
1909 | + <string key="className">NSTextField</string> | |
1910 | + <string key="superclassName">NSControl</string> | |
1911 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1912 | + <string key="majorKey">IBFrameworkSource</string> | |
1913 | + <string key="minorKey">AppKit.framework/Headers/NSTextField.h</string> | |
1914 | + </object> | |
1915 | + </object> | |
1916 | + <object class="IBPartialClassDescription"> | |
1917 | + <string key="className">NSTextFieldCell</string> | |
1918 | + <string key="superclassName">NSActionCell</string> | |
1919 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1920 | + <string key="majorKey">IBFrameworkSource</string> | |
1921 | + <string key="minorKey">AppKit.framework/Headers/NSTextFieldCell.h</string> | |
1922 | + </object> | |
1923 | + </object> | |
1924 | + <object class="IBPartialClassDescription"> | |
1925 | + <string key="className">NSView</string> | |
1926 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1927 | + <string key="majorKey">IBFrameworkSource</string> | |
1928 | + <string key="minorKey">AppKit.framework/Headers/NSClipView.h</string> | |
1929 | + </object> | |
1930 | + </object> | |
1931 | + <object class="IBPartialClassDescription"> | |
1932 | + <string key="className">NSView</string> | |
1933 | + <reference key="sourceIdentifier" ref="34970510"/> | |
1934 | + </object> | |
1935 | + <object class="IBPartialClassDescription"> | |
1936 | + <string key="className">NSView</string> | |
1937 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1938 | + <string key="majorKey">IBFrameworkSource</string> | |
1939 | + <string key="minorKey">AppKit.framework/Headers/NSMenuItem.h</string> | |
1940 | + </object> | |
1941 | + </object> | |
1942 | + <object class="IBPartialClassDescription"> | |
1943 | + <string key="className">NSView</string> | |
1944 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1945 | + <string key="majorKey">IBFrameworkSource</string> | |
1946 | + <string key="minorKey">AppKit.framework/Headers/NSOpenGLView.h</string> | |
1947 | + </object> | |
1948 | + </object> | |
1949 | + <object class="IBPartialClassDescription"> | |
1950 | + <string key="className">NSView</string> | |
1951 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1952 | + <string key="majorKey">IBFrameworkSource</string> | |
1953 | + <string key="minorKey">AppKit.framework/Headers/NSRulerView.h</string> | |
1954 | + </object> | |
1955 | + </object> | |
1956 | + <object class="IBPartialClassDescription"> | |
1957 | + <string key="className">NSView</string> | |
1958 | + <string key="superclassName">NSResponder</string> | |
1959 | + <reference key="sourceIdentifier" ref="572907293"/> | |
1960 | + </object> | |
1961 | + <object class="IBPartialClassDescription"> | |
1962 | + <string key="className">NSWindow</string> | |
1963 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1964 | + <string key="majorKey">IBFrameworkSource</string> | |
1965 | + <string key="minorKey">AppKit.framework/Headers/NSDrawer.h</string> | |
1966 | + </object> | |
1967 | + </object> | |
1968 | + <object class="IBPartialClassDescription"> | |
1969 | + <string key="className">NSWindow</string> | |
1970 | + <reference key="sourceIdentifier" ref="34970510"/> | |
1971 | + </object> | |
1972 | + <object class="IBPartialClassDescription"> | |
1973 | + <string key="className">NSWindow</string> | |
1974 | + <string key="superclassName">NSResponder</string> | |
1975 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1976 | + <string key="majorKey">IBFrameworkSource</string> | |
1977 | + <string key="minorKey">AppKit.framework/Headers/NSWindow.h</string> | |
1978 | + </object> | |
1979 | + </object> | |
1980 | + <object class="IBPartialClassDescription"> | |
1981 | + <string key="className">NSWindow</string> | |
1982 | + <reference key="sourceIdentifier" ref="812639051"/> | |
1983 | + </object> | |
1984 | + <object class="IBPartialClassDescription"> | |
1985 | + <string key="className">NSWindow</string> | |
1986 | + <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1987 | + <string key="majorKey">IBFrameworkSource</string> | |
1988 | + <string key="minorKey">AppKit.framework/Headers/NSWindowScripting.h</string> | |
1989 | + </object> | |
1990 | + </object> | |
1991 | + </object> | |
1992 | + </object> | |
1993 | + <int key="IBDocument.localizationMode">0</int> | |
1994 | + <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string> | |
1995 | + <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies"> | |
1996 | + <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> | |
1997 | + <integer value="1050" key="NS.object.0"/> | |
1998 | + </object> | |
1999 | + <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults"> | |
2000 | + <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string> | |
2001 | + <integer value="1050" key="NS.object.0"/> | |
2002 | + </object> | |
2003 | + <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies"> | |
2004 | + <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string> | |
2005 | + <integer value="3000" key="NS.object.0"/> | |
2006 | + </object> | |
2007 | + <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> | |
2008 | + <string key="IBDocument.LastKnownRelativeProjectPath">../BSTRAEditor.xcodeproj</string> | |
2009 | + <int key="IBDocument.defaultPropertyAccessControl">3</int> | |
2010 | + <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes"> | |
2011 | + <string key="NS.key.0">NSSwitch</string> | |
2012 | + <string key="NS.object.0">{15, 15}</string> | |
2013 | + </object> | |
2014 | + </data> | |
2015 | +</archive> |
@@ -1,20 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
3 | -<plist version="1.0"> | |
4 | -<dict> | |
5 | - <key>IBFramework Version</key> | |
6 | - <string>629</string> | |
7 | - <key>IBLastKnownRelativeProjectPath</key> | |
8 | - <string>../../BSTRAEditor.xcodeproj</string> | |
9 | - <key>IBOldestOS</key> | |
10 | - <integer>5</integer> | |
11 | - <key>IBOpenObjects</key> | |
12 | - <array> | |
13 | - <integer>6</integer> | |
14 | - </array> | |
15 | - <key>IBSystem Version</key> | |
16 | - <string>9C31</string> | |
17 | - <key>targetFramework</key> | |
18 | - <string>IBCocoaFramework</string> | |
19 | -</dict> | |
20 | -</plist> |
@@ -5,10 +5,10 @@ | ||
5 | 5 | <key>CFBundleDisplayName</key> |
6 | 6 | <string>色を変える</string> |
7 | 7 | <key>CFBundleGetInfoString</key> |
8 | - <string>色を変える 1.0</string> | |
8 | + <string>色を変える 1.1</string> | |
9 | 9 | <key>CFBundleName</key> |
10 | 10 | <string>色を変える</string> |
11 | 11 | <key>NSHumanReadableCopyright</key> |
12 | - <string>© Hori,Masaki, 2008</string> | |
12 | + <string>© Hori,Masaki, 2008, 2012</string> | |
13 | 13 | </dict> |
14 | 14 | </plist> |