sproutcore 1.10.3.1 → 1.11.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (380) hide show
  1. checksums.yaml +8 -8
  2. data/CHANGELOG +4 -8
  3. data/VERSION.yml +2 -2
  4. data/lib/frameworks/sproutcore/Buildfile +5 -4
  5. data/lib/frameworks/sproutcore/CHANGELOG.md +274 -40
  6. data/lib/frameworks/sproutcore/CONTRIBUTORS.md +133 -0
  7. data/lib/frameworks/sproutcore/README.md +31 -144
  8. data/lib/frameworks/sproutcore/apps/showcase/controllers/source_tree_controller.js +9 -4
  9. data/lib/frameworks/sproutcore/apps/showcase/resources/stylesheet.css +5 -0
  10. data/lib/frameworks/sproutcore/apps/showcase/system/views_item_content.js +1 -1
  11. data/lib/frameworks/sproutcore/apps/showcase/views/split_views.js +15 -2
  12. data/lib/frameworks/sproutcore/apps/showcase/views/stacked_views.js +1 -1
  13. data/lib/frameworks/sproutcore/apps/tests/english.lproj/main_page.js +11 -1
  14. data/lib/frameworks/sproutcore/frameworks/ajax/mixins/websocket_delegate.js +90 -0
  15. data/lib/frameworks/sproutcore/frameworks/ajax/system/request.js +81 -5
  16. data/lib/frameworks/sproutcore/frameworks/ajax/system/response.js +23 -4
  17. data/lib/frameworks/sproutcore/frameworks/ajax/system/websocket.js +475 -0
  18. data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/request.js +149 -26
  19. data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/websocket.js +197 -0
  20. data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/xhr_response_test.js +65 -0
  21. data/lib/frameworks/sproutcore/frameworks/bootstrap/system/loader.js +4 -0
  22. data/lib/frameworks/sproutcore/frameworks/core_foundation/child_view_layouts/horizontal_stack_layout.js +232 -52
  23. data/lib/frameworks/sproutcore/frameworks/core_foundation/child_view_layouts/vertical_stack_layout.js +235 -49
  24. data/lib/frameworks/sproutcore/frameworks/core_foundation/controllers/array.js +23 -13
  25. data/lib/frameworks/sproutcore/frameworks/core_foundation/controllers/object.js +3 -1
  26. data/lib/frameworks/sproutcore/frameworks/core_foundation/core.js +81 -1
  27. data/lib/frameworks/sproutcore/frameworks/core_foundation/english.lproj/ordinal.js +17 -0
  28. data/lib/frameworks/sproutcore/frameworks/core_foundation/ext/string.js +7 -0
  29. data/lib/frameworks/sproutcore/frameworks/{desktop/tests/views/disclosure/methods.js → core_foundation/french.lproj/ordinal.js} +7 -4
  30. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/layout.js +2 -6
  31. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/main.js +1 -1
  32. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/pane.js +104 -69
  33. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/pane_statechart.js +6 -1
  34. data/lib/frameworks/sproutcore/frameworks/core_foundation/protocols/child_view_layout_protocol.js +59 -0
  35. data/lib/frameworks/sproutcore/frameworks/core_foundation/protocols/view_transition_protocol.js +18 -1
  36. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/application.js +192 -0
  37. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/bezier_curves.js +52 -0
  38. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/color.js +384 -64
  39. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/core_query.js +6 -14
  40. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/device.js +21 -35
  41. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/event.js +72 -36
  42. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/locale.js +90 -34
  43. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/platform.js +55 -7
  44. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/render_context.js +20 -15
  45. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/req_anim_frame.js +9 -10
  46. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/root_responder.js +763 -542
  47. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/selection_set.js +4 -3
  48. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/sparse_array.js +1 -7
  49. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/string.js +14 -0
  50. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/touch.js +538 -0
  51. data/lib/frameworks/sproutcore/frameworks/core_foundation/system/utils/rect.js +56 -1
  52. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/controllers/array/array_case.js +99 -4
  53. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/controllers/object/single_case.js +25 -19
  54. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/core_tests.js +75 -0
  55. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/ext/number_test.js +81 -0
  56. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/action_support.js +4 -4
  57. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/responder_context.js +4 -4
  58. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/string.js +19 -1
  59. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/color.js +36 -20
  60. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/design_modes_test.js +83 -0
  61. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/makeMainPane.js +7 -3
  62. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/mouse_events.js +338 -0
  63. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/root_responder.js +14 -89
  64. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/touch.js +106 -0
  65. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/sparse_array.js +2 -2
  66. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/touch.js +136 -0
  67. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/utils/rect.js +42 -1
  68. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/append_remove.js +11 -0
  69. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/child_view.js +5 -5
  70. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/design_mode_test.js +457 -0
  71. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/sendEvent.js +36 -10
  72. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/background_color.js +44 -0
  73. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/border_frame_test.js +51 -24
  74. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/childViewLayout_test.js +176 -1
  75. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/clippingFrame.js +46 -16
  76. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/convertFrames.js +69 -15
  77. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/didAppendToDocument.js +2 -2
  78. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layout.js +7 -1
  79. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layoutDidChange.js +30 -10
  80. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layoutStyle.js +376 -71
  81. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/static_layout.js +0 -10
  82. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/viewDidResize.js +117 -34
  83. data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/view_states_test.js +52 -2
  84. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view.js +656 -42
  85. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/animation.js +159 -38
  86. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/cursor.js +0 -7
  87. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/design_mode.js +206 -0
  88. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/enabled.js +0 -28
  89. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/keyboard.js +21 -6
  90. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/layout.js +372 -450
  91. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/layout_style.js +28 -13
  92. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/manipulation.js +22 -51
  93. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/statechart.js +59 -30
  94. data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/theming.js +0 -29
  95. data/lib/frameworks/sproutcore/frameworks/datastore/mixins/relationship_support.js +22 -10
  96. data/lib/frameworks/sproutcore/frameworks/datastore/models/children_attribute.js +42 -36
  97. data/lib/frameworks/sproutcore/frameworks/datastore/models/many_attribute.js +54 -3
  98. data/lib/frameworks/sproutcore/frameworks/datastore/models/record.js +178 -59
  99. data/lib/frameworks/sproutcore/frameworks/datastore/models/record_attribute.js +2 -2
  100. data/lib/frameworks/sproutcore/frameworks/datastore/system/child_array.js +206 -132
  101. data/lib/frameworks/sproutcore/frameworks/datastore/system/many_array.js +214 -118
  102. data/lib/frameworks/sproutcore/frameworks/datastore/system/nested_store.js +96 -13
  103. data/lib/frameworks/sproutcore/frameworks/datastore/system/query.js +14 -4
  104. data/lib/frameworks/sproutcore/frameworks/datastore/system/record_array.js +82 -42
  105. data/lib/frameworks/sproutcore/frameworks/datastore/system/store.js +272 -177
  106. data/lib/frameworks/sproutcore/frameworks/datastore/tests/integration/store_interaction_test.js +54 -0
  107. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/datetime_recordattribute.js +24 -16
  108. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/many_attribute.js +6 -3
  109. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/data_store.js +267 -35
  110. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record.js +57 -46
  111. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_array.js +150 -53
  112. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_array_complex.js +57 -17
  113. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_complex.js +13 -9
  114. data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/many.js +2 -2
  115. data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/simple.js +0 -0
  116. data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/single.js +12 -2
  117. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/record/writeAttribute.js +20 -15
  118. data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/record_attribute.js +9 -2
  119. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/many_array/core_methods.js +80 -14
  120. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/autonomous_dataSourceCallbacks.js +280 -0
  121. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/autonomous_pushChanges.js +232 -0
  122. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/chain.js +31 -5
  123. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/query/parse.js +16 -2
  124. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/store/core_methods.js +60 -40
  125. data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/store/materializeRecord.js +78 -0
  126. data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/core/system/datetime.js +13 -1
  127. data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/core/tests/system/datetime.js +20 -0
  128. data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/localized/{resources → english.lproj}/strings.js +0 -0
  129. data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/localized/french.lproj/strings.js +45 -0
  130. data/lib/frameworks/sproutcore/frameworks/designer/designers/object_designer.js +7 -3
  131. data/lib/frameworks/sproutcore/frameworks/desktop/mixins/collection_row_delegate.js +125 -44
  132. data/lib/frameworks/sproutcore/frameworks/desktop/panes/alert.js +139 -48
  133. data/lib/frameworks/sproutcore/frameworks/desktop/panes/draggable.js +202 -0
  134. data/lib/frameworks/sproutcore/frameworks/desktop/panes/menu.js +59 -56
  135. data/lib/frameworks/sproutcore/frameworks/desktop/panes/palette.js +13 -49
  136. data/lib/frameworks/sproutcore/frameworks/desktop/panes/picker.js +466 -305
  137. data/lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_source.js +49 -12
  138. data/lib/frameworks/sproutcore/frameworks/desktop/render_delegates/slider.js +79 -21
  139. data/lib/frameworks/sproutcore/frameworks/desktop/render_delegates/split.js +12 -2
  140. data/lib/frameworks/sproutcore/frameworks/desktop/resources/menu_item_view.css +8 -0
  141. data/lib/frameworks/sproutcore/frameworks/desktop/resources/overlay-scroller.css +187 -0
  142. data/lib/frameworks/sproutcore/frameworks/desktop/system/drag.js +94 -30
  143. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/alert/ui.js +163 -3
  144. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/methods.js +97 -78
  145. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/ui.js +61 -1
  146. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/panel/methods.js +7 -3
  147. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/panel/ui.js +47 -22
  148. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/picker/methods.js +66 -9
  149. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/picker/ui.js +21 -11
  150. data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/sheet/ui.js +12 -18
  151. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/button/methods.js +17 -14
  152. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/button/ui.js +2 -1
  153. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/checkbox/methods.js +9 -6
  154. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/collection_fast_path.js +54 -21
  155. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/content.js +52 -20
  156. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/itemViewForContentIndex.js +94 -4
  157. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/keyboard.js +177 -0
  158. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/layerIdFor.js +13 -1
  159. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/length.js +9 -9
  160. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/mouse.js +18 -0
  161. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/date_field/methods.js +104 -0
  162. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/disclosure/ui.js +48 -49
  163. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/grid/drag_and_drop.js +22 -18
  164. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/grid/methods.js +17 -5
  165. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/link_view_test.js +136 -0
  166. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/contentIndexesInRect.js +77 -0
  167. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/drag_and_drop.js +53 -16
  168. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/layoutForContentIndex.js +41 -0
  169. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowDelegate.js +25 -25
  170. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowOffsetForContentIndex.js +102 -27
  171. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/{rowHeightForContentIndex.js → rowSizeForContentIndex.js} +7 -6
  172. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_outline.js +2 -0
  173. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_row_heights.js +70 -75
  174. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_simple.js +29 -30
  175. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list_item.js +57 -0
  176. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/menu_scroll_view/menu_scroll_view_test.js +206 -0
  177. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/progress/ui.js +15 -0
  178. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/radio/methods.js +15 -7
  179. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/integration.js +16 -11
  180. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/methods.js +164 -12
  181. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/scale.js +387 -0
  182. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/touch.js +549 -0
  183. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/ui.js +214 -45
  184. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroller.js +5 -5
  185. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/methods.js +73 -22
  186. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/ui.js +88 -3
  187. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select/methods.js +8 -0
  188. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/slider/methods.js +16 -1
  189. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/slider/ui.js +54 -0
  190. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/split/dividers.js +21 -2
  191. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/static_content.js +31 -25
  192. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/tab/methods.js +109 -29
  193. data/lib/frameworks/sproutcore/frameworks/desktop/views/button.js +10 -1
  194. data/lib/frameworks/sproutcore/frameworks/desktop/views/checkbox.js +3 -0
  195. data/lib/frameworks/sproutcore/frameworks/desktop/views/collection.js +779 -603
  196. data/lib/frameworks/sproutcore/frameworks/desktop/views/date_field.js +106 -7
  197. data/lib/frameworks/sproutcore/frameworks/desktop/views/link_view.js +406 -0
  198. data/lib/frameworks/sproutcore/frameworks/desktop/views/list.js +437 -245
  199. data/lib/frameworks/sproutcore/frameworks/desktop/views/list_item.js +13 -0
  200. data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_item.js +124 -62
  201. data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_scroll.js +176 -597
  202. data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_scroller_view.js +206 -0
  203. data/lib/frameworks/sproutcore/frameworks/desktop/views/popup_button.js +3 -0
  204. data/lib/frameworks/sproutcore/frameworks/desktop/views/progress.js +5 -4
  205. data/lib/frameworks/sproutcore/frameworks/desktop/views/radio.js +3 -0
  206. data/lib/frameworks/sproutcore/frameworks/desktop/views/scene.js +56 -158
  207. data/lib/frameworks/sproutcore/frameworks/desktop/views/scroll_view.js +2560 -0
  208. data/lib/frameworks/sproutcore/frameworks/desktop/views/scroller.js +458 -242
  209. data/lib/frameworks/sproutcore/frameworks/desktop/views/segmented.js +117 -54
  210. data/lib/frameworks/sproutcore/frameworks/desktop/views/select.js +18 -12
  211. data/lib/frameworks/sproutcore/frameworks/desktop/views/slider.js +162 -34
  212. data/lib/frameworks/sproutcore/frameworks/desktop/views/split.js +30 -15
  213. data/lib/frameworks/sproutcore/frameworks/desktop/views/split_divider.js +33 -7
  214. data/lib/frameworks/sproutcore/frameworks/desktop/views/static_content.js +22 -2
  215. data/lib/frameworks/sproutcore/frameworks/desktop/views/tab.js +47 -22
  216. data/lib/frameworks/sproutcore/frameworks/experimental/Buildfile +0 -6
  217. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/forms/views/form.js +2 -1
  218. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/forms/views/form_row.js +21 -21
  219. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/ext/menu.js +14 -3
  220. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/mixins/select_view_menu.js +24 -10
  221. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/ext/menu_resizing.js +1 -1
  222. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/mixins/select_view_menu/bindings.js +7 -4
  223. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/mixins/select_view_menu/check_selected.js +7 -9
  224. data/lib/frameworks/sproutcore/frameworks/{desktop/tests/panes/select_button/methods.js → experimental/frameworks/select_view/tests/views/select/method.js} +54 -76
  225. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/views/select/selected_item.js +35 -0
  226. data/lib/frameworks/sproutcore/frameworks/{desktop/tests/panes/select_button → experimental/frameworks/select_view/tests/views/select}/ui.js +107 -36
  227. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/views/select.js +225 -66
  228. data/lib/frameworks/sproutcore/frameworks/foundation/controllers/tree.js +39 -38
  229. data/lib/frameworks/sproutcore/frameworks/foundation/core.js +5 -18
  230. data/lib/frameworks/sproutcore/frameworks/foundation/debug/control_test_pane.js +12 -0
  231. data/lib/frameworks/sproutcore/frameworks/foundation/english.lproj/inflections.js +84 -0
  232. data/lib/frameworks/sproutcore/frameworks/foundation/french.lproj/inflections.js +41 -0
  233. data/lib/frameworks/sproutcore/frameworks/foundation/mixins/auto_mixin.js +1 -0
  234. data/lib/frameworks/sproutcore/frameworks/foundation/mixins/auto_resize.js +7 -0
  235. data/lib/frameworks/sproutcore/frameworks/foundation/mixins/content_display.js +3 -4
  236. data/lib/frameworks/sproutcore/frameworks/foundation/mixins/flowed_layout.js +6 -2
  237. data/lib/frameworks/sproutcore/frameworks/foundation/private/tree_item_observer.js +408 -239
  238. data/lib/frameworks/sproutcore/frameworks/foundation/render_delegates/canvas_image.js +1 -1
  239. data/lib/frameworks/sproutcore/frameworks/foundation/resources/text_field.css +2 -1
  240. data/lib/frameworks/sproutcore/frameworks/foundation/spanish.lproj/inflections.js +38 -0
  241. data/lib/frameworks/sproutcore/frameworks/foundation/system/benchmark.js +104 -76
  242. data/lib/frameworks/sproutcore/frameworks/foundation/system/string.js +20 -94
  243. data/lib/frameworks/sproutcore/frameworks/foundation/system/text_selection.js +33 -22
  244. data/lib/frameworks/sproutcore/frameworks/foundation/system/undo_manager.js +475 -0
  245. data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/auto_resize_test.js +163 -1
  246. data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/flowed_layout/tests.js +41 -0
  247. data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/staticLayout.js +2 -5
  248. data/lib/frameworks/sproutcore/frameworks/foundation/tests/private/tree_item_observer/methods.js +268 -0
  249. data/lib/frameworks/sproutcore/frameworks/foundation/tests/system/undo_manager.js +231 -0
  250. data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/container/ui.js +16 -0
  251. data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/image/ui.js +27 -0
  252. data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/methods.js +24 -0
  253. data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/ui.js +135 -6
  254. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/fade_transition.js +6 -0
  255. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/pop_transition.js +7 -0
  256. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/scale_transition.js +6 -0
  257. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/slide_transition.js +4 -0
  258. data/lib/frameworks/sproutcore/frameworks/foundation/transitions/swap_dissolve_transition.js +3 -1
  259. data/lib/frameworks/sproutcore/frameworks/foundation/validators/credit_card.js +21 -21
  260. data/lib/frameworks/sproutcore/frameworks/foundation/views/container.js +65 -15
  261. data/lib/frameworks/sproutcore/frameworks/foundation/views/image.js +4 -1
  262. data/lib/frameworks/sproutcore/frameworks/foundation/views/label.js +1 -1
  263. data/lib/frameworks/sproutcore/frameworks/foundation/views/text_field.js +193 -213
  264. data/lib/frameworks/sproutcore/frameworks/jquery/{jquery-1.8.3-patched.js → jquery-1.11.1.js} +7507 -6684
  265. data/lib/frameworks/sproutcore/frameworks/routing/system/routes.js +28 -11
  266. data/lib/frameworks/sproutcore/frameworks/routing/tests/system/routes.js +26 -0
  267. data/lib/frameworks/sproutcore/frameworks/runtime/core.js +54 -25
  268. data/lib/frameworks/sproutcore/frameworks/runtime/ext/array.js +0 -6
  269. data/lib/frameworks/sproutcore/frameworks/runtime/ext/number.js +36 -0
  270. data/lib/frameworks/sproutcore/frameworks/runtime/ext/window.js +25 -0
  271. data/lib/frameworks/sproutcore/frameworks/runtime/mixins/array.js +3 -3
  272. data/lib/frameworks/sproutcore/frameworks/runtime/mixins/enumerable.js +1 -1
  273. data/lib/frameworks/sproutcore/frameworks/runtime/mixins/observable.js +156 -66
  274. data/lib/frameworks/sproutcore/frameworks/runtime/private/observer_set.js +2 -2
  275. data/lib/frameworks/sproutcore/frameworks/runtime/system/binding.js +150 -65
  276. data/lib/frameworks/sproutcore/frameworks/runtime/system/index_set.js +57 -11
  277. data/lib/frameworks/sproutcore/frameworks/runtime/system/object.js +68 -49
  278. data/lib/frameworks/sproutcore/frameworks/runtime/system/run_loop.js +14 -6
  279. data/lib/frameworks/sproutcore/frameworks/runtime/system/string.js +23 -23
  280. data/lib/frameworks/sproutcore/frameworks/runtime/tests/ext/number_test.js +44 -0
  281. data/lib/frameworks/sproutcore/frameworks/runtime/tests/mixins/array.js +0 -10
  282. data/lib/frameworks/sproutcore/frameworks/runtime/tests/mixins/enumerable/enumerable.js +340 -285
  283. data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/binding.js +104 -3
  284. data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/observer_set.js +14 -1
  285. data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/string.js +15 -2
  286. data/lib/frameworks/sproutcore/frameworks/statechart/system/state.js +21 -18
  287. data/lib/frameworks/sproutcore/frameworks/statechart/system/statechart.js +52 -19
  288. data/lib/frameworks/sproutcore/frameworks/statechart/tests/event_handling/responder/pane.js +27 -24
  289. data/lib/frameworks/sproutcore/frameworks/template_view/controls/button.js +30 -0
  290. data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/bind.js +1 -1
  291. data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/collection.js +2 -0
  292. data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/view.js +1 -0
  293. data/lib/frameworks/sproutcore/frameworks/template_view/tests/mixins/template_helpers/checkbox_support.js +2 -2
  294. data/lib/frameworks/sproutcore/frameworks/template_view/tests/views/template/handlebars.js +4 -2
  295. data/lib/frameworks/sproutcore/frameworks/template_view/views/bindable_span.js +1 -1
  296. data/lib/frameworks/sproutcore/frameworks/template_view/views/template_collection.js +16 -14
  297. data/lib/frameworks/sproutcore/frameworks/testing/core.js +5 -3
  298. data/lib/frameworks/sproutcore/frameworks/testing/system/plan.js +13 -0
  299. data/lib/frameworks/sproutcore/lib/index.rhtml +2 -2
  300. data/lib/frameworks/sproutcore/phantomjs/test_runner.js +28 -7
  301. data/lib/frameworks/sproutcore/scripts/run_sc_server_master.sh +1 -1
  302. data/lib/frameworks/sproutcore/themes/ace/resources/_variables.css +2 -0
  303. data/lib/frameworks/sproutcore/themes/ace/resources/disclosure/ace/disclosure.css +1 -0
  304. data/lib/frameworks/sproutcore/themes/ace/resources/picker/popover/popover.css +3 -4
  305. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal.css +15 -15
  306. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal_overlay.css +74 -0
  307. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical.css +11 -13
  308. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical_overlay.css +74 -0
  309. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob-active.png +0 -0
  310. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob-active@2x.png +0 -0
  311. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob.png +0 -0
  312. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob@2x.png +0 -0
  313. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/{22px → jumbo}/slider.css +9 -4
  314. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/track.png +0 -0
  315. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/track@2x.png +0 -0
  316. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob-active.png +0 -0
  317. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob-active@2x.png +0 -0
  318. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob.png +0 -0
  319. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob@2x.png +0 -0
  320. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/slider.css +32 -0
  321. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/track.png +0 -0
  322. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/track@2x.png +0 -0
  323. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/slider.css +13 -0
  324. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob-active.png +0 -0
  325. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob-active@2x.png +0 -0
  326. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob.png +0 -0
  327. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob@2x.png +0 -0
  328. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/slider.css +32 -0
  329. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/track.png +0 -0
  330. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/track@2x.png +0 -0
  331. data/lib/frameworks/sproutcore/themes/ace/resources/split/split.css +2 -3
  332. data/lib/sproutcore/builders/chance_file.rb +3 -3
  333. data/lib/sproutcore/helpers/minifier.rb +1 -0
  334. data/vendor/chance/lib/chance/instance.rb +34 -34
  335. data/vendor/chance/lib/chance/instance/spriting.rb +21 -16
  336. metadata +81 -58
  337. data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/visibility.js +0 -17
  338. data/lib/frameworks/sproutcore/frameworks/desktop/mixins/collection_fast_path.js +0 -710
  339. data/lib/frameworks/sproutcore/frameworks/desktop/mixins/scrollable.js +0 -267
  340. data/lib/frameworks/sproutcore/frameworks/desktop/resources/touch-scroller.css +0 -196
  341. data/lib/frameworks/sproutcore/frameworks/desktop/system/undo_manager.js +0 -224
  342. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/methods.js +0 -163
  343. data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/ui.js +0 -177
  344. data/lib/frameworks/sproutcore/frameworks/desktop/views/scroll.js +0 -2053
  345. data/lib/frameworks/sproutcore/frameworks/desktop/views/select_button.js +0 -1024
  346. data/lib/frameworks/sproutcore/frameworks/desktop/views/select_field.js +0 -404
  347. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/render_delegates/menu_scroller.js +0 -28
  348. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/tests/menu/scroll.js +0 -235
  349. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/views/menu/scroll.js +0 -363
  350. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/views/menu/scroller.js +0 -250
  351. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/polymorphism/README.md +0 -47
  352. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/polymorphism/models/record.js +0 -134
  353. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/desktop_scroller.js +0 -92
  354. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/native_scroll.js +0 -25
  355. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/scroll.js +0 -33
  356. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/touch_scroller.js +0 -76
  357. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/integration.js +0 -25
  358. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/methods.js +0 -143
  359. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/ui.js +0 -256
  360. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/core_scroll.js +0 -1164
  361. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/core_scroller.js +0 -332
  362. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/desktop/scroll.js +0 -236
  363. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/desktop/scroller.js +0 -347
  364. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/scroll.js +0 -15
  365. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/scroller.js +0 -10
  366. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/touch/scroll.js +0 -804
  367. data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/touch/scroller.js +0 -133
  368. data/lib/frameworks/sproutcore/frameworks/foundation/tasks/preload_bundle.js +0 -41
  369. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal_touch.css +0 -91
  370. data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical_touch.css +0 -92
  371. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/knob.png +0 -0
  372. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/knob_active.png +0 -0
  373. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/slider.css +0 -27
  374. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/knob.png +0 -0
  375. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/knob_active.png +0 -0
  376. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/slider.css +0 -27
  377. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/knob.png +0 -0
  378. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/knob_active.png +0 -0
  379. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/track.png +0 -0
  380. data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/track.png +0 -0
