2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2018-08-02 12:49:13 +00:00
|
|
|
|
2020-03-26 16:01:51 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2018-08-02 12:49:13 +00:00
|
|
|
|
|
|
|
QtObject {
|
|
|
|
property var supportedStates: [
|
|
|
|
[]
|
|
|
|
]
|
|
|
|
|
|
|
|
property Component component: SplitView {
|
|
|
|
implicitWidth: 400
|
|
|
|
implicitHeight: 100
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: "salmon"
|
|
|
|
implicitWidth: 25
|
|
|
|
implicitHeight: 25
|
|
|
|
}
|
|
|
|
Rectangle {
|
|
|
|
color: "navajowhite"
|
|
|
|
implicitWidth: 100
|
|
|
|
implicitHeight: 100
|
|
|
|
}
|
|
|
|
Rectangle {
|
|
|
|
color: "steelblue"
|
|
|
|
implicitWidth: 200
|
|
|
|
implicitHeight: 200
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|