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 7aa42ea Small fix for external model adjustment
add 4a077c5 removed duplicate definition
add 98ab565 added TabBar
add 9b409d2 added module class
add 4f36582 added module class
add 3283649 emulation works
add eb95bde Update spark-royale-manifest.xml
add 44320e1 Merge branch 'develop' of
https://github.com/nihavend/royale-asjs into develop
add fcddb45 Merge remote-tracking branch 'upstream/develop' into develop
add aa833dc it was not required
add 4f41414 removed weak reference
add 86d731b removed unnecessary class
add 67b569a Merge remote-tracking branch 'upstream/develop' into develop
add 2172204 accidentally deleted, restored
add 539e0b4 Menu class emulated
add 5cfc071 Merge remote-tracking branch 'upstream/develop' into develop
new 5778873 Merge pull request #339 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 | 3 +-
.../MXRoyale/src/main/royale/mx/controls/Alert.as | 2 +-
.../MXRoyale/src/main/royale/mx/controls/Menu.as | 2641 ++++++++++++++++++++
.../src/main/royale/mx/core/ScrollControlBase.as | 4 +-
.../src/main/royale/mx/events/EffectEvent.as | 4 +-
.../src/main/royale/mx/events/FlexEvent.as | 4 +-
.../src/main/royale/mx/events/HTTPStatusEvent.as | 2 +
.../src/main/royale/mx/events/IOErrorEvent.as | 2 +
.../src/main/royale/mx/events/MenuEvent.as | 2 +-
.../main/royale/mx/events/SecurityErrorEvent.as | 2 +
.../src/main/royale/mx/managers/CursorManager.as | 6 +-
.../royale/mx/managers/CursorManagerPriority.as | 84 +-
.../src/main/resources/spark-royale-manifest.xml | 5 +-
.../src/main/royale/SparkRoyaleClasses.as | 2 +
.../src/main/royale/spark/components/ButtonBar.as | 296 +++
.../spark/components/SkinnablePopUpContainer.as | 1462 +++++++++++
.../components/supportClasses/ButtonBarBase.as | 873 +++++++
.../spark/components/supportClasses/ListBase.as | 26 +-
.../src/main/royale/spark/modules/Module.as | 89 +
19 files changed, 5456 insertions(+), 53 deletions(-)
create mode 100644
frameworks/projects/MXRoyale/src/main/royale/mx/controls/Menu.as
create mode 100644
frameworks/projects/SparkRoyale/src/main/royale/spark/components/ButtonBar.as
create mode 100644
frameworks/projects/SparkRoyale/src/main/royale/spark/components/SkinnablePopUpContainer.as
create mode 100644
frameworks/projects/SparkRoyale/src/main/royale/spark/components/supportClasses/ButtonBarBase.as
create mode 100644
frameworks/projects/SparkRoyale/src/main/royale/spark/modules/Module.as