agilelamp-driver 0.1.3 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,21 +1,37 @@
1
1
  History.txt
2
2
  License.txt
3
3
  Manifest.txt
4
+ PostInstall.txt
4
5
  README.txt
5
6
  Rakefile
6
7
  bin/install-agilelamp-driver
7
8
  config/hoe.rb
8
9
  config/requirements.rb
10
+ lib/agilelamp-driver.rb
9
11
  script/console
10
12
  script/destroy
11
13
  script/generate
12
14
  script/txt2html
13
15
  setup.rb
14
- lib/agilelamp-driver.rb
16
+ src/44-usblamp.rules
17
+ src/AgileLampDriver/English.lproj/InfoPlist.strings
18
+ src/AgileLampDriver/English.lproj/locversion.plist
19
+ src/AgileLampDriver/Info.plist
20
+ src/AgileLampDriver/USB Missile Launcher.xcodeproj/dgwilson.mode1
21
+ src/AgileLampDriver/USB Missile Launcher.xcodeproj/dgwilson.mode1v3
22
+ src/AgileLampDriver/USB Missile Launcher.xcodeproj/dgwilson.pbxuser
23
+ src/AgileLampDriver/USB Missile Launcher.xcodeproj/glenn.mode1
24
+ src/AgileLampDriver/USB Missile Launcher.xcodeproj/glenn.pbxuser
25
+ src/AgileLampDriver/USB Missile Launcher.xcodeproj/julien.pbxuser
26
+ src/AgileLampDriver/USB Missile Launcher.xcodeproj/project.pbxproj
27
+ src/AgileLampDriver/k8055.cpp
28
+ src/AgileLampDriver/k8055.h
29
+ src/AgileLampDriver/version.plist
30
+ src/Makefile
31
+ src/README
15
32
  src/agilelamp-driver
16
33
  src/agilelamp.c
17
- src/Makefile
18
- src/44-usblamp.rules
34
+ src/install_kext
19
35
  tasks/deployment.rake
20
36
  tasks/environment.rake
21
37
  tasks/website.rake
@@ -0,0 +1,5 @@
1
+ ********************************************************************
2
+
3
+ Run ` install-agilelamp-driver ` with sudo to complete installation.
4
+
5
+ ********************************************************************
@@ -3,17 +3,15 @@
3
3
  require 'fileutils'
4
4
  include FileUtils
5
5
 
6
- unless `uname`.strip == 'Linux'
7
- puts <<EOF
6
+ SYSTEM = `uname`.strip
8
7
 
9
- This release is only tested for Linux, and really only for Debian-type systems.
10
- If you are using MacOS it will almost certainly not work.
11
- Continue? (y/n)
8
+ unless ['Linux','Darwin'].include?(`uname`.strip)
9
+ puts <<EOF
12
10
 
13
- EOF
11
+ At the moment, the Agile Lamp will only work with Linux and MacOS(10.4+).
14
12
 
15
- char = STDIN.getc
16
- exit unless char.chr == 'y'
13
+ EOF
14
+ exit
17
15
  end
18
16
 
19
17
  unless `whoami`.strip == 'root'
@@ -32,11 +30,21 @@ unless success
32
30
 
33
31
  ******************************************************************************
34
32
  Couldn't make agilelamp-driver. It's possible that the precompiled binary will
35
- work for you (on Linux but not MacOS). Continuing..."
33
+ work for you (on Linux but not MacOS).
36
34
  ******************************************************************************
37
35
 
38
36
  EOF
39
37
 
38
+ if SYSTEM == 'Darwin'
39
+ puts <<EOF
40
+
41
+ You are running MacOS.
42
+
43
+ You should install libusb from source and try again.
44
+
45
+ EOF
46
+ exit
47
+ end
40
48
  end
41
49
 
42
50
  puts "Installing agilelamp-driver to /usr/local/bin..."
@@ -54,26 +62,40 @@ EOF
54
62
 
55
63
  end
56
64
 
57
- puts "Making agilelamp-driver executable..."
58
- system "chmod +x /usr/local/bin/agilelamp-driver"
59
-
60
65
  cd ".."
61
66
  cd "src"
62
67
 
63
- begin
64
- puts "Installing udev rule..."
65
- cp "44-usblamp.rules", "/etc/udev/rules.d"
66
- rescue
67
- if `uname`.strip == 'Linux'
68
- puts "Couldn't install 44-usblamp.rules to /etc/udev/rules.d"
68
+ if SYSTEM == 'Linux'
69
+ begin
70
+ puts "Installing udev rule..."
71
+ cp "44-usblamp.rules", "/etc/udev/rules.d"
72
+ rescue
73
+ if `uname`.strip == 'Linux'
74
+ puts "Couldn't install 44-usblamp.rules to /etc/udev/rules.d"
75
+ end
76
+ end
77
+ elsif SYSTEM == 'Darwin'
78
+ puts "Installing 'AgileLamp driver' (Thanks USB Missile Launcher NZ)"
79
+ success = system "ruby install_kext"
80
+ unless success
81
+ puts "Kext failed to build/install?"
69
82
  end
70
83
  end
71
84
 
72
- begin
73
- puts "Attempting to restart udev..."
74
- system "/etc/init.d/udev restart"
75
- rescue
76
- puts "Couldn't restart udev"
85
+ if SYSTEM == 'Linux'
86
+ begin
87
+ puts "Attempting to restart udev..."
88
+ system "/etc/init.d/udev restart"
89
+ rescue
90
+ puts "Couldn't restart udev"
91
+ end
92
+ elsif SYSTEM == 'Darwin'
93
+ puts <<EOF
94
+
95
+ You may need to restart your system. First try uninserting and inserting your
96
+ Agile Lamp.
97
+
98
+ EOF
77
99
  end
78
100
 
79
101
  puts <<EOF
@@ -1,4 +1,4 @@
1
- #require 'agilelamp-driver/version'
1
+ require 'agilelamp-driver'
2
2
 
3
3
  AUTHOR = 'Joseph Method' # can also be an array of Authors
4
4
  EMAIL = "tristil@gmail.com"
@@ -34,8 +34,7 @@ end
34
34
  REV = nil
35
35
  # UNCOMMENT IF REQUIRED:
36
36
  # REV = YAML.load(`svn info`)['Revision']
