mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
653 B
24 lines
653 B
// SPDX-FileCopyrightText: Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
|
|
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;
|
|
});
|
|
}
|
|
}
|
|
|