28 lines
737 B
QML
28 lines
737 B
QML
import QtQuick 2.14
|
|
import shared 1.0
|
|
import shared.panels 1.0
|
|
import shared.stores 1.0
|
|
|
|
import StatusQ.Controls 0.1 as StatusQ
|
|
import utils 1.0
|
|
|
|
StyledText {
|
|
id: chatTime
|
|
|
|
property string timestamp
|
|
|
|
color: Style.current.secondaryText
|
|
text: Utils.formatShortTime(parseInt(chatTime.timestamp, 10), RootStore.accountSensitiveSettings.is24hTimeFormat)
|
|
font.pixelSize: Style.current.asideTextFontSize
|
|
|
|
StatusQ.StatusToolTip {
|
|
visible: hhandler.hovered
|
|
text: Utils.formatLongDateTime(parseInt(chatTime.timestamp, 10), RootStore.accountSensitiveSettings.isDDMMYYDateFormat, RootStore.accountSensitiveSettings.is24hTimeFormat)
|
|
maxWidth: 350
|
|
}
|
|
|
|
HoverHandler {
|
|
id: hhandler
|
|
}
|
|
}
|