2019-04-21 20:56:59 +10:00
|
|
|
import QtQuick 2.7
|
2019-05-03 04:20:21 +10:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-29 05:18:36 +10:00
|
|
|
import "../Base"
|
2019-04-21 20:56:59 +10:00
|
|
|
|
2019-05-03 04:20:21 +10:00
|
|
|
Column {
|
|
|
|
id: roomCategoryDelegate
|
|
|
|
width: roomCategoriesList.width
|
|
|
|
height: childrenRect.height
|
|
|
|
visible: roomList.contentHeight > 0
|
2019-04-21 20:56:59 +10:00
|
|
|
|
2019-05-03 04:20:21 +10:00
|
|
|
property string roomListUserId: userId
|
|
|
|
property bool expanded: true
|
2019-04-21 20:56:59 +10:00
|
|
|
|
2019-05-03 04:20:21 +10:00
|
|
|
HRowLayout {
|
|
|
|
width: parent.width
|
2019-04-21 20:56:59 +10:00
|
|
|
|
2019-05-03 04:20:21 +10:00
|
|
|
HLabel {
|
|
|
|
id: roomCategoryLabel
|
|
|
|
text: name
|
|
|
|
font.weight: Font.DemiBold
|
|
|
|
elide: Text.ElideRight
|
|
|
|
maximumLineCount: 1
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
HButton {
|
|
|
|
id: roomCategoryToggleExpand
|
|
|
|
iconName: roomList.visible ? "up" : "down"
|
|
|
|
iconDimension: 16
|
|
|
|
backgroundColor: "transparent"
|
|
|
|
onClicked:
|
|
|
|
roomCategoryDelegate.expanded = !roomCategoryDelegate.expanded
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RoomList {
|
|
|
|
id: roomList
|
|
|
|
interactive: false // no scrolling
|
|
|
|
visible: height > 0
|
|
|
|
width: roomCategoriesList.width - accountList.Layout.leftMargin
|
|
|
|
height: childrenRect.height * (roomCategoryDelegate.expanded ? 1 : 0)
|
|
|
|
clip: heightAnimation.running
|
|
|
|
|
|
|
|
userId: roomListUserId
|
|
|
|
category: name
|
|
|
|
|
|
|
|
Behavior on height {
|
|
|
|
NumberAnimation { id: heightAnimation; duration: 100 }
|
|
|
|
}
|
|
|
|
}
|
2019-04-21 20:56:59 +10:00
|
|
|
}
|