mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Merge pull request #1379 from Bubu/style_presence_status
Status Message Improvements
This commit is contained in:
commit
5301f98d4a
2 changed files with 36 additions and 2 deletions
|
@ -348,6 +348,7 @@ Item {
|
|||
}
|
||||
property int remainingWidth: chat.delegateMaxWidth - spacing - messageUserAvatar.width
|
||||
AbstractButton {
|
||||
id: userNameButton
|
||||
contentItem: ElidedLabel {
|
||||
id: userName_
|
||||
fullText: userName
|
||||
|
@ -373,12 +374,21 @@ Item {
|
|||
|
||||
Label {
|
||||
id: statusMsg
|
||||
anchors.baseline: userNameButton.baseline
|
||||
color: Nheko.colors.buttonText
|
||||
text: Presence.userStatus(userId)
|
||||
textFormat: Text.PlainText
|
||||
elide: Text.ElideRight
|
||||
width: userInfo.remainingWidth - userName_.width - parent.spacing
|
||||
width: Math.min(implicitWidth, userInfo.remainingWidth - userName_.width - parent.spacing)
|
||||
font.italic: true
|
||||
font.pointSize: Math.floor(fontMetrics.font.pointSize * 0.8)
|
||||
ToolTip.text: qsTr("%1's status message").arg(userName)
|
||||
ToolTip.visible: statusMsgHoverHandler.hovered
|
||||
ToolTip.delay: Nheko.tooltipDelay
|
||||
|
||||
HoverHandler {
|
||||
id: statusMsgHoverHandler
|
||||
}
|
||||
|
||||
Connections {
|
||||
target: Presence
|
||||
|
|
|
@ -56,7 +56,7 @@ ApplicationWindow {
|
|||
id: contentL
|
||||
|
||||
width: devicelist.width
|
||||
spacing: 10
|
||||
spacing: Nheko.paddingMedium
|
||||
|
||||
Avatar {
|
||||
id: displayAvatar
|
||||
|
@ -177,6 +177,28 @@ ApplicationWindow {
|
|||
Layout.alignment: Qt.AlignHCenter
|
||||
}
|
||||
|
||||
MatrixText {
|
||||
id: statusMsg
|
||||
text: updateStatus()
|
||||
visible: Presence.userStatus(profile.userid) != ""
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
Layout.fillWidth: true
|
||||
horizontalAlignment: TextEdit.AlignHCenter
|
||||
Layout.leftMargin: Nheko.paddingMedium
|
||||
Layout.rightMargin: Nheko.paddingMedium
|
||||
font.pointSize: Math.floor(fontMetrics.font.pointSize * 0.9)
|
||||
|
||||
function updateStatus(){
|
||||
return qsTr("<i><b>Status:</b> %1</i>").arg(Presence.userStatus(profile.userid))
|
||||
}
|
||||
Connections {
|
||||
target: Presence
|
||||
function onPresenceChanged(id) {
|
||||
if (id == profile.userid) statusMsg.text = statusMsg.updateStatus();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
RowLayout {
|
||||
visible: !profile.isGlobalUserProfile
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
|
@ -295,6 +317,8 @@ ApplicationWindow {
|
|||
ColumnLayout {
|
||||
spacing: 0
|
||||
|
||||
Layout.leftMargin: Nheko.paddingMedium
|
||||
Layout.rightMargin: Nheko.paddingMedium
|
||||
RowLayout {
|
||||
Text {
|
||||
Layout.fillWidth: true
|
||||
|
|
Loading…
Reference in a new issue