blob: 154361e7278163ec5b320e20d13df6fb00fb2c34 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
Rectangle {
anchors.fill: parent
ColumnLayout {
anchors.left: parent.left
anchors.right: parent.right
ToolBar {
RowLayout {
anchors.fill: parent
ToolButton {
id: normalButton
checkable: true
icon.name: checked ? iconNameOn.text : iconNameOff.text
}
ToolButton {
id: checkedButton
checked: true
checkable: true
icon.name: checked ? iconNameOn.text : iconNameOff.text
}
ToolButton {
id: disabledButton
enabled: false
icon.name: checked ? iconNameOn.text : iconNameOff.text
}
}
}
RowLayout {
Label {
text: "Off:"
}
TextField {
id: iconNameOff
text: "mail-mark-read"
}
Label {
text: "On:"
}
TextField {
id: iconNameOn
text: "mail-mark-unread"
}
}
}
}
|