37
- #VERS = Agilelamp-driver::VERSION::STRING + (REV ? ".#{REV}" : "")
38
- VERS = "0.1.3"
37
+ VERS = AgileLampDriver::VERSION::STRING + (REV ? ".#{REV}" : "")
39
38
  RDOC_OPTS = ['--quiet', '--title', 'agilelamp-driver documentation',
40
39
  "--opname", "index.html",
41
40
  "--line-numbers",
@@ -1,2 +1,12 @@
1
- puts "Nothing to see here (yet)."
1
+ module AgileLampDriver#:nodoc:
2
+ module VERSION #:nodoc:
3
+ MAJOR = 0
4
+ MINOR = 1
5
+ TINY = 5
2
6
 
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
8
+ end
9
+ def self.version
10
+ VERSION::STRING
11
+ end
12
+ end
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>LprojCompatibleVersion</key>
6
+ <string>288.1</string>
7
+ <key>LprojLocale</key>
8
+ <string>en</string>
9
+ <key>LprojRevisionLevel</key>
10
+ <string>1</string>
11
+ <key>LprojVersion</key>
12
+ <string>307</string>
13
+ </dict>
14
+ </plist>
@@ -0,0 +1,73 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CFBundleDevelopmentRegion</key>
6
+ <string>English</string>
7
+ <key>CFBundleIdentifier</key>
8
+ <string>nz.org.mactcp.iokit.usbmissilelauncher</string>
9
+ <key>CFBundleInfoDictionaryVersion</key>
10
+ <string>6.0</string>
11
+ <key>CFBundlePackageType</key>
12
+ <string>KEXT</string>
13
+ <key>CFBundleSignature</key>
14
+ <string>????</string>
15
+ <key>CFBundleVersion</key>
16
+ <string>1.0.0d3</string>
17
+ <key>IOKitPersonalities</key>
18
+ <dict>
19
+ <key>DeviceDriver</key>
20
+ <dict>
21
+ <key>CFBundleIdentifier</key>
22
+ <string>com.apple.kernel.iokit</string>
23
+ <key>IOClass</key>
24
+ <string>IOService</string>
25
+ <key>IOProviderClass</key>
26
+ <string>IOUSBInterface</string>
27
+ <key>idProduct</key>
28
+ <integer>514</integer>
29
+ <key>idVendor</key>
30
+ <integer>4400</integer>
31
+ </dict>
32
+ <key>InterfaceDriver0</key>
33
+ <dict>
34
+ <key>CFBundleIdentifier</key>
35
+ <string>com.apple.kernel.iokit</string>
36
+ <key>IOClass</key>
37
+ <string>IOService</string>
38
+ <key>IOProviderClass</key>
39
+ <string>IOUSBInterface</string>
40
+ <key>bConfigurationValue</key>
41
+ <integer>1</integer>
42
+ <key>bInterfaceNumber</key>
43
+ <integer>0</integer>
44
+ <key>idProduct</key>
45
+ <integer>514</integer>
46
+ <key>idVendor</key>
47
+ <integer>4400</integer>
48
+ </dict>
49
+ <key>InterfaceDriver1</key>
50
+ <dict>
51
+ <key>CFBundleIdentifier</key>
52
+ <string>com.apple.kernel.iokit</string>
53
+ <key>IOClass</key>
54
+ <string>IOService</string>
55
+ <key>IOProviderClass</key>
56
+ <string>IOUSBInterface</string>
57
+ <key>bConfigurationValue</key>
58
+ <integer>1</integer>
59
+ <key>bInterfaceNumber</key>
60
+ <integer>1</integer>
61
+ <key>idProduct</key>
62
+ <integer>514</integer>
63
+ <key>idVendor</key>
64
+ <integer>4400</integer>
65
+ </dict>
66
+ </dict>
67
+ <key>OSBundleLibraries</key>
68
+ <dict>
69
+ <key>com.apple.iokit.IOUSBFamily</key>
70
+ <string>1.8</string>
71
+ </dict>
72
+ </dict>
73
+ </plist>
@@ -0,0 +1,1327 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>ActivePerspectiveName</key>
6
+ <string>Project</string>
7
+ <key>AllowedModules</key>
8
+ <array>
9
+ <dict>
10
+ <key>BundleLoadPath</key>
11
+ <string></string>
12
+ <key>MaxInstances</key>
13
+ <string>n</string>
14
+ <key>Module</key>
15
+ <string>PBXSmartGroupTreeModule</string>
16
+ <key>Name</key>
17
+ <string>Groups and Files Outline View</string>
18
+ </dict>
19
+ <dict>
20
+ <key>BundleLoadPath</key>
21
+ <string></string>
22
+ <key>MaxInstances</key>
23
+ <string>n</string>
24
+ <key>Module</key>
25
+ <string>PBXNavigatorGroup</string>
26
+ <key>Name</key>
27
+ <string>Editor</string>
28
+ </dict>
29
+ <dict>
30
+ <key>BundleLoadPath</key>
31
+ <string></string>
32
+ <key>MaxInstances</key>
33
+ <string>n</string>
34
+ <key>Module</key>
35
+ <string>XCTaskListModule</string>
36
+ <key>Name</key>
37
+ <string>Task List</string>
38
+ </dict>
39
+ <dict>
40
+ <key>BundleLoadPath</key>
41
+ <string></string>
42
+ <key>MaxInstances</key>
43
+ <string>n</string>
44
+ <key>Module</key>
45
+ <string>XCDetailModule</string>
46
+ <key>Name</key>
47
+ <string>File and Smart Group Detail Viewer</string>
48
+ </dict>
49
+ <dict>
50
+ <key>BundleLoadPath</key>
51
+ <string></string>
52
+ <key>MaxInstances</key>
53
+ <string>1</string>
54
+ <key>Module</key>
55
+ <string>PBXBuildResultsModule</string>
56
+ <key>Name</key>
57
+ <string>Detailed Build Results Viewer</string>
58
+ </dict>
59
+ <dict>
60
+ <key>BundleLoadPath</key>
61
+ <string></string>
62
+ <key>MaxInstances</key>
63
+ <string>1</string>
64
+ <key>Module</key>
65
+ <string>PBXProjectFindModule</string>
66
+ <key>Name</key>
67
+ <string>Project Batch Find Tool</string>
68
+ </dict>
69
+ <dict>
70
+ <key>BundleLoadPath</key>
71
+ <string></string>
72
+ <key>MaxInstances</key>
73
+ <string>n</string>
74
+ <key>Module</key>
75
+ <string>PBXRunSessionModule</string>
76
+ <key>Name</key>
77
+ <string>Run Log</string>
78
+ </dict>
79
+ <dict>
80
+ <key>BundleLoadPath</key>
81
+ <string></string>
82
+ <key>MaxInstances</key>
83
+ <string>n</string>
84
+ <key>Module</key>
85
+ <string>PBXBookmarksModule</string>
86
+ <key>Name</key>
87
+ <string>Bookmarks Tool</string>
88
+ </dict>
89
+ <dict>
90
+ <key>BundleLoadPath</key>
91
+ <string></string>
92
+ <key>MaxInstances</key>
93
+ <string>n</string>
94
+ <key>Module</key>
95
+ <string>PBXClassBrowserModule</string>
96
+ <key>Name</key>
97
+ <string>Class Browser</string>
98
+ </dict>
99
+ <dict>
100
+ <key>BundleLoadPath</key>
101
+ <string></string>
102
+ <key>MaxInstances</key>
103
+ <string>n</string>
104
+ <key>Module</key>
105
+ <string>PBXCVSModule</string>
106
+ <key>Name</key>
107
+ <string>Source Code Control Tool</string>
108
+ </dict>
109
+ <dict>
110
+ <key>BundleLoadPath</key>
111
+ <string></string>
112
+ <key>MaxInstances</key>
113
+ <string>n</string>
114
+ <key>Module</key>
115
+ <string>PBXDebugBreakpointsModule</string>
116
+ <key>Name</key>
117
+ <string>Debug Breakpoints Tool</string>
118
+ </dict>
119
+ <dict>
120
+ <key>BundleLoadPath</key>
121
+ <string></string>
122
+ <key>MaxInstances</key>
123
+ <string>n</string>
124
+ <key>Module</key>
125
+ <string>XCDockableInspector</string>
126
+ <key>Name</key>
127
+ <string>Inspector</string>
128
+ </dict>
129
+ <dict>
130
+ <key>BundleLoadPath</key>
131
+ <string></string>
132
+ <key>MaxInstances</key>
133
+ <string>n</string>
134
+ <key>Module</key>
135
+ <string>PBXOpenQuicklyModule</string>
136
+ <key>Name</key>
137
+ <string>Open Quickly Tool</string>
138
+ </dict>
139
+ <dict>
140
+ <key>BundleLoadPath</key>
141
+ <string></string>
142
+ <key>MaxInstances</key>
143
+ <string>1</string>
144
+ <key>Module</key>
145
+ <string>PBXDebugSessionModule</string>
146
+ <key>Name</key>
147
+ <string>Debugger</string>
148
+ </dict>
149
+ <dict>
150
+ <key>BundleLoadPath</key>
151
+ <string></string>
152
+ <key>MaxInstances</key>
153
+ <string>1</string>
154
+ <key>Module</key>
155
+ <string>PBXDebugCLIModule</string>
156
+ <key>Name</key>
157
+ <string>Debug Console</string>
158
+ </dict>
159
+ </array>
160
+ <key>Description</key>
161
+ <string>DefaultDescriptionKey</string>
162
+ <key>DockingSystemVisible</key>
163
+ <false/>
164
+ <key>Extension</key>
165
+ <string>mode1</string>
166
+ <key>FavBarConfig</key>
167
+ <dict>
168
+ <key>PBXProjectModuleGUID</key>
169
+ <string>E026EE860B294BB700FBA2F6</string>
170
+ <key>XCBarModuleItemNames</key>
171
+ <dict/>
172
+ <key>XCBarModuleItems</key>
173
+ <array/>
174
+ </dict>
175
+ <key>FirstTimeWindowDisplayed</key>
176
+ <false/>
177
+ <key>Identifier</key>
178
+ <string>com.apple.perspectives.project.mode1</string>
179
+ <key>MajorVersion</key>
180
+ <integer>31</integer>
181
+ <key>MinorVersion</key>
182
+ <integer>1</integer>
183
+ <key>Name</key>
184
+ <string>Default</string>
185
+ <key>Notifications</key>
186
+ <array/>
187
+ <key>OpenEditors</key>
188
+ <array/>
189
+ <key>PerspectiveWidths</key>
190
+ <array>
191
+ <integer>-1</integer>
192
+ <integer>-1</integer>
193
+ </array>
194
+ <key>Perspectives</key>
195
+ <array>
196
+ <dict>
197
+ <key>ChosenToolbarItems</key>
198
+ <array>
199
+ <string>active-target-popup</string>
200
+ <string>active-buildstyle-popup</string>
201
+ <string>action</string>
202
+ <string>NSToolbarFlexibleSpaceItem</string>
203
+ <string>buildOrClean</string>
204
+ <string>build-and-runOrDebug</string>
205
+ <string>com.apple.ide.PBXToolbarStopButton</string>
206
+ <string>get-info</string>
207
+ <string>toggle-editor</string>
208
+ <string>Quick Model</string>
209
+ <string>NSToolbarFlexibleSpaceItem</string>
210
+ <string>com.apple.pbx.toolbar.searchfield</string>
211
+ </array>
212
+ <key>ControllerClassBaseName</key>
213
+ <string></string>
214
+ <key>IconName</key>
215
+ <string>WindowOfProjectWithEditor</string>
216
+ <key>Identifier</key>
217
+ <string>perspective.project</string>
218
+ <key>IsVertical</key>
219
+ <false/>
220
+ <key>Layout</key>
221
+ <array>
222
+ <dict>
223
+ <key>ContentConfiguration</key>
224
+ <dict>
225
+ <key>PBXBottomSmartGroupGIDs</key>
226
+ <array>
227
+ <string>1C37FBAC04509CD000000102</string>
228
+ <string>1C37FAAC04509CD000000102</string>
229
+ <string>1C08E77C0454961000C914BD</string>
230
+ <string>1C37FABC05509CD000000102</string>
231
+ <string>1C37FABC05539CD112110102</string>
232
+ <string>E2644B35053B69B200211256</string>
233
+ <string>1C37FABC04509CD000100104</string>
234
+ <string>1CC0EA4004350EF90044410B</string>
235
+ <string>1CC0EA4004350EF90041110B</string>
236
+ </array>
237
+ <key>PBXProjectModuleGUID</key>
238
+ <string>1CE0B1FE06471DED0097A5F4</string>
239
+ <key>PBXProjectModuleLabel</key>
240
+ <string>Files</string>
241
+ <key>PBXProjectStructureProvided</key>
242
+ <string>yes</string>
243
+ <key>PBXSmartGroupTreeModuleColumnData</key>
244
+ <dict>
245
+ <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
246
+ <array>
247
+ <real>186</real>
248
+ </array>
249
+ <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
250
+ <array>
251
+ <string>MainColumn</string>
252
+ </array>
253
+ </dict>
254
+ <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
255
+ <dict>
256
+ <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
257
+ <array>
258
+ <string>089C166AFE841209C02AAC07</string>
259
+ <string>1C37FBAC04509CD000000102</string>
260
+ <string>1C37FABC05509CD000000102</string>
261
+ </array>
262
+ <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
263
+ <array>
264
+ <array>
265
+ <integer>4</integer>
266
+ </array>
267
+ </array>
268
+ <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
269
+ <string>{{0, 0}, {186, 338}}</string>
270
+ </dict>
271
+ <key>PBXTopSmartGroupGIDs</key>
272
+ <array/>
273
+ <key>XCIncludePerspectivesSwitch</key>
274
+ <true/>
275
+ <key>XCSharingToken</key>
276
+ <string>com.apple.Xcode.GFSharingToken</string>
277
+ </dict>
278
+ <key>GeometryConfiguration</key>
279
+ <dict>
280
+ <key>Frame</key>
281
+ <string>{{0, 0}, {203, 356}}</string>
282
+ <key>GroupTreeTableConfiguration</key>
283
+ <array>
284
+ <string>MainColumn</string>
285
+ <real>186</real>
286
+ </array>
287
+ <key>RubberWindowFrame</key>
288
+ <string>375 406 690 397 0 0 1440 878 </string>
289
+ </dict>
290
+ <key>Module</key>
291
+ <string>PBXSmartGroupTreeModule</string>
292
+ <key>Proportion</key>
293
+ <string>203pt</string>
294
+ </dict>
295
+ <dict>
296
+ <key>Dock</key>
297
+ <array>
298
+ <dict>
299
+ <key>ContentConfiguration</key>
300
+ <dict>
301
+ <key>PBXProjectModuleGUID</key>
302
+ <string>1CE0B20306471E060097A5F4</string>
303
+ <key>PBXProjectModuleLabel</key>
304
+ <string>MyNewFile14.java</string>
305
+ <key>PBXSplitModuleInNavigatorKey</key>
306
+ <dict>
307
+ <key>Split0</key>
308
+ <dict>
309
+ <key>PBXProjectModuleGUID</key>
310
+ <string>1CE0B20406471E060097A5F4</string>
311
+ <key>PBXProjectModuleLabel</key>
312
+ <string>MyNewFile14.java</string>
313
+ </dict>
314
+ <key>SplitCount</key>
315
+ <string>1</string>
316
+ </dict>
317
+ <key>StatusBarVisibility</key>
318
+ <true/>
319
+ </dict>
320
+ <key>GeometryConfiguration</key>
321
+ <dict>
322
+ <key>Frame</key>
323
+ <string>{{0, 0}, {482, 0}}</string>
324
+ <key>RubberWindowFrame</key>
325
+ <string>375 406 690 397 0 0 1440 878 </string>
326
+ </dict>
327
+ <key>Module</key>
328
+ <string>PBXNavigatorGroup</string>
329
+ <key>Proportion</key>
330
+ <string>0pt</string>
331
+ </dict>
332
+ <dict>
333
+ <key>BecomeActive</key>
334
+ <true/>
335
+ <key>ContentConfiguration</key>
336
+ <dict>
337
+ <key>PBXProjectModuleGUID</key>
338
+ <string>1CE0B20506471E060097A5F4</string>
339
+ <key>PBXProjectModuleLabel</key>
340
+ <string>Detail</string>
341
+ </dict>
342
+ <key>GeometryConfiguration</key>
343
+ <dict>
344
+ <key>Frame</key>
345
+ <string>{{0, 5}, {482, 351}}</string>
346
+ <key>RubberWindowFrame</key>
347
+ <string>375 406 690 397 0 0 1440 878 </string>
348
+ </dict>
349
+ <key>Module</key>
350
+ <string>XCDetailModule</string>
351
+ <key>Proportion</key>
352
+ <string>351pt</string>
353
+ </dict>
354
+ </array>
355
+ <key>Proportion</key>
356
+ <string>482pt</string>
357
+ </dict>
358
+ </array>
359
+ <key>Name</key>
360
+ <string>Project</string>
361
+ <key>ServiceClasses</key>
362
+ <array>
363
+ <string>XCModuleDock</string>
364
+ <string>PBXSmartGroupTreeModule</string>
365
+ <string>XCModuleDock</string>
366
+ <string>PBXNavigatorGroup</string>
367
+ <string>XCDetailModule</string>
368
+ </array>
369
+ <key>TableOfContents</key>
370
+ <array>
371
+ <string>E03E82EA0B6CA24B00C184BF</string>
372
+ <string>1CE0B1FE06471DED0097A5F4</string>
373
+ <string>E03E82EB0B6CA24B00C184BF</string>
374
+ <string>1CE0B20306471E060097A5F4</string>
375
+ <string>1CE0B20506471E060097A5F4</string>
376
+ </array>
377
+ <key>ToolbarConfiguration</key>
378
+ <string>xcode.toolbar.config.default</string>
379
+ </dict>
380
+ <dict>
381
+ <key>ControllerClassBaseName</key>
382
+ <string></string>
383
+ <key>IconName</key>
384
+ <string>WindowOfProject</string>
385
+ <key>Identifier</key>
386
+ <string>perspective.morph</string>
387
+ <key>IsVertical</key>
388
+ <integer>0</integer>
389
+ <key>Layout</key>
390
+ <array>
391
+ <dict>
392
+ <key>BecomeActive</key>
393
+ <integer>1</integer>
394
+ <key>ContentConfiguration</key>
395
+ <dict>
396
+ <key>PBXBottomSmartGroupGIDs</key>
397
+ <array>
398
+ <string>1C37FBAC04509CD000000102</string>
399
+ <string>1C37FAAC04509CD000000102</string>
400
+ <string>1C08E77C0454961000C914BD</string>
401
+ <string>1C37FABC05509CD000000102</string>
402
+ <string>1C37FABC05539CD112110102</string>
403
+ <string>E2644B35053B69B200211256</string>
404
+ <string>1C37FABC04509CD000100104</string>
405
+ <string>1CC0EA4004350EF90044410B</string>
406
+ <string>1CC0EA4004350EF90041110B</string>
407
+ </array>
408
+ <key>PBXProjectModuleGUID</key>
409
+ <string>11E0B1FE06471DED0097A5F4</string>
410
+ <key>PBXProjectModuleLabel</key>
411
+ <string>Files</string>
412
+ <key>PBXProjectStructureProvided</key>
413
+ <string>yes</string>
414
+ <key>PBXSmartGroupTreeModuleColumnData</key>
415
+ <dict>
416
+ <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
417
+ <array>
418
+ <real>186</real>
419
+ </array>
420
+ <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
421
+ <array>
422
+ <string>MainColumn</string>
423
+ </array>
424
+ </dict>
425
+ <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
426
+ <dict>
427
+ <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
428
+ <array>
429
+ <string>29B97314FDCFA39411CA2CEA</string>
430
+ <string>1C37FABC05509CD000000102</string>
431
+ </array>
432
+ <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
433
+ <array>
434
+ <array>
435
+ <integer>0</integer>
436
+ </array>
437
+ </array>
438
+ <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
439
+ <string>{{0, 0}, {186, 337}}</string>
440
+ </dict>
441
+ <key>PBXTopSmartGroupGIDs</key>
442
+ <array/>
443
+ <key>XCIncludePerspectivesSwitch</key>
444
+ <integer>1</integer>
445
+ <key>XCSharingToken</key>
446
+ <string>com.apple.Xcode.GFSharingToken</string>
447
+ </dict>
448
+ <key>GeometryConfiguration</key>
449
+ <dict>
450
+ <key>Frame</key>
451
+ <string>{{0, 0}, {203, 355}}</string>
452
+ <key>GroupTreeTableConfiguration</key>
453
+ <array>
454
+ <string>MainColumn</string>
455
+ <real>186</real>
456
+ </array>
457
+ <key>RubberWindowFrame</key>
458
+ <string>373 269 690 397 0 0 1440 878 </string>
459
+ </dict>
460
+ <key>Module</key>
461
+ <string>PBXSmartGroupTreeModule</string>
462
+ <key>Proportion</key>
463
+ <string>100%</string>
464
+ </dict>
465
+ </array>
466
+ <key>Name</key>
467
+ <string>Morph</string>
468
+ <key>PreferredWidth</key>
469
+ <integer>300</integer>
470
+ <key>ServiceClasses</key>
471
+ <array>
472
+ <string>XCModuleDock</string>
473
+ <string>PBXSmartGroupTreeModule</string>
474
+ </array>
475
+ <key>TableOfContents</key>
476
+ <array>
477
+ <string>11E0B1FE06471DED0097A5F4</string>
478
+ </array>
479
+ <key>ToolbarConfiguration</key>
480
+ <string>xcode.toolbar.config.default.short</string>
481
+ </dict>
482
+ </array>
483
+ <key>PerspectivesBarVisible</key>
484
+ <false/>
485
+ <key>ShelfIsVisible</key>
486
+ <false/>
487
+ <key>SourceDescription</key>
488
+ <string>file at '/System/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/Resources/XCPerspectivesSpecificationMode1.xcperspec'</string>
489
+ <key>StatusbarIsVisible</key>
490
+ <true/>
491
+ <key>TimeStamp</key>
492
+ <real>0.0</real>
493
+ <key>ToolbarDisplayMode</key>
494
+ <integer>1</integer>
495
+ <key>ToolbarIsVisible</key>
496
+ <true/>
497
+ <key>ToolbarSizeMode</key>
498
+ <integer>1</integer>
499
+ <key>Type</key>
500
+ <string>Perspectives</string>
501
+ <key>UpdateMessage</key>
502
+ <string>The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'?</string>
503
+ <key>WindowJustification</key>
504
+ <integer>5</integer>
505
+ <key>WindowOrderList</key>
506
+ <array>
507
+ <string>E026EE8F0B294CA000FBA2F6</string>
508
+ <string>/Users/dgwilson/Desktop/Missile/kext drivers/USB Missile Launcher Driver - kext/USB Missile Launcher.xcodeproj</string>
509
+ </array>
510
+ <key>WindowString</key>
511
+ <string>375 406 690 397 0 0 1440 878 </string>
512
+ <key>WindowTools</key>
513
+ <array>
514
+ <dict>
515
+ <key>FirstTimeWindowDisplayed</key>
516
+ <false/>
517
+ <key>Identifier</key>
518
+ <string>windowTool.build</string>
519
+ <key>IsVertical</key>
520
+ <true/>
521
+ <key>Layout</key>
522
+ <array>
523
+ <dict>
524
+ <key>Dock</key>
525
+ <array>
526
+ <dict>
527
+ <key>ContentConfiguration</key>
528
+ <dict>
529
+ <key>PBXProjectModuleGUID</key>
530
+ <string>1CD0528F0623707200166675</string>
531
+ <key>PBXProjectModuleLabel</key>
532
+ <string></string>
533
+ <key>StatusBarVisibility</key>
534
+ <true/>
535
+ </dict>
536
+ <key>GeometryConfiguration</key>
537
+ <dict>
538
+ <key>Frame</key>
539
+ <string>{{0, 0}, {500, 218}}</string>
540
+ <key>RubberWindowFrame</key>
541
+ <string>381 286 500 500 0 0 1440 878 </string>
542
+ </dict>
543
+ <key>Module</key>
544
+ <string>PBXNavigatorGroup</string>
545
+ <key>Proportion</key>
546
+ <string>218pt</string>
547
+ </dict>
548
+ <dict>
549
+ <key>ContentConfiguration</key>
550
+ <dict>
551
+ <key>PBXProjectModuleGUID</key>
552
+ <string>XCMainBuildResultsModuleGUID</string>
553
+ <key>PBXProjectModuleLabel</key>
554
+ <string>Build</string>
555
+ <key>XCBuildResultsTrigger_Collapse</key>
556
+ <integer>1021</integer>
557
+ <key>XCBuildResultsTrigger_Open</key>
558
+ <integer>1011</integer>
559
+ </dict>
560
+ <key>GeometryConfiguration</key>
561
+ <dict>
562
+ <key>Frame</key>
563
+ <string>{{0, 223}, {500, 236}}</string>
564
+ <key>RubberWindowFrame</key>
565
+ <string>381 286 500 500 0 0 1440 878 </string>
566
+ </dict>
567
+ <key>Module</key>
568
+ <string>PBXBuildResultsModule</string>
569
+ <key>Proportion</key>
570
+ <string>236pt</string>
571
+ </dict>
572
+ </array>
573
+ <key>Proportion</key>
574
+ <string>459pt</string>
575
+ </dict>
576
+ </array>
577
+ <key>Name</key>
578
+ <string>Build Results</string>
579
+ <key>ServiceClasses</key>
580
+ <array>
581
+ <string>PBXBuildResultsModule</string>
582
+ </array>
583
+ <key>StatusbarIsVisible</key>
584
+ <true/>
585
+ <key>TableOfContents</key>
586
+ <array>
587
+ <string>E026EE8F0B294CA000FBA2F6</string>
588
+ <string>E03E82EC0B6CA24B00C184BF</string>
589
+ <string>1CD0528F0623707200166675</string>
590
+ <string>XCMainBuildResultsModuleGUID</string>
591
+ </array>
592
+ <key>ToolbarConfiguration</key>
593
+ <string>xcode.toolbar.config.build</string>
594
+ <key>WindowString</key>
595
+ <string>381 286 500 500 0 0 1440 878 </string>
596
+ <key>WindowToolGUID</key>
597
+ <string>E026EE8F0B294CA000FBA2F6</string>
598
+ <key>WindowToolIsVisible</key>
599
+ <false/>
600
+ </dict>
601
+ <dict>
602
+ <key>Identifier</key>
603
+ <string>windowTool.debugger</string>
604
+ <key>Layout</key>
605
+ <array>
606
+ <dict>
607
+ <key>Dock</key>
608
+ <array>
609
+ <dict>
610
+ <key>ContentConfiguration</key>
611
+ <dict>
612
+ <key>Debugger</key>
613
+ <dict>
614
+ <key>HorizontalSplitView</key>
615
+ <dict>
616
+ <key>_collapsingFrameDimension</key>
617
+ <real>0.0</real>
618
+ <key>_indexOfCollapsedView</key>
619
+ <integer>0</integer>
620
+ <key>_percentageOfCollapsedView</key>
621
+ <real>0.0</real>
622
+ <key>isCollapsed</key>
623
+ <string>yes</string>
624
+ <key>sizes</key>
625
+ <array>
626
+ <string>{{0, 0}, {317, 164}}</string>
627
+ <string>{{317, 0}, {377, 164}}</string>
628
+ </array>
629
+ </dict>
630
+ <key>VerticalSplitView</key>
631
+ <dict>
632
+ <key>_collapsingFrameDimension</key>
633
+ <real>0.0</real>
634
+ <key>_indexOfCollapsedView</key>
635
+ <integer>0</integer>
636
+ <key>_percentageOfCollapsedView</key>
637
+ <real>0.0</real>
638
+ <key>isCollapsed</key>
639
+ <string>yes</string>
640
+ <key>sizes</key>
641
+ <array>
642
+ <string>{{0, 0}, {694, 164}}</string>
643
+ <string>{{0, 164}, {694, 216}}</string>
644
+ </array>
645
+ </dict>
646
+ </dict>
647
+ <key>LauncherConfigVersion</key>
648
+ <string>8</string>
649
+ <key>PBXProjectModuleGUID</key>
650
+ <string>1C162984064C10D400B95A72</string>
651
+ <key>PBXProjectModuleLabel</key>
652
+ <string>Debug - GLUTExamples (Underwater)</string>
653
+ </dict>
654
+ <key>GeometryConfiguration</key>
655
+ <dict>
656
+ <key>DebugConsoleDrawerSize</key>
657
+ <string>{100, 120}</string>
658
+ <key>DebugConsoleVisible</key>
659
+ <string>None</string>
660
+ <key>DebugConsoleWindowFrame</key>
661
+ <string>{{200, 200}, {500, 300}}</string>
662
+ <key>DebugSTDIOWindowFrame</key>
663
+ <string>{{200, 200}, {500, 300}}</string>
664
+ <key>Frame</key>
665
+ <string>{{0, 0}, {694, 380}}</string>
666
+ <key>RubberWindowFrame</key>
667
+ <string>321 238 694 422 0 0 1440 878 </string>
668
+ </dict>
669
+ <key>Module</key>
670
+ <string>PBXDebugSessionModule</string>
671
+ <key>Proportion</key>
672
+ <string>100%</string>
673
+ </dict>
674
+ </array>
675
+ <key>Proportion</key>
676
+ <string>100%</string>
677
+ </dict>
678
+ </array>
679
+ <key>Name</key>
680
+ <string>Debugger</string>
681
+ <key>ServiceClasses</key>
682
+ <array>
683
+ <string>PBXDebugSessionModule</string>
684
+ </array>
685
+ <key>StatusbarIsVisible</key>
686
+ <integer>1</integer>
687
+ <key>TableOfContents</key>
688
+ <array>
689
+ <string>1CD10A99069EF8BA00B06720</string>
690
+ <string>1C0AD2AB069F1E9B00FABCE6</string>
691
+ <string>1C162984064C10D400B95A72</string>
692
+ <string>1C0AD2AC069F1E9B00FABCE6</string>
693
+ </array>
694
+ <key>ToolbarConfiguration</key>
695
+ <string>xcode.toolbar.config.debug</string>
696
+ <key>WindowString</key>
697
+ <string>321 238 694 422 0 0 1440 878 </string>
698
+ <key>WindowToolGUID</key>
699
+ <string>1CD10A99069EF8BA00B06720</string>
700
+ <key>WindowToolIsVisible</key>
701
+ <integer>0</integer>
702
+ </dict>
703
+ <dict>
704
+ <key>Identifier</key>
705
+ <string>windowTool.find</string>
706
+ <key>Layout</key>
707
+ <array>
708
+ <dict>
709
+ <key>Dock</key>
710
+ <array>
711
+ <dict>
712
+ <key>Dock</key>
713
+ <array>
714
+ <dict>
715
+ <key>ContentConfiguration</key>
716
+ <dict>
717
+ <key>PBXProjectModuleGUID</key>
718
+ <string>1CDD528C0622207200134675</string>
719
+ <key>PBXProjectModuleLabel</key>
720
+ <string>&lt;No Editor&gt;</string>
721
+ <key>PBXSplitModuleInNavigatorKey</key>
722
+ <dict>
723
+ <key>Split0</key>
724
+ <dict>
725
+ <key>PBXProjectModuleGUID</key>
726
+ <string>1CD0528D0623707200166675</string>
727
+ </dict>
728
+ <key>SplitCount</key>
729
+ <string>1</string>
730
+ </dict>
731
+ <key>StatusBarVisibility</key>
732
+ <integer>1</integer>
733
+ </dict>
734
+ <key>GeometryConfiguration</key>
735
+ <dict>
736
+ <key>Frame</key>
737
+ <string>{{0, 0}, {781, 167}}</string>
738
+ <key>RubberWindowFrame</key>
739
+ <string>62 385 781 470 0 0 1440 878 </string>
740
+ </dict>
741
+ <key>Module</key>
742
+ <string>PBXNavigatorGroup</string>
743
+ <key>Proportion</key>
744
+ <string>781pt</string>
745
+ </dict>
746
+ </array>
747
+ <key>Proportion</key>
748
+ <string>50%</string>
749
+ </dict>
750
+ <dict>
751
+ <key>BecomeActive</key>
752
+ <integer>1</integer>
753
+ <key>ContentConfiguration</key>
754
+ <dict>
755
+ <key>PBXProjectModuleGUID</key>
756
+ <string>1CD0528E0623707200166675</string>
757
+ <key>PBXProjectModuleLabel</key>
758
+ <string>Project Find</string>
759
+ </dict>
760
+ <key>GeometryConfiguration</key>
761
+ <dict>
762
+ <key>Frame</key>
763
+ <string>{{8, 0}, {773, 254}}</string>
764
+ <key>RubberWindowFrame</key>
765
+ <string>62 385 781 470 0 0 1440 878 </string>
766
+ </dict>
767
+ <key>Module</key>
768
+ <string>PBXProjectFindModule</string>
769
+ <key>Proportion</key>
770
+ <string>50%</string>
771
+ </dict>
772
+ </array>
773
+ <key>Proportion</key>
774
+ <string>428pt</string>
775
+ </dict>
776
+ </array>
777
+ <key>Name</key>
778
+ <string>Project Find</string>
779
+ <key>ServiceClasses</key>
780
+ <array>
781
+ <string>PBXProjectFindModule</string>
782
+ </array>
783
+ <key>StatusbarIsVisible</key>
784
+ <integer>1</integer>
785
+ <key>TableOfContents</key>
786
+ <array>
787
+ <string>1C530D57069F1CE1000CFCEE</string>
788
+ <string>1C530D58069F1CE1000CFCEE</string>
789
+ <string>1C530D59069F1CE1000CFCEE</string>
790
+ <string>1CDD528C0622207200134675</string>
791
+ <string>1C530D5A069F1CE1000CFCEE</string>
792
+ <string>1CE0B1FE06471DED0097A5F4</string>
793
+ <string>1CD0528E0623707200166675</string>
794
+ </array>
795
+ <key>WindowString</key>
796
+ <string>62 385 781 470 0 0 1440 878 </string>
797
+ <key>WindowToolGUID</key>
798
+ <string>1C530D57069F1CE1000CFCEE</string>
799
+ <key>WindowToolIsVisible</key>
800
+ <integer>0</integer>
801
+ </dict>
802
+ <dict>
803
+ <key>Identifier</key>
804
+ <string>MENUSEPARATOR</string>
805
+ </dict>
806
+ <dict>
807
+ <key>Identifier</key>
808
+ <string>windowTool.debuggerConsole</string>
809
+ <key>Layout</key>
810
+ <array>
811
+ <dict>
812
+ <key>Dock</key>
813
+ <array>
814
+ <dict>
815
+ <key>BecomeActive</key>
816
+ <integer>1</integer>
817
+ <key>ContentConfiguration</key>
818
+ <dict>
819
+ <key>PBXProjectModuleGUID</key>
820
+ <string>1C78EAAC065D492600B07095</string>
821
+ <key>PBXProjectModuleLabel</key>
822
+ <string>Debugger Console</string>
823
+ </dict>
824
+ <key>GeometryConfiguration</key>
825
+ <dict>
826
+ <key>Frame</key>
827
+ <string>{{0, 0}, {440, 358}}</string>
828
+ <key>RubberWindowFrame</key>
829
+ <string>650 41 440 400 0 0 1280 1002 </string>
830
+ </dict>
831
+ <key>Module</key>
832
+ <string>PBXDebugCLIModule</string>
833
+ <key>Proportion</key>
834
+ <string>358pt</string>
835
+ </dict>
836
+ </array>
837
+ <key>Proportion</key>
838
+ <string>358pt</string>
839
+ </dict>
840
+ </array>
841
+ <key>Name</key>
842
+ <string>Debugger Console</string>
843
+ <key>ServiceClasses</key>
844
+ <array>
845
+ <string>PBXDebugCLIModule</string>
846
+ </array>
847
+ <key>StatusbarIsVisible</key>
848
+ <integer>1</integer>
849
+ <key>TableOfContents</key>
850
+ <array>
851
+ <string>1C78EAAD065D492600B07095</string>
852
+ <string>1C78EAAE065D492600B07095</string>
853
+ <string>1C78EAAC065D492600B07095</string>
854
+ </array>
855
+ <key>WindowString</key>
856
+ <string>650 41 440 400 0 0 1280 1002 </string>
857
+ </dict>
858
+ <dict>
859
+ <key>Identifier</key>
860
+ <string>windowTool.run</string>
861
+ <key>Layout</key>
862
+ <array>
863
+ <dict>
864
+ <key>Dock</key>
865
+ <array>
866
+ <dict>
867
+ <key>ContentConfiguration</key>
868
+ <dict>
869
+ <key>LauncherConfigVersion</key>
870
+ <string>3</string>
871
+ <key>PBXProjectModuleGUID</key>
872
+ <string>1CD0528B0623707200166675</string>
873
+ <key>PBXProjectModuleLabel</key>
874
+ <string>Run</string>
875
+ <key>Runner</key>
876
+ <dict>
877
+ <key>HorizontalSplitView</key>
878
+ <dict>
879
+ <key>_collapsingFrameDimension</key>
880
+ <real>0.0</real>
881
+ <key>_indexOfCollapsedView</key>
882
+ <integer>0</integer>
883
+ <key>_percentageOfCollapsedView</key>
884
+ <real>0.0</real>
885
+ <key>isCollapsed</key>
886
+ <string>yes</string>
887
+ <key>sizes</key>
888
+ <array>
889
+ <string>{{0, 0}, {493, 167}}</string>
890
+ <string>{{0, 176}, {493, 267}}</string>
891
+ </array>
892
+ </dict>
893
+ <key>VerticalSplitView</key>
894
+ <dict>
895
+ <key>_collapsingFrameDimension</key>
896
+ <real>0.0</real>
897
+ <key>_indexOfCollapsedView</key>
898
+ <integer>0</integer>
899
+ <key>_percentageOfCollapsedView</key>
900
+ <real>0.0</real>
901
+ <key>isCollapsed</key>
902
+ <string>yes</string>
903
+ <key>sizes</key>
904
+ <array>
905
+ <string>{{0, 0}, {405, 443}}</string>
906
+ <string>{{414, 0}, {514, 443}}</string>
907
+ </array>
908
+ </dict>
909
+ </dict>
910
+ </dict>
911
+ <key>GeometryConfiguration</key>
912
+ <dict>
913
+ <key>Frame</key>
914
+ <string>{{0, 0}, {460, 159}}</string>
915
+ <key>RubberWindowFrame</key>
916
+ <string>316 696 459 200 0 0 1280 1002 </string>
917
+ </dict>
918
+ <key>Module</key>
919
+ <string>PBXRunSessionModule</string>
920
+ <key>Proportion</key>
921
+ <string>159pt</string>
922
+ </dict>
923
+ </array>
924
+ <key>Proportion</key>
925
+ <string>159pt</string>
926
+ </dict>
927
+ </array>
928
+ <key>Name</key>
929
+ <string>Run Log</string>
930
+ <key>ServiceClasses</key>
931
+ <array>
932
+ <string>PBXRunSessionModule</string>
933
+ </array>
934
+ <key>StatusbarIsVisible</key>
935
+ <integer>1</integer>
936
+ <key>TableOfContents</key>
937
+ <array>
938
+ <string>1C0AD2B3069F1EA900FABCE6</string>
939
+ <string>1C0AD2B4069F1EA900FABCE6</string>
940
+ <string>1CD0528B0623707200166675</string>
941
+ <string>1C0AD2B5069F1EA900FABCE6</string>
942
+ </array>
943
+ <key>ToolbarConfiguration</key>
944
+ <string>xcode.toolbar.config.run</string>
945
+ <key>WindowString</key>
946
+ <string>316 696 459 200 0 0 1280 1002 </string>
947
+ <key>WindowToolGUID</key>
948
+ <string>1C0AD2B3069F1EA900FABCE6</string>
949
+ <key>WindowToolIsVisible</key>
950
+ <integer>0</integer>
951
+ </dict>
952
+ <dict>
953
+ <key>Identifier</key>
954
+ <string>windowTool.scm</string>
955
+ <key>Layout</key>
956
+ <array>
957
+ <dict>
958
+ <key>Dock</key>
959
+ <array>
960
+ <dict>
961
+ <key>ContentConfiguration</key>
962
+ <dict>
963
+ <key>PBXProjectModuleGUID</key>
964
+ <string>1C78EAB2065D492600B07095</string>
965
+ <key>PBXProjectModuleLabel</key>
966
+ <string>&lt;No Editor&gt;</string>
967
+ <key>PBXSplitModuleInNavigatorKey</key>
968
+ <dict>
969
+ <key>Split0</key>
970
+ <dict>
971
+ <key>PBXProjectModuleGUID</key>
972
+ <string>1C78EAB3065D492600B07095</string>
973
+ </dict>
974
+ <key>SplitCount</key>
975
+ <string>1</string>
976
+ </dict>
977
+ <key>StatusBarVisibility</key>
978
+ <integer>1</integer>
979
+ </dict>
980
+ <key>GeometryConfiguration</key>
981
+ <dict>
982
+ <key>Frame</key>
983
+ <string>{{0, 0}, {452, 0}}</string>
984
+ <key>RubberWindowFrame</key>
985
+ <string>743 379 452 308 0 0 1280 1002 </string>
986
+ </dict>
987
+ <key>Module</key>
988
+ <string>PBXNavigatorGroup</string>
989
+ <key>Proportion</key>
990
+ <string>0pt</string>
991
+ </dict>
992
+ <dict>
993
+ <key>BecomeActive</key>
994
+ <integer>1</integer>
995
+ <key>ContentConfiguration</key>
996
+ <dict>
997
+ <key>PBXProjectModuleGUID</key>
998
+ <string>1CD052920623707200166675</string>
999
+ <key>PBXProjectModuleLabel</key>
1000
+ <string>SCM</string>
1001
+ </dict>
1002
+ <key>GeometryConfiguration</key>
1003
+ <dict>
1004
+ <key>ConsoleFrame</key>
1005
+ <string>{{0, 259}, {452, 0}}</string>
1006
+ <key>Frame</key>
1007
+ <string>{{0, 7}, {452, 259}}</string>
1008
+ <key>RubberWindowFrame</key>
1009
+ <string>743 379 452 308 0 0 1280 1002 </string>
1010
+ <key>TableConfiguration</key>
1011
+ <array>
1012
+ <string>Status</string>
1013
+ <real>30</real>
1014
+ <string>FileName</string>
1015
+ <real>199</real>
1016
+ <string>Path</string>
1017
+ <real>197.09500122070312</real>
1018
+ </array>
1019
+ <key>TableFrame</key>
1020
+ <string>{{0, 0}, {452, 250}}</string>
1021
+ </dict>
1022
+ <key>Module</key>
1023
+ <string>PBXCVSModule</string>
1024
+ <key>Proportion</key>
1025
+ <string>262pt</string>
1026
+ </dict>
1027
+ </array>
1028
+ <key>Proportion</key>
1029
+ <string>266pt</string>
1030
+ </dict>
1031
+ </array>
1032
+ <key>Name</key>
1033
+ <string>SCM</string>
1034
+ <key>ServiceClasses</key>
1035
+ <array>
1036
+ <string>PBXCVSModule</string>
1037
+ </array>
1038
+ <key>StatusbarIsVisible</key>
1039
+ <integer>1</integer>
1040
+ <key>TableOfContents</key>
1041
+ <array>
1042
+ <string>1C78EAB4065D492600B07095</string>
1043
+ <string>1C78EAB5065D492600B07095</string>
1044
+ <string>1C78EAB2065D492600B07095</string>
1045
+ <string>1CD052920623707200166675</string>
1046
+ </array>
1047
+ <key>ToolbarConfiguration</key>
1048
+ <string>xcode.toolbar.config.scm</string>
1049
+ <key>WindowString</key>
1050
+ <string>743 379 452 308 0 0 1280 1002 </string>
1051
+ </dict>
1052
+ <dict>
1053
+ <key>Identifier</key>
1054
+ <string>windowTool.breakpoints</string>
1055
+ <key>IsVertical</key>
1056
+ <integer>0</integer>
1057
+ <key>Layout</key>
1058
+ <array>
1059
+ <dict>
1060
+ <key>Dock</key>
1061
+ <array>
1062
+ <dict>
1063
+ <key>BecomeActive</key>
1064
+ <integer>1</integer>
1065
+ <key>ContentConfiguration</key>
1066
+ <dict>
1067
+ <key>PBXBottomSmartGroupGIDs</key>
1068
+ <array>
1069
+ <string>1C77FABC04509CD000000102</string>
1070
+ </array>
1071
+ <key>PBXProjectModuleGUID</key>
1072
+ <string>1CE0B1FE06471DED0097A5F4</string>
1073
+ <key>PBXProjectModuleLabel</key>
1074
+ <string>Files</string>
1075
+ <key>PBXProjectStructureProvided</key>
1076
+ <string>no</string>
1077
+ <key>PBXSmartGroupTreeModuleColumnData</key>
1078
+ <dict>
1079
+ <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
1080
+ <array>
1081
+ <real>168</real>
1082
+ </array>
1083
+ <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
1084
+ <array>
1085
+ <string>MainColumn</string>
1086
+ </array>
1087
+ </dict>
1088
+ <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
1089
+ <dict>
1090
+ <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
1091
+ <array>
1092
+ <string>1C77FABC04509CD000000102</string>
1093
+ </array>
1094
+ <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
1095
+ <array>
1096
+ <array>
1097
+ <integer>0</integer>
1098
+ </array>
1099
+ </array>
1100
+ <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
1101
+ <string>{{0, 0}, {168, 350}}</string>
1102
+ </dict>
1103
+ <key>PBXTopSmartGroupGIDs</key>
1104
+ <array/>
1105
+ <key>XCIncludePerspectivesSwitch</key>
1106
+ <integer>0</integer>
1107
+ </dict>
1108
+ <key>GeometryConfiguration</key>
1109
+ <dict>
1110
+ <key>Frame</key>
1111
+ <string>{{0, 0}, {185, 368}}</string>
1112
+ <key>GroupTreeTableConfiguration</key>
1113
+ <array>
1114
+ <string>MainColumn</string>
1115
+ <real>168</real>
1116
+ </array>
1117
+ <key>RubberWindowFrame</key>
1118
+ <string>315 424 744 409 0 0 1440 878 </string>
1119
+ </dict>
1120
+ <key>Module</key>
1121
+ <string>PBXSmartGroupTreeModule</string>
1122
+ <key>Proportion</key>
1123
+ <string>185pt</string>
1124
+ </dict>
1125
+ <dict>
1126
+ <key>ContentConfiguration</key>
1127
+ <dict>
1128
+ <key>PBXProjectModuleGUID</key>
1129
+ <string>1CA1AED706398EBD00589147</string>
1130
+ <key>PBXProjectModuleLabel</key>
1131
+ <string>Detail</string>
1132
+ </dict>
1133
+ <key>GeometryConfiguration</key>
1134
+ <dict>
1135
+ <key>Frame</key>
1136
+ <string>{{190, 0}, {554, 368}}</string>
1137
+ <key>RubberWindowFrame</key>
1138
+ <string>315 424 744 409 0 0 1440 878 </string>
1139
+ </dict>
1140
+ <key>Module</key>
1141
+ <string>XCDetailModule</string>
1142
+ <key>Proportion</key>
1143
+ <string>554pt</string>
1144
+ </dict>
1145
+ </array>
1146
+ <key>Proportion</key>
1147
+ <string>368pt</string>
1148
+ </dict>
1149
+ </array>
1150
+ <key>MajorVersion</key>
1151
+ <integer>2</integer>
1152
+ <key>MinorVersion</key>
1153
+ <integer>0</integer>
1154
+ <key>Name</key>
1155
+ <string>Breakpoints</string>
1156
+ <key>ServiceClasses</key>
1157
+ <array>
1158
+ <string>PBXSmartGroupTreeModule</string>
1159
+ <string>XCDetailModule</string>
1160
+ </array>
1161
+ <key>StatusbarIsVisible</key>
1162
+ <integer>1</integer>
1163
+ <key>TableOfContents</key>
1164
+ <array>
1165
+ <string>1CDDB66807F98D9800BB5817</string>
1166
+ <string>1CDDB66907F98D9800BB5817</string>
1167
+ <string>1CE0B1FE06471DED0097A5F4</string>
1168
+ <string>1CA1AED706398EBD00589147</string>
1169
+ </array>
1170
+ <key>ToolbarConfiguration</key>
1171
+ <string>xcode.toolbar.config.breakpoints</string>
1172
+ <key>WindowString</key>
1173
+ <string>315 424 744 409 0 0 1440 878 </string>
1174
+ <key>WindowToolGUID</key>
1175
+ <string>1CDDB66807F98D9800BB5817</string>
1176
+ <key>WindowToolIsVisible</key>
1177
+ <integer>1</integer>
1178
+ </dict>
1179
+ <dict>
1180
+ <key>Identifier</key>
1181
+ <string>windowTool.debugAnimator</string>
1182
+ <key>Layout</key>
1183
+ <array>
1184
+ <dict>
1185
+ <key>Dock</key>
1186
+ <array>
1187
+ <dict>
1188
+ <key>Module</key>
1189
+ <string>PBXNavigatorGroup</string>
1190
+ <key>Proportion</key>
1191
+ <string>100%</string>
1192
+ </dict>
1193
+ </array>
1194
+ <key>Proportion</key>
1195
+ <string>100%</string>
1196
+ </dict>
1197
+ </array>
1198
+ <key>Name</key>
1199
+ <string>Debug Visualizer</string>
1200
+ <key>ServiceClasses</key>
1201
+ <array>
1202
+ <string>PBXNavigatorGroup</string>
1203
+ </array>
1204
+ <key>StatusbarIsVisible</key>
1205
+ <integer>1</integer>
1206
+ <key>ToolbarConfiguration</key>
1207
+ <string>xcode.toolbar.config.debugAnimator</string>
1208
+ <key>WindowString</key>
1209
+ <string>100 100 700 500 0 0 1280 1002 </string>
1210
+ </dict>
1211
+ <dict>
1212
+ <key>Identifier</key>
1213
+ <string>windowTool.bookmarks</string>
1214
+ <key>Layout</key>
1215
+ <array>
1216
+ <dict>
1217
+ <key>Dock</key>
1218
+ <array>
1219
+ <dict>
1220
+ <key>Module</key>
1221
+ <string>PBXBookmarksModule</string>
1222
+ <key>Proportion</key>
1223
+ <string>100%</string>
1224
+ </dict>
1225
+ </array>
1226
+ <key>Proportion</key>
1227
+ <string>100%</string>
1228
+ </dict>
1229
+ </array>
1230
+ <key>Name</key>
1231
+ <string>Bookmarks</string>
1232
+ <key>ServiceClasses</key>
1233
+ <array>
1234
+ <string>PBXBookmarksModule</string>
1235
+ </array>
1236
+ <key>StatusbarIsVisible</key>
1237
+ <integer>0</integer>
1238
+ <key>WindowString</key>
1239
+ <string>538 42 401 187 0 0 1280 1002 </string>
1240
+ </dict>
1241
+ <dict>
1242
+ <key>Identifier</key>
1243
+ <string>windowTool.classBrowser</string>
1244
+ <key>Layout</key>
1245
+ <array>
1246
+ <dict>
1247
+ <key>Dock</key>
1248
+ <array>
1249
+ <dict>
1250
+ <key>BecomeActive</key>
1251
+ <integer>1</integer>
1252
+ <key>ContentConfiguration</key>
1253
+ <dict>
1254
+ <key>OptionsSetName</key>
1255
+ <string>Hierarchy, all classes</string>
1256
+ <key>PBXProjectModuleGUID</key>
1257
+ <string>1CA6456E063B45B4001379D8</string>
1258
+ <key>PBXProjectModuleLabel</key>
1259
+ <string>Class Browser - NSObject</string>
1260
+ </dict>
1261
+ <key>GeometryConfiguration</key>
1262
+ <dict>
1263
+ <key>ClassesFrame</key>
1264
+ <string>{{0, 0}, {374, 96}}</string>
1265
+ <key>ClassesTreeTableConfiguration</key>
1266
+ <array>
1267
+ <string>PBXClassNameColumnIdentifier</string>
1268
+ <real>208</real>
1269
+ <string>PBXClassBookColumnIdentifier</string>
1270
+ <real>22</real>
1271
+ </array>
1272
+ <key>Frame</key>
1273
+ <string>{{0, 0}, {630, 331}}</string>
1274
+ <key>MembersFrame</key>
1275
+ <string>{{0, 105}, {374, 395}}</string>
1276
+ <key>MembersTreeTableConfiguration</key>
1277
+ <array>
1278
+ <string>PBXMemberTypeIconColumnIdentifier</string>
1279
+ <real>22</real>
1280
+ <string>PBXMemberNameColumnIdentifier</string>
1281
+ <real>216</real>
1282
+ <string>PBXMemberTypeColumnIdentifier</string>
1283
+ <real>97</real>
1284
+ <string>PBXMemberBookColumnIdentifier</string>
1285
+ <real>22</real>
1286
+ </array>
1287
+ <key>PBXModuleWindowStatusBarHidden2</key>
1288
+ <integer>1</integer>
1289
+ <key>RubberWindowFrame</key>
1290
+ <string>385 179 630 352 0 0 1440 878 </string>
1291
+ </dict>
1292
+ <key>Module</key>
1293
+ <string>PBXClassBrowserModule</string>
1294
+ <key>Proportion</key>
1295
+ <string>332pt</string>
1296
+ </dict>
1297
+ </array>
1298
+ <key>Proportion</key>
1299
+ <string>332pt</string>
1300
+ </dict>
1301
+ </array>
1302
+ <key>Name</key>
1303
+ <string>Class Browser</string>
1304
+ <key>ServiceClasses</key>
1305
+ <array>
1306
+ <string>PBXClassBrowserModule</string>
1307
+ </array>
1308
+ <key>StatusbarIsVisible</key>
1309
+ <integer>0</integer>
1310
+ <key>TableOfContents</key>
1311
+ <array>
1312
+ <string>1C0AD2AF069F1E9B00FABCE6</string>
1313
+ <string>1C0AD2B0069F1E9B00FABCE6</string>
1314
+ <string>1CA6456E063B45B4001379D8</string>
1315
+ </array>
1316
+ <key>ToolbarConfiguration</key>
1317
+ <string>xcode.toolbar.config.classbrowser</string>
1318
+ <key>WindowString</key>
1319
+ <string>385 179 630 352 0 0 1440 878 </string>
1320
+ <key>WindowToolGUID</key>
1321
+ <string>1C0AD2AF069F1E9B00FABCE6</string>
1322
+ <key>WindowToolIsVisible</key>
1323
+ <integer>0</integer>
1324
+ </dict>
1325
+ </array>
1326
+ </dict>
1327
+ </plist>