51 lines
2.2 KiB
QML
51 lines
2.2 KiB
QML
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
import QtQuick 2.0
|
|
|
|
Item {
|
|
id: columnelementtest
|
|
anchors.fill: parent
|
|
property string testtext: ""
|
|
|
|
Column {
|
|
id: columnelement
|
|
width: 200
|
|
spacing: 5
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottomMargin: 15
|
|
Rectangle { id: gr; color: "green"; height: 50; width: parent.width; border.color: "gray"; border.width: 3; opacity: .9; radius: 5; clip: true }
|
|
Rectangle { id: re; color: "red"; height: 50; width: parent.width; border.color: "gray"; border.width: 3; opacity: .9; radius: 5; clip: true }
|
|
Rectangle {
|
|
id: bl
|
|
color: "blue"; height: 50; width: parent.width; border.color: "gray"; border.width: 3; radius: 5; clip: true
|
|
opacity: 0; visible: opacity != 0
|
|
}
|
|
Rectangle { id: bk; color: "black"; height: 50; width: parent.width; border.color: "gray"; border.width: 3; opacity: .9; radius: 5; clip: true }
|
|
|
|
move: Transition { NumberAnimation { properties: "y"; duration: 500; easing.type: Easing.OutBounce } }
|
|
add: Transition { NumberAnimation { properties: "y"; duration: 1000; easing.type: Easing.OutBounce } }
|
|
|
|
}
|
|
|
|
SystemTestHelp { id: helpbubble; visible: statenum != 0
|
|
anchors { top: parent.top; horizontalCenter: parent.horizontalCenter; topMargin: 50 }
|
|
}
|
|
BugPanel { id: bugpanel }
|
|
|
|
states: [
|
|
State { name: "start"; when: statenum == 1
|
|
PropertyChanges { target: columnelementtest
|
|
testtext: "This is a Column element. At present it should be showing three rectangles - green, red and black.\n"+
|
|
"Next, let's add a rectangle to the Column - it should drop in from the top and the black rectangle should move to give it space" }
|
|
},
|
|
State { name: "back"; when: statenum == 2
|
|
PropertyChanges { target: bl; opacity: .9 }
|
|
PropertyChanges { target: columnelementtest
|
|
testtext: "Column should now be showing four rectangles - green, red, blue and black.\n"+
|
|
"Advance to restart the test." }
|
|
}
|
|
]
|
|
}
|