nheko/resources/qml/MatrixText.qml

37 lines
1.2 KiB
QML
Raw Normal View History

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
TextEdit {
2020-10-08 21:11:21 +02:00
textFormat: TextEdit.RichText
readOnly: true
focus: false
2020-10-08 21:11:21 +02:00
wrapMode: Text.Wrap
selectByMouse: !Settings.mobileMode
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
MouseArea {
id: ma
2019-11-03 03:28:16 +01:00
2020-10-08 21:11:21 +02:00
anchors.fill: parent
acceptedButtons: Qt.NoButton
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
}
2019-11-03 03:28:16 +01:00
}