iCuke 0.4.12 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. data/Rakefile +3 -3
  2. data/VERSION +1 -1
  3. data/app/AlertsViewController.h +59 -0
  4. data/app/AlertsViewController.m +341 -0
  5. data/app/AppDelegate.h +60 -0
  6. data/app/AppDelegate.m +101 -0
  7. data/app/ButtonsViewController.h +80 -0
  8. data/app/ButtonsViewController.m +448 -0
  9. data/app/Constants.h +58 -0
  10. data/app/ControlsViewController.h +72 -0
  11. data/app/ControlsViewController.m +379 -0
  12. data/app/ImagesViewController.h +62 -0
  13. data/app/ImagesViewController.m +137 -0
  14. data/app/{iCuke/iCuke-Info.plist → Info.plist} +4 -4
  15. data/app/MainViewController.h +57 -0
  16. data/app/MainViewController.m +262 -0
  17. data/app/Picker/CustomPickerDataSource.h +55 -0
  18. data/app/Picker/CustomPickerDataSource.m +135 -0
  19. data/app/Picker/CustomView.h +62 -0
  20. data/app/Picker/CustomView.m +119 -0
  21. data/app/PickerViewController.h +88 -0
  22. data/app/PickerViewController.m +402 -0
  23. data/app/Prefix.pch +5 -0
  24. data/app/ReadMe.txt +82 -0
  25. data/app/SearchBarController.h +58 -0
  26. data/app/SearchBarController.m +105 -0
  27. data/app/SegmentViewController.h +54 -0
  28. data/app/SegmentViewController.m +195 -0
  29. data/app/TextFieldController.h +67 -0
  30. data/app/TextFieldController.m +342 -0
  31. data/app/TextViewController.h +57 -0
  32. data/app/TextViewController.m +164 -0
  33. data/app/ToolbarViewController.h +74 -0
  34. data/app/ToolbarViewController.m +303 -0
  35. data/app/TransitionViewController.h +64 -0
  36. data/app/TransitionViewController.m +178 -0
  37. data/app/UICatalog.xcodeproj/project.pbxproj +615 -0
  38. data/app/WebViewController.h +57 -0
  39. data/app/WebViewController.m +173 -0
  40. data/app/en.lproj/AlertsViewController.xib +144 -0
  41. data/app/en.lproj/ButtonsViewController.xib +147 -0
  42. data/app/en.lproj/ControlsViewController.xib +147 -0
  43. data/app/en.lproj/ImagesViewController.xib +264 -0
  44. data/app/en.lproj/Localizable.strings +41 -0
  45. data/app/en.lproj/MainWindow.xib +306 -0
  46. data/app/en.lproj/PickerViewController.xib +415 -0
  47. data/app/en.lproj/SearchBarController.xib +142 -0
  48. data/app/en.lproj/SegmentViewController.xib +143 -0
  49. data/app/en.lproj/TextFieldController.xib +167 -0
  50. data/app/en.lproj/TextViewController.xib +149 -0
  51. data/app/en.lproj/ToolbarViewController.xib +491 -0
  52. data/app/en.lproj/TransitionViewController.xib +255 -0
  53. data/app/en.lproj/WebViewController.xib +141 -0
  54. data/app/images/12-6AM.png +0 -0
  55. data/app/images/12-6PM.png +0 -0
  56. data/app/images/6-12AM.png +0 -0
  57. data/app/images/6-12PM.png +0 -0
  58. data/app/images/Default.png +0 -0
  59. data/app/images/Icon.png +0 -0
  60. data/app/images/UIButton_custom.png +0 -0
  61. data/app/images/blueButton.png +0 -0
  62. data/app/images/orangeslide.png +0 -0
  63. data/app/images/scene1.jpg +0 -0
  64. data/app/images/scene2.jpg +0 -0
  65. data/app/images/scene3.jpg +0 -0
  66. data/app/images/scene4.jpg +0 -0
  67. data/app/images/scene5.jpg +0 -0
  68. data/app/images/segment_check.png +0 -0
  69. data/app/images/segment_search.png +0 -0
  70. data/app/images/segment_tools.png +0 -0
  71. data/app/images/slider_ball.png +0 -0
  72. data/app/images/whiteButton.png +0 -0
  73. data/app/images/yellowslide.png +0 -0
  74. data/app/main.m +58 -0
  75. data/ext/iCuke/DefaultsResponse.m +0 -1
  76. data/ext/iCuke/EventResponse.m +9 -1
  77. data/ext/iCuke/Rakefile +1 -1
  78. data/ext/iCuke/Recorder.h +3 -1
  79. data/ext/iCuke/Recorder.m +10 -5
  80. data/ext/iCuke/RecorderResponse.h +1 -0
  81. data/ext/iCuke/RecorderResponse.m +10 -1
  82. data/ext/iCuke/Viewer.m +5 -6
  83. data/ext/iCuke/iCukeHTTPServer.m +1 -1
  84. data/ext/iCuke/iCukeServer.m +24 -7
  85. data/ext/iCuke/libicuke.dylib +0 -0
  86. data/features/uicatalog.feature +20 -0
  87. data/iCuke.gemspec +81 -24
  88. data/lib/icuke/com.apple.Accessibility.plist +0 -0
  89. data/lib/icuke/core_ext.rb +26 -0
  90. data/lib/icuke/cucumber.rb +20 -12
  91. data/lib/icuke/headless.rb +55 -0
  92. data/lib/icuke/simulator.rb +7 -129
  93. data/lib/icuke/xcode.rb +136 -0
  94. metadata +82 -25
  95. data/app/iCuke/Classes/FlipsideView.h +0 -13
  96. data/app/iCuke/Classes/FlipsideView.m +0 -32
  97. data/app/iCuke/Classes/FlipsideViewController.h +0 -25
  98. data/app/iCuke/Classes/FlipsideViewController.m +0 -54
  99. data/app/iCuke/Classes/MainView.h +0 -15
  100. data/app/iCuke/Classes/MainView.m +0 -32
  101. data/app/iCuke/Classes/MainViewController.h +0 -16
  102. data/app/iCuke/Classes/MainViewController.m +0 -86
  103. data/app/iCuke/Classes/iCukeAppDelegate.h +0 -20
  104. data/app/iCuke/Classes/iCukeAppDelegate.m +0 -33
  105. data/app/iCuke/FlipsideView.xib +0 -444
  106. data/app/iCuke/MainView.xib +0 -520
  107. data/app/iCuke/MainWindow.xib +0 -355
  108. data/app/iCuke/SniffingView.h +0 -20
  109. data/app/iCuke/SniffingView.m +0 -191
  110. data/app/iCuke/iCuke.xcodeproj/project.pbxproj +0 -313
  111. data/app/iCuke/iCuke_Prefix.pch +0 -14
  112. data/app/iCuke/main.m +0 -16
  113. data/features/icuke.feature +0 -17
  114. /data/app/{iCuke/.gitignore → .gitignore} +0 -0