@@ -220,7 +220,7 @@ SC.SelectionSet = SC.Object.extend(SC.Enumerable, SC.Freezable, SC.Copyable,
220
220
 
221
221
  if (this.isFrozen) throw SC.FROZEN_ERROR ;
222
222
 
223
- var sets, len, idx, set, oldlen, newlen, setlen, objects;
223
+ var sets, len, idx, i, set, oldlen, newlen, setlen, objects, object;
224
224
 
225
225
  // normalize
226
226
  if (start === undefined && length === undefined) {
@@ -257,13 +257,14 @@ SC.SelectionSet = SC.Object.extend(SC.Enumerable, SC.Freezable, SC.Copyable,
257
257
  length = undefined;
258
258
  }
259
259
 
260
- objects.forEach(function(object) {
260
+ for (i = objects.get('length') - 1; i >= 0; --i) {
261
+ object = objects[i];
261
262
  idx = source.indexOf(object);
262
263
  if (start.contains(idx)) {
263
264
  objects.remove(object);
264
265
  newlen--;
265
266
  }
266
- }, this);
267
+ }
267
268
  }
268
269
 
269
270
  // remove indexes from source index set
@@ -371,13 +371,7 @@ SC.SparseArray = SC.Object.extend(SC.Observable, SC.Enumerable, SC.Array,
371
371
  this.propertyDidChange('length');
372
372
  }
373
373
 
374
- // Both arrayContentDidChange and enumerableContentDidChange will invoke
375
- // "this.notifyPropertyChange('[]')". To prevent multiple notifications
376
- // these calls are made as grouped property changes.
377
- this.beginPropertyChanges();
378
- this.arrayContentDidChange(idx, amt, len) ;
379
- this.enumerableContentDidChange(idx, amt, delta) ;
380
- this.endPropertyChanges();
374
+ this.arrayContentDidChange(idx, amt, len);
381
375
 
382
376
  return this ;
383
377
  },
