1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
import QtQuick 2.6
Rectangle {
id: root
width: 500
height: 500
required property bool usePopulateTransition
required property bool enableAddTransition
required property bool dynamicallyPopulate
required property var testModel
required property var model_targetItems_transitionFrom
required property var model_displacedItems_transitionVia
required property point targetItems_transitionFrom
required property point displacedItems_transitionVia
required property string testedPositioner
property int duration: 50
property real incrementalSize: 5
property int populateTransitionsDone
property int addTransitionsDone
property int displaceTransitionsDone
property var targetTrans_items: new Object()
property var targetTrans_targetIndexes: new Array()
property var targetTrans_targetItems: new Array()
property var displacedTrans_items: new Object()
property var displacedTrans_targetIndexes: new Array()
property var displacedTrans_targetItems: new Array()
// for QQmlListProperty types
function copyList(propList) {
var temp = new Array()
for (var i=0; i<propList.length; i++)
temp.push(propList[i])
return temp
}
function checkPos(x, y, name) {
if (Qt.point(x, y) == targetItems_transitionFrom)
model_targetItems_transitionFrom.addItem(name, "")
if (Qt.point(x, y) == displacedItems_transitionVia)
model_displacedItems_transitionVia.addItem(name, "")
}
Component.onCompleted: {
if (dynamicallyPopulate) {
for (var i=0; i<30; i++)
testModel.addItem("item " + i, "")
}
}
Transition {
id: populateTransition
enabled: usePopulateTransition
SequentialAnimation {
ScriptAction {
script: {
root.targetTrans_items[populateTransition.ViewTransition.item.nameData] = populateTransition.ViewTransition.index
root.targetTrans_targetIndexes.push(populateTransition.ViewTransition.targetIndexes)
root.targetTrans_targetItems.push(root.copyList(populateTransition.ViewTransition.targetItems))
}
}
ParallelAnimation {
NumberAnimation { properties: "x"; from: targetItems_transitionFrom.x; duration: root.duration }
NumberAnimation { properties: "y"; from: targetItems_transitionFrom.y; duration: root.duration }
}
ScriptAction { script: root.populateTransitionsDone += 1 }
}
}
Transition {
id: addTransition
enabled: enableAddTransition
SequentialAnimation {
ScriptAction {
script: {
root.targetTrans_items[addTransition.ViewTransition.item.nameData] = addTransition.ViewTransition.index
root.targetTrans_targetIndexes.push(addTransition.ViewTransition.targetIndexes)
root.targetTrans_targetItems.push(root.copyList(addTransition.ViewTransition.targetItems))
}
}
ParallelAnimation {
NumberAnimation { properties: "x"; from: targetItems_transitionFrom.x; duration: root.duration }
NumberAnimation { properties: "y"; from: targetItems_transitionFrom.y; duration: root.duration }
}
ScriptAction { script: root.addTransitionsDone += 1 }
}
}
Transition {
id: displaced
SequentialAnimation {
ScriptAction {
script: {
root.displacedTrans_items[displaced.ViewTransition.item.nameData] = displaced.ViewTransition.index
root.displacedTrans_targetIndexes.push(displaced.ViewTransition.targetIndexes)
root.displacedTrans_targetItems.push(root.copyList(displaced.ViewTransition.targetItems))
}
}
ParallelAnimation {
NumberAnimation { properties: "x"; duration: root.duration; to: displacedItems_transitionVia.x }
NumberAnimation { properties: "y"; duration: root.duration; to: displacedItems_transitionVia.y }
}
NumberAnimation { properties: "x,y"; duration: root.duration }
ScriptAction { script: root.displaceTransitionsDone += 1 }
}
}
Row {
objectName: "row"
property int count: children.length - 1 // omit Repeater
x: 50; y: 50
width: 400; height: 400
padding: 1; topPadding: 2; leftPadding: 3; rightPadding: 4; bottomPadding: 5
Repeater {
objectName: "repeater"
model: testedPositioner == "row" ? testModel : undefined
Rectangle {
property string nameData: name
objectName: "wrapper"
width: 30 + index*root.incrementalSize
height: 30 + index*root.incrementalSize
border.width: 1
Column {
Text { text: index }
Text { objectName: "name"; text: name }
Text { text: parent.parent.y }
}
onXChanged: root.checkPos(x, y, name)
onYChanged: root.checkPos(x, y, name)
}
}
populate: populateTransition
add: addTransition
move: displaced
}
Column {
objectName: "column"
property int count: children.length - 1 // omit Repeater
x: 50; y: 50
width: 400; height: 400
padding: 1; topPadding: 2; leftPadding: 3; rightPadding: 4; bottomPadding: 5
Repeater {
objectName: "repeater"
model: testedPositioner == "column" ? testModel : undefined
Rectangle {
property string nameData: name
objectName: "wrapper"
width: 30 + index*root.incrementalSize
height: 30 + index*root.incrementalSize
border.width: 1
Column {
Text { text: index }
Text { objectName: "name"; text: name }
Text { text: parent.parent.y }
}
onXChanged: root.checkPos(x, y, name)
onYChanged: root.checkPos(x, y, name)
}
}
populate: populateTransition
add: addTransition
move: displaced
}
Grid {
objectName: "grid"
property int count: children.length - 1 // omit Repeater
x: 50; y: 50
width: 400; height: 400
padding: 1; topPadding: 2; leftPadding: 3; rightPadding: 4; bottomPadding: 5
Repeater {
objectName: "repeater"
model: testedPositioner == "grid" ? testModel : undefined
Rectangle {
property string nameData: name
objectName: "wrapper"
width: 30 + index*root.incrementalSize
height: 30 + index*root.incrementalSize
border.width: 1
Column {
Text { text: index }
Text { objectName: "name"; text: name }
Text { text: parent.parent.y }
}
onXChanged: root.checkPos(x, y, name)
onYChanged: root.checkPos(x, y, name)
}
}
populate: populateTransition
add: addTransition
move: displaced
}
Flow {
objectName: "flow"
property int count: children.length - 1 // omit Repeater
x: 50; y: 50
width: 400; height: 400
padding: 1; topPadding: 2; leftPadding: 3; rightPadding: 4; bottomPadding: 5
Repeater {
objectName: "repeater"
model: testedPositioner == "flow" ? testModel : undefined
Rectangle {
property string nameData: name
objectName: "wrapper"
width: 30 + index*root.incrementalSize
height: 30 + index*root.incrementalSize
border.width: 1
Column {
Text { text: index }
Text { objectName: "name"; text: name }
Text { text: parent.parent.x + " " + parent.parent.y }
}
onXChanged: root.checkPos(x, y, name)
onYChanged: root.checkPos(x, y, name)
}
}
populate: populateTransition
add: addTransition
move: displaced
}
}
|