blob: 4640169aef73eb4911910e9bf842c0ecdcc193d8 (
plain)
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
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
CustomToolBarForm {
backButton.onClicked: applicationFlow.backButton()
themeButton.onClicked: applicationFlow.themeButton()
backButton.states: State {
name: "pressed"
when: backButton.pressed
PropertyChanges {
target: backButton
scale: 1.1
}
}
themeButton.states: State {
name: "pressed"
when: themeButton.pressed
PropertyChanges {
target: themeButton
scale: 1.1
}
}
}
|