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.
- checksums.yaml +8 -8
- data/CHANGELOG +4 -8
- data/VERSION.yml +2 -2
- data/lib/frameworks/sproutcore/Buildfile +5 -4
- data/lib/frameworks/sproutcore/CHANGELOG.md +274 -40
- data/lib/frameworks/sproutcore/CONTRIBUTORS.md +133 -0
- data/lib/frameworks/sproutcore/README.md +31 -144
- data/lib/frameworks/sproutcore/apps/showcase/controllers/source_tree_controller.js +9 -4
- data/lib/frameworks/sproutcore/apps/showcase/resources/stylesheet.css +5 -0
- data/lib/frameworks/sproutcore/apps/showcase/system/views_item_content.js +1 -1
- data/lib/frameworks/sproutcore/apps/showcase/views/split_views.js +15 -2
- data/lib/frameworks/sproutcore/apps/showcase/views/stacked_views.js +1 -1
- data/lib/frameworks/sproutcore/apps/tests/english.lproj/main_page.js +11 -1
- data/lib/frameworks/sproutcore/frameworks/ajax/mixins/websocket_delegate.js +90 -0
- data/lib/frameworks/sproutcore/frameworks/ajax/system/request.js +81 -5
- data/lib/frameworks/sproutcore/frameworks/ajax/system/response.js +23 -4
- data/lib/frameworks/sproutcore/frameworks/ajax/system/websocket.js +475 -0
- data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/request.js +149 -26
- data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/websocket.js +197 -0
- data/lib/frameworks/sproutcore/frameworks/ajax/tests/system/xhr_response_test.js +65 -0
- data/lib/frameworks/sproutcore/frameworks/bootstrap/system/loader.js +4 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/child_view_layouts/horizontal_stack_layout.js +232 -52
- data/lib/frameworks/sproutcore/frameworks/core_foundation/child_view_layouts/vertical_stack_layout.js +235 -49
- data/lib/frameworks/sproutcore/frameworks/core_foundation/controllers/array.js +23 -13
- data/lib/frameworks/sproutcore/frameworks/core_foundation/controllers/object.js +3 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/core.js +81 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/english.lproj/ordinal.js +17 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/ext/string.js +7 -0
- data/lib/frameworks/sproutcore/frameworks/{desktop/tests/views/disclosure/methods.js → core_foundation/french.lproj/ordinal.js} +7 -4
- data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/layout.js +2 -6
- data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/main.js +1 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/pane.js +104 -69
- data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/pane_statechart.js +6 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/protocols/child_view_layout_protocol.js +59 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/protocols/view_transition_protocol.js +18 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/application.js +192 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/bezier_curves.js +52 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/color.js +384 -64
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/core_query.js +6 -14
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/device.js +21 -35
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/event.js +72 -36
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/locale.js +90 -34
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/platform.js +55 -7
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/render_context.js +20 -15
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/req_anim_frame.js +9 -10
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/root_responder.js +763 -542
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/selection_set.js +4 -3
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/sparse_array.js +1 -7
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/string.js +14 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/touch.js +538 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/system/utils/rect.js +56 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/controllers/array/array_case.js +99 -4
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/controllers/object/single_case.js +25 -19
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/core_tests.js +75 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/ext/number_test.js +81 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/action_support.js +4 -4
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/responder_context.js +4 -4
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/mixins/string.js +19 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/color.js +36 -20
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/design_modes_test.js +83 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/makeMainPane.js +7 -3
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/mouse_events.js +338 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/root_responder.js +14 -89
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/root_responder/touch.js +106 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/sparse_array.js +2 -2
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/touch.js +136 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/system/utils/rect.js +42 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/append_remove.js +11 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/child_view.js +5 -5
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/design_mode_test.js +457 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/pane/sendEvent.js +36 -10
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/background_color.js +44 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/border_frame_test.js +51 -24
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/childViewLayout_test.js +176 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/clippingFrame.js +46 -16
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/convertFrames.js +69 -15
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/didAppendToDocument.js +2 -2
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layout.js +7 -1
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layoutDidChange.js +30 -10
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/layoutStyle.js +376 -71
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/static_layout.js +0 -10
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/viewDidResize.js +117 -34
- data/lib/frameworks/sproutcore/frameworks/core_foundation/tests/views/view/view_states_test.js +52 -2
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view.js +656 -42
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/animation.js +159 -38
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/cursor.js +0 -7
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/design_mode.js +206 -0
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/enabled.js +0 -28
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/keyboard.js +21 -6
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/layout.js +372 -450
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/layout_style.js +28 -13
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/manipulation.js +22 -51
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/statechart.js +59 -30
- data/lib/frameworks/sproutcore/frameworks/core_foundation/views/view/theming.js +0 -29
- data/lib/frameworks/sproutcore/frameworks/datastore/mixins/relationship_support.js +22 -10
- data/lib/frameworks/sproutcore/frameworks/datastore/models/children_attribute.js +42 -36
- data/lib/frameworks/sproutcore/frameworks/datastore/models/many_attribute.js +54 -3
- data/lib/frameworks/sproutcore/frameworks/datastore/models/record.js +178 -59
- data/lib/frameworks/sproutcore/frameworks/datastore/models/record_attribute.js +2 -2
- data/lib/frameworks/sproutcore/frameworks/datastore/system/child_array.js +206 -132
- data/lib/frameworks/sproutcore/frameworks/datastore/system/many_array.js +214 -118
- data/lib/frameworks/sproutcore/frameworks/datastore/system/nested_store.js +96 -13
- data/lib/frameworks/sproutcore/frameworks/datastore/system/query.js +14 -4
- data/lib/frameworks/sproutcore/frameworks/datastore/system/record_array.js +82 -42
- data/lib/frameworks/sproutcore/frameworks/datastore/system/store.js +272 -177
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/integration/store_interaction_test.js +54 -0
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/datetime_recordattribute.js +24 -16
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/many_attribute.js +6 -3
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/data_store.js +267 -35
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record.js +57 -46
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_array.js +150 -53
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_array_complex.js +57 -17
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/nested_records/nested_record_complex.js +13 -9
- data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/many.js +2 -2
- data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/simple.js +0 -0
- data/lib/frameworks/sproutcore/frameworks/{experimental/frameworks/polymorphism → datastore}/tests/models/polymorphism/single.js +12 -2
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/record/writeAttribute.js +20 -15
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/models/record_attribute.js +9 -2
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/many_array/core_methods.js +80 -14
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/autonomous_dataSourceCallbacks.js +280 -0
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/autonomous_pushChanges.js +232 -0
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/nested_store/chain.js +31 -5
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/query/parse.js +16 -2
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/store/core_methods.js +60 -40
- data/lib/frameworks/sproutcore/frameworks/datastore/tests/system/store/materializeRecord.js +78 -0
- data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/core/system/datetime.js +13 -1
- data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/core/tests/system/datetime.js +20 -0
- data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/localized/{resources → english.lproj}/strings.js +0 -0
- data/lib/frameworks/sproutcore/frameworks/datetime/frameworks/localized/french.lproj/strings.js +45 -0
- data/lib/frameworks/sproutcore/frameworks/designer/designers/object_designer.js +7 -3
- data/lib/frameworks/sproutcore/frameworks/desktop/mixins/collection_row_delegate.js +125 -44
- data/lib/frameworks/sproutcore/frameworks/desktop/panes/alert.js +139 -48
- data/lib/frameworks/sproutcore/frameworks/desktop/panes/draggable.js +202 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/panes/menu.js +59 -56
- data/lib/frameworks/sproutcore/frameworks/desktop/panes/palette.js +13 -49
- data/lib/frameworks/sproutcore/frameworks/desktop/panes/picker.js +466 -305
- data/lib/frameworks/sproutcore/frameworks/desktop/protocols/drag_source.js +49 -12
- data/lib/frameworks/sproutcore/frameworks/desktop/render_delegates/slider.js +79 -21
- data/lib/frameworks/sproutcore/frameworks/desktop/render_delegates/split.js +12 -2
- data/lib/frameworks/sproutcore/frameworks/desktop/resources/menu_item_view.css +8 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/resources/overlay-scroller.css +187 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/system/drag.js +94 -30
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/alert/ui.js +163 -3
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/methods.js +97 -78
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/menu/ui.js +61 -1
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/panel/methods.js +7 -3
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/panel/ui.js +47 -22
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/picker/methods.js +66 -9
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/picker/ui.js +21 -11
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/panes/sheet/ui.js +12 -18
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/button/methods.js +17 -14
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/button/ui.js +2 -1
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/checkbox/methods.js +9 -6
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/collection_fast_path.js +54 -21
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/content.js +52 -20
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/itemViewForContentIndex.js +94 -4
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/keyboard.js +177 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/layerIdFor.js +13 -1
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/length.js +9 -9
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/collection/mouse.js +18 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/date_field/methods.js +104 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/disclosure/ui.js +48 -49
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/grid/drag_and_drop.js +22 -18
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/grid/methods.js +17 -5
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/link_view_test.js +136 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/contentIndexesInRect.js +77 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/drag_and_drop.js +53 -16
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/layoutForContentIndex.js +41 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowDelegate.js +25 -25
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/rowOffsetForContentIndex.js +102 -27
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/{rowHeightForContentIndex.js → rowSizeForContentIndex.js} +7 -6
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_outline.js +2 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_row_heights.js +70 -75
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list/ui_simple.js +29 -30
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/list_item.js +57 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/menu_scroll_view/menu_scroll_view_test.js +206 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/progress/ui.js +15 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/radio/methods.js +15 -7
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/integration.js +16 -11
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/methods.js +164 -12
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/scale.js +387 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/touch.js +549 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroll/ui.js +214 -45
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/scroller.js +5 -5
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/methods.js +73 -22
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/segmented/ui.js +88 -3
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select/methods.js +8 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/slider/methods.js +16 -1
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/slider/ui.js +54 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/split/dividers.js +21 -2
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/static_content.js +31 -25
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/tab/methods.js +109 -29
- data/lib/frameworks/sproutcore/frameworks/desktop/views/button.js +10 -1
- data/lib/frameworks/sproutcore/frameworks/desktop/views/checkbox.js +3 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/views/collection.js +779 -603
- data/lib/frameworks/sproutcore/frameworks/desktop/views/date_field.js +106 -7
- data/lib/frameworks/sproutcore/frameworks/desktop/views/link_view.js +406 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/views/list.js +437 -245
- data/lib/frameworks/sproutcore/frameworks/desktop/views/list_item.js +13 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_item.js +124 -62
- data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_scroll.js +176 -597
- data/lib/frameworks/sproutcore/frameworks/desktop/views/menu_scroller_view.js +206 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/views/popup_button.js +3 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/views/progress.js +5 -4
- data/lib/frameworks/sproutcore/frameworks/desktop/views/radio.js +3 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/views/scene.js +56 -158
- data/lib/frameworks/sproutcore/frameworks/desktop/views/scroll_view.js +2560 -0
- data/lib/frameworks/sproutcore/frameworks/desktop/views/scroller.js +458 -242
- data/lib/frameworks/sproutcore/frameworks/desktop/views/segmented.js +117 -54
- data/lib/frameworks/sproutcore/frameworks/desktop/views/select.js +18 -12
- data/lib/frameworks/sproutcore/frameworks/desktop/views/slider.js +162 -34
- data/lib/frameworks/sproutcore/frameworks/desktop/views/split.js +30 -15
- data/lib/frameworks/sproutcore/frameworks/desktop/views/split_divider.js +33 -7
- data/lib/frameworks/sproutcore/frameworks/desktop/views/static_content.js +22 -2
- data/lib/frameworks/sproutcore/frameworks/desktop/views/tab.js +47 -22
- data/lib/frameworks/sproutcore/frameworks/experimental/Buildfile +0 -6
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/forms/views/form.js +2 -1
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/forms/views/form_row.js +21 -21
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/ext/menu.js +14 -3
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/mixins/select_view_menu.js +24 -10
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/ext/menu_resizing.js +1 -1
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/mixins/select_view_menu/bindings.js +7 -4
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/mixins/select_view_menu/check_selected.js +7 -9
- data/lib/frameworks/sproutcore/frameworks/{desktop/tests/panes/select_button/methods.js → experimental/frameworks/select_view/tests/views/select/method.js} +54 -76
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/tests/views/select/selected_item.js +35 -0
- data/lib/frameworks/sproutcore/frameworks/{desktop/tests/panes/select_button → experimental/frameworks/select_view/tests/views/select}/ui.js +107 -36
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/select_view/views/select.js +225 -66
- data/lib/frameworks/sproutcore/frameworks/foundation/controllers/tree.js +39 -38
- data/lib/frameworks/sproutcore/frameworks/foundation/core.js +5 -18
- data/lib/frameworks/sproutcore/frameworks/foundation/debug/control_test_pane.js +12 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/english.lproj/inflections.js +84 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/french.lproj/inflections.js +41 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/mixins/auto_mixin.js +1 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/mixins/auto_resize.js +7 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/mixins/content_display.js +3 -4
- data/lib/frameworks/sproutcore/frameworks/foundation/mixins/flowed_layout.js +6 -2
- data/lib/frameworks/sproutcore/frameworks/foundation/private/tree_item_observer.js +408 -239
- data/lib/frameworks/sproutcore/frameworks/foundation/render_delegates/canvas_image.js +1 -1
- data/lib/frameworks/sproutcore/frameworks/foundation/resources/text_field.css +2 -1
- data/lib/frameworks/sproutcore/frameworks/foundation/spanish.lproj/inflections.js +38 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/system/benchmark.js +104 -76
- data/lib/frameworks/sproutcore/frameworks/foundation/system/string.js +20 -94
- data/lib/frameworks/sproutcore/frameworks/foundation/system/text_selection.js +33 -22
- data/lib/frameworks/sproutcore/frameworks/foundation/system/undo_manager.js +475 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/auto_resize_test.js +163 -1
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/flowed_layout/tests.js +41 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/mixins/staticLayout.js +2 -5
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/private/tree_item_observer/methods.js +268 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/system/undo_manager.js +231 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/container/ui.js +16 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/image/ui.js +27 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/methods.js +24 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/tests/views/text_field/ui.js +135 -6
- data/lib/frameworks/sproutcore/frameworks/foundation/transitions/fade_transition.js +6 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/transitions/pop_transition.js +7 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/transitions/scale_transition.js +6 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/transitions/slide_transition.js +4 -0
- data/lib/frameworks/sproutcore/frameworks/foundation/transitions/swap_dissolve_transition.js +3 -1
- data/lib/frameworks/sproutcore/frameworks/foundation/validators/credit_card.js +21 -21
- data/lib/frameworks/sproutcore/frameworks/foundation/views/container.js +65 -15
- data/lib/frameworks/sproutcore/frameworks/foundation/views/image.js +4 -1
- data/lib/frameworks/sproutcore/frameworks/foundation/views/label.js +1 -1
- data/lib/frameworks/sproutcore/frameworks/foundation/views/text_field.js +193 -213
- data/lib/frameworks/sproutcore/frameworks/jquery/{jquery-1.8.3-patched.js → jquery-1.11.1.js} +7507 -6684
- data/lib/frameworks/sproutcore/frameworks/routing/system/routes.js +28 -11
- data/lib/frameworks/sproutcore/frameworks/routing/tests/system/routes.js +26 -0
- data/lib/frameworks/sproutcore/frameworks/runtime/core.js +54 -25
- data/lib/frameworks/sproutcore/frameworks/runtime/ext/array.js +0 -6
- data/lib/frameworks/sproutcore/frameworks/runtime/ext/number.js +36 -0
- data/lib/frameworks/sproutcore/frameworks/runtime/ext/window.js +25 -0
- data/lib/frameworks/sproutcore/frameworks/runtime/mixins/array.js +3 -3
- data/lib/frameworks/sproutcore/frameworks/runtime/mixins/enumerable.js +1 -1
- data/lib/frameworks/sproutcore/frameworks/runtime/mixins/observable.js +156 -66
- data/lib/frameworks/sproutcore/frameworks/runtime/private/observer_set.js +2 -2
- data/lib/frameworks/sproutcore/frameworks/runtime/system/binding.js +150 -65
- data/lib/frameworks/sproutcore/frameworks/runtime/system/index_set.js +57 -11
- data/lib/frameworks/sproutcore/frameworks/runtime/system/object.js +68 -49
- data/lib/frameworks/sproutcore/frameworks/runtime/system/run_loop.js +14 -6
- data/lib/frameworks/sproutcore/frameworks/runtime/system/string.js +23 -23
- data/lib/frameworks/sproutcore/frameworks/runtime/tests/ext/number_test.js +44 -0
- data/lib/frameworks/sproutcore/frameworks/runtime/tests/mixins/array.js +0 -10
- data/lib/frameworks/sproutcore/frameworks/runtime/tests/mixins/enumerable/enumerable.js +340 -285
- data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/binding.js +104 -3
- data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/observer_set.js +14 -1
- data/lib/frameworks/sproutcore/frameworks/runtime/tests/system/string.js +15 -2
- data/lib/frameworks/sproutcore/frameworks/statechart/system/state.js +21 -18
- data/lib/frameworks/sproutcore/frameworks/statechart/system/statechart.js +52 -19
- data/lib/frameworks/sproutcore/frameworks/statechart/tests/event_handling/responder/pane.js +27 -24
- data/lib/frameworks/sproutcore/frameworks/template_view/controls/button.js +30 -0
- data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/bind.js +1 -1
- data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/collection.js +2 -0
- data/lib/frameworks/sproutcore/frameworks/template_view/ext/handlebars/view.js +1 -0
- data/lib/frameworks/sproutcore/frameworks/template_view/tests/mixins/template_helpers/checkbox_support.js +2 -2
- data/lib/frameworks/sproutcore/frameworks/template_view/tests/views/template/handlebars.js +4 -2
- data/lib/frameworks/sproutcore/frameworks/template_view/views/bindable_span.js +1 -1
- data/lib/frameworks/sproutcore/frameworks/template_view/views/template_collection.js +16 -14
- data/lib/frameworks/sproutcore/frameworks/testing/core.js +5 -3
- data/lib/frameworks/sproutcore/frameworks/testing/system/plan.js +13 -0
- data/lib/frameworks/sproutcore/lib/index.rhtml +2 -2
- data/lib/frameworks/sproutcore/phantomjs/test_runner.js +28 -7
- data/lib/frameworks/sproutcore/scripts/run_sc_server_master.sh +1 -1
- data/lib/frameworks/sproutcore/themes/ace/resources/_variables.css +2 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/disclosure/ace/disclosure.css +1 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/picker/popover/popover.css +3 -4
- data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal.css +15 -15
- data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal_overlay.css +74 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical.css +11 -13
- data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical_overlay.css +74 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob-active.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob-active@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/knob@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/{22px → jumbo}/slider.css +9 -4
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/track.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/jumbo/track@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob-active.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob-active@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/knob@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/slider.css +32 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/track.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/regular/track@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/slider.css +13 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob-active.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob-active@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/knob@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/slider.css +32 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/track.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/small/track@2x.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/split/split.css +2 -3
- data/lib/sproutcore/builders/chance_file.rb +3 -3
- data/lib/sproutcore/helpers/minifier.rb +1 -0
- data/vendor/chance/lib/chance/instance.rb +34 -34
- data/vendor/chance/lib/chance/instance/spriting.rb +21 -16
- metadata +81 -58
- data/lib/frameworks/sproutcore/frameworks/core_foundation/panes/visibility.js +0 -17
- data/lib/frameworks/sproutcore/frameworks/desktop/mixins/collection_fast_path.js +0 -710
- data/lib/frameworks/sproutcore/frameworks/desktop/mixins/scrollable.js +0 -267
- data/lib/frameworks/sproutcore/frameworks/desktop/resources/touch-scroller.css +0 -196
- data/lib/frameworks/sproutcore/frameworks/desktop/system/undo_manager.js +0 -224
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/methods.js +0 -163
- data/lib/frameworks/sproutcore/frameworks/desktop/tests/views/select_field/ui.js +0 -177
- data/lib/frameworks/sproutcore/frameworks/desktop/views/scroll.js +0 -2053
- data/lib/frameworks/sproutcore/frameworks/desktop/views/select_button.js +0 -1024
- data/lib/frameworks/sproutcore/frameworks/desktop/views/select_field.js +0 -404
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/render_delegates/menu_scroller.js +0 -28
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/tests/menu/scroll.js +0 -235
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/views/menu/scroll.js +0 -363
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/menu/views/menu/scroller.js +0 -250
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/polymorphism/README.md +0 -47
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/polymorphism/models/record.js +0 -134
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/desktop_scroller.js +0 -92
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/native_scroll.js +0 -25
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/scroll.js +0 -33
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/render_delegates/touch_scroller.js +0 -76
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/integration.js +0 -25
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/methods.js +0 -143
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/tests/scroll/ui.js +0 -256
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/core_scroll.js +0 -1164
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/core_scroller.js +0 -332
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/desktop/scroll.js +0 -236
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/desktop/scroller.js +0 -347
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/scroll.js +0 -15
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/scroller.js +0 -10
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/touch/scroll.js +0 -804
- data/lib/frameworks/sproutcore/frameworks/experimental/frameworks/scroll_view/views/touch/scroller.js +0 -133
- data/lib/frameworks/sproutcore/frameworks/foundation/tasks/preload_bundle.js +0 -41
- data/lib/frameworks/sproutcore/themes/ace/resources/scroller/horizontal/horizontal_touch.css +0 -91
- data/lib/frameworks/sproutcore/themes/ace/resources/scroller/vertical/vertical_touch.css +0 -92
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/knob.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/knob_active.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/14px/slider.css +0 -27
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/knob.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/knob_active.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/16px/slider.css +0 -27
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/knob.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/knob_active.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/22px/track.png +0 -0
- data/lib/frameworks/sproutcore/themes/ace/resources/slider/ace/track.png +0 -0
@@ -356,6 +356,9 @@ SC.ListItemView = SC.View.extend(SC.InlineEditable, SC.Control,
|
|
356
356
|
button.
|
357
357
|
*/
|
358
358
|
mouseDown: function (evt) {
|
359
|
+
// Fast path, reject secondary clicks.
|
360
|
+
if (evt.which && evt.which !== 1) return false;
|
361
|
+
|
359
362
|
// if content is not editable, then always let collection view handle the
|
360
363
|
// event.
|
361
364
|
if (!this.get('contentIsEditable')) return NO;
|
@@ -556,6 +559,16 @@ SC.ListItemView = SC.View.extend(SC.InlineEditable, SC.Control,
|
|
556
559
|
/** @private */
|
557
560
|
_removeRightIconActiveState: function () {
|
558
561
|
this.$('img.right-icon').removeClass('active');
|
562
|
+
|
563
|
+
var pane = this.get('pane'),
|
564
|
+
del = this.displayDelegate,
|
565
|
+
target = this.getDelegateProperty('rightIconTarget', del),
|
566
|
+
action = this.getDelegateProperty('rightIconAction', del);
|
567
|
+
|
568
|
+
if (action && pane) {
|
569
|
+
pane.rootResponder.sendAction(action, target, this, pane);
|
570
|
+
}
|
571
|
+
|
559
572
|
},
|
560
573
|
|
561
574
|
/** @private
|
@@ -4,16 +4,15 @@
|
|
4
4
|
// Portions ©2008-2011 Apple Inc. All rights reserved.
|
5
5
|
// License: Licensed under MIT license (see license.js)
|
6
6
|
// ==========================================================================
|
7
|
-
|
8
|
-
sc_require('views/button');
|
9
7
|
sc_require('views/separator');
|
10
8
|
|
9
|
+
|
11
10
|
/**
|
12
11
|
@class
|
13
12
|
|
14
13
|
An SC.MenuItemView is created for every item in a menu.
|
15
14
|
|
16
|
-
@extends SC.
|
15
|
+
@extends SC.View
|
17
16
|
@since SproutCore 1.0
|
18
17
|
*/
|
19
18
|
SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
@@ -31,8 +30,7 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
31
30
|
@default ['title', 'isEnabled', 'isSeparator', 'isChecked']
|
32
31
|
@see SC.View#displayProperties
|
33
32
|
*/
|
34
|
-
displayProperties: ['title', 'isEnabled', 'isSeparator', 'isChecked'],
|
35
|
-
|
33
|
+
displayProperties: ['title', 'toolTip', 'isEnabled', 'icon', 'isSeparator', 'shortcut', 'isChecked'],
|
36
34
|
|
37
35
|
/**
|
38
36
|
The WAI-ARIA role for menu items.
|
@@ -83,50 +81,97 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
83
81
|
content: null,
|
84
82
|
|
85
83
|
/**
|
86
|
-
|
84
|
+
The title from the content property.
|
87
85
|
|
88
|
-
@
|
89
|
-
@type Boolean
|
90
|
-
@observes content
|
86
|
+
@type String
|
91
87
|
*/
|
92
|
-
|
93
|
-
|
94
|
-
|
88
|
+
title: function () {
|
89
|
+
var ret = this.getContentProperty('itemTitleKey'),
|
90
|
+
localize = this.getPath('parentMenu.localize');
|
91
|
+
|
92
|
+
if (localize && ret) ret = SC.String.loc(ret);
|
93
|
+
|
94
|
+
return ret || '';
|
95
|
+
}.property().cacheable(),
|
96
|
+
|
97
|
+
/**
|
98
|
+
The value from the content property.
|
99
|
+
|
100
|
+
@type String
|
101
|
+
*/
|
102
|
+
value: function () {
|
103
|
+
return this.getContentProperty('itemValueKey');
|
104
|
+
}.property().cacheable(),
|
95
105
|
|
96
106
|
/**
|
97
|
-
|
107
|
+
The tooltip from the content property.
|
108
|
+
|
109
|
+
@type String
|
110
|
+
*/
|
111
|
+
toolTip: function () {
|
112
|
+
var ret = this.getContentProperty('itemToolTipKey'),
|
113
|
+
localize = this.getPath('parentMenu.localize');
|
114
|
+
|
115
|
+
if (localize && ret) ret = SC.String.loc(ret);
|
116
|
+
|
117
|
+
return ret || '';
|
118
|
+
}.property().cacheable(),
|
119
|
+
|
120
|
+
/**
|
121
|
+
Whether the item is enabled or not.
|
122
|
+
|
98
123
|
@type Boolean
|
99
|
-
@observes content.isEnabled
|
100
124
|
*/
|
101
125
|
isEnabled: function () {
|
102
126
|
return this.getContentProperty('itemIsEnabledKey') !== NO &&
|
103
127
|
this.getContentProperty('itemSeparatorKey') !== YES;
|
104
|
-
}.property(
|
128
|
+
}.property().cacheable(),
|
129
|
+
|
130
|
+
/**
|
131
|
+
The icon from the content property.
|
132
|
+
|
133
|
+
@type String
|
134
|
+
*/
|
135
|
+
icon: function () {
|
136
|
+
return this.getContentProperty('itemIconKey');
|
137
|
+
}.property().cacheable(),
|
138
|
+
|
139
|
+
/**
|
140
|
+
YES if this menu item represents a separator, NO otherwise.
|
141
|
+
|
142
|
+
@type Boolean
|
143
|
+
*/
|
144
|
+
isSeparator: function () {
|
145
|
+
return this.getContentProperty('itemSeparatorKey') === YES;
|
146
|
+
}.property().cacheable(),
|
147
|
+
|
148
|
+
/**
|
149
|
+
The shortcut from the content property.
|
150
|
+
|
151
|
+
@type String
|
152
|
+
*/
|
153
|
+
shortcut: function () {
|
154
|
+
return this.getContentProperty('itemShortCutKey');
|
155
|
+
}.property().cacheable(),
|
105
156
|
|
106
157
|
/**
|
107
158
|
YES if the menu item should include a check next to it.
|
108
159
|
|
109
160
|
@type Boolean
|
110
|
-
@property
|
111
161
|
*/
|
112
162
|
isChecked: function () {
|
113
163
|
return this.getContentProperty('itemCheckboxKey');
|
114
|
-
}.property(),
|
164
|
+
}.property().cacheable(),
|
115
165
|
|
116
166
|
/**
|
117
167
|
This menu item's submenu, if it exists.
|
118
168
|
|
119
|
-
@
|
120
|
-
@type SC.MenuView
|
121
|
-
@observes content
|
169
|
+
@type SC.MenuPane
|
122
170
|
*/
|
123
171
|
subMenu: function () {
|
124
|
-
var
|
125
|
-
|
126
|
-
if (!content) return null;
|
172
|
+
var parentMenu = this.get('parentMenu'),
|
173
|
+
menuItems = this.getContentProperty('itemSubMenuKey');
|
127
174
|
|
128
|
-
parentMenu = this.get('parentMenu');
|
129
|
-
menuItems = content.get(parentMenu.itemSubMenuKey);
|
130
175
|
if (menuItems) {
|
131
176
|
if (SC.kindOf(menuItems, SC.MenuPane)) {
|
132
177
|
menuItems.set('isModal', NO);
|
@@ -134,7 +179,16 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
134
179
|
menuItems.set('parentMenu', parentMenu);
|
135
180
|
return menuItems;
|
136
181
|
} else {
|
137
|
-
|
182
|
+
var subMenu = this._subMenu;
|
183
|
+
if (subMenu) {
|
184
|
+
if (subMenu.get('isAttached')) {
|
185
|
+
this.invokeLast('showSubMenu');
|
186
|
+
}
|
187
|
+
subMenu.remove();
|
188
|
+
subMenu.destroy();
|
189
|
+
}
|
190
|
+
|
191
|
+
subMenu = this._subMenu = SC.MenuPane.create({
|
138
192
|
layout: { width: 200 },
|
139
193
|
items: menuItems,
|
140
194
|
isModal: NO,
|
@@ -143,27 +197,48 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
143
197
|
controlSize: parentMenu.get('controlSize'),
|
144
198
|
exampleView: parentMenu.get('exampleView')
|
145
199
|
});
|
200
|
+
return subMenu;
|
146
201
|
}
|
147
202
|
}
|
148
203
|
|
149
204
|
return null;
|
150
|
-
}.property(
|
205
|
+
}.property().cacheable(),
|
151
206
|
|
152
207
|
/**
|
153
208
|
@type Boolean
|
154
209
|
@default NO
|
155
|
-
@observes subMenu
|
156
210
|
*/
|
157
211
|
hasSubMenu: function () {
|
158
212
|
return !!this.get('subMenu');
|
159
213
|
}.property('subMenu').cacheable(),
|
160
214
|
|
215
|
+
/** @private */
|
216
|
+
getContentProperty: function (property) {
|
217
|
+
var content = this.get('content'),
|
218
|
+
menu = this.get('parentMenu');
|
219
|
+
|
220
|
+
if (content && menu) {
|
221
|
+
return content.get(menu.get(property));
|
222
|
+
}
|
223
|
+
},
|
224
|
+
|
161
225
|
/** @private */
|
162
226
|
init: function () {
|
163
227
|
sc_super();
|
164
228
|
this.contentDidChange();
|
165
229
|
},
|
166
230
|
|
231
|
+
/** @private */
|
232
|
+
destroy: function () {
|
233
|
+
sc_super();
|
234
|
+
|
235
|
+
var subMenu = this._subMenu;
|
236
|
+
if (subMenu) {
|
237
|
+
subMenu.destroy();
|
238
|
+
this._subMenu = null;
|
239
|
+
}
|
240
|
+
},
|
241
|
+
|
167
242
|
/** SC.MenuItemView is not able to update itself in place at this time. */
|
168
243
|
// TODO: add update: support.
|
169
244
|
isReusable: false,
|
@@ -182,7 +257,8 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
182
257
|
val,
|
183
258
|
menu = this.get('parentMenu'),
|
184
259
|
itemWidth = this.get('itemWidth') || menu.layout.width,
|
185
|
-
itemHeight = this.get('itemHeight') || SC.DEFAULT_MENU_ITEM_HEIGHT
|
260
|
+
itemHeight = this.get('itemHeight') || SC.DEFAULT_MENU_ITEM_HEIGHT,
|
261
|
+
escapeHTML = this.get('escapeHTML');
|
186
262
|
|
187
263
|
this.set('itemWidth', itemWidth);
|
188
264
|
this.set('itemHeight', itemHeight);
|
@@ -203,7 +279,7 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
203
279
|
context.push('<span class="separator"></span>');
|
204
280
|
context.addClass('disabled');
|
205
281
|
} else {
|
206
|
-
val =
|
282
|
+
val = this.get('icon');
|
207
283
|
if (val) {
|
208
284
|
this.renderImage(context, val);
|
209
285
|
context.addClass('has-icon');
|
@@ -213,6 +289,13 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
213
289
|
if (SC.typeOf(val) !== SC.T_STRING) val = val.toString();
|
214
290
|
this.renderLabel(context, val);
|
215
291
|
|
292
|
+
val = this.get('toolTip');
|
293
|
+
if (SC.typeOf(val) !== SC.T_STRING) val = val.toString();
|
294
|
+
if (escapeHTML) {
|
295
|
+
val = SC.RenderContext.escapeHTML(val);
|
296
|
+
}
|
297
|
+
context.setAttr('title', val);
|
298
|
+
|
216
299
|
if (this.get('isChecked')) {
|
217
300
|
context.push('<div class="checkbox"></div>');
|
218
301
|
}
|
@@ -221,7 +304,7 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
221
304
|
this.renderBranch(context);
|
222
305
|
}
|
223
306
|
|
224
|
-
val = this.
|
307
|
+
val = this.get('shortcut');
|
225
308
|
if (val) {
|
226
309
|
this.renderShortcut(context, val);
|
227
310
|
}
|
@@ -298,7 +381,7 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
298
381
|
*/
|
299
382
|
showSubMenu: function () {
|
300
383
|
var subMenu = this.get('subMenu');
|
301
|
-
if (subMenu) {
|
384
|
+
if (subMenu && !subMenu.get('isAttached')) {
|
302
385
|
subMenu.set('mouseHasEntered', NO);
|
303
386
|
subMenu.popup(this, [0, 0, 0]);
|
304
387
|
}
|
@@ -306,33 +389,6 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
306
389
|
this._subMenuTimer = null;
|
307
390
|
},
|
308
391
|
|
309
|
-
/**
|
310
|
-
The title from the content property.
|
311
|
-
|
312
|
-
@field
|
313
|
-
@type String
|
314
|
-
@observes content.title
|
315
|
-
*/
|
316
|
-
title: function () {
|
317
|
-
var ret = this.getContentProperty('itemTitleKey'),
|
318
|
-
localize = this.getPath('parentMenu.localize');
|
319
|
-
|
320
|
-
if (localize && ret) ret = SC.String.loc(ret);
|
321
|
-
|
322
|
-
return ret || '';
|
323
|
-
}.property('content.title').cacheable(),
|
324
|
-
|
325
|
-
/** @private */
|
326
|
-
getContentProperty: function (property) {
|
327
|
-
var content = this.get('content'),
|
328
|
-
menu = this.get('parentMenu');
|
329
|
-
|
330
|
-
if (content) {
|
331
|
-
return content.get(menu.get(property));
|
332
|
-
}
|
333
|
-
},
|
334
|
-
|
335
|
-
|
336
392
|
//..........................................
|
337
393
|
// Mouse Events Handling
|
338
394
|
//
|
@@ -454,7 +510,8 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
454
510
|
|
455
511
|
/** @private*/
|
456
512
|
mouseDown: function (evt) {
|
457
|
-
|
513
|
+
// Accept primary clicks only.
|
514
|
+
return evt.which === 1;
|
458
515
|
},
|
459
516
|
|
460
517
|
/** @private */
|
@@ -730,8 +787,13 @@ SC.MenuItemView = SC.View.extend(SC.ContentDisplay,
|
|
730
787
|
this mapping.
|
731
788
|
*/
|
732
789
|
SC.MenuItemView._contentPropertyToMenuItemPropertyMapping = {
|
733
|
-
itemTitleKey:
|
790
|
+
itemTitleKey: 'title',
|
791
|
+
itemValueKey: 'value',
|
792
|
+
itemToolTipKey: 'toolTip',
|
734
793
|
itemIsEnabledKey: 'isEnabled',
|
794
|
+
itemIconKey: 'icon',
|
735
795
|
itemSeparatorKey: 'isSeparator',
|
736
|
-
|
796
|
+
itemShortCutKey: 'shortcut',
|
797
|
+
itemCheckboxKey: 'isChecked',
|
798
|
+
itemSubMenuKey: 'subMenu'
|
737
799
|
};
|
@@ -4,283 +4,7 @@
|
|
4
4
|
// Portions ©2008-2011 Apple Inc. All rights reserved.
|
5
5
|
// License: Licensed under MIT license (see license.js)
|
6
6
|
// ==========================================================================
|
7
|
-
|
8
|
-
sc_require('views/scroll');
|
9
|
-
|
10
|
-
/** @class
|
11
|
-
|
12
|
-
Implements a complete scroller view for menus. This class implements the
|
13
|
-
arrows displayed in a menu to scroll.
|
14
|
-
|
15
|
-
The main difference with SC.ScrollerView is that there is only vertical
|
16
|
-
scrollers. Value Syncing between SC.MenuScrollView and SC.MenuScrollerView
|
17
|
-
is done using valueBinding.
|
18
|
-
|
19
|
-
@extends SC.ScrollerView
|
20
|
-
@since SproutCore 1.0
|
21
|
-
*/
|
22
|
-
SC.MenuScrollerView = SC.ScrollerView.extend(
|
23
|
-
/** @scope SC.MenuScrollerView.prototype */ {
|
24
|
-
|
25
|
-
/**
|
26
|
-
@type Array
|
27
|
-
@default ['sc-menu-scroller-view']
|
28
|
-
@see SC.View#classNames
|
29
|
-
*/
|
30
|
-
classNames: ['sc-menu-scroller-view'],
|
31
|
-
|
32
|
-
// ..........................................................
|
33
|
-
// PROPERTIES
|
34
|
-
//
|
35
|
-
|
36
|
-
/**
|
37
|
-
Used to set the scrolling direction of the scroller.
|
38
|
-
|
39
|
-
@type Boolean
|
40
|
-
@default NO
|
41
|
-
*/
|
42
|
-
scrollDown: NO,
|
43
|
-
|
44
|
-
/**
|
45
|
-
The scroller offset value. This value will adjust between the minimum
|
46
|
-
and maximum values that you set. Default is 0.
|
47
|
-
|
48
|
-
@field
|
49
|
-
@type Number
|
50
|
-
@observes maximum
|
51
|
-
*/
|
52
|
-
value: function (key, val) {
|
53
|
-
if (val !== undefined) {
|
54
|
-
// Don't enforce the maximum now, because the scroll view could change
|
55
|
-
// height and we want our content to stay put when it does.
|
56
|
-
this._value = val;
|
57
|
-
} else {
|
58
|
-
var value = this._value || 0; // default value is at top/left
|
59
|
-
return Math.min(value, this.get('maximum'));
|
60
|
-
}
|
61
|
-
}.property('maximum').cacheable(),
|
62
|
-
|
63
|
-
/**
|
64
|
-
The maximum offset value for the scroller. This will be used to calculate
|
65
|
-
the internal height/width of the scroller itself. It is not necessarily
|
66
|
-
the same as the height of a scroll view's content view.
|
67
|
-
|
68
|
-
When set less than the height of the scroller, the scroller is disabled.
|
69
|
-
|
70
|
-
@type Number
|
71
|
-
@default 0
|
72
|
-
*/
|
73
|
-
maximum: 0,
|
74
|
-
|
75
|
-
/**
|
76
|
-
YES if enable scrollbar, NO to disable it. Scrollbars will automatically
|
77
|
-
disable if the maximum scroll width does not exceed their capacity.
|
78
|
-
|
79
|
-
@type Boolean
|
80
|
-
@default YES
|
81
|
-
*/
|
82
|
-
isEnabled: YES,
|
83
|
-
|
84
|
-
/**
|
85
|
-
Determine the layout direction. Determines whether the scrollbar should
|
86
|
-
appear horizontal or vertical. This must be set when the view is created.
|
87
|
-
Changing this once the view has been created will have no effect. Possible
|
88
|
-
values:
|
89
|
-
|
90
|
-
- SC.LAYOUT_VERTICAL
|
91
|
-
- SC.LAYOUT_HORIZONTAL
|
92
|
-
|
93
|
-
@type String
|
94
|
-
@default SC.LAYOUT_VERTICAL
|
95
|
-
*/
|
96
|
-
layoutDirection: SC.LAYOUT_VERTICAL,
|
97
|
-
|
98
|
-
/**
|
99
|
-
Amount to scroll one vertical line.
|
100
|
-
|
101
|
-
@type Number
|
102
|
-
@default 20
|
103
|
-
*/
|
104
|
-
verticalLineScroll: 20,
|
105
|
-
|
106
|
-
/**
|
107
|
-
This function overrides the default function in SC.Scroller as
|
108
|
-
menus only have vertical scrolling.
|
109
|
-
|
110
|
-
@field
|
111
|
-
@type String
|
112
|
-
@default 'verticalScrollOffset'
|
113
|
-
*/
|
114
|
-
ownerScrollValueKey: function () {
|
115
|
-
return 'verticalScrollOffset';
|
116
|
-
}.property('layoutDirection').cacheable(),
|
117
|
-
|
118
|
-
|
119
|
-
// ..........................................................
|
120
|
-
// INTERNAL SUPPORT
|
121
|
-
//
|
122
|
-
|
123
|
-
/** @private */
|
124
|
-
init: function () {
|
125
|
-
// Set the scrollerThickness based on controlSize
|
126
|
-
switch (this.get('controlSize')) {
|
127
|
-
case SC.TINY_CONTROL_SIZE:
|
128
|
-
this.set('scrollerThickness', SC.MenuScrollerView.TINY_SCROLLER_THICKNESS);
|
129
|
-
break;
|
130
|
-
case SC.SMALL_CONTROL_SIZE:
|
131
|
-
this.set('scrollerThickness', SC.MenuScrollerView.SMALL_SCROLLER_THICKNESS);
|
132
|
-
break;
|
133
|
-
case SC.REGULAR_CONTROL_SIZE:
|
134
|
-
this.set('scrollerThickness', SC.MenuScrollerView.REGULAR_SCROLLER_THICKNESS);
|
135
|
-
break;
|
136
|
-
case SC.LARGE_CONTROL_SIZE:
|
137
|
-
this.set('scrollerThickness', SC.MenuScrollerView.LARGE_SCROLLER_THICKNESS);
|
138
|
-
break;
|
139
|
-
case SC.HUGE_CONTROL_SIZE:
|
140
|
-
this.set('scrollerThickness', SC.MenuScrollerView.HUGE_SCROLLER_THICKNESS);
|
141
|
-
break;
|
142
|
-
}
|
143
|
-
|
144
|
-
return sc_super();
|
145
|
-
},
|
146
|
-
|
147
|
-
/** @private */
|
148
|
-
render: function (context, firstTime) {
|
149
|
-
context.addClass('sc-vertical');
|
150
|
-
context.addClass(this.get('controlSize'));
|
151
|
-
if (firstTime) {
|
152
|
-
var direction = this.get('scrollDown') ? 'arrowDown' : 'arrowUp';
|
153
|
-
context.push('<span class="scrollArrow ' + direction + '"> </span>');
|
154
|
-
}
|
155
|
-
},
|
156
|
-
|
157
|
-
/** @private */
|
158
|
-
willDestroyLayer: function () {
|
159
|
-
var callback = this._sc_scroller_scrollDidChange;
|
160
|
-
SC.Event.remove(this.$(), 'scroll', this, callback);
|
161
|
-
},
|
162
|
-
|
163
|
-
/** @private */
|
164
|
-
mouseEntered: function (evt) {
|
165
|
-
this.set('isMouseOver', YES);
|
166
|
-
this._invokeScrollOnMouseOver();
|
167
|
-
},
|
168
|
-
|
169
|
-
/** @private */
|
170
|
-
mouseExited: function (evt) {
|
171
|
-
this.set('isMouseOver', NO);
|
172
|
-
},
|
173
|
-
|
174
|
-
/**
|
175
|
-
This function overrides the default function in SC.Scroller.
|
176
|
-
SC.MenuScroller and SC.MenuScroll use valueBinding so this function is
|
177
|
-
not necessary.
|
178
|
-
*/
|
179
|
-
_sc_scroller_valueDidChange: function () {}.observes('value'),
|
180
|
-
|
181
|
-
|
182
|
-
/** @private */
|
183
|
-
_sc_scroller_armScrollTimer: function () {
|
184
|
-
if (!this._sc_scrollTimer) {
|
185
|
-
SC.run(function () {
|
186
|
-
var method = this._sc_scroller_scrollDidChange;
|
187
|
-
this._sc_scrollTimer = this.invokeLater(method, 50);
|
188
|
-
});
|
189
|
-
}
|
190
|
-
},
|
191
|
-
|
192
|
-
/** @private */
|
193
|
-
_sc_scroller_scrollDidChange: function () {
|
194
|
-
var now = Date.now(),
|
195
|
-
last = this._sc_lastScroll,
|
196
|
-
layer = this.get('layer'),
|
197
|
-
scroll = 0;
|
198
|
-
|
199
|
-
if (last && (now - last) < 50) return this._sc_scroller_armScrollTimer();
|
200
|
-
this._sc_scrollTimer = null;
|
201
|
-
this._sc_lastScroll = now;
|
202
|
-
|
203
|
-
SC.run(function () {
|
204
|
-
if (!this.get('isEnabledInPane')) return; // nothing to do.
|
205
|
-
|
206
|
-
this._sc_scrollValue = scroll = layer.scrollTop;
|
207
|
-
this.set('value', scroll); // will now enforce minimum and maximum
|
208
|
-
});
|
209
|
-
},
|
210
|
-
|
211
|
-
|
212
|
-
/** @private
|
213
|
-
Scroll the menu if it is is an up or down arrow. This is called by
|
214
|
-
the function that simulates mouseOver.
|
215
|
-
*/
|
216
|
-
_scrollMenu: function () {
|
217
|
-
var val = this.get('value'), newval;
|
218
|
-
if (this.get('scrollDown')) {
|
219
|
-
newval = val + this.verticalLineScroll;
|
220
|
-
if (newval <= this.get('maximum')) {
|
221
|
-
this.set('value', newval);
|
222
|
-
}
|
223
|
-
} else {
|
224
|
-
newval = val - this.verticalLineScroll;
|
225
|
-
if (newval >= 0) {
|
226
|
-
this.set('value', newval);
|
227
|
-
} else if (val <= this.verticalLineScroll && val > 0) {
|
228
|
-
this.set('value', 0);
|
229
|
-
}
|
230
|
-
}
|
231
|
-
|
232
|
-
return YES;
|
233
|
-
},
|
234
|
-
|
235
|
-
/** @private
|
236
|
-
|
237
|
-
We use this function to simulate mouseOver. It checks for the flag
|
238
|
-
isMouseOver which is turned on when mouseEntered is called and turned off
|
239
|
-
when mouseExited is called.
|
240
|
-
*/
|
241
|
-
_invokeScrollOnMouseOver: function () {
|
242
|
-
this._scrollMenu();
|
243
|
-
if (this.get('isMouseOver')) {
|
244
|
-
this.invokeLater(this._invokeScrollOnMouseOver, 50);
|
245
|
-
}
|
246
|
-
}
|
247
|
-
|
248
|
-
});
|
249
|
-
|
250
|
-
/**
|
251
|
-
@static
|
252
|
-
@type Number
|
253
|
-
@default 18
|
254
|
-
*/
|
255
|
-
SC.MenuScrollerView.REGULAR_SCROLLER_THICKNESS = 18;
|
256
|
-
|
257
|
-
/**
|
258
|
-
@static
|
259
|
-
@type Number
|
260
|
-
@default 10
|
261
|
-
*/
|
262
|
-
SC.MenuScrollerView.TINY_SCROLLER_THICKNESS = 10;
|
263
|
-
|
264
|
-
/**
|
265
|
-
@static
|
266
|
-
@type Number
|
267
|
-
@default 14
|
268
|
-
*/
|
269
|
-
SC.MenuScrollerView.SMALL_SCROLLER_THICKNESS = 14;
|
270
|
-
|
271
|
-
/**
|
272
|
-
@static
|
273
|
-
@type Number
|
274
|
-
@default 23
|
275
|
-
*/
|
276
|
-
SC.MenuScrollerView.LARGE_SCROLLER_THICKNESS = 23;
|
277
|
-
|
278
|
-
/**
|
279
|
-
@static
|
280
|
-
@type Number
|
281
|
-
@default 26
|
282
|
-
*/
|
283
|
-
SC.MenuScrollerView.HUGE_SCROLLER_THICKNESS = 26;
|
7
|
+
sc_require('views/scroll_view');
|
284
8
|
|
285
9
|
|
286
10
|
/** @class
|
@@ -298,390 +22,245 @@ SC.MenuScrollerView.HUGE_SCROLLER_THICKNESS = 26;
|
|
298
22
|
SC.MenuScrollView = SC.ScrollView.extend(
|
299
23
|
/** @scope SC.MenuScrollView.prototype */{
|
300
24
|
|
301
|
-
|
302
|
-
|
303
|
-
@default ['sc-menu-scroll-view']
|
304
|
-
@see SC.View#classNames
|
305
|
-
*/
|
306
|
-
classNames: ['sc-menu-scroll-view'],
|
307
|
-
|
308
|
-
|
309
|
-
// ..........................................................
|
310
|
-
// PROPERTIES
|
311
|
-
//
|
312
|
-
|
313
|
-
|
314
|
-
/**
|
315
|
-
The maximum horizontal scroll offset allowed given the current contentView
|
316
|
-
size and the size of the scroll view. If horizontal scrolling is
|
317
|
-
disabled, this will always return 0.
|
318
|
-
|
319
|
-
@type Number
|
320
|
-
@default 0
|
321
|
-
*/
|
322
|
-
maximumHorizontalScrollOffset: 0,
|
323
|
-
|
324
|
-
|
325
|
-
// ..........................................................
|
326
|
-
// SCROLLERS
|
25
|
+
// ---------------------------------------------------------------------------------------------
|
26
|
+
// Properties
|
327
27
|
//
|
328
28
|
|
329
29
|
/**
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
@type Boolean
|
334
|
-
@default NO
|
335
|
-
*/
|
336
|
-
hasHorizontalScroller: NO,
|
337
|
-
|
338
|
-
/**
|
339
|
-
The horizontal scroller view class. This will be replaced with a view
|
340
|
-
instance when the ScrollView is created unless hasHorizontalScroller is
|
341
|
-
NO.
|
30
|
+
The bottom scroller view class. This will be replaced with a view instance when the
|
31
|
+
MenuScrollView is created unless hasVerticalScroller is false.
|
342
32
|
|
343
33
|
@type SC.View
|
344
34
|
@default SC.MenuScrollerView
|
345
35
|
*/
|
346
|
-
|
36
|
+
bottomScrollerView: SC.MenuScrollerView,
|
347
37
|
|
348
38
|
/**
|
349
|
-
|
350
|
-
property value anytime to show or hide the horizontal scroller. If you
|
351
|
-
do not want to use a horizontal scroller at all, you should instead set
|
352
|
-
hasHorizontalScroller to NO to avoid creating a scroller view in the
|
353
|
-
first place.
|
39
|
+
Returns true if the view has both a vertical scroller and the scroller is visible.
|
354
40
|
|
41
|
+
@field
|
355
42
|
@type Boolean
|
356
|
-
@
|
43
|
+
@readonly
|
44
|
+
@see SC.ScrollView
|
357
45
|
*/
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
46
|
+
canScrollVertical: function () {
|
47
|
+
return !!(this.get('hasVerticalScroller') && // This property isn't bindable.
|
48
|
+
this.get('bottomScrollerView') && // This property isn't bindable.
|
49
|
+
this.get('topScrollerView') && // This property isn't bindable.
|
50
|
+
this.get('isVerticalScrollerVisible'));
|
51
|
+
}.property('isVerticalScrollerVisible').cacheable(),
|
363
52
|
|
364
|
-
|
365
|
-
@
|
53
|
+
/** SC.View.prototype
|
54
|
+
@type Array
|
55
|
+
@default ['sc-menu-scroll-view']
|
56
|
+
@see SC.View#classNames
|
366
57
|
*/
|
367
|
-
|
58
|
+
classNames: ['sc-menu-scroll-view'],
|
368
59
|
|
369
60
|
/**
|
370
|
-
|
371
|
-
smaller than the visible area. You must set hasHorizontalScroller to YES
|
372
|
-
for this property to have any effect.
|
61
|
+
Control Size for Menu content: change verticalLineScroll
|
373
62
|
|
374
|
-
@type
|
375
|
-
@default
|
63
|
+
@type String
|
64
|
+
@default SC.REGULAR_CONTROL_SIZE
|
65
|
+
@see SC.Control
|
376
66
|
*/
|
377
|
-
|
67
|
+
controlSize: SC.REGULAR_CONTROL_SIZE,
|
378
68
|
|
379
69
|
/**
|
380
|
-
YES if the view should maintain a
|
381
|
-
|
70
|
+
YES if the view should maintain a horizontal scroller. This property must be set when the view
|
71
|
+
is created.
|
382
72
|
|
383
73
|
@type Boolean
|
384
|
-
@default
|
74
|
+
@default false
|
75
|
+
@see SC.ScrollView
|
385
76
|
*/
|
386
|
-
|
77
|
+
hasHorizontalScroller: false,
|
387
78
|
|
388
79
|
/**
|
389
|
-
The
|
390
|
-
|
80
|
+
The top scroller view class. This will be replaced with a view instance when the MenuScrollView
|
81
|
+
is created unless hasVerticalScroller is false.
|
391
82
|
|
392
83
|
@type SC.View
|
393
84
|
@default SC.MenuScrollerView
|
394
85
|
*/
|
395
|
-
|
396
|
-
verticalScrollerView2: SC.MenuScrollerView,
|
397
|
-
|
398
|
-
/**
|
399
|
-
YES if the vertical scroller should be visible. For SC.MenuScroll the
|
400
|
-
vertical scroller is always there we just hide the arrows to scroll.
|
401
|
-
|
402
|
-
@type Boolean
|
403
|
-
@default YES
|
404
|
-
*/
|
405
|
-
isVerticalScrollerVisible: YES,
|
406
|
-
|
407
|
-
/**
|
408
|
-
@type Boolean
|
409
|
-
@default YES
|
410
|
-
*/
|
411
|
-
canScrollVertical: YES,
|
412
|
-
|
413
|
-
/**
|
414
|
-
If YES, the vertical scroller will autohide if the contentView is
|
415
|
-
smaller than the visible area. You must set hasVerticalScroller to YES
|
416
|
-
for this property to have any effect.
|
417
|
-
|
418
|
-
@type Boolean
|
419
|
-
@default YES
|
420
|
-
*/
|
421
|
-
autohidesVerticalScroller: YES,
|
422
|
-
|
423
|
-
/**
|
424
|
-
Use this property to set the 'bottom' offset of your vertical scroller,
|
425
|
-
to make room for a thumb view or other accessory view. Default is 0.
|
426
|
-
|
427
|
-
@type Number
|
428
|
-
@default 0
|
429
|
-
*/
|
430
|
-
verticalScrollerBottom: 0,
|
431
|
-
|
86
|
+
topScrollerView: SC.MenuScrollerView,
|
432
87
|
|
433
|
-
//
|
434
|
-
//
|
88
|
+
// ---------------------------------------------------------------------------------------------
|
89
|
+
// Methods
|
435
90
|
//
|
436
91
|
|
437
|
-
/**
|
438
|
-
|
439
|
-
|
440
|
-
@type String
|
441
|
-
@default SC.REGULAR_CONTROL_SIZE
|
442
|
-
*/
|
443
|
-
controlSize: SC.REGULAR_CONTROL_SIZE,
|
444
|
-
|
445
|
-
/**
|
446
|
-
The container view that will contain your main content view. You can
|
447
|
-
replace this property with your own custom subclass if you prefer.
|
448
|
-
|
449
|
-
@type SC.ContainerView
|
450
|
-
@default SC.ContainerView
|
451
|
-
*/
|
452
|
-
containerView: SC.ContainerView,
|
453
|
-
|
454
|
-
// ..........................................................
|
455
|
-
// METHODS
|
456
|
-
//
|
92
|
+
/** @private @see SC.ScrollView. Check frame changes for size changes. */
|
93
|
+
_sc_contentViewFrameDidChange: function () {
|
94
|
+
sc_super();
|
457
95
|
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
if (arguments.length === 0) return sc_super();
|
96
|
+
// Unlike a normal SC.ScrollView, the visibility of the top & bottom scrollers changes as the
|
97
|
+
// scrolling commences. For example, once the user scrolls a tiny bit, we need to show the
|
98
|
+
// top scroller.
|
99
|
+
this._sc_repositionScrollers();
|
100
|
+
},
|
464
101
|
|
465
|
-
|
466
|
-
|
102
|
+
/** @private @see SC.ScrollView. When the content view's size changes, we need to update our scroll offset properties. */
|
103
|
+
_sc_contentViewSizeDidChangeUnfiltered: function () {
|
104
|
+
var hasVerticalScroller = this.get('hasVerticalScroller'),
|
105
|
+
// UNUSED. minimumVerticalScrollOffset = this.get('minimumVerticalScrollOffset'),
|
106
|
+
maximumVerticalScrollOffset = this.get('maximumVerticalScrollOffset');
|
467
107
|
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
if (!vf) return NO; // nothing to do
|
108
|
+
if (hasVerticalScroller) {
|
109
|
+
var bottomScrollerView = this.get('bottomScrollerView'),
|
110
|
+
topScrollerView = this.get('topScrollerView');
|
472
111
|
|
473
|
-
|
474
|
-
|
475
|
-
vf = contentView.convertFrameFromView(vf, view.get('parentView'));
|
112
|
+
topScrollerView.set('maximum', maximumVerticalScrollOffset);
|
113
|
+
bottomScrollerView.set('maximum', maximumVerticalScrollOffset);
|
476
114
|
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
}
|
115
|
+
// Update if the visibility of the scrollers has changed now.
|
116
|
+
var containerHeight = this._sc_containerHeight,
|
117
|
+
contentHeight = this._sc_contentHeight;
|
481
118
|
|
482
|
-
|
483
|
-
|
484
|
-
|
119
|
+
if (this.get('autohidesVerticalScroller')) {
|
120
|
+
this.setIfChanged('isVerticalScrollerVisible', contentHeight > containerHeight);
|
121
|
+
}
|
485
122
|
}
|
486
|
-
|
487
|
-
return this.scrollToRect(vf);
|
488
123
|
},
|
489
124
|
|
490
|
-
/** @private
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
topArrowVisible = { height: scrollerThickness, top: 0, right: 0, left: 0 },
|
520
|
-
bottomArrowVisible = { height: scrollerThickness, bottom: 0, right: 0, left: 0 },
|
521
|
-
bottomArrowInvisible = { height: 0, bottom: 0, right: 0, left: 0 };
|
522
|
-
|
523
|
-
if (elem) viewportHeight = elem.offsetHeight;
|
524
|
-
|
525
|
-
if (verticalOffset === 0) {
|
526
|
-
clipLayout.top = 0;
|
527
|
-
clipLayout.bottom = scrollerThickness;
|
528
|
-
vscroll.set('layout', topArrowInvisible);
|
529
|
-
vscroll2.set('layout', bottomArrowVisible);
|
530
|
-
} else if (verticalOffset >= (height - viewportHeight - scrollerThickness)) {
|
531
|
-
clipLayout.top = scrollerThickness;
|
532
|
-
clipLayout.bottom = 0;
|
533
|
-
vscroll.set('layout', topArrowVisible);
|
534
|
-
vscroll2.set('layout', bottomArrowInvisible);
|
535
|
-
} else {
|
536
|
-
clipLayout.top = scrollerThickness;
|
537
|
-
clipLayout.bottom = scrollerThickness;
|
538
|
-
vscroll.set('layout', topArrowVisible);
|
539
|
-
vscroll2.set('layout', bottomArrowVisible);
|
125
|
+
/** @private @see SC.ScrollView. Re-position the scrollers and content depending on the need to scroll or not. */
|
126
|
+
_sc_repositionScrollersUnfiltered: function () {
|
127
|
+
var hasScroller = this.get('hasVerticalScroller'),
|
128
|
+
containerView = this.get('containerView');
|
129
|
+
|
130
|
+
if (hasScroller && this.get('autohidesVerticalScroller')) {
|
131
|
+
var bottomScrollerView = this.get('bottomScrollerView'),
|
132
|
+
bottomScrollerThickness = bottomScrollerView.get('scrollerThickness'),
|
133
|
+
maximumVerticalScrollOffset = this.get('maximumVerticalScrollOffset'),
|
134
|
+
topScrollerView = this.get('topScrollerView'),
|
135
|
+
topScrollerThickness = topScrollerView.get('scrollerThickness'),
|
136
|
+
verticalOffset = this.get('verticalScrollOffset'),
|
137
|
+
isBottomScrollerVisible = bottomScrollerView.get('isVisible'),
|
138
|
+
isTopScrollerVisible = topScrollerView.get('isVisible');
|
139
|
+
|
140
|
+
// This asymetric update moves the container view out of the way of the scrollers (essentially
|
141
|
+
// so that the scroller views can be transparent). What's important is that as the container
|
142
|
+
// view is adjusted, the vertical scroll offset is adjusted properly so that the content view
|
143
|
+
// position doesn't jump around.
|
144
|
+
if (isTopScrollerVisible) {
|
145
|
+
if (verticalOffset <= topScrollerThickness) {
|
146
|
+
topScrollerView.set('isVisible', false);
|
147
|
+
containerView.adjust('top', 0);
|
148
|
+
this.decrementProperty('verticalScrollOffset', topScrollerThickness);
|
149
|
+
}
|
150
|
+
} else if (verticalOffset > 0) {
|
151
|
+
topScrollerView.set('isVisible', true);
|
152
|
+
containerView.adjust('top', topScrollerThickness);
|
153
|
+
this.incrementProperty('verticalScrollOffset', topScrollerThickness);
|
540
154
|
}
|
541
|
-
}
|
542
155
|
|
543
|
-
|
544
|
-
|
545
|
-
|
156
|
+
if (isBottomScrollerVisible) {
|
157
|
+
if (verticalOffset >= maximumVerticalScrollOffset - bottomScrollerThickness) {
|
158
|
+
bottomScrollerView.set('isVisible', false);
|
159
|
+
containerView.adjust('bottom', 0);
|
160
|
+
this.incrementProperty('verticalScrollOffset', bottomScrollerThickness);
|
161
|
+
}
|
162
|
+
} else if (verticalOffset < maximumVerticalScrollOffset) {
|
163
|
+
bottomScrollerView.set('isVisible', true);
|
164
|
+
containerView.adjust('bottom', bottomScrollerThickness);
|
165
|
+
this.decrementProperty('verticalScrollOffset', bottomScrollerThickness);
|
166
|
+
}
|
546
167
|
}
|
547
|
-
|
548
|
-
clip.set('layout', clipLayout);
|
549
168
|
},
|
550
169
|
|
551
|
-
/** @private
|
552
|
-
Called whenever a scroller visibility changes. Calls the tile() method.
|
553
|
-
*/
|
554
|
-
scrollerVisibilityDidChange: function () {
|
555
|
-
this.tile();
|
556
|
-
}.observes('isVerticalScrollerVisible', 'isHorizontalScrollerVisible', 'verticalScrollOffset'),
|
557
|
-
|
558
|
-
|
559
|
-
// ..........................................................
|
560
|
-
// INTERNAL SUPPORT
|
561
|
-
//
|
562
|
-
|
563
170
|
/** @private
|
564
171
|
Instantiate scrollers & container views as needed. Replace their classes
|
565
172
|
in the regular properties.
|
566
173
|
*/
|
567
174
|
createChildViews: function () {
|
568
|
-
var childViews = [],
|
569
|
-
|
570
|
-
|
571
|
-
//
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
// and replace our own contentView...
|
579
|
-
this.contentView = this.containerView.get('contentView');
|
580
|
-
|
581
|
-
// create a vertical scroller
|
582
|
-
if ((view = this.verticalScrollerView) && (view2 = this.verticalScrollerView2)) {
|
583
|
-
if (this.get('hasVerticalScroller')) {
|
584
|
-
view = this.verticalScrollerView = this.createChildView(view, {
|
585
|
-
layout: {top: 0, left: 0, right: 0},
|
586
|
-
controlSize: controlSize,
|
587
|
-
valueBinding: '*owner.verticalScrollOffset'
|
588
|
-
});
|
589
|
-
childViews.push(view);
|
590
|
-
view2 = this.verticalScrollerView2 = this.createChildView(view2, {
|
591
|
-
scrollDown: YES,
|
592
|
-
layout: { bottom: 0, left: 0, right: 0 },
|
593
|
-
controlSize: controlSize,
|
594
|
-
valueBinding: '*owner.verticalScrollOffset'
|
595
|
-
});
|
596
|
-
childViews.push(view2);
|
597
|
-
} else {
|
598
|
-
this.verticalScrollerView = null;
|
599
|
-
this.verticalScrollerView2 = null;
|
600
|
-
}
|
175
|
+
var childViews = [],
|
176
|
+
autohidesVerticalScroller = this.get('autohidesVerticalScroller');
|
177
|
+
|
178
|
+
// Set up the container view.
|
179
|
+
var containerView = this.get('containerView');
|
180
|
+
|
181
|
+
//@if(debug)
|
182
|
+
// Provide some debug-mode only developer support to prevent problems.
|
183
|
+
if (!containerView) {
|
184
|
+
throw new Error("Developer Error: SC.ScrollView must have a containerView class set before it is instantiated.");
|
601
185
|
}
|
186
|
+
//@endif
|
602
187
|
|
603
|
-
|
604
|
-
|
188
|
+
containerView = this.containerView = this.createChildView(containerView, {
|
189
|
+
contentView: this.contentView // Initialize the view with the currently set container view.
|
190
|
+
});
|
191
|
+
this.contentView = containerView.get('contentView'); // Replace our content view with the instantiated version.
|
192
|
+
childViews.push(containerView);
|
193
|
+
|
194
|
+
// Set up the scrollers.
|
195
|
+
if (!this.get('hasVerticalScroller')) {
|
196
|
+
// Remove the class entirely.
|
197
|
+
this.topScrollerView = null;
|
198
|
+
this.bottomScrollerView = null;
|
199
|
+
} else {
|
200
|
+
var controlSize = this.get('controlSize'),
|
201
|
+
topScrollerView = this.get('topScrollerView');
|
605
202
|
|
606
|
-
|
607
|
-
|
608
|
-
|
203
|
+
// Use a default scroller view.
|
204
|
+
/* jshint eqnull:true */
|
205
|
+
if (topScrollerView == null) {
|
206
|
+
topScrollerView = SC.MenuScrollerView;
|
207
|
+
}
|
609
208
|
|
610
|
-
|
611
|
-
|
612
|
-
|
209
|
+
// Replace the class property with an instance.
|
210
|
+
topScrollerView = this.topScrollerView = this.createChildView(topScrollerView, {
|
211
|
+
controlSize: controlSize,
|
212
|
+
scrollDown: false,
|
213
|
+
isVisible: !autohidesVerticalScroller,
|
613
214
|
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
215
|
+
value: this.get('verticalScrollOffset'),
|
216
|
+
valueBinding: '.owner.verticalScrollOffset', // Bind the value of the scroller to our vertical offset.
|
217
|
+
minimum: this.get('minimumVerticalScrollOffset'),
|
218
|
+
maximum: this.get('maximumVerticalScrollOffset')
|
219
|
+
});
|
619
220
|
|
620
|
-
|
621
|
-
|
622
|
-
}
|
221
|
+
var topScrollerThickness = topScrollerView.get('scrollerThickness');
|
222
|
+
topScrollerView.adjust('height', topScrollerThickness);
|
623
223
|
|
624
|
-
|
625
|
-
|
224
|
+
// Add the scroller view to the child views array.
|
225
|
+
childViews.push(topScrollerView);
|
626
226
|
|
627
|
-
/** @private Registers/deregisters view with SC.Drag for autoscrolling */
|
628
|
-
_scsv_registerAutoscroll: function () {
|
629
|
-
if (this.get('isVisibleInWindow')) SC.Drag.addScrollableView(this);
|
630
|
-
else SC.Drag.removeScrollableView(this);
|
631
|
-
}.observes('isVisibleInWindow'),
|
632
227
|
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
contentViewFrameDidChange: function () {
|
640
|
-
var view = this.get('contentView'), view2,
|
641
|
-
f = (view) ? view.get('frame') : null,
|
642
|
-
width = (f) ? f.width : 0,
|
643
|
-
height = (f) ? f.height : 0,
|
644
|
-
dim = this.get('frame'),
|
645
|
-
viewportHeight, elem;
|
646
|
-
|
647
|
-
// cache out scroll settings...
|
648
|
-
//if ((width === this._scroll_contentWidth) && (height === this._scroll_contentHeight)) return;
|
649
|
-
this._scroll_contentWidth = width;
|
650
|
-
this._scroll_contentHeight = height;
|
651
|
-
|
652
|
-
if (this.get('hasVerticalScroller') && (view = this.get('verticalScrollerView')) && (view2 = this.get('verticalScrollerView2'))) {
|
653
|
-
height -= 1; // accurately account for our layout
|
654
|
-
// decide if it should be visible or not
|
655
|
-
if (this.get('autohidesVerticalScroller')) {
|
656
|
-
this.set('isVerticalScrollerVisible', height > dim.height);
|
228
|
+
var bottomScrollerView = this.get('bottomScrollerView');
|
229
|
+
|
230
|
+
// Use a default scroller view.
|
231
|
+
/* jshint eqnull:true */
|
232
|
+
if (bottomScrollerView == null) {
|
233
|
+
bottomScrollerView = SC.MenuScrollerView;
|
657
234
|
}
|
658
|
-
height -= this.get('verticalScrollerBottom');
|
659
|
-
viewportHeight = 0;
|
660
|
-
elem = this.containerView.$()[0];
|
661
|
-
if (elem) viewportHeight = elem.offsetHeight;
|
662
|
-
height = height - viewportHeight;
|
663
|
-
view.setIfChanged('maximum', height);
|
664
|
-
view2.setIfChanged('maximum', height);
|
665
|
-
}
|
666
|
-
},
|
667
235
|
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
236
|
+
// Replace the class property with an instance.
|
237
|
+
bottomScrollerView = this.bottomScrollerView = this.createChildView(bottomScrollerView, {
|
238
|
+
controlSize: controlSize,
|
239
|
+
scrollDown: true,
|
240
|
+
isVisible: !autohidesVerticalScroller,
|
241
|
+
layout: { bottom: 0 },
|
242
|
+
|
243
|
+
value: this.get('verticalScrollOffset'),
|
244
|
+
valueBinding: '.owner.verticalScrollOffset', // Bind the value of the scroller to our vertical offset.
|
245
|
+
minimum: this.get('minimumVerticalScrollOffset'),
|
246
|
+
maximum: this.get('maximumVerticalScrollOffset')
|
247
|
+
});
|
673
248
|
|
674
|
-
|
675
|
-
|
676
|
-
edit the location of the contentView.
|
677
|
-
*/
|
678
|
-
_scroll_verticalScrollOffsetDidChange: function () {
|
679
|
-
var offset = this.get('verticalScrollOffset');
|
249
|
+
var bottomScrollerThickness = bottomScrollerView.get('scrollerThickness');
|
250
|
+
bottomScrollerView.adjust('height', bottomScrollerThickness);
|
680
251
|
|
681
|
-
|
682
|
-
|
683
|
-
if (contentView) contentView.$().css('top', (0 - offset) + "px");
|
252
|
+
// Add the scroller view to the child views array.
|
253
|
+
childViews.push(bottomScrollerView);
|
684
254
|
|
685
|
-
|
255
|
+
// If the scrollers aren't initially hidden, adjust the container.
|
256
|
+
if (!autohidesVerticalScroller) {
|
257
|
+
containerView.adjust('top', topScrollerThickness);
|
258
|
+
containerView.adjust('bottom', bottomScrollerThickness);
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
// Set the childViews array.
|
263
|
+
this.childViews = childViews;
|
264
|
+
}
|
686
265
|
|
687
266
|
});
|