@@ -0,0 +1,255 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.03">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">768</int>
5
+ <string key="IBDocument.SystemVersion">9G55</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">677</string>
7
+ <string key="IBDocument.AppKitVersion">949.43</string>
8
+ <string key="IBDocument.HIToolboxVersion">353.00</string>
9
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
10
+ <bool key="EncodedWithXMLCoder">YES</bool>
11
+ <integer value="8"/>
12
+ </object>
13
+ <object class="NSArray" key="IBDocument.PluginDependencies">
14
+ <bool key="EncodedWithXMLCoder">YES</bool>
15
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
16
+ </object>
17
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
18
+ <bool key="EncodedWithXMLCoder">YES</bool>
19
+ <object class="NSArray" key="dict.sortedKeys">
20
+ <bool key="EncodedWithXMLCoder">YES</bool>
21
+ </object>
22
+ <object class="NSMutableArray" key="dict.values">
23
+ <bool key="EncodedWithXMLCoder">YES</bool>
24
+ </object>
25
+ </object>
26
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
27
+ <bool key="EncodedWithXMLCoder">YES</bool>
28
+ <object class="IBProxyObject" id="841351856">
29
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
30
+ </object>
31
+ <object class="IBProxyObject" id="371349661">
32
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
33
+ </object>
34
+ <object class="IBUIView" id="531101154">
35
+ <reference key="NSNextResponder"/>
36
+ <int key="NSvFlags">292</int>
37
+ <object class="NSMutableArray" key="NSSubviews">
38
+ <bool key="EncodedWithXMLCoder">YES</bool>
39
+ <object class="IBUIToolbar" id="844501849">
40
+ <reference key="NSNextResponder" ref="531101154"/>
41
+ <int key="NSvFlags">266</int>
42
+ <string key="NSFrame">{{0, 416}, {320, 44}}</string>
43
+ <reference key="NSSuperview" ref="531101154"/>
44
+ <bool key="IBUIOpaque">NO</bool>
45
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
46
+ <object class="NSMutableArray" key="IBUIItems">
47
+ <bool key="EncodedWithXMLCoder">YES</bool>
48
+ <object class="IBUIBarButtonItem" id="893156490">
49
+ <int key="IBUIStyle">1</int>
50
+ <reference key="IBUIToolbar" ref="844501849"/>
51
+ <int key="IBUISystemItemIdentifier">5</int>
52
+ </object>
53
+ <object class="IBUIBarButtonItem" id="10773593">
54
+ <string key="IBUITitle">Flip Image</string>
55
+ <int key="IBUIStyle">1</int>
56
+ <reference key="IBUIToolbar" ref="844501849"/>
57
+ </object>
58
+ <object class="IBUIBarButtonItem" id="471438469">
59
+ <string key="IBUITitle">Curl Image</string>
60
+ <int key="IBUIStyle">1</int>
61
+ <reference key="IBUIToolbar" ref="844501849"/>
62
+ </object>
63
+ <object class="IBUIBarButtonItem" id="1020058393">
64
+ <reference key="IBUIToolbar" ref="844501849"/>
65
+ <int key="IBUISystemItemIdentifier">5</int>
66
+ </object>
67
+ </object>
68
+ <object class="NSColor" key="IBUITintColor">
69
+ <int key="NSColorSpace">1</int>
70
+ <bytes key="NSRGB">MC4wMDUzNjkzMzE3IDAuMDA1MzAzODUxOCAwLjAwNTQzNDgxMTEAA</bytes>
71
+ </object>
72
+ </object>
73
+ </object>
74
+ <string key="NSFrameSize">{320, 460}</string>
75
+ <reference key="NSSuperview"/>
76
+ <object class="NSColor" key="IBUIBackgroundColor">
77
+ <int key="NSColorSpace">1</int>
78
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
79
+ </object>
80
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
81
+ </object>
82
+ </object>
83
+ <object class="IBObjectContainer" key="IBDocument.Objects">
84
+ <object class="NSMutableArray" key="connectionRecords">
85
+ <bool key="EncodedWithXMLCoder">YES</bool>
86
+ <object class="IBConnectionRecord">
87
+ <object class="IBCocoaTouchOutletConnection" key="connection">
88
+ <string key="label">view</string>
89
+ <reference key="source" ref="841351856"/>
90
+ <reference key="destination" ref="531101154"/>
91
+ </object>
92
+ <int key="connectionID">7</int>
93
+ </object>
94
+ <object class="IBConnectionRecord">
95
+ <object class="IBCocoaTouchEventConnection" key="connection">
96
+ <string key="label">curlAction:</string>
97
+ <reference key="source" ref="471438469"/>
98
+ <reference key="destination" ref="841351856"/>
99
+ </object>
100
+ <int key="connectionID">13</int>
101
+ </object>
102
+ <object class="IBConnectionRecord">
103
+ <object class="IBCocoaTouchEventConnection" key="connection">
104
+ <string key="label">flipAction:</string>
105
+ <reference key="source" ref="10773593"/>
106
+ <reference key="destination" ref="841351856"/>
107
+ </object>
108
+ <int key="connectionID">14</int>
109
+ </object>
110
+ </object>
111
+ <object class="IBMutableOrderedSet" key="objectRecords">
112
+ <object class="NSArray" key="orderedObjects">
113
+ <bool key="EncodedWithXMLCoder">YES</bool>
114
+ <object class="IBObjectRecord">
115
+ <int key="objectID">0</int>
116
+ <object class="NSArray" key="object" id="957960031">
117
+ <bool key="EncodedWithXMLCoder">YES</bool>
118
+ </object>
119
+ <reference key="children" ref="1000"/>
120
+ <nil key="parent"/>
121
+ </object>
122
+ <object class="IBObjectRecord">
123
+ <int key="objectID">-1</int>
124
+ <reference key="object" ref="841351856"/>
125
+ <reference key="parent" ref="957960031"/>
126
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
127
+ </object>
128
+ <object class="IBObjectRecord">
129
+ <int key="objectID">-2</int>
130
+ <reference key="object" ref="371349661"/>
131
+ <reference key="parent" ref="957960031"/>
132
+ </object>
133
+ <object class="IBObjectRecord">
134
+ <int key="objectID">6</int>
135
+ <reference key="object" ref="531101154"/>
136
+ <object class="NSMutableArray" key="children">
137
+ <bool key="EncodedWithXMLCoder">YES</bool>
138
+ <reference ref="844501849"/>
139
+ </object>
140
+ <reference key="parent" ref="957960031"/>
141
+ </object>
142
+ <object class="IBObjectRecord">
143
+ <int key="objectID">8</int>
144
+ <reference key="object" ref="844501849"/>
145
+ <object class="NSMutableArray" key="children">
146
+ <bool key="EncodedWithXMLCoder">YES</bool>
147
+ <reference ref="893156490"/>
148
+ <reference ref="10773593"/>
149
+ <reference ref="471438469"/>
150
+ <reference ref="1020058393"/>
151
+ </object>
152
+ <reference key="parent" ref="531101154"/>
153
+ </object>
154
+ <object class="IBObjectRecord">
155
+ <int key="objectID">9</int>
156
+ <reference key="object" ref="893156490"/>
157
+ <reference key="parent" ref="844501849"/>
158
+ </object>
159
+ <object class="IBObjectRecord">
160
+ <int key="objectID">10</int>
161
+ <reference key="object" ref="10773593"/>
162
+ <reference key="parent" ref="844501849"/>
163
+ </object>
164
+ <object class="IBObjectRecord">
165
+ <int key="objectID">11</int>
166
+ <reference key="object" ref="471438469"/>
167
+ <reference key="parent" ref="844501849"/>
168
+ </object>
169
+ <object class="IBObjectRecord">
170
+ <int key="objectID">12</int>
171
+ <reference key="object" ref="1020058393"/>
172
+ <reference key="parent" ref="844501849"/>
173
+ </object>
174
+ </object>
175
+ </object>
176
+ <object class="NSMutableDictionary" key="flattenedProperties">
177
+ <bool key="EncodedWithXMLCoder">YES</bool>
178
+ <object class="NSMutableArray" key="dict.sortedKeys">
179
+ <bool key="EncodedWithXMLCoder">YES</bool>
180
+ <string>-1.CustomClassName</string>
181
+ <string>-2.CustomClassName</string>
182
+ <string>10.IBPluginDependency</string>
183
+ <string>11.IBPluginDependency</string>
184
+ <string>12.IBPluginDependency</string>
185
+ <string>6.IBEditorWindowLastContentRect</string>
186
+ <string>6.IBPluginDependency</string>
187
+ <string>8.IBPluginDependency</string>
188
+ <string>9.IBPluginDependency</string>
189
+ </object>
190
+ <object class="NSMutableArray" key="dict.values">
191
+ <bool key="EncodedWithXMLCoder">YES</bool>
192
+ <string>TransitionsViewController</string>
193
+ <string>UIResponder</string>
194
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
195
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
196
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
197
+ <string>{{0, 535}, {320, 460}}</string>
198
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
199
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
200
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
201
+ </object>
202
+ </object>
203
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
204
+ <bool key="EncodedWithXMLCoder">YES</bool>
205
+ <object class="NSArray" key="dict.sortedKeys">
206
+ <bool key="EncodedWithXMLCoder">YES</bool>
207
+ </object>
208
+ <object class="NSMutableArray" key="dict.values">
209
+ <bool key="EncodedWithXMLCoder">YES</bool>
210
+ </object>
211
+ </object>
212
+ <nil key="activeLocalization"/>
213
+ <object class="NSMutableDictionary" key="localizations">
214
+ <bool key="EncodedWithXMLCoder">YES</bool>
215
+ <object class="NSArray" key="dict.sortedKeys">
216
+ <bool key="EncodedWithXMLCoder">YES</bool>
217
+ </object>
218
+ <object class="NSMutableArray" key="dict.values">
219
+ <bool key="EncodedWithXMLCoder">YES</bool>
220
+ </object>
221
+ </object>
222
+ <nil key="sourceID"/>
223
+ <int key="maxID">14</int>
224
+ </object>
225
+ <object class="IBClassDescriber" key="IBDocument.Classes">
226
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
227
+ <bool key="EncodedWithXMLCoder">YES</bool>
228
+ <object class="IBPartialClassDescription">
229
+ <string key="className">TransitionsViewController</string>
230
+ <string key="superclassName">UIViewController</string>
231
+ <object class="NSMutableDictionary" key="actions">
232
+ <bool key="EncodedWithXMLCoder">YES</bool>
233
+ <object class="NSMutableArray" key="dict.sortedKeys">
234
+ <bool key="EncodedWithXMLCoder">YES</bool>
235
+ <string>curlAction:</string>
236
+ <string>flipAction:</string>
237
+ </object>
238
+ <object class="NSMutableArray" key="dict.values">
239
+ <bool key="EncodedWithXMLCoder">YES</bool>
240
+ <string>id</string>
241
+ <string>id</string>
242
+ </object>
243
+ </object>
244
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
245
+ <string key="majorKey">IBProjectSource</string>
246
+ <string key="minorKey">TransitionViewController.h</string>
247
+ </object>
248
+ </object>
249
+ </object>
250
+ </object>
251
+ <int key="IBDocument.localizationMode">0</int>
252
+ <string key="IBDocument.LastKnownRelativeProjectPath">../UICatalog.xcodeproj</string>
253
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
254
+ </data>
255
+ </archive>
@@ -0,0 +1,141 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.03">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">768</int>
5
+ <string key="IBDocument.SystemVersion">9G55</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">677</string>
7
+ <string key="IBDocument.AppKitVersion">949.43</string>
8
+ <string key="IBDocument.HIToolboxVersion">353.00</string>
9
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
10
+ <bool key="EncodedWithXMLCoder">YES</bool>
11
+ </object>
12
+ <object class="NSArray" key="IBDocument.PluginDependencies">
13
+ <bool key="EncodedWithXMLCoder">YES</bool>
14
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
15
+ </object>
16
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
17
+ <bool key="EncodedWithXMLCoder">YES</bool>
18
+ <object class="NSArray" key="dict.sortedKeys">
19
+ <bool key="EncodedWithXMLCoder">YES</bool>
20
+ </object>
21
+ <object class="NSMutableArray" key="dict.values">
22
+ <bool key="EncodedWithXMLCoder">YES</bool>
23
+ </object>
24
+ </object>
25
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
26
+ <bool key="EncodedWithXMLCoder">YES</bool>
27
+ <object class="IBProxyObject" id="841351856">
28
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
29
+ </object>
30
+ <object class="IBProxyObject" id="371349661">
31
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
32
+ </object>
33
+ <object class="IBUIView" id="531101154">
34
+ <nil key="NSNextResponder"/>
35
+ <int key="NSvFlags">292</int>
36
+ <string key="NSFrameSize">{320, 460}</string>
37
+ <object class="NSColor" key="IBUIBackgroundColor">
38
+ <int key="NSColorSpace">1</int>
39
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
40
+ </object>
41
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
42
+ </object>
43
+ </object>
44
+ <object class="IBObjectContainer" key="IBDocument.Objects">
45
+ <object class="NSMutableArray" key="connectionRecords">
46
+ <bool key="EncodedWithXMLCoder">YES</bool>
47
+ <object class="IBConnectionRecord">
48
+ <object class="IBCocoaTouchOutletConnection" key="connection">
49
+ <string key="label">view</string>
50
+ <reference key="source" ref="841351856"/>
51
+ <reference key="destination" ref="531101154"/>
52
+ </object>
53
+ <int key="connectionID">7</int>
54
+ </object>
55
+ </object>
56
+ <object class="IBMutableOrderedSet" key="objectRecords">
57
+ <object class="NSArray" key="orderedObjects">
58
+ <bool key="EncodedWithXMLCoder">YES</bool>
59
+ <object class="IBObjectRecord">
60
+ <int key="objectID">0</int>
61
+ <object class="NSArray" key="object" id="957960031">
62
+ <bool key="EncodedWithXMLCoder">YES</bool>
63
+ </object>
64
+ <reference key="children" ref="1000"/>
65
+ <nil key="parent"/>
66
+ </object>
67
+ <object class="IBObjectRecord">
68
+ <int key="objectID">-1</int>
69
+ <reference key="object" ref="841351856"/>
70
+ <reference key="parent" ref="957960031"/>
71
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
72
+ </object>
73
+ <object class="IBObjectRecord">
74
+ <int key="objectID">-2</int>
75
+ <reference key="object" ref="371349661"/>
76
+ <reference key="parent" ref="957960031"/>
77
+ </object>
78
+ <object class="IBObjectRecord">
79
+ <int key="objectID">6</int>
80
+ <reference key="object" ref="531101154"/>
81
+ <reference key="parent" ref="957960031"/>
82
+ </object>
83
+ </object>
84
+ </object>
85
+ <object class="NSMutableDictionary" key="flattenedProperties">
86
+ <bool key="EncodedWithXMLCoder">YES</bool>
87
+ <object class="NSMutableArray" key="dict.sortedKeys">
88
+ <bool key="EncodedWithXMLCoder">YES</bool>
89
+ <string>-1.CustomClassName</string>
90
+ <string>-2.CustomClassName</string>
91
+ <string>6.IBEditorWindowLastContentRect</string>
92
+ <string>6.IBPluginDependency</string>
93
+ </object>
94
+ <object class="NSMutableArray" key="dict.values">
95
+ <bool key="EncodedWithXMLCoder">YES</bool>
96
+ <string>WebViewController</string>
97
+ <string>UIResponder</string>
98
+ <string>{{0, 535}, {320, 460}}</string>
99
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
100
+ </object>
101
+ </object>
102
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
103
+ <bool key="EncodedWithXMLCoder">YES</bool>
104
+ <object class="NSArray" key="dict.sortedKeys">
105
+ <bool key="EncodedWithXMLCoder">YES</bool>
106
+ </object>
107
+ <object class="NSMutableArray" key="dict.values">
108
+ <bool key="EncodedWithXMLCoder">YES</bool>
109
+ </object>
110
+ </object>
111
+ <nil key="activeLocalization"/>
112
+ <object class="NSMutableDictionary" key="localizations">
113
+ <bool key="EncodedWithXMLCoder">YES</bool>
114
+ <object class="NSArray" key="dict.sortedKeys">
115
+ <bool key="EncodedWithXMLCoder">YES</bool>
116
+ </object>
117
+ <object class="NSMutableArray" key="dict.values">
118
+ <bool key="EncodedWithXMLCoder">YES</bool>
119
+ </object>
120
+ </object>
121
+ <nil key="sourceID"/>
122
+ <int key="maxID">7</int>
123
+ </object>
124
+ <object class="IBClassDescriber" key="IBDocument.Classes">
125
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
126
+ <bool key="EncodedWithXMLCoder">YES</bool>
127
+ <object class="IBPartialClassDescription">
128
+ <string key="className">WebViewController</string>
129
+ <string key="superclassName">UIViewController</string>
130
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
131
+ <string key="majorKey">IBProjectSource</string>
132
+ <string key="minorKey">WebViewController.h</string>
133
+ </object>
134
+ </object>
135
+ </object>
136
+ </object>
137
+ <int key="IBDocument.localizationMode">0</int>
138
+ <string key="IBDocument.LastKnownRelativeProjectPath">../UICatalog.xcodeproj</string>
139
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
140
+ </data>
141
+ </archive>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/app/main.m ADDED
@@ -0,0 +1,58 @@
1
+ /*
2
+ File: main.m
3
+ Abstract: Main source file for UICatalog sample.
4
+ Version: 2.6
5
+
6
+ Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple
7
+ Inc. ("Apple") in consideration of your agreement to the following
8
+ terms, and your use, installation, modification or redistribution of
9
+ this Apple software constitutes acceptance of these terms. If you do
10
+ not agree with these terms, please do not use, install, modify or
11
+ redistribute this Apple software.
12
+
13
+ In consideration of your agreement to abide by the following terms, and
14
+ subject to these terms, Apple grants you a personal, non-exclusive
15
+ license, under Apple's copyrights in this original Apple software (the
16
+ "Apple Software"), to use, reproduce, modify and redistribute the Apple
17
+ Software, with or without modifications, in source and/or binary forms;
18
+ provided that if you redistribute the Apple Software in its entirety and
19
+ without modifications, you must retain this notice and the following
20
+ text and disclaimers in all such redistributions of the Apple Software.
21
+ Neither the name, trademarks, service marks or logos of Apple Inc. may
22
+ be used to endorse or promote products derived from the Apple Software
23
+ without specific prior written permission from Apple. Except as
24
+ expressly stated in this notice, no other rights or licenses, express or
25
+ implied, are granted by Apple herein, including but not limited to any
26
+ patent rights that may be infringed by your derivative works or by other
27
+ works in which the Apple Software may be incorporated.
28
+
29
+ The Apple Software is provided by Apple on an "AS IS" basis. APPLE
30
+ MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
31
+ THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
32
+ FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
33
+ OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
34
+
35
+ IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
36
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
38
+ INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
39
+ MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
40
+ AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
41
+ STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
42
+ POSSIBILITY OF SUCH DAMAGE.
43
+
44
+ Copyright (C) 2009 Apple Inc. All Rights Reserved.
45
+
46
+ */
47
+
48
+ #import <UIKit/UIKit.h>
49
+
50
+ int main(int argc, char *argv[])
51
+ {
52
+ NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
53
+ int retVal = UIApplicationMain(argc, argv, nil, nil);
54
+ [pool release];
55
+
56
+ return retVal;
57
+ }
58
+
@@ -20,7 +20,6 @@
20
20
  {
21
21
  NSUserDefaults *user_defaults = [NSUserDefaults standardUserDefaults];
22
22
  NSString *json = [[url query] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
23
- NSLog(@"defaults json: %@", json);
24
23
  NSData *defaultsData = nil;
25
24
 
26
25
  if (!json) {
@@ -74,6 +74,10 @@ typedef struct {
74
74
  NSArray *points = [data objectForKey: @"Paths"];
75
75
 
76
76
  hand_info.pathCount = (unsigned char)[points count];
77
+ if (hand_info.type != 1) {
78
+ hand_info.x9_3 = 0x7c;
79
+ hand_info.x9_4 = 0x98;
80
+ }
77
81
 
78
82
  NSMutableData *raw_data = [NSMutableData dataWithBytes: &hand_info length: sizeof(hand_info)];
79
83
 
@@ -86,6 +90,7 @@ typedef struct {
86
90
 
87
91
  path_info.index = path_info.index2 = index++;
88
92
  path_info.type = hand_info.type == 6 ? 1 : 2;
93
+ path_info.flags = hand_info.type == 1 ? 0x43 : 0x3f;
89
94
  path_info.sizeX = [[[point objectForKey: @"Size"] objectForKey: @"X"] floatValue];
90
95
  path_info.sizeY = [[[point objectForKey: @"Size"] objectForKey: @"Y"] floatValue];
91
96
  path_info.x = [[[point objectForKey: @"Location"] objectForKey: @"X"] floatValue];
@@ -98,8 +103,11 @@ typedef struct {
98
103
  }
99
104
 
100
105
  [[Recorder sharedRecorder] load: events];
101
- [[Recorder sharedRecorder] play];
106
+ [[Recorder sharedRecorder] playbackWithDelegate: self doneSelector: @selector(finishResponse)];
107
+ }
102
108
 
109
+ - (void)finishResponse
110
+ {
103
111
  CFHTTPMessageRef response = CFHTTPMessageCreateResponse(kCFAllocatorDefault, 200, NULL, kCFHTTPVersion1_1);
104
112
  CFHTTPMessageSetHeaderFieldValue(response, (CFStringRef)@"Connection", (CFStringRef)@"close");
105
113
  CFDataRef headerData = CFHTTPMessageCopySerializedMessage(response);
data/ext/iCuke/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rake/clean'
2
2
 
3
3
  SDK_VERSION = '3.1.2'
4
4
  SDK_ROOT = "/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator#{SDK_VERSION}.sdk"
5
- CFLAGS = '-arch i386 -pipe -std=c99 -DTARGET_OS_IPHONE'
5
+ CFLAGS = '-arch i386 -pipe -ggdb -std=c99 -DTARGET_OS_IPHONE'
6
6
  SDK_CFLAGS = "-isysroot #{SDK_ROOT} -F/System/Library/PrivateFrameworks -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000"
7
7
  CC = '/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2'
8
8
 
data/ext/iCuke/Recorder.h CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  @interface Recorder : NSObject {
4
4
  NSMutableArray* eventList;
5
+ id playbackDelegate;
6
+ SEL playbackDoneSelector;
5
7
  }
6
8
 
7
9
  +(Recorder *)sharedRecorder;
@@ -9,7 +11,7 @@
9
11
  -(void)saveToFile:(NSString*)path;
10
12
  -(void)load:(NSArray*)events;
11
13
  -(void)loadFromFile:(NSString*)path;
12
- -(void)play;
14
+ -(void)playbackWithDelegate:(id)delegate doneSelector:(SEL)selector;
13
15
  -(void)stop;
14
16
 
15
17
  @end
data/ext/iCuke/Recorder.m CHANGED
@@ -1,6 +1,7 @@
1
1
  #import <UIKit/UIKit.h>
2
2
 
3
3
  #import "Recorder.h"
4
+ #import "Viewer.h"
4
5
 
5
6
  @interface UIApplication (Recording)
6
7
 
@@ -72,14 +73,18 @@ static Recorder *sharedRecorder = nil;
72
73
  [eventList setArray: [NSMutableArray arrayWithContentsOfFile: path]];
73
74
  }
74
75
 
75
- -(void)play {
76
- NSLog(@"Starting playback");
76
+ -(void)playbackWithDelegate: (id)delegate doneSelector:(SEL)doneSelector {
77
+ NSLog(@"Playback");
77
78
 
78
- [[UIApplication sharedApplication] _playbackEvents: eventList atPlaybackRate: 1.0f messageWhenDone: self withSelector: @selector(done:)];
79
+ playbackDelegate = delegate;
80
+ playbackDoneSelector = doneSelector;
81
+
82
+ [[UIApplication sharedApplication] _playbackEvents: eventList atPlaybackRate: 1.0f messageWhenDone: self withSelector: @selector(playbackDone:)];
79
83
  }
80
84
 
81
- -(void)done:(NSDictionary*)detail {
82
- NSLog(@"Finished playback");
85
+ -(void)playbackDone:(NSDictionary *)details {
86
+ NSLog(@"Playback complete");
87
+ [playbackDelegate performSelector: playbackDoneSelector];
83
88
  }
84
89
 
85
90
  @end
@@ -2,4 +2,5 @@
2
2
 
3
3
  @interface RecorderResponse : iCukeHTTPResponseHandler {
4
4
  }
5
+ - (void)finishResponse;
5
6
  @end
@@ -27,16 +27,24 @@
27
27
  {
28
28
  if ([url.path isEqualToString:@"/record"]) {
29
29
  [[Recorder sharedRecorder] record];
30
+ [self finishResponse];
30
31
  } else if ([url.path isEqualToString:@"/play"]) {
31
- [[Recorder sharedRecorder] play];
32
+ [[Recorder sharedRecorder] playbackWithDelegate: self doneSelector: @selector(finishResponse)];
32
33
  } else if ([url.path isEqualToString:@"/load"]) {
33
34
  [[Recorder sharedRecorder] loadFromFile: [[url query] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
35
+ [self finishResponse];
34
36
  } else if ([url.path isEqualToString:@"/save"]) {
35
37
  [[Recorder sharedRecorder] saveToFile: [[url query] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
38
+ [self finishResponse];
36
39
  } else if ([url.path isEqualToString:@"/stop"]) {
37
40
  [[Recorder sharedRecorder] stop];
41
+ [self finishResponse];
38
42
  }
39
43
 
44
+ }
45
+
46
+ - (void)finishResponse
47
+ {
40
48
  CFHTTPMessageRef response = CFHTTPMessageCreateResponse(kCFAllocatorDefault, 200, NULL, kCFHTTPVersion1_1);
41
49
  CFHTTPMessageSetHeaderFieldValue(response, (CFStringRef)@"Connection", (CFStringRef)@"close");
42
50
  CFDataRef headerData = CFHTTPMessageCopySerializedMessage(response);
@@ -56,4 +64,5 @@
56
64
  [server closeHandler:self];
57
65
  }
58
66
  }
67
+
59
68
  @end