@@ -16,6 +16,7 @@ SC.STRING_DASHERIZE_REGEXP = (/[ _]/g);
16
16
  SC.STRING_DASHERIZE_CACHE = {};
17
17
  SC.STRING_TRIM_LEFT_REGEXP = (/^\s+/g);
18
18
  SC.STRING_TRIM_RIGHT_REGEXP = (/\s+$/g);
19
+ SC.STRING_CSS_ESCAPED_REGEXP = (/(:|\.|\[|\])/g);
19
20
 
20
21
  /**
21
22
  @namespace
@@ -115,6 +116,19 @@ SC.mixin(SC.String, {
115
116
  return ret;
116
117
  },
117
118
 
119
+ /**
120
+ Escapes the given string to make it safe to use as a jQuery selector.
121
+ jQuery will interpret '.' and ':' as class and pseudo-class indicators.
122
+
123
+ @see http://learn.jquery.com/using-jquery-core/faq/how-do-i-select-an-element-by-an-id-that-has-characters-used-in-css-notation/
124
+
125
+ @param {String} str the string to escape
126
+ @returns {String} the escaped string
127
+ */
128
+ escapeCssIdForSelector: function (str) {
129
+ return str.replace(SC.STRING_CSS_ESCAPED_REGEXP, '\\$1');
130
+ },
131
+
118
132
  /**
119
133
  Localizes the string. This will look up the receiver string as a key
120
134
  in the current Strings hash. If the key matches, the loc'd value will be
@@ -0,0 +1,538 @@
1
+ // ==========================================================================
2
+ // Project: SproutCore - JavaScript Application Framework
3
+ // Copyright: ©2006-2011 Strobe Inc. and contributors.
4
+ // Portions ©2008-2011 Apple Inc. All rights reserved.
5
+ // License: Licensed under MIT license (see license.js)
6
+ // ==========================================================================
7
+
8
+ /** @class SC.Touch
9
+ Represents a touch. Single touch objects are passed to `touchStart`, `touchEnd` and `touchCancelled` event handlers;
10
+ a specialized multitouch event object is sent to `touchesDragged`, which include access to all in-flight touches
11
+ (see "The touchesDragged Multitouch Event Object" below).
12
+
13
+ SC.Touch exposes a number of properties, including pageX/Y, clientX/Y, screenX/Y, and startX/Y (the values that
14
+ pageX/Y had when the touch began, useful for calculating how far the touch has moved). It also exposes the touch's
15
+ target element at `target`, its target SC.View at `targetView`, and the touch's unique identifier at `identifier`,
16
+ which may be relied upon to identify a particular touch for the duration of its lifecycle.
17
+
18
+ A touch object exists for the duration of the touch – literally for as long as your finger is on the screen – and
19
+ is sent to a number of touch events on your views. Touch events are sent to the touch's current responder, set initially
20
+ by checking the responder chain for views which implement `touchStart` (or `captureTouch`, see "Touch Events" below),
21
+ and can be passed to other views as needed (see "Touch Responders" below).
22
+
23
+ Touch Events
24
+ -----
25
+ You can use the following methods on your views to capture and handle touch events:
26
+
27
+ - `captureTouch` -- Sometimes, a touch responder part way up the chain may need to capture the touch and prevent it
28
+ from being made available to its childViews. The canonical use case for this behavior is SC.ScrollView, which by
29
+ default captures touches and holds onto them for 150ms to see if the user is scrolling, only passing them on to
30
+ children if not. (See SC.ScrollView#delaysContentTouches for more.) In order to support this use case, `captureTouch`
31
+ bubbles the opposite way as usual: beginning with the target's pane and bubbling *down* towards the target itself.
32
+ `captureTouch` is passed a single instance of `SC.Touch`, and must return YES if it wishes to capture the touch and
33
+ become its responder. (If your view doesn't want to immediately capture the touch, but instead wants to suggest itself
34
+ as a fallback handler in case the child view resigns respondership, it can do so by passing itself to the touch's
35
+ `stackCandidateTouchResponder` method.)
36
+ - `touchStart` -- When a touch begins, or when a new view responder is first given access to it (see "Touch Responders"
37
+ below), the touch is passed to this method.
38
+ - `touchesDragged` -- Whenever any touches move, the `touchesDragged` method is called on the current view responder
39
+ for any touches that have changed. The method is provided two arguments: a special multitouch event object (see "The
40
+ touchesDragged Multitouch Event Object" below), and an array containing all of the touches on that view. (This is
41
+ the same as calling `touch.touchesForView(this)`.)
42
+ - `touchEnd` -- When a touch is complete, its current responder's `touchEnd` handler is invoked, if present, and passed
43
+ the touch object which is ending.
44
+ - `touchCancelled` -- This method is generally only called if you have changed the touch's responder. See "Touch
45
+ Responders" below; in brief, if you pass the touch to another responder via `makeTouchResponder`, fully resigning
46
+ your touch respondership, you will receive a `touchCancelled` call for the next event; if you pass the touch to another
47
+ responder via `stackNextTouchResponder`, and never receive it back, you will receive a `touchCancelled` call when the
48
+ touch finishes. (Note that because RootResponder must call touchStart to determine if a view will accept respondership,
49
+ touchStart is called on a new responder before touchCancelled is called on the outgoing one.)
50
+
51
+ The touchesDragged Multitouch Event Object
52
+ -----
53
+ The specialized event object sent to `touchesDragged` includes access to all touches currently in flight. You can
54
+ access the touches for a specific view from the `touchesForView` method, or get an average position of the touches
55
+ on a view from the convenient `averagedTouchesForView` method. For your convenience when dealing with the common
56
+ single-touch view, the `touchesDragged` event object also exposes the positional page, client, screen and start X/Y
57
+ values from the *first touch*. If you are interested in handling more than one touch, or in handling an average of
58
+ in-flight touches, you should ignore these values. (Note that this event object exposes an array of touch events at
59
+ `touches`. These are the browser's raw touch events, and should be avoided or used with care.)
60
+
61
+ Touch Responders: Passing Touches Around
62
+ -----
63
+ The touch responder is the view which is currently handling events for that touch. A touch may only have one responder
64
+ at a time, though a view with `acceptsMultitouch: YES` may respond to more than one touch at a time.
65
+
66
+ A view becomes a touch responder by implementing touchStart (and not returning NO). (Out-of-order views can capture
67
+ touch responder status by implementing captureTouch and returning YES.) Once a view is a touch responder, only that
68
+ view will receive subsequent `touchesDragged` and `touchEnd` events; these events do not bubble like mouse events, and
69
+ they do *not* automatically switch to other views if the touch moves outside of its initial responder.
70
+
71
+ In some situations, you will want to pass control on to another view during the course of a touch, for example if
72
+ it goes over another view. To permanently pass respondership to another view:
73
+
74
+ if (shouldPassTouch) {
75
+ touch.makeTouchResponder(nextView);
76
+ }
77
+
78
+ This will trigger `touchStart` on the new responder, and `touchCancel` on the outgoing one. The new responder will begin
79
+ receiving `touchesDragged` events in place of the outgoing one.
80
+
81
+ If you want to pass respondership to another view, but are likely to want it back – for example, when a ScrollView
82
+ passes respondership to a child view but expects that the child view will pass it back if it moves more than a certain
83
+ amount:
84
+
85
+ if (shouldTemporarlyPassTouch) {
86
+ touch.stackNextTouchResponder(nextView);
87
+ }
88
+
89
+ This will trigger `touchStart` on the new responder, and it will start receiving `touchesDragged` and `touchEnd` events.
90
+ Note that the previous responder will not receive `touchCancelled` immediately, since the touch may return to it before
91
+ the end; instead, it will only receive `touchCancelled` when the touch is ended.
92
+
93
+ (If you would like to add a view as a fallback responder without triggering unnecessary calls to its `touchStart` and
94
+ `touchCancelled` events, for example as an alternative to returning YES from `captureTouch`, you can call
95
+ `stackCandidateTouchResponder` instead.)
96
+
97
+ When the child view decides that the touch has moved enough to be a scroll, it should pass touch respondership back
98
+ to the scroll view with:
99
+
100
+ if (Math.abs(touch.pageX - touch.startX) > 4) {
101
+ touch.restoreLastTouchResponder();
102
+ }
103
+
104
+ This will trigger `touchCancelled` on the second responder, and the first one will begin receiving `touchDragged` events
105
+ again.
106
+ */
107
+ SC.Touch = function(touch, touchContext) {
108
+ // get the raw target view (we'll refine later)
109
+ this.touchContext = touchContext;
110
+ // Get the touch's unique ID.
111
+ this.identifier = touch.identifier;
112
+
113
+ var target = touch.target, targetView;
114
+
115
+ // Special-case handling for TextFieldView's touch intercept overlays.
116
+ if (target && SC.$(target).hasClass("touch-intercept")) {
117
+ touch.target.style[SC.browser.experimentalStyleNameFor('transform')] = "translate3d(0px,-5000px,0px)";
118
+ target = document.elementFromPoint(touch.pageX, touch.pageY);
119
+ if (target) targetView = SC.viewFor(target);
120
+
121
+ this.hidesTouchIntercept = NO;
122
+ if (target.tagName === "INPUT") {
123
+ this.hidesTouchIntercept = touch.target;
124
+ } else {
125
+ touch.target.style[SC.browser.experimentalStyleNameFor('transform')] = "translate3d(0px,0px,0px)";
126
+ }
127
+ } else {
128
+ targetView = touch.target ? SC.viewFor(touch.target) : null;
129
+ }
130
+
131
+ this.targetView = targetView;
132
+ this.target = target;
133
+ this.type = touch.type;
134
+
135
+ this.touchResponders = [];
136
+
137
+ this.startX = this.pageX = touch.pageX;
138
+ this.startY = this.pageY = touch.pageY;
139
+ this.clientX = touch.clientX;
140
+ this.clientY = touch.clientY;
141
+ this.screenX = touch.screenX;
142
+ this.screenY = touch.screenY;
143
+ };
144
+
145
+ SC.Touch.prototype = {
146
+ /**@scope SC.Touch.prototype*/
147
+
148
+ /** @private
149
+ The responder that's responsible for the creation and management of this touch. Usually this will be
150
+ your app's root responder. You must pass this on create, and should not change it afterwards.
151
+
152
+ @type {SC.RootResponder}
153
+ */
154
+ touchContext: null,
155
+
156
+ /**
157
+ This touch's unique identifier. Provided by the browser and used to track touches through their lifetime.
158
+ You will not usually need to use this, as SproutCore's touch objects themselves persist throughout the
159
+ lifetime of a touch.
160
+
161
+ @type {Number}
162
+ */
163
+ identifier: null,
164
+
165
+ /**
166
+ The touch's initial target element.
167
+
168
+ @type: {Element}
169
+ */
170
+ target: null,
171
+
172
+ /**
173
+ The view for the touch's initial target element.
174
+
175
+ @type {SC.View}
176
+ */
177
+ targetView: null,
178
+
179
+ /**
180
+ The touch's current view. (Usually this is the same as the current touchResponder.)
181
+
182
+ @type {SC.View}
183
+ */
184
+ view: null,
185
+
186
+ /**
187
+ The touch's current responder, i.e. the view that is currently receiving events for this touch.
188
+
189
+ You can use the following methods to pass respondership for this touch between views as needed:
190
+ `makeTouchResponder`, `stackNextTouchResponder`, `restoreLastTouchResponder`, and `stackCandidateTouchResponder`.
191
+ See each method's documentation, and "Touch Responders: Passing Touches Around" above, for more.
192
+
193
+ @type {SC.Responder}
194
+ */
195
+ touchResponder: null,
196
+
197
+ /**
198
+ Whether the touch has ended yet. If you are caching touches outside of the RootResponder, it is your
199
+ responsibility to check this property and handle ended touches appropriately.
200
+
201
+ @type {Boolean}
202
+ */
203
+ hasEnded: NO,
204
+
205
+ /**
206
+ The touch's latest browser event's type, for example 'touchstart', 'touchmove', or 'touchend'.
207
+
208
+ Note that SproutCore's event model differs from that of the browser, so it is not recommended that
209
+ you use this property unless you know what you're doing.
210
+
211
+ @type {String}
212
+ */
213
+ type: null,
214
+
215
+ /** @private
216
+ A faked mouse event property used to prevent unexpected behavior when proxying touch events to mouse
217
+ event handlers.
218
+ */
219
+ clickCount: 1,
220
+
221
+ /**
222
+ The timestamp of the touch's most recent event. This is the time as of when all of the touch's
223
+ positional values are accurate.
224
+
225
+ @type {Number}
226
+ */
227
+ timeStamp: null,
228
+
229
+ /**
230
+ The touch's latest clientX position (relative to the viewport).
231
+
232
+ @type {Number}
233
+ */
234
+ clientX: null,
235
+
236
+ /**
237
+ The touch's latest clientY position (relative to the viewport).
238
+
239
+ @type {Number}
240
+ */
241
+ clientY: null,
242
+
243
+ /**
244
+ The touch's latest screenX position (relative to the screen).
245
+
246
+ @type {Number}
247
+ */
248
+ screenX: null,
249
+
250
+ /**
251
+ The touch's latest screenY position (relative to the screen).
252
+
253
+ @type {Number}
254
+ */
255
+ screenY: null,
256
+
257
+ /**
258
+ The touch's latest pageX position (relative to the document).
259
+
260
+ @type {Number}
261
+ */
262
+ pageX: null,
263
+
264
+ /**
265
+ The touch's latest pageY position (relative to the document).
266
+
267
+ @type {Number}
268
+ */
269
+ pageY: null,
270
+
271
+ /**
272
+ The touch's initial pageX value. Useful for tracking a touch's total relative movement.
273
+
274
+ @type {Number}
275
+ */
276
+ startX: null,
277
+
278
+ /**
279
+ The touch's initial pageY value.
280
+
281
+ @type {Number}
282
+ */
283
+ startY: null,
284
+
285
+ /**
286
+ The touch's horizontal velocity, in pixels per millisecond, at the time of its last event. (Positive
287
+ velocities indicate movement leftward, negative velocities indicate movement rightward.)
288
+
289
+ @type {Number}
290
+ */
291
+ velocityX: 0,
292
+
293
+ /**
294
+ The touch's vertical velocity, in pixels per millisecond, at the time of its last event. (Positive
295
+ velocities indicate movement downward, negative velocities indicate movement upward.)
296
+
297
+ @type {Number}
298
+ */
299
+ velocityY: 0,
300
+
301
+ /** @private */
302
+ unhideTouchIntercept: function() {
303
+ var intercept = this.hidesTouchIntercept;
304
+ if (intercept) {
305
+ setTimeout(function() { intercept.style[SC.browser.experimentalStyleNameFor('transform')] = "translate3d(0px,0px,0px)"; }, 500);
306
+ }
307
+ },
308
+
309
+ /**
310
+ Indicates that you want to allow the normal default behavior. Sets
311
+ the hasCustomEventHandling property to YES but does not cancel the event.
312
+ */
313
+ allowDefault: function() {
314
+ if (this.event) this.event.hasCustomEventHandling = YES ;
315
+ },
316
+
317
+ /**
318
+ If the touch is associated with an event, prevents default action on the event. This is the
319
+ default behavior in SproutCore, which handles events through the RootResponder instead of
320
+ allowing native handling.
321
+ */
322
+ preventDefault: function() {
323
+ if (this.event) this.event.preventDefault();
324
+ },
325
+
326
+ /**
327
+ Calls the native event's stopPropagation method, which prevents the method from continuing to
328
+ bubble. Usually, SproutCore will be handling the event via delegation at the `document` level,
329
+ so this method will have no effect.
330
+ */
331
+ stopPropagation: function() {
332
+ if (this.event) this.event.stopPropagation();
333
+ },
334
+
335
+ stop: function() {
336
+ if (this.event) this.event.stop();
337
+ },
338
+
339
+ /**
340
+ Removes from and calls touchEnd on the touch responder.
341
+ */
342
+ end: function() {
343
+ this.touchContext.endTouch(this);
344
+ },
345
+
346
+ /** @private
347
+ This property, contrary to its name, stores the last touch responder for possible use later in the touch's
348
+ lifecycle. You will usually not use this property directly, instead calling `stackNextTouchResponder` to pass
349
+ the touch to a different view, and `restoreLastTouchResponder` to pass it back to the previous one.
350
+
351
+ @type {SC.Responder}
352
+ */
353
+ nextTouchResponder: null,
354
+
355
+ /** @private
356
+ An array of previous touch responders.
357
+
358
+ @type {Array}
359
+ */
360
+ touchResponders: null,
361
+
362
+ /** @private
363
+ A lazily-created array of candidate touch responders. Use `stackCandidateTouchResponder` to add candidates;
364
+ candidates are used as a fallback if the touch is out of previous touch responders.
365
+
366
+ @type {Array}
367
+ */
368
+ candidateTouchResponders: null,
369
+
370
+ /**
371
+ A convenience method for making the passed view the touch's new responder, retaining the
372
+ current responder for possible use later in the touch's lifecycle.
373
+
374
+ For example, if the touch moves over a childView which implements its own touch handling,
375
+ you may pass the touch to it with:
376
+
377
+ touchesDragged: function(evt, viewTouches) {
378
+ if ([touches should be passed to childView]) {
379
+ this.viewTouches.forEach(function(touch) {
380
+ touch.stackNextTouchResponder(this.someChildView);
381
+ }, this);
382
+ }
383
+ }
384
+
385
+ The child view may easily pass the touch back to this view with `touch.restoreLastTouchResponder`. In the
386
+ mean time, this view will no longer receive `touchesDragged` events; if the touch is not returned to this
387
+ view before ending, it will receive a `touchCancelled` event rather than `touchEnd`.
388
+
389
+ @param {SC.Responder} view The view which should become this touch's new responder.
390
+ @param {Boolean} upChain Whether or not a fallback responder should be sought up the responder chain if responder doesn't capture or handle the touch.
391
+ */
392
+ stackNextTouchResponder: function(view, upStack) {
393
+ this.makeTouchResponder(view, YES, upStack);
394
+ },
395
+
396
+ /**
397
+ A convenience method for returning touch respondership to the previous touch responder.
398
+
399
+ For example, if your view is in a ScrollView and has captured the touch from it, your view
400
+ will prevent scrolling until you return control of the touch to the ScrollView with:
401
+
402
+ touchesDragged: function(evt, viewTouches) {
403
+ if (Math.abs(evt.pageY - evt.startY) > this.MAX_SWIPE) {
404
+ viewTouches.invoke('restoreLastTouchResponder');
405
+ }
406
+ }
407
+ */
408
+ restoreLastTouchResponder: function() {
409
+ // If we have a previous touch responder, go back to it.
410
+ if (this.nextTouchResponder) {
411
+ this.makeTouchResponder(this.nextTouchResponder);
412
+ }
413
+ // Otherwise, check if we have a candidate responder queued up.
414
+ else {
415
+ var candidates = this.candidateTouchResponders,
416
+ candidate = candidates ? candidates.pop() : null;
417
+ if (candidate) {
418
+ this.makeTouchResponder(candidate);
419
+ }
420
+ }
421
+ },
422
+
423
+ /**
424
+ Changes the touch responder for the touch. If shouldStack is YES,
425
+ the current responder will be saved so that the next responder may
426
+ return to it.
427
+
428
+ You will generally not call this method yourself, instead exposing on
429
+ your view either a `touchStart` event handler method, or a `captureTouch`
430
+ method which is passed a touch object and returns YES. This method
431
+ is used in situations where touches need to be juggled between views,
432
+ such as when being handled by a descendent of a ScrollView.
433
+
434
+ When returning control of a touch to a previous handler, you should call
435
+ `restoreLastTouchResponder` instead.
436
+
437
+ @param {SC.Responder} responder The view to assign to the touch. (It, or if bubbling then an ancestor,
438
+ must implement touchStart.)
439
+ @param {Boolean} shouldStack Whether the new responder should replace the old one, or stack with it.
440
+ Stacked responders are easy to revert via `SC.Touch#restoreLastTouchResponder`.
441
+ @param {Boolean|SC.Responder} bubblesTo If YES, will attempt to find a `touchStart` responder up the
442
+ responder chain. If NO or undefined, will only check the passed responder. If you pass a responder
443
+ for this argument, the attempt will bubble until it reaches the passed responder, allowing you to
444
+ restrict the bubbling to a portion of the responder chain. (Note that this responder will not be
445
+ given an opportunity to respond to the event.)
446
+ @returns {Boolean} Whether a valid touch responder was found and assigned.
447
+ */
448
+ makeTouchResponder: function(responder, shouldStack, bubblesTo) {
449
+ return this.touchContext.makeTouchResponder(this, responder, shouldStack, bubblesTo);
450
+ },
451
+
452
+ /**
453
+ You may want your view to insert itself into the responder chain as a fallback, but without
454
+ having touchStart etc. called if it doesn't end up coming into play. For example, SC.ScrollView
455
+ adds itself as a candidate responder (when delaysTouchResponder is NO) so that views can easily
456
+ give it control, but without receiving unnecessary events if not.
457
+ */
458
+ stackCandidateTouchResponder: function(responder) {
459
+ // Fast path: if we're the first one it's easy.
460
+ if (!this.candidateTouchResponders) {
461
+ this.candidateTouchResponders = [responder];
462
+ }
463
+ // Just make sure it's not at the top of the stack. There may be a weird case where a
464
+ // view wants to be in a couple of spots in the stack, but it shouldn't want to be twice
465
+ // in a row.
466
+ else if (responder !== this.candidateTouchResponders[this.candidateTouchResponders.length - 1]) {
467
+ this.candidateTouchResponders.push(responder);
468
+ }
469
+ },
470
+
471
+ /**
472
+ Captures, or recaptures, this touch. This works from the startingPoint's first child up to the
473
+ touch's target view to find a view which implements `captureTouch` and returns YES. If the touch
474
+ is captured, then this method will perform a standard `touchStart` event bubbling beginning with
475
+ the view which captured the touch. If no view captures the touch, then this method returns NO,
476
+ and you should call the `makeTouchResponder` method to trigger a standard `touchStart` bubbling
477
+ from the initial target on down.
478
+
479
+ You will generally not call this method yourself, instead exposing on
480
+ your view either a `touchStart` event handler method, or a `captureTouch`
481
+ method which is passed a touch object and returns YES. This method
482
+ is used in situations where touches need to be juggled between views,
483
+ such as when being handled by a descendent of a ScrollView.
484
+
485
+ @param {?SC.Responder} startingPoint The view whose children should be given an opportunity
486
+ to capture the event. (The starting point itself is not asked.)
487
+ @param {Boolean} shouldStack Whether any capturing responder should stack with existing responders.
488
+ Stacked responders are easy to revert via `SC.Touch#restoreLastTouchResponder`.
489
+
490
+ @returns {Boolean} Whether the touch was captured. If it was not, you should pass it to
491
+ `makeTouchResponder` for standard event bubbling.
492
+ */
493
+ captureTouch: function(startingPoint, shouldStack) {
494
+ return this.touchContext.captureTouch(this, startingPoint, shouldStack);
495
+ },
496
+
497
+ /**
498
+ Returns all touches for a specified view. Put as a convenience on the touch itself;
499
+ this method is also available on the event.
500
+
501
+ For example, to retrieve the list of touches impacting the current event handler:
502
+
503
+ touchesDragged: function(evt) {
504
+ var myTouches = evt.touchesForView(this);
505
+ }
506
+
507
+ @param {SC.Responder} view
508
+ */
509
+ touchesForView: function(view) {
510
+ return this.touchContext.touchesForView(view);
511
+ },
512
+
513
+ /**
514
+ A synonym for SC.Touch#touchesForView.
515
+ */
516
+ touchesForResponder: function(responder) {
517
+ return this.touchContext.touchesForView(responder);
518
+ },
519
+
520
+ /**
521
+ Returns average data--x, y, and d (distance)--for the touches owned by the supplied view.
522
+
523
+ See notes on the addSelf argument for an important consideration when calling from `touchStart`.
524
+
525
+ @param {SC.Responder} view
526
+ @param {Boolean} addSelf Includes the receiver in calculations. Pass YES for this if calling
527
+ from touchStart, as the touch will not yet be included by default.
528
+ */
529
+ averagedTouchesForView: function(view, addSelf) {
530
+ return this.touchContext.averagedTouchesForView(view, (addSelf ? this : null));
531
+ }
532
+ };
533
+
534
+ SC.mixin(SC.Touch, {
535
+ create: function(touch, touchContext) {
536
+ return new SC.Touch(touch, touchContext);
537
+ }
538
+ });