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