2019-05-12 15:57:18 -04:00
|
|
|
import QtQuick 2.7
|
2019-04-28 15:45:42 -04:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-28 15:18:36 -04:00
|
|
|
import "../Base"
|
2019-03-26 03:19:55 -04:00
|
|
|
|
2019-05-11 17:51:00 -04:00
|
|
|
HRectangle {
|
2019-03-26 03:19:55 -04:00
|
|
|
id: sidePane
|
2019-04-28 11:01:38 -04:00
|
|
|
|
2019-05-12 15:57:18 -04:00
|
|
|
property int normalSpacing: 8
|
|
|
|
property bool collapsed: false
|
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HColumnLayout {
|
2019-03-26 03:19:55 -04:00
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
AccountList {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
2019-05-02 14:20:21 -04:00
|
|
|
|
2019-07-02 13:59:52 -04:00
|
|
|
spacing: collapsed ? 0 : normalSpacing * 3
|
2019-07-05 16:55:25 -04:00
|
|
|
topMargin: collapsed ? 0 : normalSpacing
|
|
|
|
bottomMargin: topMargin
|
|
|
|
Layout.leftMargin: topMargin
|
2019-05-12 15:57:18 -04:00
|
|
|
|
2019-07-06 17:42:04 -04:00
|
|
|
Behavior on spacing { HNumberAnimation {} }
|
2019-03-26 03:19:55 -04:00
|
|
|
}
|
|
|
|
|
2019-07-02 13:59:52 -04:00
|
|
|
PaneToolBar {
|
|
|
|
id: paneToolBar
|
|
|
|
}
|
2019-03-26 03:19:55 -04:00
|
|
|
}
|
|
|
|
}
|