2019-11-03 05:28:16 +03:00
|
|
|
import QtQuick 2.5
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
|
2020-06-24 17:24:22 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2020-02-27 18:48:23 +03:00
|
|
|
TextEdit {
|
2019-11-03 05:28:16 +03:00
|
|
|
textFormat: TextEdit.RichText
|
|
|
|
readOnly: true
|
|
|
|
wrapMode: Text.Wrap
|
2020-07-26 03:06:38 +03:00
|
|
|
selectByMouse: ma.containsMouse // try to make scrollable by finger but selectable by mouse
|
2020-02-27 18:48:23 +03:00
|
|
|
color: colors.text
|
2019-11-03 05:28:16 +03:00
|
|
|
|
|
|
|
onLinkActivated: {
|
|
|
|
if (/^https:\/\/matrix.to\/#\/(@.*)$/.test(link)) chat.model.openUserProfile(/^https:\/\/matrix.to\/#\/(@.*)$/.exec(link)[1])
|
2020-06-24 17:24:22 +03:00
|
|
|
else if (/^https:\/\/matrix.to\/#\/(![^\/]*)$/.test(link)) TimelineManager.setHistoryView(/^https:\/\/matrix.to\/#\/(!.*)$/.exec(link)[1])
|
2019-11-09 00:29:47 +03:00
|
|
|
else if (/^https:\/\/matrix.to\/#\/(![^\/]*)\/(\$.*)$/.test(link)) {
|
2019-11-03 05:28:16 +03:00
|
|
|
var match = /^https:\/\/matrix.to\/#\/(![^\/]*)\/(\$.*)$/.exec(link)
|
2020-06-24 17:24:22 +03:00
|
|
|
TimelineManager.setHistoryView(match[1])
|
2019-11-03 05:28:16 +03:00
|
|
|
chat.positionViewAtIndex(chat.model.idToIndex(match[2]), ListView.Contain)
|
|
|
|
}
|
|
|
|
else Qt.openUrlExternally(link)
|
|
|
|
}
|
|
|
|
MouseArea
|
|
|
|
{
|
2020-02-02 02:27:28 +03:00
|
|
|
id: ma
|
2019-11-03 05:28:16 +03:00
|
|
|
anchors.fill: parent
|
2020-02-27 01:43:54 +03:00
|
|
|
propagateComposedEvents: true
|
2020-07-26 03:06:38 +03:00
|
|
|
hoverEnabled: true
|
2020-02-27 01:43:54 +03:00
|
|
|
acceptedButtons: Qt.NoButton
|
2019-11-03 05:28:16 +03:00
|
|
|
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
|
|
}
|
|
|
|
|
2020-02-02 02:27:28 +03:00
|
|
|
ToolTip.visible: hoveredLink
|
|
|
|
ToolTip.text: hoveredLink
|
2019-11-03 05:28:16 +03:00
|
|
|
}
|