Chameleon Applications

Chameleon Applications Commit Details

Date:2010-01-31 21:03:38 (14 years 2 months ago)
Author:Rekursor
Commit:95
Parents: 94
Message:Merged back modif to diebuche
Changes:
M/branches/diebuche/ChameleonPrefPane/Sources/ChameleonPrefPane.mm
M/branches/diebuche/ChameleonPrefPane/English.lproj/Chameleon.xib
M/branches/diebuche/ChameleonPrefPane/Sources/PeripheralsController.h
M/branches/diebuche/ChameleonPrefPane/Sources/PreferencesControllerBase.mm
M/branches/diebuche/ChameleonPrefPane/Sources/PeripheralsController.mm
M/branches/diebuche/ChameleonPrefPane
M/branches/diebuche/ChameleonPrefPane/Sources/AdvancedSetupController.h
M/branches/diebuche/ChameleonPrefPane/Sources/BootSetupController.mm
M/branches/diebuche/ChameleonPrefPane/Info.plist
M/branches/diebuche/ChameleonPrefPane/Sources/AdvancedSetupController.mm

File differences

branches/diebuche/ChameleonPrefPane/Sources/ChameleonPrefPane.mm
326326
327327
328328
329
329330
330331
system("/usr/bin/osascript -e 'tell app \"System Events\" to sleep'");
}
//--------------------------------------------------------------------------
@end
branches/diebuche/ChameleonPrefPane/Sources/AdvancedSetupController.mm
3737
3838
3939
40
4041
4142
4243
BootProp::instance().addOptionDesc(mForceWake, nil, OptionYesNo, "ForceWake", "No");
BootProp::instance().addOptionDesc(mWakeImage, mWakeImageText, OptionFileString, "WakeImage", "");
BootProp::instance().addOptionDesc(mSystemId, mSystemIdText, OptionString, "SystemId", "");
BootProp::instance().addOptionDesc(mSystemType, mSystemTypeText, OptionString, "SystemType", "");
BootProp::instance().addOptionDesc(mRestartFix, nil, OptionYesNo, "RestartFix", "Yes");
}
branches/diebuche/ChameleonPrefPane/Sources/PreferencesControllerBase.mm
366366
367367
368368
369
370
371
372
373
369
370
371
372
373
374374
375375
376376
......
401401
402402
403403
404
405
406
407
404
405
406
407
408
408409
409410
410411
......
432433
433434
434435
436
435437
436438
437439
if (state && bod->Type==OptionFileString)
{
NSString* f = [self selectAnyFile ];
if (f)
{
[(NSTextField*)bod->contentID setStringValue: f];
[f release];
}
if (f)
{
[(NSTextField*)bod->contentID setStringValue: f];
[f release];
}
}
[self synchronizeTextContent: bod withValue: state];
break;
- (NSString*) selectPlistFile:(NSString*) name
{
NSArray* fileTypes = [NSArray arrayWithObjects: @"plist", nil];
NSString * s= [self selectFileWithFileTypes: @"/" withName: name
withTypes: fileTypes];
[fileTypes release];
return s;}
NSString * s= [self selectFileWithFileTypes: @"/" withName: name
withTypes: fileTypes];
[fileTypes release];
return s;
}
- (NSString*) selectAnyFile
{
}
}
return nil;
}
@end
branches/diebuche/ChameleonPrefPane/Sources/AdvancedSetupController.h
2424
2525
2626
27
28
2729
2830
2931
IBOutlet NSComboBox*mCPUText;
IBOutlet NSButton*mBusRatio;
IBOutlet NSComboBox*mBusRatioText;
IBOutlet NSButton*mSystemType;
IBOutlet NSComboBox*mSystemTypeText;
IBOutlet NSButton*mDebug;
IBOutlet NSComboBox*mDebugText;
branches/diebuche/ChameleonPrefPane/Sources/PeripheralsController.mm
2424
2525
2626
27
27
28
2829
2930
3031
BootProp::instance().addOptionDesc(mLegacyLogo, nil, OptionYesNo, "Legacy Logo", "No");
BootProp::instance().addOptionDesc(mBootBanner, nil, OptionYesNo, "Boot Banner", "Yes");
BootProp::instance().addOptionDesc(mVBIOS, nil, OptionYesNo, "VBIOS", "No");
BootProp::instance().addOptionDesc(mVideoROM, mVideoROMText, OptionFileString, "VideoROM", "");
BootProp::instance().addOptionDesc(mAtiVideoROM, nil, OptionYesNo, "UseAtiVideoROM", "No");
BootProp::instance().addOptionDesc(mNvidiaVideoROM, nil, OptionYesNo, "UseAtiVideoROM", "No");
BootProp::instance().addOptionDesc(mGraphicsMode, mGraphicsModeText, OptionString, "Graphics Mode", "");
BootProp::instance().addOptionDesc(mGraphicsEnabler, nil, OptionYesNo, "GraphicsEnabler", "No");
BootProp::instance().addOptionDesc(mUSBBusFix, nil, OptionYesNo, "USBBusFix", "No");
branches/diebuche/ChameleonPrefPane/Sources/BootSetupController.mm
226226
227227
228228
229
230
231
232
229
230
231
232
233233
234234
235235
{
NSString * f = [self selectPlistFile: @"com.Apple.boot.plist"];
if(f)
{
[mBootConfigPathText setStringValue:f];
[f release];
}
{
[mBootConfigPathText setStringValue:f];
[f release];
}
}
branches/diebuche/ChameleonPrefPane/Sources/PeripheralsController.h
1616
1717
1818
19
20
19
20
2121
2222
2323
IBOutlet NSButton*mLegacyLogo;
IBOutlet NSButton*mBootBanner;
IBOutlet NSButton*mVBIOS;
IBOutlet NSButton*mVideoROM;
IBOutlet NSTextField*mVideoROMText;
IBOutlet NSButton*mAtiVideoROM;
IBOutlet NSButton*mNvidiaVideoROM;
IBOutlet NSButton*mGraphicsMode;
IBOutlet NSComboBox*mGraphicsModeText;
branches/diebuche/ChameleonPrefPane/Info.plist
2121
2222
2323
24
24
2525
2626
2727
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.0.0 RC1</string>
<string>2.0.0 RC2</string>
<key>NSMainNibFile</key>
<string>Chameleon</string>
<key>NSPrefPaneIconFile</key>
branches/diebuche/ChameleonPrefPane/English.lproj/Chameleon.xib
1212
1313
1414
15
15
1616
1717
1818
......
105105
106106
107107
108
108
109109
110110
111111
......
116116
117117
118118
119
120
119
120
121121
122
122
123123
124124
125125
126
126
127127
128128
129129
......
148148
149149
150150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
151181
152182
153183
......
224254
225255
226256
257
227258
228259
229260
......
238269
239270
240271
241
272
242273
243274
244275
......
255286
256287
257288
258
289
259290
260291
261292
......
317348
318349
319350
320
321
322
323
324
351
325352
326353
327354
......
396423
397424
398425
399
426
400427
401428
402429
......
853880
854881
855882
856
883
857884
858885
859886
......
899926
900927
901928
902
929
903930
904931
905932
......
912939
913940
914941
915
942
916943
917944
918945
919946
920
947
921948
922949
923950
......
940967
941968
942969
970
943971
944972
945973
......
13511379
13521380
13531381
1354
1382
13551383
13561384
13571385
......
19421970
19431971
19441972
1945
19461973
19471974
19481975
......
42444271
42454272
42464273
4247
4274
42484275
42494276
42504277
......
42554282
42564283
42574284
4258
4285
42594286
42604287
42614288
......
57765803
57775804
57785805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
57795878
57805879
57815880
......
58135912
58145913
58155914
5816
58175915
58185916
58195917
58205918
5919
58215920
58225921
58235922
......
59005999
59016000
59026001
6002
59036003
59046004
59056005
......
62766376
62776377
62786378
6279
62806379
62816380
6381
62826382
62836383
62846384
......
76497749
76507750
76517751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
76527766
76537767
76547768
......
77397853
77407854
77417855
7856
77427857
77437858
77447859
......
81938308
81948309
81958310
8196
8311
81978312
81988313
8199
8314
82008315
82018316
82028317
......
82078322
82088323
82098324
8325
82108326
82118327
82128328
......
88438959
88448960
88458961
8846
8962
88478963
88488964
88498965
......
89099025
89109026
89119027
9028
9029
89129030
89139031
89149032
......
89419059
89429060
89439061
9062
89449063
9064
89459065
89469066
89479067
......
92049324
92059325
92069326
9327
92079328
92089329
92099330
......
92129333
92139334
92149335
9336
92159337
92169338
92179339
92189340
92199341
9220
9221
92229342
92239343
92249344
......
92289348
92299349
92309350
9351
92319352
92329353
92339354
9355
92349356
92359357
92369358
92379359
9238
9239
92409360
92419361
92429362
......
92999419
93009420
93019421
9422
93029423
93039424
93049425
......
93229443
93239444
93249445
9446
93259447
93269448
93279449
</object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool>
<integer value="286"/>
<integer value="950"/>
</object>
<object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSTableView" id="964566138">
<reference key="NSNextResponder" ref="317600712"/>
<int key="NSvFlags">4352</int>
<string key="NSFrameSize">{126, 408}</string>
<string key="NSFrameSize">{160, 408}</string>
<reference key="NSSuperview" ref="317600712"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
</object>
<object class="NSMutableArray" key="NSTableColumns">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSTableColumn" id="820331058">
<double key="NSWidth">123</double>
<object class="NSTableColumn" id="691961689">
<double key="NSWidth">48</double>
<double key="NSMinWidth">10</double>
<double key="NSMaxWidth">1000</double>
<double key="NSMaxWidth">3.4028234663852886e+38</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents"/>
<string key="NSContents">Icon</string>
<object class="NSFont" key="NSSupport" id="26">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">11</double>
</object>
</object>
</object>
<object class="NSImageCell" key="NSDataCell" id="436163438">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">33554432</int>
<object class="NSFont" key="NSSupport" id="930899267">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">13</double>
<int key="NSfFlags">1044</int>
</object>
<int key="NSAlign">0</int>
<int key="NSScale">0</int>
<int key="NSStyle">0</int>
<bool key="NSAnimates">NO</bool>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<bool key="NSIsEditable">YES</bool>
<reference key="NSTableView" ref="964566138"/>
</object>
<object class="NSTableColumn" id="820331058">
<double key="NSWidth">106</double>
<double key="NSMinWidth">10</double>
<double key="NSMaxWidth">1000</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">Menu Name</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</object>
<object class="NSTextFieldCell" key="NSDataCell" id="825103315">
<int key="NSCellFlags">1140981312</int>
<int key="NSCellFlags2">2048</int>
<string key="NSFrame">{{-100, -100}, {141, 15}}</string>
<reference key="NSSuperview" ref="329022978"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="329022978"/>
<string key="NSAction">_doScroller:</string>
<bool key="CIEnabled">YES</bool>
</object>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">0</int>
<int key="NSsFlags">128</int>
<reference key="NSVScroller" ref="250904414"/>
<reference key="NSHScroller" ref="110835066"/>
<reference key="NSContentView" ref="317600712"/>
<object class="NSTabViewItem" id="210384195">
<string key="NSIdentifier">Item 1</string>
<object class="NSView" key="NSView" id="389526238">
<nil key="NSNextResponder"/>
<reference key="NSNextResponder" ref="869599070"/>
<int key="NSvFlags">292</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Restart</string>
<object class="NSFont" key="NSSupport" id="930899267">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">13</double>
<int key="NSfFlags">1044</int>
</object>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="1032245036"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">163</int>
<object class="NSTableView" id="830282976">
<reference key="NSNextResponder" ref="729666351"/>
<int key="NSvFlags">8448</int>
<string key="NSFrameSize">{471, 204}</string>
<string key="NSFrameSize">{471, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<int key="NSTableViewDraggingDestinationStyle">0</int>
</object>
</object>
<string key="NSFrame">{{1, 17}, {471, 204}}</string>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 14}, {473, 222}}</string>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bytes key="NSScrollAmts">QSAAAEEgAABCCAAAQggAAA</bytes>
</object>
</object>
<string key="NSFrame">{{1, 1}, {509, 266}}</string>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{13, 106}, {511, 282}}</string>
<string key="NSFrame">{{13, 70}, {511, 310}}</string>
<reference key="NSSuperview" ref="389526238"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSOffsets">{0, 0}</string>
</object>
</object>
<string key="NSFrameSize">{541, 408}</string>
<reference key="NSSuperview" ref="869599070"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<string key="NSLabel">Boot From ...</string>
<object class="NSTabViewItem" id="10883603">
<string key="NSIdentifier">Item 3</string>
<object class="NSView" key="NSView" id="798772941">
<reference key="NSNextResponder" ref="869599070"/>
<nil key="NSNextResponder"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
</object>
</object>
<string key="NSFrameSize">{541, 408}</string>
<reference key="NSSuperview" ref="869599070"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<string key="NSLabel">Boot Flags</string>
<reference key="NSTabView" ref="869599070"/>
</object>
</object>
<reference key="NSSelectedTabViewItem" ref="10883603"/>
<reference key="NSSelectedTabViewItem" ref="210384195"/>
<object class="NSFont" key="NSFont">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">9</double>
<bool key="NSDrawsBackground">YES</bool>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="798772941"/>
<reference ref="389526238"/>
</object>
</object>
<object class="NSImageView" id="2913">
</object>
<int key="connectionID">1203</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onCheckButtonChange:</string>
<reference key="source" ref="2692381"/>
<reference key="destination" ref="650075205"/>
</object>
<int key="connectionID">1204</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mAtiVideoROM</string>
<reference key="source" ref="2692381"/>
<reference key="destination" ref="650075205"/>
</object>
<int key="connectionID">1205</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onCheckButtonChange:</string>
<reference key="source" ref="2692381"/>
<reference key="destination" ref="908569716"/>
</object>
<int key="connectionID">1206</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mNvidiaVideoROM</string>
<reference key="source" ref="2692381"/>
<reference key="destination" ref="908569716"/>
</object>
<int key="connectionID">1207</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mSystemType</string>
<reference key="source" ref="523685185"/>
<reference key="destination" ref="505485330"/>
</object>
<int key="connectionID">1208</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onCheckButtonChange:</string>
<reference key="source" ref="523685185"/>
<reference key="destination" ref="505485330"/>
</object>
<int key="connectionID">1209</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mSystemTypeText</string>
<reference key="source" ref="523685185"/>
<reference key="destination" ref="986466412"/>
</object>
<int key="connectionID">1210</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onTextFiedChange:</string>
<reference key="source" ref="523685185"/>
<reference key="destination" ref="986466412"/>
</object>
<int key="connectionID">1211</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mMenuIcon</string>
<reference key="source" ref="25590726"/>
<reference key="destination" ref="691961689"/>
</object>
<int key="connectionID">1215</int>
</object>
</object>
<object class="IBMutableOrderedSet" key="objectRecords">
<object class="NSArray" key="orderedObjects">
<reference key="object" ref="1037298196"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="329022978"/>
<reference ref="544768780"/>
<reference ref="2913"/>
<reference ref="475549282"/>
<reference ref="869599070"/>
<reference ref="329022978"/>
</object>
<reference key="parent" ref="660800786"/>
</object>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="820331058"/>
<reference ref="691961689"/>
</object>
<reference key="parent" ref="329022978"/>
</object>
<reference ref="455218521"/>
<reference ref="732855392"/>
<reference ref="908569716"/>
<reference ref="650075205"/>
<reference ref="668416335"/>
<reference ref="992653788"/>
<reference ref="650075205"/>
</object>
<reference key="parent" ref="495127110"/>
</object>
<reference key="object" ref="80923813"/>
<reference key="parent" ref="1064169092"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1212</int>
<reference key="object" ref="691961689"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="436163438"/>
</object>
<reference key="parent" ref="964566138"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1214</int>
<reference key="object" ref="436163438"/>
<reference key="parent" ref="691961689"/>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<string>12.windowTemplate.minSize</string>
<string>1200.IBPluginDependency</string>
<string>1201.IBPluginDependency</string>
<string>1214.IBPluginDependency</string>
<string>128.IBPluginDependency</string>
<string>129.IBPluginDependency</string>
<string>136.IBPluginDependency</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{601, 232}, {668, 439}}</string>
<string>{{299, 183}, {668, 439}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<boolean value="YES"/>
<string>{{601, 232}, {668, 439}}</string>
<string>{{299, 183}, {668, 439}}</string>
<integer value="1"/>
<integer value="1"/>
<string>{224.664, 10}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<object class="NSMutableDictionary">
<string key="NS.key.0">InitialTabViewItem</string>
<object class="IBInitialTabViewItemAttribute" key="NS.object.0">
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">1203</int>
<int key="maxID">1215</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
<string>mSMBIOSFileText</string>
<string>mSystemId</string>
<string>mSystemIdText</string>
<string>mSystemType</string>
<string>mSystemTypeText</string>
<string>mWake</string>
<string>mWakeImage</string>
<string>mWakeImageText</string>
<string>NSButton</string>
<string>NSTextField</string>
<string>NSButton</string>
<string>NSComboBox</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSTextField</string>
</object>
</object>
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>mAtiVideoROM</string>
<string>mBootBanner</string>
<string>mEHCIacquire</string>
<string>mEthernetBuiltIn</string>
<string>mGraphicsMode</string>
<string>mGraphicsModeText</string>
<string>mLegacyLogo</string>
<string>mNvidiaVideoROM</string>
<string>mPciRoot</string>
<string>mPciRootText</string>
<string>mUHCIreset</string>
<string>mUSBBusFix</string>
<string>mVBIOS</string>
<string>mVideoROM</string>
<string>mVideoROMText</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSButton</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSComboBox</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSTextField</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSTextField</string>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string>mBootSetup</string>
<string>mEfiInject</string>
<string>mFileSystemColumn</string>
<string>mMenuIcon</string>
<string>mMenuName</string>
<string>mPartitionIDColumn</string>
<string>mPartitionImgColumn</string>
<string>NSTableColumn</string>
<string>NSTableColumn</string>
<string>NSTableColumn</string>
<string>NSTableColumn</string>
<string>CustomTableView</string>
<string>NSTabViewItem</string>
<string>NSTabViewItem</string>

Archive Download the corresponding diff file

Revision: 95