diff options
author | link2xt <link2xt@testrun.org> | 2021-05-16 14:52:41 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-05-16 14:55:50 +0300 |
commit | c89e617850480b4949adbc33e07cb1b2293aa3a9 (patch) | |
tree | 40775603ef95bb96201dfbd85fadb2c01d008a5c /qml | |
parent | eecf41589e8187a37e0b094a12be9c65484c7b7e (diff) | |
download | kdeltachat-c89e617850480b4949adbc33e07cb1b2293aa3a9.tar.gz kdeltachat-c89e617850480b4949adbc33e07cb1b2293aa3a9.zip |
Redo chatlist items based on AbstractListItem
BasicListItem is not flexible enough to style avatars properly.
Now all avatars are of the same size.
Diffstat (limited to 'qml')
-rw-r--r-- | qml/ChatlistPage.qml | 100 |
1 files changed, 62 insertions, 38 deletions
diff --git a/qml/ChatlistPage.qml b/qml/ChatlistPage.qml index a6c3795..31c74a2 100644 --- a/qml/ChatlistPage.qml +++ b/qml/ChatlistPage.qml @@ -122,52 +122,76 @@ Kirigami.ScrollablePage { } } - delegate: Kirigami.BasicListItem { + delegate: Kirigami.AbstractListItem { width: chatlist.width - label: chatlistPage.context.getChat(model.chatId).getName() - subtitle: model.username - - leading: Kirigami.Avatar { - source: model.avatarSource - name: model.chatName - implicitWidth: height - color: chatlistPage.context.getChat(model.chatId).getColor() - MouseArea { - anchors.fill: parent - acceptedButtons: Qt.RightButton - onClicked: { - if (mouse.button === Qt.RightButton) - contextMenu.popup() + RowLayout { + Kirigami.Avatar { + source: model.avatarSource + name: model.chatName + color: chatlistPage.context.getChat(model.chatId).getColor() + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.RightButton + onClicked: { + if (mouse.button === Qt.RightButton) + contextMenu.popup() + } + + Menu { + id: contextMenu + + Action { + text: "Pin chat" + onTriggered: chatlistPage.context.setChatVisibility(model.chatId, 2) + } + Action { + text: "Unpin chat" + onTriggered: chatlistPage.context.setChatVisibility(model.chatId, 0) + } + Action { + text: "Archive chat" + onTriggered: chatlistPage.context.setChatVisibility(model.chatId, 1) + } + Action { + text: "Delete chat" + onTriggered: chatlistPage.context.deleteChat(model.chatId) + } + } } + } - Menu { - id: contextMenu + ColumnLayout { + Layout.fillWidth: true - Action { - text: "Pin chat" - onTriggered: chatlistPage.context.setChatVisibility(model.chatId, 2) - } - Action { - text: "Unpin chat" - onTriggered: chatlistPage.context.setChatVisibility(model.chatId, 0) - } - Action { - text: "Archive chat" - onTriggered: chatlistPage.context.setChatVisibility(model.chatId, 1) - } - Action { - text: "Delete chat" - onTriggered: chatlistPage.context.deleteChat(model.chatId) - } + Label { + text: chatlistPage.context.getChat(model.chatId).getName() + font.weight: Font.Bold + Layout.fillWidth: true + } + Label { + text: model.username + font: Kirigami.Theme.smallFont + Layout.fillWidth: true } } - } - trailing: Label { - text: model.freshMsgCnt - visible: model.freshMsgCnt > 0 - verticalAlignment: Text.AlignVCenter + Label { + text: model.freshMsgCnt + visible: model.freshMsgCnt > 0 + + // Align label in the center of a badge. + verticalAlignment: Text.AlignVCenter + horizontalAlignment: Text.AlignHCenter + + // Make sure badge is not too narrow. + Layout.minimumWidth: height + + background: Rectangle { + color: Kirigami.Theme.alternateBackgroundColor + radius: 0.25 * height + } + } } } } |