mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 13:08:48 +03:00
27 lines
720 B
QML
27 lines
720 B
QML
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
||
|
//
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.15
|
||
|
import QtQuick.Layouts 1.15
|
||
|
|
||
|
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;
|
||
|
});
|
||
|
}
|
||
|
}
|