You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2019/11/18 10:54:45 UTC

[royale-asjs] branch develop updated (1fc85d2 -> 81e697a)

This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


    from 1fc85d2  adjust XMLList conversion to match Flex behavior per XMLMXMLTest.mxml in #562
     add fda1a7d  Added array multi selection model
     add 81484a1  Add multi selection controller
     add fb5e842  Fix doc
     add 0bce31f  Added multiselection view
     add 1593350  Add TLC for MultiSelectionList
     add 0971bca  Some whitespace fixes
     add 2d05f91  Need to listen to correct event
     add 73288c8  Make sure changes in selection array are not ignored
     new 81e697a  Merge branch 'multi_select' into 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:
 .../Basic/src/main/resources/basic-manifest.xml    |   2 +
 .../projects/Basic/src/main/resources/defaults.css |  14 ++
 .../projects/Basic/src/main/royale/BasicClasses.as |   3 +
 .../royale/html/{List.as => MultiSelectionList.as} |  70 ++++---
 .../{ListView.as => MultiSelectionListView.as}     |  87 +++++---
 .../ListMultiSelectionMouseController.as}          | 104 ++++++---
 .../html/beads/models/ArrayMultiSelectionModel.as  | 233 +++++++++++++++++++++
 .../projects/Core/src/main/royale/CoreClasses.as   |   1 +
 ...{ISelectionModel.as => IMultiSelectionModel.as} |  30 +--
 9 files changed, 436 insertions(+), 108 deletions(-)
 copy frameworks/projects/Basic/src/main/royale/org/apache/royale/html/{List.as => MultiSelectionList.as} (68%)
 copy frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/{ListView.as => MultiSelectionListView.as} (68%)
 copy frameworks/projects/{Charts/src/main/royale/org/apache/royale/charts/beads/controllers/ChartSeriesMouseController.as => Basic/src/main/royale/org/apache/royale/html/beads/controllers/ListMultiSelectionMouseController.as} (56%)
 create mode 100644 frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/models/ArrayMultiSelectionModel.as
 copy frameworks/projects/Core/src/main/royale/org/apache/royale/core/{ISelectionModel.as => IMultiSelectionModel.as} (68%)


[royale-asjs] 01/01: Merge branch 'multi_select' into develop

Posted by yi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 81e697ad8ac27baf04d4f7664ab06ad3ece7e501
Merge: 1fc85d2 73288c8
Author: DESKTOP-RH4S838\Yishay <yi...@hotmail.com>
AuthorDate: Mon Nov 18 12:54:10 2019 +0200

    Merge branch 'multi_select' into develop

 .../Basic/src/main/resources/basic-manifest.xml    |   2 +
 .../projects/Basic/src/main/resources/defaults.css |  14 ++
 .../projects/Basic/src/main/royale/BasicClasses.as |   3 +
 .../org/apache/royale/html/MultiSelectionList.as   | 174 +++++++++++++++
 .../royale/html/beads/MultiSelectionListView.as    | 210 +++++++++++++++++++
 .../ListMultiSelectionMouseController.as           | 186 ++++++++++++++++
 .../html/beads/models/ArrayMultiSelectionModel.as  | 233 +++++++++++++++++++++
 .../projects/Core/src/main/royale/CoreClasses.as   |   1 +
 .../org/apache/royale/core/IMultiSelectionModel.as |  65 ++++++
 9 files changed, 888 insertions(+)