iSightを使ってBooklog,MediaMarkerインポート用CSVファイルを生成するアプリ
Revision | e05428b390ea80b32359974d71a8c66effa436db (tree) |
---|---|
Time | 2011-06-02 22:35:03 |
Author | masakih <masakih@user...> |
Commiter | masakih |
[New] MonoColleエクスポータを追加。
@@ -14,6 +14,7 @@ enum { | ||
14 | 14 | typeBooklogExport = 0, |
15 | 15 | typeMediaMarkerExport = 1, |
16 | 16 | typeMediaMarkerImport = 2, |
17 | + typeMonoColleExport = 3, | |
17 | 18 | |
18 | 19 | typeHatenaDairyType = 100, |
19 | 20 | }; |
@@ -13,6 +13,7 @@ | ||
13 | 13 | #import "BEMediaMarkerBooksExporter.h" |
14 | 14 | #import "BEMediaMarkerImportFormatExporter.h" |
15 | 15 | #import "BEHatenaDairyExporter.h" |
16 | +#import "BEMonoColleExporter.h" | |
16 | 17 | |
17 | 18 | |
18 | 19 | @implementation BEBooksExporter |
@@ -34,6 +35,9 @@ | ||
34 | 35 | case typeHatenaDairyType: |
35 | 36 | createClass = [BEHatenaDairyExporter class]; |
36 | 37 | break; |
38 | + case typeMonoColleExport: | |
39 | + createClass = [BEMonoColleExporter class]; | |
40 | + break; | |
37 | 41 | |
38 | 42 | default: |
39 | 43 | NSLog(@"Unsupported export type.(%@)", type); |
@@ -29,6 +29,7 @@ static NSArray *attributes = nil; | ||
29 | 29 | typeBooklogExport, |
30 | 30 | typeMediaMarkerExport, |
31 | 31 | typeMediaMarkerImport, |
32 | + typeMonoColleExport, | |
32 | 33 | |
33 | 34 | typeHatenaDairyType, |
34 | 35 |
@@ -107,6 +108,8 @@ static NSArray *attributes = nil; | ||
107 | 108 | return NSLocalizedString(@"MediaMarkerExport", @"MediaMarkerExport"); |
108 | 109 | case typeMediaMarkerImport: |
109 | 110 | return NSLocalizedString(@"MediaMarkerImport", @"MediaMarkerImport"); |
111 | + case typeMonoColleExport: | |
112 | + return NSLocalizedString(@"MonoColleExport", @"MonoColleExport"); | |
110 | 113 | case typeHatenaDairyType: |
111 | 114 | return NSLocalizedString(@"HetenaDairy", @"HetenaDairy"); |
112 | 115 | } |
@@ -0,0 +1,16 @@ | ||
1 | +// | |
2 | +// BEMonoColleExporter.h | |
3 | +// BooksExporter | |
4 | +// | |
5 | +// Created by Hori,Masaki on 11/06/02. | |
6 | +// Copyright 2011 __MyCompanyName__. All rights reserved. | |
7 | +// | |
8 | + | |
9 | +#import "BEBooksExporter.h" | |
10 | + | |
11 | + | |
12 | +@interface BEMonoColleExporter : BEBooksExporter | |
13 | +{ | |
14 | + NSDateFormatter *dateFormatter; | |
15 | +} | |
16 | +@end |
@@ -0,0 +1,71 @@ | ||
1 | +// | |
2 | +// BEMonoColleExporter.m | |
3 | +// BooksExporter | |
4 | +// | |
5 | +// Created by Hori,Masaki on 11/06/02. | |
6 | +// Copyright 2011 __MyCompanyName__. All rights reserved. | |
7 | +// | |
8 | + | |
9 | +#import "BEMonoColleExporter.h" | |
10 | +#import "BEBookInformation.h" | |
11 | + | |
12 | + | |
13 | +@implementation BEMonoColleExporter | |
14 | +- (id)init | |
15 | +{ | |
16 | + self = [super init]; | |
17 | + if(self) { | |
18 | + dateFormatter = [[NSDateFormatter alloc] init]; | |
19 | + [dateFormatter setDateFormat:@"YYYY/MM/dd"]; | |
20 | + } | |
21 | + return self; | |
22 | +} | |
23 | +- (void)dealloc | |
24 | +{ | |
25 | + [dateFormatter release]; | |
26 | + [super dealloc]; | |
27 | +} | |
28 | +- (NSString *)lineForBook:(BEBookInformation *)book | |
29 | +{ | |
30 | + NSString *tag[5]; | |
31 | + NSInteger i = 0; | |
32 | + for(i = 0; i < 5; i++) { | |
33 | + tag[i] = @""; | |
34 | + } | |
35 | + i = 0; | |
36 | + for(NSString *tagString in book.tags) { | |
37 | + tag[i] = tagString; | |
38 | + if(i >= 5) break; | |
39 | + } | |
40 | + | |
41 | + return [NSString stringWithFormat:@"%@,,%@,,,,,,,,%@,%@,,,1,1,%@,%@,%@,%@,%@,%@,%@", | |
42 | + doubleQuoteQuotedString(book.asin), | |
43 | + // rakuten ID | |
44 | + doubleQuoteQuotedString(book.isbn), | |
45 | + // JAN | |
46 | + // Product Name | |
47 | + // Page URL | |
48 | + // Category 1 | |
49 | + // Category 2 | |
50 | + // Category 3 | |
51 | + doubleQuoteQuotedString([dateFormatter stringFromDate:book.registerDate]), | |
52 | + doubleQuoteQuotedString([dateFormatter stringFromDate:book.readDate]), | |
53 | + // Purchase location | |
54 | + // Purchase price | |
55 | + // Is public | |
56 | + // type | |
57 | + doubleQuoteQuotedString(book.review), | |
58 | + doubleQuoteQuotedString([book.rating stringValue]), | |
59 | + doubleQuoteQuotedString(tag[0]), | |
60 | + doubleQuoteQuotedString(tag[1]), | |
61 | + doubleQuoteQuotedString(tag[2]), | |
62 | + doubleQuoteQuotedString(tag[3]), | |
63 | + doubleQuoteQuotedString(tag[4]) | |
64 | + ]; | |
65 | +} | |
66 | +- (BOOL)needsNewLineToEndOfFile | |
67 | +{ | |
68 | + return YES; | |
69 | +} | |
70 | + | |
71 | +@end |
@@ -48,6 +48,7 @@ | ||
48 | 48 | 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; |
49 | 49 | 8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; }; |
50 | 50 | 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; |
51 | + F408D6A01397BB4A006BCA96 /* BEMonoColleExporter.m in Sources */ = {isa = PBXBuildFile; fileRef = F408D69F1397BB4A006BCA96 /* BEMonoColleExporter.m */; }; | |
51 | 52 | F4464DFC13768FC2002E49E6 /* libZbar.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 059486AB1173739F00D3581C /* libZbar.a */; }; |
52 | 53 | F44EEAB4131A562F00CAA969 /* BEBookInformation.m in Sources */ = {isa = PBXBuildFile; fileRef = F44EEAB3131A562F00CAA969 /* BEBookInformation.m */; }; |
53 | 54 | F44EEAD5131A5ECE00CAA969 /* BEAmazonLookup.m in Sources */ = {isa = PBXBuildFile; fileRef = F44EEAD4131A5ECE00CAA969 /* BEAmazonLookup.m */; }; |
@@ -195,6 +196,8 @@ | ||
195 | 196 | 88E6A4A21173338600AE2E22 /* MyScanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyScanner.m; sourceTree = "<group>"; }; |
196 | 197 | 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; }; |
197 | 198 | 8D1107320486CEB800E47090 /* BooksExporter.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BooksExporter.app; sourceTree = BUILT_PRODUCTS_DIR; }; |
199 | + F408D69E1397BB4A006BCA96 /* BEMonoColleExporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BEMonoColleExporter.h; sourceTree = "<group>"; }; | |
200 | + F408D69F1397BB4A006BCA96 /* BEMonoColleExporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BEMonoColleExporter.m; sourceTree = "<group>"; }; | |
198 | 201 | F44EEAB2131A562F00CAA969 /* BEBookInformation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BEBookInformation.h; sourceTree = "<group>"; }; |
199 | 202 | F44EEAB3131A562F00CAA969 /* BEBookInformation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BEBookInformation.m; sourceTree = "<group>"; }; |
200 | 203 | F44EEAD3131A5ECE00CAA969 /* BEAmazonLookup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BEAmazonLookup.h; sourceTree = "<group>"; }; |
@@ -526,6 +529,8 @@ | ||
526 | 529 | F4EF543A132126570028459F /* BEMediaMarkerImportFormatExporter.m */, |
527 | 530 | F4EF5640132280780028459F /* BEHatenaDairyExporter.h */, |
528 | 531 | F4EF5641132280780028459F /* BEHatenaDairyExporter.m */, |
532 | + F408D69E1397BB4A006BCA96 /* BEMonoColleExporter.h */, | |
533 | + F408D69F1397BB4A006BCA96 /* BEMonoColleExporter.m */, | |
529 | 534 | ); |
530 | 535 | name = Exporter; |
531 | 536 | sourceTree = "<group>"; |
@@ -688,6 +693,7 @@ | ||
688 | 693 | F4D9D9EB133CDE2B009DCEE6 /* BEPreferencePanel.m in Sources */, |
689 | 694 | F4D9DD8F133E4D1E009DCEE6 /* BEPreference.m in Sources */, |
690 | 695 | F45A0748135140BC0029B353 /* BEExporterAttribute.m in Sources */, |
696 | + F408D6A01397BB4A006BCA96 /* BEMonoColleExporter.m in Sources */, | |
691 | 697 | ); |
692 | 698 | runOnlyForDeploymentPostprocessing = 0; |
693 | 699 | }; |
@@ -3,16 +3,27 @@ | ||
3 | 3 | <data> |
4 | 4 | <int key="IBDocument.SystemTarget">1060</int> |
5 | 5 | <string key="IBDocument.SystemVersion">10J869</string> |
6 | - <string key="IBDocument.InterfaceBuilderVersion">851</string> | |
6 | + <string key="IBDocument.InterfaceBuilderVersion">1306</string> | |
7 | 7 | <string key="IBDocument.AppKitVersion">1038.35</string> |
8 | 8 | <string key="IBDocument.HIToolboxVersion">461.00</string> |
9 | 9 | <object class="NSMutableDictionary" key="IBDocument.PluginVersions"> |
10 | 10 | <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> |
11 | - <string key="NS.object.0">851</string> | |
11 | + <string key="NS.object.0">1306</string> | |
12 | 12 | </object> |
13 | - <object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> | |
13 | + <object class="NSArray" key="IBDocument.IntegratedClassDependencies"> | |
14 | 14 | <bool key="EncodedWithXMLCoder">YES</bool> |
15 | - <integer value="12"/> | |
15 | + <string>NSPopUpButton</string> | |
16 | + <string>NSMenuItem</string> | |
17 | + <string>NSMenu</string> | |
18 | + <string>NSTextFieldCell</string> | |
19 | + <string>NSButtonCell</string> | |
20 | + <string>NSButton</string> | |
21 | + <string>NSBox</string> | |
22 | + <string>NSCustomObject</string> | |
23 | + <string>NSCustomView</string> | |
24 | + <string>NSPopUpButtonCell</string> | |
25 | + <string>NSUserDefaultsController</string> | |
26 | + <string>NSTextField</string> | |
16 | 27 | </object> |
17 | 28 | <object class="NSArray" key="IBDocument.PluginDependencies"> |
18 | 29 | <bool key="EncodedWithXMLCoder">YES</bool> |
@@ -23,9 +34,7 @@ | ||
23 | 34 | <object class="NSArray" key="dict.sortedKeys" id="0"> |
24 | 35 | <bool key="EncodedWithXMLCoder">YES</bool> |
25 | 36 | </object> |
26 | - <object class="NSMutableArray" key="dict.values"> | |
27 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
28 | - </object> | |
37 | + <reference key="dict.values" ref="0"/> | |
29 | 38 | </object> |
30 | 39 | <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000"> |
31 | 40 | <bool key="EncodedWithXMLCoder">YES</bool> |
@@ -58,6 +67,8 @@ | ||
58 | 67 | <int key="NSvFlags">301</int> |
59 | 68 | <string key="NSFrame">{{12, 41}, {99, 17}}</string> |
60 | 69 | <reference key="NSSuperview" ref="196877879"/> |
70 | + <reference key="NSWindow"/> | |
71 | + <reference key="NSNextKeyView" ref="892291223"/> | |
61 | 72 | <bool key="NSEnabled">YES</bool> |
62 | 73 | <object class="NSTextFieldCell" key="NSCell" id="119997708"> |
63 | 74 | <int key="NSCellFlags">68288064</int> |
@@ -75,7 +86,7 @@ | ||
75 | 86 | <string key="NSColorName">controlColor</string> |
76 | 87 | <object class="NSColor" key="NSColor"> |
77 | 88 | <int key="NSColorSpace">3</int> |
78 | - <bytes key="NSWhite">MC42NjY2NjY2ODY1AA</bytes> | |
89 | + <bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes> | |
79 | 90 | </object> |
80 | 91 | </object> |
81 | 92 | <object class="NSColor" key="NSTextColor"> |
@@ -94,6 +105,8 @@ | ||
94 | 105 | <int key="NSvFlags">301</int> |
95 | 106 | <string key="NSFrame">{{114, 35}, {195, 26}}</string> |
96 | 107 | <reference key="NSSuperview" ref="196877879"/> |
108 | + <reference key="NSWindow"/> | |
109 | + <reference key="NSNextKeyView" ref="342473476"/> | |
97 | 110 | <bool key="NSEnabled">YES</bool> |
98 | 111 | <object class="NSPopUpButtonCell" key="NSCell" id="426271385"> |
99 | 112 | <int key="NSCellFlags">-2076049856</int> |
@@ -106,22 +119,22 @@ | ||
106 | 119 | <string key="NSKeyEquivalent"/> |
107 | 120 | <int key="NSPeriodicDelay">400</int> |
108 | 121 | <int key="NSPeriodicInterval">75</int> |
109 | - <object class="NSMenuItem" key="NSMenuItem" id="206840095"> | |
122 | + <object class="NSMenuItem" key="NSMenuItem" id="1067008409"> | |
110 | 123 | <reference key="NSMenu" ref="652816122"/> |
111 | - <string key="NSTitle">Hatena Dairy</string> | |
124 | + <string key="NSTitle">MonoColle Export</string> | |
112 | 125 | <string key="NSKeyEquiv"/> |
113 | 126 | <int key="NSMnemonicLoc">2147483647</int> |
114 | 127 | <int key="NSState">1</int> |
115 | - <object class="NSCustomResource" key="NSOnImage" id="1021411798"> | |
128 | + <object class="NSCustomResource" key="NSOnImage" id="430291077"> | |
116 | 129 | <string key="NSClassName">NSImage</string> |
117 | 130 | <string key="NSResourceName">NSMenuCheckmark</string> |
118 | 131 | </object> |
119 | - <object class="NSCustomResource" key="NSMixedImage" id="142089633"> | |
132 | + <object class="NSCustomResource" key="NSMixedImage" id="566904"> | |
120 | 133 | <string key="NSClassName">NSImage</string> |
121 | 134 | <string key="NSResourceName">NSMenuMixedState</string> |
122 | 135 | </object> |
123 | 136 | <string key="NSAction">_popUpItemAction:</string> |
124 | - <int key="NSTag">100</int> | |
137 | + <int key="NSTag">3</int> | |
125 | 138 | <reference key="NSTarget" ref="426271385"/> |
126 | 139 | </object> |
127 | 140 | <bool key="NSMenuItemRespectAlignment">YES</bool> |
@@ -135,8 +148,8 @@ | ||
135 | 148 | <string key="NSKeyEquiv"/> |
136 | 149 | <int key="NSKeyEquivModMask">1048576</int> |
137 | 150 | <int key="NSMnemonicLoc">2147483647</int> |
138 | - <reference key="NSOnImage" ref="1021411798"/> | |
139 | - <reference key="NSMixedImage" ref="142089633"/> | |
151 | + <reference key="NSOnImage" ref="430291077"/> | |
152 | + <reference key="NSMixedImage" ref="566904"/> | |
140 | 153 | <string key="NSAction">_popUpItemAction:</string> |
141 | 154 | <reference key="NSTarget" ref="426271385"/> |
142 | 155 | </object> |
@@ -146,8 +159,8 @@ | ||
146 | 159 | <string key="NSKeyEquiv"/> |
147 | 160 | <int key="NSKeyEquivModMask">1048576</int> |
148 | 161 | <int key="NSMnemonicLoc">2147483647</int> |
149 | - <reference key="NSOnImage" ref="1021411798"/> | |
150 | - <reference key="NSMixedImage" ref="142089633"/> | |
162 | + <reference key="NSOnImage" ref="430291077"/> | |
163 | + <reference key="NSMixedImage" ref="566904"/> | |
151 | 164 | <string key="NSAction">_popUpItemAction:</string> |
152 | 165 | <int key="NSTag">1</int> |
153 | 166 | <reference key="NSTarget" ref="426271385"/> |
@@ -157,13 +170,25 @@ | ||
157 | 170 | <string key="NSTitle">For MediaMarker Import</string> |
158 | 171 | <string key="NSKeyEquiv"/> |
159 | 172 | <int key="NSMnemonicLoc">2147483647</int> |
160 | - <reference key="NSOnImage" ref="1021411798"/> | |
161 | - <reference key="NSMixedImage" ref="142089633"/> | |
173 | + <reference key="NSOnImage" ref="430291077"/> | |
174 | + <reference key="NSMixedImage" ref="566904"/> | |
162 | 175 | <string key="NSAction">_popUpItemAction:</string> |
163 | 176 | <int key="NSTag">2</int> |
164 | 177 | <reference key="NSTarget" ref="426271385"/> |
165 | 178 | </object> |
166 | - <reference ref="206840095"/> | |
179 | + <reference ref="1067008409"/> | |
180 | + <object class="NSMenuItem" id="206840095"> | |
181 | + <reference key="NSMenu" ref="652816122"/> | |
182 | + <string key="NSTitle">Hatena Dairy</string> | |
183 | + <string key="NSKeyEquiv"/> | |
184 | + <int key="NSMnemonicLoc">2147483647</int> | |
185 | + <int key="NSState">1</int> | |
186 | + <reference key="NSOnImage" ref="430291077"/> | |
187 | + <reference key="NSMixedImage" ref="566904"/> | |
188 | + <string key="NSAction">_popUpItemAction:</string> | |
189 | + <int key="NSTag">100</int> | |
190 | + <reference key="NSTarget" ref="426271385"/> | |
191 | + </object> | |
167 | 192 | </object> |
168 | 193 | <reference key="NSMenuFont" ref="14188450"/> |
169 | 194 | </object> |
@@ -179,6 +204,8 @@ | ||
179 | 204 | <int key="NSvFlags">268</int> |
180 | 205 | <string key="NSFrame">{{115, 13}, {193, 18}}</string> |
181 | 206 | <reference key="NSSuperview" ref="196877879"/> |
207 | + <reference key="NSWindow"/> | |
208 | + <reference key="NSNextKeyView"/> | |
182 | 209 | <bool key="NSEnabled">YES</bool> |
183 | 210 | <object class="NSButtonCell" key="NSCell" id="737084785"> |
184 | 211 | <int key="NSCellFlags">-2080244224</int> |
@@ -204,10 +231,14 @@ | ||
204 | 231 | </object> |
205 | 232 | <string key="NSFrameSize">{325, 72}</string> |
206 | 233 | <reference key="NSSuperview" ref="138543568"/> |
234 | + <reference key="NSWindow"/> | |
235 | + <reference key="NSNextKeyView" ref="593310898"/> | |
207 | 236 | </object> |
208 | 237 | </object> |
209 | 238 | <string key="NSFrame">{{64, -6}, {325, 72}}</string> |
210 | 239 | <reference key="NSSuperview" ref="1005"/> |
240 | + <reference key="NSWindow"/> | |
241 | + <reference key="NSNextKeyView" ref="196877879"/> | |
211 | 242 | <string key="NSOffsets">{0, 0}</string> |
212 | 243 | <object class="NSTextFieldCell" key="NSTitleCell"> |
213 | 244 | <int key="NSCellFlags">67239424</int> |
@@ -241,13 +272,11 @@ | ||
241 | 272 | </object> |
242 | 273 | <string key="NSFrameSize">{454, 64}</string> |
243 | 274 | <reference key="NSSuperview"/> |
275 | + <reference key="NSWindow"/> | |
276 | + <reference key="NSNextKeyView" ref="138543568"/> | |
244 | 277 | <string key="NSClassName">NSView</string> |
245 | 278 | </object> |
246 | 279 | <object class="NSUserDefaultsController" id="335929809"> |
247 | - <object class="NSMutableArray" key="NSDeclaredKeys"> | |
248 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
249 | - <string>doNotCheckExport</string> | |
250 | - </object> | |
251 | 280 | <bool key="NSSharedInstance">YES</bool> |
252 | 281 | </object> |
253 | 282 | </object> |
@@ -383,6 +412,7 @@ | ||
383 | 412 | <reference ref="228219779"/> |
384 | 413 | <reference ref="906680929"/> |
385 | 414 | <reference ref="206840095"/> |
415 | + <reference ref="1067008409"/> | |
386 | 416 | </object> |
387 | 417 | <reference key="parent" ref="426271385"/> |
388 | 418 | </object> |
@@ -425,6 +455,11 @@ | ||
425 | 455 | <reference key="object" ref="335929809"/> |
426 | 456 | <reference key="parent" ref="0"/> |
427 | 457 | </object> |
458 | + <object class="IBObjectRecord"> | |
459 | + <int key="objectID">21</int> | |
460 | + <reference key="object" ref="1067008409"/> | |
461 | + <reference key="parent" ref="652816122"/> | |
462 | + </object> | |
428 | 463 | </object> |
429 | 464 | </object> |
430 | 465 | <object class="NSMutableDictionary" key="flattenedProperties"> |
@@ -446,6 +481,7 @@ | ||
446 | 481 | <string>16.IBViewBoundsToFrameTransform</string> |
447 | 482 | <string>17.IBPluginDependency</string> |
448 | 483 | <string>2.IBPluginDependency</string> |
484 | + <string>21.IBPluginDependency</string> | |
449 | 485 | <string>3.IBPluginDependency</string> |
450 | 486 | <string>4.IBEditorWindowLastContentRect</string> |
451 | 487 | <string>4.IBPluginDependency</string> |
@@ -476,6 +512,7 @@ | ||
476 | 512 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
477 | 513 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
478 | 514 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
515 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
479 | 516 | <string>{{693, 373}, {230, 83}}</string> |
480 | 517 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
481 | 518 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
@@ -485,20 +522,16 @@ | ||
485 | 522 | <object class="NSMutableDictionary" key="unlocalizedProperties"> |
486 | 523 | <bool key="EncodedWithXMLCoder">YES</bool> |
487 | 524 | <reference key="dict.sortedKeys" ref="0"/> |
488 | - <object class="NSMutableArray" key="dict.values"> | |
489 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
490 | - </object> | |
525 | + <reference key="dict.values" ref="0"/> | |
491 | 526 | </object> |
492 | 527 | <nil key="activeLocalization"/> |
493 | 528 | <object class="NSMutableDictionary" key="localizations"> |
494 | 529 | <bool key="EncodedWithXMLCoder">YES</bool> |
495 | 530 | <reference key="dict.sortedKeys" ref="0"/> |
496 | - <object class="NSMutableArray" key="dict.values"> | |
497 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
498 | - </object> | |
531 | + <reference key="dict.values" ref="0"/> | |
499 | 532 | </object> |
500 | 533 | <nil key="sourceID"/> |
501 | - <int key="maxID">20</int> | |
534 | + <int key="maxID">21</int> | |
502 | 535 | </object> |
503 | 536 | <object class="IBClassDescriber" key="IBDocument.Classes"> |
504 | 537 | <object class="NSMutableArray" key="referencedPartialClassDescriptions"> |
@@ -508,566 +541,7 @@ | ||
508 | 541 | <string key="superclassName">NSViewController</string> |
509 | 542 | <object class="IBClassDescriptionSource" key="sourceIdentifier"> |
510 | 543 | <string key="majorKey">IBProjectSource</string> |
511 | - <string key="minorKey">BEExportAccessoryViewController.h</string> | |
512 | - </object> | |
513 | - </object> | |
514 | - <object class="IBPartialClassDescription"> | |
515 | - <string key="className">NSObject</string> | |
516 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
517 | - <string key="majorKey">IBProjectSource</string> | |
518 | - <string key="minorKey">MyBarcodeScanner.h</string> | |
519 | - </object> | |
520 | - </object> | |
521 | - <object class="IBPartialClassDescription"> | |
522 | - <string key="className">NSViewController</string> | |
523 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
524 | - <string key="majorKey">IBProjectSource</string> | |
525 | - <string key="minorKey">BEPreferencePanel.h</string> | |
526 | - </object> | |
527 | - </object> | |
528 | - </object> | |
529 | - <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+"> | |
530 | - <bool key="EncodedWithXMLCoder">YES</bool> | |
531 | - <object class="IBPartialClassDescription"> | |
532 | - <string key="className">NSActionCell</string> | |
533 | - <string key="superclassName">NSCell</string> | |
534 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
535 | - <string key="majorKey">IBFrameworkSource</string> | |
536 | - <string key="minorKey">AppKit.framework/Headers/NSActionCell.h</string> | |
537 | - </object> | |
538 | - </object> | |
539 | - <object class="IBPartialClassDescription"> | |
540 | - <string key="className">NSApplication</string> | |
541 | - <string key="superclassName">NSResponder</string> | |
542 | - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="17187459"> | |
543 | - <string key="majorKey">IBFrameworkSource</string> | |
544 | - <string key="minorKey">AppKit.framework/Headers/NSApplication.h</string> | |
545 | - </object> | |
546 | - </object> | |
547 | - <object class="IBPartialClassDescription"> | |
548 | - <string key="className">NSApplication</string> | |
549 | - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="865170241"> | |
550 | - <string key="majorKey">IBFrameworkSource</string> | |
551 | - <string key="minorKey">AppKit.framework/Headers/NSApplicationScripting.h</string> | |
552 | - </object> | |
553 | - </object> | |
554 | - <object class="IBPartialClassDescription"> | |
555 | - <string key="className">NSApplication</string> | |
556 | - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="140581608"> | |
557 | - <string key="majorKey">IBFrameworkSource</string> | |
558 | - <string key="minorKey">AppKit.framework/Headers/NSColorPanel.h</string> | |
559 | - </object> | |
560 | - </object> | |
561 | - <object class="IBPartialClassDescription"> | |
562 | - <string key="className">NSApplication</string> | |
563 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
564 | - <string key="majorKey">IBFrameworkSource</string> | |
565 | - <string key="minorKey">AppKit.framework/Headers/NSHelpManager.h</string> | |
566 | - </object> | |
567 | - </object> | |
568 | - <object class="IBPartialClassDescription"> | |
569 | - <string key="className">NSApplication</string> | |
570 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
571 | - <string key="majorKey">IBFrameworkSource</string> | |
572 | - <string key="minorKey">AppKit.framework/Headers/NSPageLayout.h</string> | |
573 | - </object> | |
574 | - </object> | |
575 | - <object class="IBPartialClassDescription"> | |
576 | - <string key="className">NSApplication</string> | |
577 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
578 | - <string key="majorKey">IBFrameworkSource</string> | |
579 | - <string key="minorKey">AppKit.framework/Headers/NSUserInterfaceItemSearching.h</string> | |
580 | - </object> | |
581 | - </object> | |
582 | - <object class="IBPartialClassDescription"> | |
583 | - <string key="className">NSBox</string> | |
584 | - <string key="superclassName">NSView</string> | |
585 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
586 | - <string key="majorKey">IBFrameworkSource</string> | |
587 | - <string key="minorKey">AppKit.framework/Headers/NSBox.h</string> | |
588 | - </object> | |
589 | - </object> | |
590 | - <object class="IBPartialClassDescription"> | |
591 | - <string key="className">NSButton</string> | |
592 | - <string key="superclassName">NSControl</string> | |
593 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
594 | - <string key="majorKey">IBFrameworkSource</string> | |
595 | - <string key="minorKey">AppKit.framework/Headers/NSButton.h</string> | |
596 | - </object> | |
597 | - </object> | |
598 | - <object class="IBPartialClassDescription"> | |
599 | - <string key="className">NSButtonCell</string> | |
600 | - <string key="superclassName">NSActionCell</string> | |
601 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
602 | - <string key="majorKey">IBFrameworkSource</string> | |
603 | - <string key="minorKey">AppKit.framework/Headers/NSButtonCell.h</string> | |
604 | - </object> | |
605 | - </object> | |
606 | - <object class="IBPartialClassDescription"> | |
607 | - <string key="className">NSCell</string> | |
608 | - <string key="superclassName">NSObject</string> | |
609 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
610 | - <string key="majorKey">IBFrameworkSource</string> | |
611 | - <string key="minorKey">AppKit.framework/Headers/NSCell.h</string> | |
612 | - </object> | |
613 | - </object> | |
614 | - <object class="IBPartialClassDescription"> | |
615 | - <string key="className">NSControl</string> | |
616 | - <string key="superclassName">NSView</string> | |
617 | - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="243548921"> | |
618 | - <string key="majorKey">IBFrameworkSource</string> | |
619 | - <string key="minorKey">AppKit.framework/Headers/NSControl.h</string> | |
620 | - </object> | |
621 | - </object> | |
622 | - <object class="IBPartialClassDescription"> | |
623 | - <string key="className">NSController</string> | |
624 | - <string key="superclassName">NSObject</string> | |
625 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
626 | - <string key="majorKey">IBFrameworkSource</string> | |
627 | - <string key="minorKey">AppKit.framework/Headers/NSController.h</string> | |
628 | - </object> | |
629 | - </object> | |
630 | - <object class="IBPartialClassDescription"> | |
631 | - <string key="className">NSFormatter</string> | |
632 | - <string key="superclassName">NSObject</string> | |
633 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
634 | - <string key="majorKey">IBFrameworkSource</string> | |
635 | - <string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string> | |
636 | - </object> | |
637 | - </object> | |
638 | - <object class="IBPartialClassDescription"> | |
639 | - <string key="className">NSMenu</string> | |
640 | - <string key="superclassName">NSObject</string> | |
641 | - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="609943686"> | |
642 | - <string key="majorKey">IBFrameworkSource</string> | |
643 | - <string key="minorKey">AppKit.framework/Headers/NSMenu.h</string> | |
644 | - </object> | |
645 | - </object> | |
646 | - <object class="IBPartialClassDescription"> | |
647 | - <string key="className">NSMenuItem</string> | |
648 | - <string key="superclassName">NSObject</string> | |
649 | - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="684305401"> | |
650 | - <string key="majorKey">IBFrameworkSource</string> | |
651 | - <string key="minorKey">AppKit.framework/Headers/NSMenuItem.h</string> | |
652 | - </object> | |
653 | - </object> | |
654 | - <object class="IBPartialClassDescription"> | |
655 | - <string key="className">NSMenuItemCell</string> | |
656 | - <string key="superclassName">NSButtonCell</string> | |
657 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
658 | - <string key="majorKey">IBFrameworkSource</string> | |
659 | - <string key="minorKey">AppKit.framework/Headers/NSMenuItemCell.h</string> | |
660 | - </object> | |
661 | - </object> | |
662 | - <object class="IBPartialClassDescription"> | |
663 | - <string key="className">NSObject</string> | |
664 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
665 | - <string key="majorKey">IBFrameworkSource</string> | |
666 | - <string key="minorKey">AppKit.framework/Headers/NSAccessibility.h</string> | |
667 | - </object> | |
668 | - </object> | |
669 | - <object class="IBPartialClassDescription"> | |
670 | - <string key="className">NSObject</string> | |
671 | - <reference key="sourceIdentifier" ref="17187459"/> | |
672 | - </object> | |
673 | - <object class="IBPartialClassDescription"> | |
674 | - <string key="className">NSObject</string> | |
675 | - <reference key="sourceIdentifier" ref="865170241"/> | |
676 | - </object> | |
677 | - <object class="IBPartialClassDescription"> | |
678 | - <string key="className">NSObject</string> | |
679 | - <reference key="sourceIdentifier" ref="140581608"/> | |
680 | - </object> | |
681 | - <object class="IBPartialClassDescription"> | |
682 | - <string key="className">NSObject</string> | |
683 | - <reference key="sourceIdentifier" ref="243548921"/> | |
684 | - </object> | |
685 | - <object class="IBPartialClassDescription"> | |
686 | - <string key="className">NSObject</string> | |
687 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
688 | - <string key="majorKey">IBFrameworkSource</string> | |
689 | - <string key="minorKey">AppKit.framework/Headers/NSDictionaryController.h</string> | |
690 | - </object> | |
691 | - </object> | |
692 | - <object class="IBPartialClassDescription"> | |
693 | - <string key="className">NSObject</string> | |
694 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
695 | - <string key="majorKey">IBFrameworkSource</string> | |
696 | - <string key="minorKey">AppKit.framework/Headers/NSDragging.h</string> | |
697 | - </object> | |
698 | - </object> | |
699 | - <object class="IBPartialClassDescription"> | |
700 | - <string key="className">NSObject</string> | |
701 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
702 | - <string key="majorKey">IBFrameworkSource</string> | |
703 | - <string key="minorKey">AppKit.framework/Headers/NSFontManager.h</string> | |
704 | - </object> | |
705 | - </object> | |
706 | - <object class="IBPartialClassDescription"> | |
707 | - <string key="className">NSObject</string> | |
708 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
709 | - <string key="majorKey">IBFrameworkSource</string> | |
710 | - <string key="minorKey">AppKit.framework/Headers/NSFontPanel.h</string> | |
711 | - </object> | |
712 | - </object> | |
713 | - <object class="IBPartialClassDescription"> | |
714 | - <string key="className">NSObject</string> | |
715 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
716 | - <string key="majorKey">IBFrameworkSource</string> | |
717 | - <string key="minorKey">AppKit.framework/Headers/NSKeyValueBinding.h</string> | |
718 | - </object> | |
719 | - </object> | |
720 | - <object class="IBPartialClassDescription"> | |
721 | - <string key="className">NSObject</string> | |
722 | - <reference key="sourceIdentifier" ref="609943686"/> | |
723 | - </object> | |
724 | - <object class="IBPartialClassDescription"> | |
725 | - <string key="className">NSObject</string> | |
726 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
727 | - <string key="majorKey">IBFrameworkSource</string> | |
728 | - <string key="minorKey">AppKit.framework/Headers/NSNibLoading.h</string> | |
729 | - </object> | |
730 | - </object> | |
731 | - <object class="IBPartialClassDescription"> | |
732 | - <string key="className">NSObject</string> | |
733 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
734 | - <string key="majorKey">IBFrameworkSource</string> | |
735 | - <string key="minorKey">AppKit.framework/Headers/NSOutlineView.h</string> | |
736 | - </object> | |
737 | - </object> | |
738 | - <object class="IBPartialClassDescription"> | |
739 | - <string key="className">NSObject</string> | |
740 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
741 | - <string key="majorKey">IBFrameworkSource</string> | |
742 | - <string key="minorKey">AppKit.framework/Headers/NSPasteboard.h</string> | |
743 | - </object> | |
744 | - </object> | |
745 | - <object class="IBPartialClassDescription"> | |
746 | - <string key="className">NSObject</string> | |
747 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
748 | - <string key="majorKey">IBFrameworkSource</string> | |
749 | - <string key="minorKey">AppKit.framework/Headers/NSSavePanel.h</string> | |
750 | - </object> | |
751 | - </object> | |
752 | - <object class="IBPartialClassDescription"> | |
753 | - <string key="className">NSObject</string> | |
754 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
755 | - <string key="majorKey">IBFrameworkSource</string> | |
756 | - <string key="minorKey">AppKit.framework/Headers/NSTableView.h</string> | |
757 | - </object> | |
758 | - </object> | |
759 | - <object class="IBPartialClassDescription"> | |
760 | - <string key="className">NSObject</string> | |
761 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
762 | - <string key="majorKey">IBFrameworkSource</string> | |
763 | - <string key="minorKey">AppKit.framework/Headers/NSToolbarItem.h</string> | |
764 | - </object> | |
765 | - </object> | |
766 | - <object class="IBPartialClassDescription"> | |
767 | - <string key="className">NSObject</string> | |
768 | - <object class="IBClassDescriptionSource" key="sourceIdentifier" id="99036148"> | |
769 | - <string key="majorKey">IBFrameworkSource</string> | |
770 | - <string key="minorKey">AppKit.framework/Headers/NSView.h</string> | |
771 | - </object> | |
772 | - </object> | |
773 | - <object class="IBPartialClassDescription"> | |
774 | - <string key="className">NSObject</string> | |
775 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
776 | - <string key="majorKey">IBFrameworkSource</string> | |
777 | - <string key="minorKey">Foundation.framework/Headers/NSArchiver.h</string> | |
778 | - </object> | |
779 | - </object> | |
780 | - <object class="IBPartialClassDescription"> | |
781 | - <string key="className">NSObject</string> | |
782 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
783 | - <string key="majorKey">IBFrameworkSource</string> | |
784 | - <string key="minorKey">Foundation.framework/Headers/NSClassDescription.h</string> | |
785 | - </object> | |
786 | - </object> | |
787 | - <object class="IBPartialClassDescription"> | |
788 | - <string key="className">NSObject</string> | |
789 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
790 | - <string key="majorKey">IBFrameworkSource</string> | |
791 | - <string key="minorKey">Foundation.framework/Headers/NSError.h</string> | |
792 | - </object> | |
793 | - </object> | |
794 | - <object class="IBPartialClassDescription"> | |
795 | - <string key="className">NSObject</string> | |
796 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
797 | - <string key="majorKey">IBFrameworkSource</string> | |
798 | - <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string> | |
799 | - </object> | |
800 | - </object> | |
801 | - <object class="IBPartialClassDescription"> | |
802 | - <string key="className">NSObject</string> | |
803 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
804 | - <string key="majorKey">IBFrameworkSource</string> | |
805 | - <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string> | |
806 | - </object> | |
807 | - </object> | |
808 | - <object class="IBPartialClassDescription"> | |
809 | - <string key="className">NSObject</string> | |
810 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
811 | - <string key="majorKey">IBFrameworkSource</string> | |
812 | - <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string> | |
813 | - </object> | |
814 | - </object> | |
815 | - <object class="IBPartialClassDescription"> | |
816 | - <string key="className">NSObject</string> | |
817 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
818 | - <string key="majorKey">IBFrameworkSource</string> | |
819 | - <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string> | |
820 | - </object> | |
821 | - </object> | |
822 | - <object class="IBPartialClassDescription"> | |
823 | - <string key="className">NSObject</string> | |
824 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
825 | - <string key="majorKey">IBFrameworkSource</string> | |
826 | - <string key="minorKey">Foundation.framework/Headers/NSObject.h</string> | |
827 | - </object> | |
828 | - </object> | |
829 | - <object class="IBPartialClassDescription"> | |
830 | - <string key="className">NSObject</string> | |
831 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
832 | - <string key="majorKey">IBFrameworkSource</string> | |
833 | - <string key="minorKey">Foundation.framework/Headers/NSObjectScripting.h</string> | |
834 | - </object> | |
835 | - </object> | |
836 | - <object class="IBPartialClassDescription"> | |
837 | - <string key="className">NSObject</string> | |
838 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
839 | - <string key="majorKey">IBFrameworkSource</string> | |
840 | - <string key="minorKey">Foundation.framework/Headers/NSPortCoder.h</string> | |
841 | - </object> | |
842 | - </object> | |
843 | - <object class="IBPartialClassDescription"> | |
844 | - <string key="className">NSObject</string> | |
845 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
846 | - <string key="majorKey">IBFrameworkSource</string> | |
847 | - <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string> | |
848 | - </object> | |
849 | - </object> | |
850 | - <object class="IBPartialClassDescription"> | |
851 | - <string key="className">NSObject</string> | |
852 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
853 | - <string key="majorKey">IBFrameworkSource</string> | |
854 | - <string key="minorKey">Foundation.framework/Headers/NSScriptClassDescription.h</string> | |
855 | - </object> | |
856 | - </object> | |
857 | - <object class="IBPartialClassDescription"> | |
858 | - <string key="className">NSObject</string> | |
859 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
860 | - <string key="majorKey">IBFrameworkSource</string> | |
861 | - <string key="minorKey">Foundation.framework/Headers/NSScriptKeyValueCoding.h</string> | |
862 | - </object> | |
863 | - </object> | |
864 | - <object class="IBPartialClassDescription"> | |
865 | - <string key="className">NSObject</string> | |
866 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
867 | - <string key="majorKey">IBFrameworkSource</string> | |
868 | - <string key="minorKey">Foundation.framework/Headers/NSScriptObjectSpecifiers.h</string> | |
869 | - </object> | |
870 | - </object> | |
871 | - <object class="IBPartialClassDescription"> | |
872 | - <string key="className">NSObject</string> | |
873 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
874 | - <string key="majorKey">IBFrameworkSource</string> | |
875 | - <string key="minorKey">Foundation.framework/Headers/NSScriptWhoseTests.h</string> | |
876 | - </object> | |
877 | - </object> | |
878 | - <object class="IBPartialClassDescription"> | |
879 | - <string key="className">NSObject</string> | |
880 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
881 | - <string key="majorKey">IBFrameworkSource</string> | |
882 | - <string key="minorKey">Foundation.framework/Headers/NSThread.h</string> | |
883 | - </object> | |
884 | - </object> | |
885 | - <object class="IBPartialClassDescription"> | |
886 | - <string key="className">NSObject</string> | |
887 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
888 | - <string key="majorKey">IBFrameworkSource</string> | |
889 | - <string key="minorKey">Foundation.framework/Headers/NSURL.h</string> | |
890 | - </object> | |
891 | - </object> | |
892 | - <object class="IBPartialClassDescription"> | |
893 | - <string key="className">NSObject</string> | |
894 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
895 | - <string key="majorKey">IBFrameworkSource</string> | |
896 | - <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string> | |
897 | - </object> | |
898 | - </object> | |
899 | - <object class="IBPartialClassDescription"> | |
900 | - <string key="className">NSObject</string> | |
901 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
902 | - <string key="majorKey">IBFrameworkSource</string> | |
903 | - <string key="minorKey">Foundation.framework/Headers/NSURLDownload.h</string> | |
904 | - </object> | |
905 | - </object> | |
906 | - <object class="IBPartialClassDescription"> | |
907 | - <string key="className">NSObject</string> | |
908 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
909 | - <string key="majorKey">IBFrameworkSource</string> | |
910 | - <string key="minorKey">QTKit.framework/Headers/QTCaptureDecompressedAudioOutput.h</string> | |
911 | - </object> | |
912 | - </object> | |
913 | - <object class="IBPartialClassDescription"> | |
914 | - <string key="className">NSObject</string> | |
915 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
916 | - <string key="majorKey">IBFrameworkSource</string> | |
917 | - <string key="minorKey">QTKit.framework/Headers/QTCaptureDecompressedVideoOutput.h</string> | |
918 | - </object> | |
919 | - </object> | |
920 | - <object class="IBPartialClassDescription"> | |
921 | - <string key="className">NSObject</string> | |
922 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
923 | - <string key="majorKey">IBFrameworkSource</string> | |
924 | - <string key="minorKey">QTKit.framework/Headers/QTCaptureFileOutput.h</string> | |
925 | - </object> | |
926 | - </object> | |
927 | - <object class="IBPartialClassDescription"> | |
928 | - <string key="className">NSObject</string> | |
929 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
930 | - <string key="majorKey">IBFrameworkSource</string> | |
931 | - <string key="minorKey">QTKit.framework/Headers/QTCaptureVideoPreviewOutput.h</string> | |
932 | - </object> | |
933 | - </object> | |
934 | - <object class="IBPartialClassDescription"> | |
935 | - <string key="className">NSObject</string> | |
936 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
937 | - <string key="majorKey">IBFrameworkSource</string> | |
938 | - <string key="minorKey">QTKit.framework/Headers/QTCaptureView.h</string> | |
939 | - </object> | |
940 | - </object> | |
941 | - <object class="IBPartialClassDescription"> | |
942 | - <string key="className">NSObject</string> | |
943 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
944 | - <string key="majorKey">IBFrameworkSource</string> | |
945 | - <string key="minorKey">QTKit.framework/Headers/QTMovie.h</string> | |
946 | - </object> | |
947 | - </object> | |
948 | - <object class="IBPartialClassDescription"> | |
949 | - <string key="className">NSObject</string> | |
950 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
951 | - <string key="majorKey">IBFrameworkSource</string> | |
952 | - <string key="minorKey">QTKit.framework/Headers/QTMovieView.h</string> | |
953 | - </object> | |
954 | - </object> | |
955 | - <object class="IBPartialClassDescription"> | |
956 | - <string key="className">NSObject</string> | |
957 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
958 | - <string key="majorKey">IBFrameworkSource</string> | |
959 | - <string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string> | |
960 | - </object> | |
961 | - </object> | |
962 | - <object class="IBPartialClassDescription"> | |
963 | - <string key="className">NSObject</string> | |
964 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
965 | - <string key="majorKey">IBFrameworkSource</string> | |
966 | - <string key="minorKey">QuartzCore.framework/Headers/CALayer.h</string> | |
967 | - </object> | |
968 | - </object> | |
969 | - <object class="IBPartialClassDescription"> | |
970 | - <string key="className">NSObject</string> | |
971 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
972 | - <string key="majorKey">IBFrameworkSource</string> | |
973 | - <string key="minorKey">QuartzCore.framework/Headers/CIImageProvider.h</string> | |
974 | - </object> | |
975 | - </object> | |
976 | - <object class="IBPartialClassDescription"> | |
977 | - <string key="className">NSPopUpButton</string> | |
978 | - <string key="superclassName">NSButton</string> | |
979 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
980 | - <string key="majorKey">IBFrameworkSource</string> | |
981 | - <string key="minorKey">AppKit.framework/Headers/NSPopUpButton.h</string> | |
982 | - </object> | |
983 | - </object> | |
984 | - <object class="IBPartialClassDescription"> | |
985 | - <string key="className">NSPopUpButtonCell</string> | |
986 | - <string key="superclassName">NSMenuItemCell</string> | |
987 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
988 | - <string key="majorKey">IBFrameworkSource</string> | |
989 | - <string key="minorKey">AppKit.framework/Headers/NSPopUpButtonCell.h</string> | |
990 | - </object> | |
991 | - </object> | |
992 | - <object class="IBPartialClassDescription"> | |
993 | - <string key="className">NSResponder</string> | |
994 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
995 | - <string key="majorKey">IBFrameworkSource</string> | |
996 | - <string key="minorKey">AppKit.framework/Headers/NSInterfaceStyle.h</string> | |
997 | - </object> | |
998 | - </object> | |
999 | - <object class="IBPartialClassDescription"> | |
1000 | - <string key="className">NSResponder</string> | |
1001 | - <string key="superclassName">NSObject</string> | |
1002 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1003 | - <string key="majorKey">IBFrameworkSource</string> | |
1004 | - <string key="minorKey">AppKit.framework/Headers/NSResponder.h</string> | |
1005 | - </object> | |
1006 | - </object> | |
1007 | - <object class="IBPartialClassDescription"> | |
1008 | - <string key="className">NSTextField</string> | |
1009 | - <string key="superclassName">NSControl</string> | |
1010 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1011 | - <string key="majorKey">IBFrameworkSource</string> | |
1012 | - <string key="minorKey">AppKit.framework/Headers/NSTextField.h</string> | |
1013 | - </object> | |
1014 | - </object> | |
1015 | - <object class="IBPartialClassDescription"> | |
1016 | - <string key="className">NSTextFieldCell</string> | |
1017 | - <string key="superclassName">NSActionCell</string> | |
1018 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1019 | - <string key="majorKey">IBFrameworkSource</string> | |
1020 | - <string key="minorKey">AppKit.framework/Headers/NSTextFieldCell.h</string> | |
1021 | - </object> | |
1022 | - </object> | |
1023 | - <object class="IBPartialClassDescription"> | |
1024 | - <string key="className">NSUserDefaultsController</string> | |
1025 | - <string key="superclassName">NSController</string> | |
1026 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1027 | - <string key="majorKey">IBFrameworkSource</string> | |
1028 | - <string key="minorKey">AppKit.framework/Headers/NSUserDefaultsController.h</string> | |
1029 | - </object> | |
1030 | - </object> | |
1031 | - <object class="IBPartialClassDescription"> | |
1032 | - <string key="className">NSView</string> | |
1033 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1034 | - <string key="majorKey">IBFrameworkSource</string> | |
1035 | - <string key="minorKey">AppKit.framework/Headers/NSClipView.h</string> | |
1036 | - </object> | |
1037 | - </object> | |
1038 | - <object class="IBPartialClassDescription"> | |
1039 | - <string key="className">NSView</string> | |
1040 | - <reference key="sourceIdentifier" ref="684305401"/> | |
1041 | - </object> | |
1042 | - <object class="IBPartialClassDescription"> | |
1043 | - <string key="className">NSView</string> | |
1044 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1045 | - <string key="majorKey">IBFrameworkSource</string> | |
1046 | - <string key="minorKey">AppKit.framework/Headers/NSRulerView.h</string> | |
1047 | - </object> | |
1048 | - </object> | |
1049 | - <object class="IBPartialClassDescription"> | |
1050 | - <string key="className">NSView</string> | |
1051 | - <string key="superclassName">NSResponder</string> | |
1052 | - <reference key="sourceIdentifier" ref="99036148"/> | |
1053 | - </object> | |
1054 | - <object class="IBPartialClassDescription"> | |
1055 | - <string key="className">NSViewController</string> | |
1056 | - <string key="superclassName">NSResponder</string> | |
1057 | - <object class="NSMutableDictionary" key="outlets"> | |
1058 | - <string key="NS.key.0">view</string> | |
1059 | - <string key="NS.object.0">NSView</string> | |
1060 | - </object> | |
1061 | - <object class="NSMutableDictionary" key="toOneOutletInfosByName"> | |
1062 | - <string key="NS.key.0">view</string> | |
1063 | - <object class="IBToOneOutletInfo" key="NS.object.0"> | |
1064 | - <string key="name">view</string> | |
1065 | - <string key="candidateClassName">NSView</string> | |
1066 | - </object> | |
1067 | - </object> | |
1068 | - <object class="IBClassDescriptionSource" key="sourceIdentifier"> | |
1069 | - <string key="majorKey">IBFrameworkSource</string> | |
1070 | - <string key="minorKey">AppKit.framework/Headers/NSViewController.h</string> | |
544 | + <string key="minorKey">./Classes/BEExportAccessoryViewController.h</string> | |
1071 | 545 | </object> |
1072 | 546 | </object> |
1073 | 547 | </object> |
@@ -1083,7 +557,6 @@ | ||
1083 | 557 | <integer value="3000" key="NS.object.0"/> |
1084 | 558 | </object> |
1085 | 559 | <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool> |
1086 | - <string key="IBDocument.LastKnownRelativeProjectPath">../BooksExporter.xcodeproj</string> | |
1087 | 560 | <int key="IBDocument.defaultPropertyAccessControl">3</int> |
1088 | 561 | <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes"> |
1089 | 562 | <bool key="EncodedWithXMLCoder">YES</bool> |
@@ -68,6 +68,7 @@ | ||
68 | 68 | <string key="NSFrame">{{16, 41}, {121, 17}}</string> |
69 | 69 | <reference key="NSSuperview" ref="196877879"/> |
70 | 70 | <reference key="NSWindow"/> |
71 | + <reference key="NSNextKeyView" ref="892291223"/> | |
71 | 72 | <bool key="NSEnabled">YES</bool> |
72 | 73 | <object class="NSTextFieldCell" key="NSCell" id="119997708"> |
73 | 74 | <int key="NSCellFlags">68288064</int> |
@@ -105,6 +106,7 @@ | ||
105 | 106 | <string key="NSFrame">{{139, 35}, {225, 26}}</string> |
106 | 107 | <reference key="NSSuperview" ref="196877879"/> |
107 | 108 | <reference key="NSWindow"/> |
109 | + <reference key="NSNextKeyView" ref="342473476"/> | |
108 | 110 | <bool key="NSEnabled">YES</bool> |
109 | 111 | <object class="NSPopUpButtonCell" key="NSCell" id="426271385"> |
110 | 112 | <int key="NSCellFlags">-2076049856</int> |
@@ -121,30 +123,28 @@ | ||
121 | 123 | <string key="NSKeyEquivalent"/> |
122 | 124 | <int key="NSPeriodicDelay">400</int> |
123 | 125 | <int key="NSPeriodicInterval">75</int> |
124 | - <object class="NSMenuItem" key="NSMenuItem" id="228219779"> | |
125 | - <reference key="NSMenu" ref="652816122"/> | |
126 | - <string key="NSTitle">Booklogエクスポート形式</string> | |
127 | - <string key="NSKeyEquiv"/> | |
128 | - <int key="NSKeyEquivModMask">1048576</int> | |
129 | - <int key="NSMnemonicLoc">2147483647</int> | |
130 | - <int key="NSState">1</int> | |
131 | - <object class="NSCustomResource" key="NSOnImage" id="362106759"> | |
132 | - <string key="NSClassName">NSImage</string> | |
133 | - <string key="NSResourceName">NSMenuCheckmark</string> | |
134 | - </object> | |
135 | - <object class="NSCustomResource" key="NSMixedImage" id="940855849"> | |
136 | - <string key="NSClassName">NSImage</string> | |
137 | - <string key="NSResourceName">NSMenuMixedState</string> | |
138 | - </object> | |
139 | - <string key="NSAction">_popUpItemAction:</string> | |
140 | - <reference key="NSTarget" ref="426271385"/> | |
141 | - </object> | |
126 | + <nil key="NSMenuItem"/> | |
142 | 127 | <bool key="NSMenuItemRespectAlignment">YES</bool> |
143 | 128 | <object class="NSMenu" key="NSMenu" id="652816122"> |
144 | 129 | <string key="NSTitle">OtherViews</string> |
145 | 130 | <object class="NSMutableArray" key="NSMenuItems"> |
146 | 131 | <bool key="EncodedWithXMLCoder">YES</bool> |
147 | - <reference ref="228219779"/> | |
132 | + <object class="NSMenuItem" id="228219779"> | |
133 | + <reference key="NSMenu" ref="652816122"/> | |
134 | + <string key="NSTitle">Booklogエクスポート形式</string> | |
135 | + <string key="NSKeyEquiv"/> | |
136 | + <int key="NSMnemonicLoc">2147483647</int> | |
137 | + <object class="NSCustomResource" key="NSOnImage" id="362106759"> | |
138 | + <string key="NSClassName">NSImage</string> | |
139 | + <string key="NSResourceName">NSMenuCheckmark</string> | |
140 | + </object> | |
141 | + <object class="NSCustomResource" key="NSMixedImage" id="940855849"> | |
142 | + <string key="NSClassName">NSImage</string> | |
143 | + <string key="NSResourceName">NSMenuMixedState</string> | |
144 | + </object> | |
145 | + <string key="NSAction">_popUpItemAction:</string> | |
146 | + <reference key="NSTarget" ref="426271385"/> | |
147 | + </object> | |
148 | 148 | <object class="NSMenuItem" id="993255788"> |
149 | 149 | <reference key="NSMenu" ref="652816122"/> |
150 | 150 | <string key="NSTitle">MediaMarkerエクスポート形式</string> |
@@ -168,6 +168,17 @@ | ||
168 | 168 | <int key="NSTag">2</int> |
169 | 169 | <reference key="NSTarget" ref="426271385"/> |
170 | 170 | </object> |
171 | + <object class="NSMenuItem" id="881684340"> | |
172 | + <reference key="NSMenu" ref="652816122"/> | |
173 | + <string key="NSTitle">MonoColleエクスポート形式</string> | |
174 | + <string key="NSKeyEquiv"/> | |
175 | + <int key="NSMnemonicLoc">2147483647</int> | |
176 | + <reference key="NSOnImage" ref="362106759"/> | |
177 | + <reference key="NSMixedImage" ref="940855849"/> | |
178 | + <string key="NSAction">_popUpItemAction:</string> | |
179 | + <int key="NSTag">3</int> | |
180 | + <reference key="NSTarget" ref="426271385"/> | |
181 | + </object> | |
171 | 182 | <object class="NSMenuItem" id="206840095"> |
172 | 183 | <reference key="NSMenu" ref="652816122"/> |
173 | 184 | <string key="NSTitle">はてなダイアリー形式</string> |
@@ -182,6 +193,7 @@ | ||
182 | 193 | </object> |
183 | 194 | <reference key="NSMenuFont" ref="14188450"/> |
184 | 195 | </object> |
196 | + <int key="NSSelectedIndex">-1</int> | |
185 | 197 | <int key="NSPreferredEdge">1</int> |
186 | 198 | <bool key="NSUsesItemFromMenu">YES</bool> |
187 | 199 | <bool key="NSAltersState">YES</bool> |
@@ -194,6 +206,7 @@ | ||
194 | 206 | <string key="NSFrame">{{140, 13}, {193, 18}}</string> |
195 | 207 | <reference key="NSSuperview" ref="196877879"/> |
196 | 208 | <reference key="NSWindow"/> |
209 | + <reference key="NSNextKeyView"/> | |
197 | 210 | <bool key="NSEnabled">YES</bool> |
198 | 211 | <object class="NSButtonCell" key="NSCell" id="737084785"> |
199 | 212 | <int key="NSCellFlags">-2080244224</int> |
@@ -220,11 +233,13 @@ | ||
220 | 233 | <string key="NSFrameSize">{380, 72}</string> |
221 | 234 | <reference key="NSSuperview" ref="138543568"/> |
222 | 235 | <reference key="NSWindow"/> |
236 | + <reference key="NSNextKeyView" ref="593310898"/> | |
223 | 237 | </object> |
224 | 238 | </object> |
225 | 239 | <string key="NSFrame">{{38, -6}, {380, 72}}</string> |
226 | 240 | <reference key="NSSuperview" ref="1005"/> |
227 | 241 | <reference key="NSWindow"/> |
242 | + <reference key="NSNextKeyView" ref="196877879"/> | |
228 | 243 | <string key="NSOffsets">{0, 0}</string> |
229 | 244 | <object class="NSTextFieldCell" key="NSTitleCell"> |
230 | 245 | <int key="NSCellFlags">67239424</int> |
@@ -259,6 +274,7 @@ | ||
259 | 274 | <string key="NSFrameSize">{456, 64}</string> |
260 | 275 | <reference key="NSSuperview"/> |
261 | 276 | <reference key="NSWindow"/> |
277 | + <reference key="NSNextKeyView" ref="138543568"/> | |
262 | 278 | <string key="NSClassName">NSView</string> |
263 | 279 | </object> |
264 | 280 | <object class="NSUserDefaultsController" id="335929809"> |
@@ -397,6 +413,7 @@ | ||
397 | 413 | <reference ref="228219779"/> |
398 | 414 | <reference ref="906680929"/> |
399 | 415 | <reference ref="206840095"/> |
416 | + <reference ref="881684340"/> | |
400 | 417 | </object> |
401 | 418 | <reference key="parent" ref="426271385"/> |
402 | 419 | </object> |
@@ -439,6 +456,11 @@ | ||
439 | 456 | <reference key="object" ref="335929809"/> |
440 | 457 | <reference key="parent" ref="0"/> |
441 | 458 | </object> |
459 | + <object class="IBObjectRecord"> | |
460 | + <int key="objectID">21</int> | |
461 | + <reference key="object" ref="881684340"/> | |
462 | + <reference key="parent" ref="652816122"/> | |
463 | + </object> | |
442 | 464 | </object> |
443 | 465 | </object> |
444 | 466 | <object class="NSMutableDictionary" key="flattenedProperties"> |
@@ -461,6 +483,7 @@ | ||
461 | 483 | <string>17.IBPluginDependency</string> |
462 | 484 | <string>2.IBPluginDependency</string> |
463 | 485 | <string>2.IBViewBoundsToFrameTransform</string> |
486 | + <string>21.IBPluginDependency</string> | |
464 | 487 | <string>3.IBPluginDependency</string> |
465 | 488 | <string>4.IBEditorWindowLastContentRect</string> |
466 | 489 | <string>4.IBPluginDependency</string> |
@@ -494,6 +517,7 @@ | ||
494 | 517 | <bytes key="NSTransformStruct">P4AAAL+AAABC5AAAwmwAAA</bytes> |
495 | 518 | </object> |
496 | 519 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
520 | + <string>com.apple.InterfaceBuilder.CocoaPlugin</string> | |
497 | 521 | <string>{{691, 373}, {266, 83}}</string> |
498 | 522 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
499 | 523 | <string>com.apple.InterfaceBuilder.CocoaPlugin</string> |
@@ -512,7 +536,7 @@ | ||
512 | 536 | <reference key="dict.values" ref="0"/> |
513 | 537 | </object> |
514 | 538 | <nil key="sourceID"/> |
515 | - <int key="maxID">20</int> | |
539 | + <int key="maxID">21</int> | |
516 | 540 | </object> |
517 | 541 | <object class="IBClassDescriber" key="IBDocument.Classes"> |
518 | 542 | <object class="NSMutableArray" key="referencedPartialClassDescriptions"> |
@@ -162,7 +162,7 @@ | ||
162 | 162 | <object class="NSPopUpButton" id="187438968"> |
163 | 163 | <reference key="NSNextResponder" ref="151985773"/> |
164 | 164 | <int key="NSvFlags">268</int> |
165 | - <string key="NSFrame">{{151, 122}, {156, 26}}</string> | |
165 | + <string key="NSFrame">{{151, 122}, {217, 26}}</string> | |
166 | 166 | <reference key="NSSuperview" ref="151985773"/> |
167 | 167 | <reference key="NSWindow"/> |
168 | 168 | <reference key="NSNextKeyView" ref="183974536"/> |
@@ -267,7 +267,6 @@ | ||
267 | 267 | <string key="NSFrame">{{74, 14}, {148, 22}}</string> |
268 | 268 | <reference key="NSSuperview" ref="692902308"/> |
269 | 269 | <reference key="NSWindow"/> |
270 | - <reference key="NSNextKeyView"/> | |
271 | 270 | <bool key="NSEnabled">YES</bool> |
272 | 271 | <object class="NSTextFieldCell" key="NSCell" id="38339054"> |
273 | 272 | <int key="NSCellFlags">-1804468671</int> |
@@ -13,6 +13,7 @@ s/General/一般/2 | ||
13 | 13 | s/HetenaDairy/はてなダイアリー/2 |
14 | 14 | s/MediaMarkerExport/MediaMarkerエクスポート/2 |
15 | 15 | s/MediaMarkerImport/MediaMarkerインポート/2 |
16 | +s/MonoColleExport/MonoColleエクスポート/2 | |
16 | 17 | s/This book has already scan./この本はスキャン済です。/2 |
17 | 18 | s/Duplicate/複製/2 |
18 | 19 | s/Export/エクスポート/2 |