2019-07-13 05:39:01 -04:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
2019-05-12 13:17:42 -04:00
|
|
|
import "../../Base"
|
|
|
|
|
2019-08-27 22:46:31 -04:00
|
|
|
Rectangle {
|
2019-05-12 13:17:42 -04:00
|
|
|
id: roomSidePane
|
2019-07-24 02:14:34 -04:00
|
|
|
color: theme.chat.roomSidePane.background
|
2019-05-12 13:17:42 -04:00
|
|
|
|
2019-05-12 18:59:29 -04:00
|
|
|
property bool collapsed: false
|
2019-05-13 12:01:57 -04:00
|
|
|
property var activeView: null
|
2019-07-16 05:29:47 -04:00
|
|
|
property int currentSpacing: collapsed ? 0 : theme.spacing
|
2019-07-12 18:15:06 -04:00
|
|
|
|
2019-07-12 18:17:02 -04:00
|
|
|
Behavior on currentSpacing { HNumberAnimation {} }
|
2019-07-12 18:15:06 -04:00
|
|
|
|
2019-05-17 15:18:46 -04:00
|
|
|
MembersView {
|
2019-05-12 13:17:42 -04:00
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
}
|