This is an automated email from the ASF dual-hosted git repository.
carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 64dc10f jewel: add combobox presentation model that brings "rowCount"
to combobox to manage how many items should show popup list (defaults to 5)
64dc10f is described below
commit 64dc10f744c20c0bd1945f18005cd65cd974ab16
Author: Carlos Rovira <[email protected]>
AuthorDate: Sat Feb 8 10:09:26 2020 +0100
jewel: add combobox presentation model that brings "rowCount" to combobox
to manage how many items should show popup list (defaults to 5)
---
.../beads/models/ComboBoxPresentationModel.as | 71 ++++++++++++++++++++++
.../combobox/IComboBoxPresentationModel.as | 46 ++++++++++++++
2 files changed, 117 insertions(+)
diff --git
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/models/ComboBoxPresentationModel.as
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/models/ComboBoxPresentationModel.as
new file mode 100644
index 0000000..2f2897f
--- /dev/null
+++
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/models/ComboBoxPresentationModel.as
@@ -0,0 +1,71 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements. See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.royale.jewel.beads.models
+{
+ import org.apache.royale.events.Event;
+ import
org.apache.royale.jewel.supportClasses.combobox.IComboBoxPresentationModel;
+
+ /**
+ * The ComboBoxPresentationModel class contains the data to present
the popup list
+ * of the org.apache.royale.jewel.ComboBox along with the rowCount,
the height of the rows or
+ * the align of column labels.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion Royale 0.9.7
+ */
+ public class ComboBoxPresentationModel extends ListPresentationModel
implements IComboBoxPresentationModel
+ {
+ /**
+ * constructor.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion Royale 0.9.7
+ */
+ public function ComboBoxPresentationModel()
+ {
+ super();
+ }
+
+ private var _rowCount:int = 5;
+ /**
+ * Maximum number of rows visible in the ComboBox popup list.
+ * If there are fewer items in the dataProvider, the ComboBox
shows only as many items as there are in the dataProvider.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion Royale 0.9.7
+ */
+ public function get rowCount():int
+ {
+ return _rowCount;
+ }
+ public function set rowCount(value:int):void
+ {
+ if (value != _rowCount) {
+ _rowCount = value;
+ dispatchEvent(new Event("rowCountChanged"));
+ }
+ }
+ }
+}
diff --git
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/combobox/IComboBoxPresentationModel.as
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/combobox/IComboBoxPresentationModel.as
new file mode 100644
index 0000000..e55bdfe
--- /dev/null
+++
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/combobox/IComboBoxPresentationModel.as
@@ -0,0 +1,46 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements. See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.royale.jewel.supportClasses.combobox
+{
+ import org.apache.royale.jewel.supportClasses.list.IListPresentationModel;
+
+ /**
+ * The Jewel IComboBoxPresentationModel interface holds key values for
the display
+ * a Jewel ComboBox.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion Royale 0.9.7
+ */
+ public interface IComboBoxPresentationModel extends IListPresentationModel
+ {
+ /**
+ * Maximum number of rows visible in the ComboBox popup list.
+ * If there are fewer items in the dataProvider, the ComboBox
shows only as many items as there are in the dataProvider.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion Royale 0.9.7
+ */
+ function get rowCount():int
+ function set rowCount(value:int):void
+ }
+}