2023-09-01 10:48:19 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
import QtQuick
|
|
|
|
|
2023-12-20 07:13:15 +00:00
|
|
|
CustomToolBarForm {
|
2025-07-16 13:23:43 +00:00
|
|
|
id: root
|
2023-12-20 07:13:15 +00:00
|
|
|
backButton.onClicked: applicationFlow.backButton()
|
|
|
|
themeButton.onClicked: applicationFlow.themeButton()
|
|
|
|
backButton.states: State {
|
|
|
|
name: "pressed"
|
2025-07-16 13:23:43 +00:00
|
|
|
when: root.backButton.pressed
|
2023-12-20 07:13:15 +00:00
|
|
|
PropertyChanges {
|
|
|
|
target: backButton
|
|
|
|
scale: 1.1
|
2023-09-01 10:48:19 +00:00
|
|
|
}
|
2023-12-20 07:13:15 +00:00
|
|
|
}
|
|
|
|
themeButton.states: State {
|
|
|
|
name: "pressed"
|
2025-07-16 13:23:43 +00:00
|
|
|
when: root.themeButton.pressed
|
2023-12-20 07:13:15 +00:00
|
|
|
PropertyChanges {
|
|
|
|
target: themeButton
|
|
|
|
scale: 1.1
|
2023-09-01 10:48:19 +00:00
|
|
|
}
|
|
|
|
}
|
2023-12-20 07:13:15 +00:00
|
|
|
|
2023-09-01 10:48:19 +00:00
|
|
|
}
|