C
Qt Cluster: Rendering and Recovery from Main UI Failure
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
// This file is part of the Qt Safe Renderer module
import QtQuick
import ClusterDemo
import Qt.SafeRenderer
SafeImage {
id: turnleft
objectName: "turnleft"
source: "qrc:/images/Icon_TurnLeft_ON_small.png"
width: 45
height: 45
opacity: 1.0
states: [
State {
name: "visible"
PropertyChanges {
target: turnleft
opacity: 1.0
}
},
State {
name: "hidden"
PropertyChanges {
target: turnleft
opacity: 0.0
}
}
]
transitions: [
Transition {
from: "*"
to: "*"
NumberAnimation {
target: turnleft
properties: "opacity"
duration: 500
easing.type: Easing.InOutQuad
}
}
]
}