From commits-return-6479-archive-asf-public=cust-asf.ponee.io@royale.apache.org Mon Oct 15 23:39:12 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 88B82180679 for ; Mon, 15 Oct 2018 23:39:11 +0200 (CEST) Received: (qmail 81658 invoked by uid 500); 15 Oct 2018 21:39:10 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 81641 invoked by uid 99); 15 Oct 2018 21:39:10 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2018 21:39:10 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id DE8B182BA0; Mon, 15 Oct 2018 21:39:09 +0000 (UTC) Date: Mon, 15 Oct 2018 21:39:09 +0000 To: , "' commits@royale.apache.org" , '@gitbox.apache.org, Subject: [royale-asjs] branch develop updated (af47eff -> bf59f91) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153963954975.22135.4080187939240684745@gitbox.apache.org> From: aharui@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-asjs X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: af47efffe464d7a049a75057328f3de11c18e07b X-Git-Newrev: bf59f911d4fc746ae04088d24504a09e737c88a5 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. aharui pushed a change to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git. from af47eff set 'this' pointer for callProperty. SWF doesn't matter because it is a closure add 95f8d5d New emulation componnets created add 19872b9 Created spark emulation components add 66b32e8 Touch class removed add bddc11c ToucInteractionEvent removed add 64d8f0b DownloadProgressBar removed new bf59f91 Merge pull request #316 from nihavend/develop The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../MXRoyale/src/main/royale/MXRoyaleClasses.as | 27 +- .../src/main/royale/mx/binding/BindabilityInfo.as | 280 + .../main/royale/mx/binding/utils/ChangeWatcher.as | 593 ++ .../mx/collections/ComplexFieldChangeWatcher.as | 222 + .../main/royale/mx/collections/ICollectionView.as | 4 +- .../src/main/royale/mx/core/IIMESupport.as | 87 + .../src/main/royale/mx/core/InteractionMode.as | 68 + .../MXRoyale/src/main/royale/mx/core/Singleton.as | 125 + .../src/main/royale/mx/effects/IAbstractEffect.as | 49 + .../src/main/royale/mx/events/ToolTipEvent.as | 300 + .../main/royale/mx/managers/IToolTipManager2.as | 219 + .../royale/mx/managers/IToolTipManagerClient.as | 69 + .../src/main/royale/mx/managers/ToolTipManager.as | 522 ++ .../MXRoyale/src/main/royale/mx/utils/PopUpUtil.as | 238 + .../royale/mx/validators/IValidatorListener.as | 132 + .../src/main/resources/spark-royale-manifest.xml | 50 +- .../src/main/royale/SparkRoyaleClasses.as | 3 + .../src/main/royale/spark/collections/Sort.as | 493 ++ .../src/main/royale/spark/components/DataGrid.as | 6635 ++++++++++++++++++++ .../main/royale/spark/components/DropDownList.as | 15 +- .../src/main/royale/spark/components/Form.as | 401 ++ .../src/main/royale/spark/components/Grid.as | 2 +- .../src/main/royale/spark/components/TextArea.as | 6 +- .../spark/components/gridClasses/DataGridEditor.as | 1825 ++++++ .../components/gridClasses/GridDimensionsView.as | 286 + .../GridItemEditorActivationMouseEvent.as | 88 + .../components/gridClasses/GridItemRenderer.as | 890 +++ .../spark/components/gridClasses/GridLayer.as | 100 + .../spark/components/gridClasses/GridView.as | 4 +- .../spark/components/gridClasses/GridViewLayout.as | 3124 +++++++++ .../components/gridClasses/IDataGridElement.as | 3 +- .../components/gridClasses/IGridItemEditor.as | 217 + .../components/gridClasses/IGridVisualElement.as | 91 + .../supportClasses/SkinnableContainerBase.as | 150 + .../src/main/royale/spark/core/IDisplayText.as | 63 + .../src/main/royale/spark/core/IGraphicElement.as | 352 ++ .../royale/spark/core/IGraphicElementContainer.as | 111 + .../royale/spark/events/GridItemEditorEvent.as | 348 + .../royale/spark/events/GridSelectionEventKind.as | 147 + .../src/main/royale/spark/events/GridSortEvent.as | 302 + 40 files changed, 18594 insertions(+), 47 deletions(-) create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/binding/BindabilityInfo.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/binding/utils/ChangeWatcher.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/collections/ComplexFieldChangeWatcher.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/core/IIMESupport.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/core/InteractionMode.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/core/Singleton.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/effects/IAbstractEffect.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/events/ToolTipEvent.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/managers/IToolTipManager2.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/managers/IToolTipManagerClient.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/managers/ToolTipManager.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/utils/PopUpUtil.as create mode 100644 frameworks/projects/MXRoyale/src/main/royale/mx/validators/IValidatorListener.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/collections/Sort.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/DataGrid.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/Form.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/gridClasses/DataGridEditor.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/gridClasses/GridDimensionsView.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/gridClasses/GridItemEditorActivationMouseEvent.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/gridClasses/GridItemRenderer.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/gridClasses/GridLayer.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/gridClasses/GridViewLayout.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/gridClasses/IGridItemEditor.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/gridClasses/IGridVisualElement.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/components/supportClasses/SkinnableContainerBase.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/core/IDisplayText.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/core/IGraphicElement.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/core/IGraphicElementContainer.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/events/GridItemEditorEvent.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/events/GridSelectionEventKind.as create mode 100644 frameworks/projects/SparkRoyale/src/main/royale/spark/events/GridSortEvent.as