qtdeclarative/tests/manual/quickcontrols/testbench/controls/TabBar.qml

35 lines
813 B
QML

// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Controls
// TODO
QtObject {
property string customControlName: qsTr("TabBar & TabButton")
property var supportedStates: [
["header"],
["header", "disabled"],
["footer"],
["footer", "disabled"]
]
property Component component: TabBar {
implicitHeight: tabButton1.implicitHeight
enabled: !is("disabled")
position: is("header") ? TabBar.Header : TabBar.Footer
TabButton {
id: tabButton1
text: qsTr("TabButton 1")
}
TabButton {
text: qsTr("TabButton 2")
}
TabButton {
text: qsTr("TabButton 3")
}
}
}