aboutsummaryrefslogtreecommitdiff
path: root/qml
diff options
context:
space:
mode:
authorlink2xt <link2xt@testrun.org>2021-08-28 12:03:50 +0000
committerlink2xt <link2xt@testrun.org>2021-08-28 15:05:39 +0300
commite3b1f014df55f08f557667919d271f079f5f492f (patch)
treeddec47a41a69cb3f994756fa52d789571e40a702 /qml
parent6d2fc32a423b7b470521c67d94d9b59c168a948f (diff)
downloadkdeltachat-e3b1f014df55f08f557667919d271f079f5f492f.tar.gz
kdeltachat-e3b1f014df55f08f557667919d271f079f5f492f.zip
Add padlock and bot icons to messages, improve layout
Diffstat (limited to 'qml')
-rw-r--r--qml/Message.qml21
1 files changed, 19 insertions, 2 deletions
diff --git a/qml/Message.qml b/qml/Message.qml
index c7daf07..15d4b09 100644
--- a/qml/Message.qml
+++ b/qml/Message.qml
@@ -200,7 +200,9 @@ RowLayout {
text = messageObject.message.text
}
}
- Row {
+ RowLayout {
+ Layout.alignment: Qt.AlignRight
+
HtmlViewSheet {
id: htmlSheet
subject: ""
@@ -216,8 +218,23 @@ RowLayout {
htmlSheet.open()
}
}
+
+ Kirigami.Icon {
+ source: "computer"
+ visible: messageObject.message.isBot
+ Layout.preferredHeight: Kirigami.Units.gridUnit
+ Layout.preferredWidth: Kirigami.Units.gridUnit
+ }
+
+ Kirigami.Icon {
+ source: messageObject.message.showPadlock ? "lock" : "unlock"
+ Layout.preferredHeight: Kirigami.Units.gridUnit
+ Layout.preferredWidth: Kirigami.Units.gridUnit
+ }
+
Label {
- Layout.fillWidth: true
+ font.pixelSize: 14
+ color: Kirigami.Theme.disabledTextColor
text: Qt.formatDateTime(messageObject.message.timestamp, "dd. MMM yyyy, hh:mm")
+ (messageObject.message.state == 26 ? "✓"
: messageObject.message.state == 28 ? "✓✓"