36 lines
724 B
QML
36 lines
724 B
QML
// Copyright 2019 miruka
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
import "../Base"
|
|
|
|
HRectangle {
|
|
id: sidePane
|
|
|
|
// Avoid artifacts when collapsed
|
|
clip: true
|
|
|
|
property int normalSpacing: 8
|
|
property int currentSpacing: collapsed ? 0 : normalSpacing
|
|
property bool collapsed: false
|
|
|
|
HColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
AccountList {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
spacing: currentSpacing
|
|
bottomMargin: currentSpacing
|
|
|
|
Behavior on spacing { HNumberAnimation {} }
|
|
}
|
|
|
|
PaneToolBar {
|
|
id: paneToolBar
|
|
}
|
|
}
|
|
}
|