// Copyright (C) 2017 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only import QtQuick import HelperWidgets import QtQuick.Layouts Column { width: parent.width Section { width: parent.width caption: qsTr("ToolSeparator") SectionLayout { Label { text: qsTr("Orientation") tooltip: qsTr("The orientation of the separator.") } SecondColumnLayout { ComboBox { backendValue: backendValues.orientation model: [ "Horizontal", "Vertical" ] scope: "Qt" Layout.fillWidth: true } } } } ControlSection { width: parent.width } PaddingSection { width: parent.width } }