2021-01-12 15:03:39 +01:00
|
|
|
import QtQuick 2.5
|
2019-11-03 03:28:16 +01:00
|
|
|
import QtQuick.Controls 2.3
|
2020-06-24 16:24:22 +02:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2020-02-27 16:48:23 +01:00
|
|
|
TextEdit {
|
2020-10-08 21:11:21 +02:00
|
|
|
textFormat: TextEdit.RichText
|
|
|
|
readOnly: true
|
2020-11-25 17:38:06 +01:00
|
|
|
focus: false
|
2020-10-08 21:11:21 +02:00
|
|
|
wrapMode: Text.Wrap
|
2020-10-24 16:21:00 +02:00
|
|
|
selectByMouse: !Settings.mobileMode
|
2021-02-14 01:28:28 +01:00
|
|
|
enabled: selectByMouse
|
2020-10-08 21:11:21 +02:00
|
|
|
color: colors.text
|
|
|
|
onLinkActivated: {
|
|
|
|
if (/^https:\/\/matrix.to\/#\/(@.*)$/.test(link)) {
|
|
|
|
chat.model.openUserProfile(/^https:\/\/matrix.to\/#\/(@.*)$/.exec(link)[1]);
|
|
|
|
} else if (/^https:\/\/matrix.to\/#\/(![^\/]*)$/.test(link)) {
|
|
|
|
TimelineManager.setHistoryView(/^https:\/\/matrix.to\/#\/(!.*)$/.exec(link)[1]);
|
|
|
|
} else if (/^https:\/\/matrix.to\/#\/(![^\/]*)\/(\$.*)$/.test(link)) {
|
|
|
|
var match = /^https:\/\/matrix.to\/#\/(![^\/]*)\/(\$.*)$/.exec(link);
|
|
|
|
TimelineManager.setHistoryView(match[1]);
|
|
|
|
chat.positionViewAtIndex(chat.model.idToIndex(match[2]), ListView.Contain);
|
|
|
|
} else {
|
|
|
|
TimelineManager.openLink(link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ToolTip.visible: hoveredLink
|
|
|
|
ToolTip.text: hoveredLink
|
|
|
|
|
2021-02-14 01:28:28 +01:00
|
|
|
CursorShape {
|
2020-10-08 21:11:21 +02:00
|
|
|
anchors.fill: parent
|
2021-02-14 01:28:28 +01:00
|
|
|
cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
2020-10-08 21:11:21 +02:00
|
|
|
}
|
2019-11-03 03:28:16 +01:00
|
|
|
|
|
|
|
}
|