2021-06-06 00:36:08 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2023-01-02 06:25:33 +03:00
|
|
|
// SPDX-FileCopyrightText: 2023 Nheko Contributors
|
2021-06-06 00:36:08 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-06-13 02:48:11 +03:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.5
|
2021-06-13 03:48:22 +03:00
|
|
|
import QtQuick.Layouts 1.12
|
2021-06-06 00:36:08 +03:00
|
|
|
|
|
|
|
Item {
|
|
|
|
property int minimumWidth: 100
|
|
|
|
property int maximumWidth: 400
|
|
|
|
property int collapsedWidth: 40
|
|
|
|
property bool collapsible: true
|
|
|
|
property bool collapsed: width < minimumWidth
|
|
|
|
property int splitterWidth: 1
|
|
|
|
property int preferredWidth: 100
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
children[0].width = Qt.binding(() => {
|
|
|
|
return parent.singlePageMode ? parent.width : width - splitterWidth;
|
|
|
|
});
|
|
|
|
children[0].height = Qt.binding(() => {
|
|
|
|
return parent.height;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|