summaryrefslogtreecommitdiffstats
path: root/examples/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml')
-rw-r--r--examples/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml64
1 files changed, 2 insertions, 62 deletions
diff --git a/examples/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml b/examples/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml
index b178384..b3a7525 100644
--- a/examples/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml
+++ b/examples/trafficlight-qml-dynamic/trafficlight-qml-dynamic.qml
@@ -38,66 +38,6 @@
**
****************************************************************************/
-import QtQuick 2.5
-import QtQuick.Window 2.2
-import Scxml 1.0 as Scxml
-
-Window {
- visible: true
- width: 100
- height: 300
- color: "black"
-
- MouseArea {
- anchors.fill: parent
- onClicked: {
- Qt.quit();
- }
- }
-
- Light {
- id: redLight
- anchors.top: parent.top
- color: "red"
- visible: red.active || redGoingGreen.active
- }
-
- Light {
- id: yellowLight
- anchors.top: redLight.bottom
- color: "yellow"
- visible: yellow.active
- }
-
- Light {
- id: greenLight
- anchors.top: yellowLight.bottom
- color: "green"
- visible: green.active
- }
-
- Scxml.StateMachine {
- filename: "qrc:///statemachine.scxml"
-
- Scxml.State {
- id: red
- scxmlName: "red"
- }
-
- Scxml.State {
- id: yellow
- scxmlName: "yellow"
- }
-
- Scxml.State {
- id: redGoingGreen
- scxmlName: "red-going-green"
- }
-
- Scxml.State {
- id: green
- scxmlName: "green"
- }
- }
+TrafficLight {
+ filename: "qrc:///statemachine.scxml"
}
-