mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
34 lines
1.1 KiB
QML
34 lines
1.1 KiB
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 2.3
|
|
import im.nheko 1.0
|
|
|
|
TextEdit {
|
|
textFormat: TextEdit.RichText
|
|
readOnly: true
|
|
focus: false
|
|
wrapMode: Text.Wrap
|
|
selectByMouse: !Settings.mobileMode
|
|
enabled: selectByMouse
|
|
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
|
|
|
|
CursorShape {
|
|
anchors.fill: parent
|
|
cursorShape: hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
}
|
|
|
|
}
|