mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 14:48:15 +00:00
Display message with multiple contents (files/texts,audios). Modelisation of linphone::Content. Fix too recent version of OpenGL.
60 lines
1.8 KiB
QML
60 lines
1.8 KiB
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Clipboard 1.0
|
|
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
import Common.Styles 1.0
|
|
import Linphone.Styles 1.0
|
|
import TextToSpeech 1.0
|
|
import Utils 1.0
|
|
import Units 1.0
|
|
import UtilsCpp 1.0
|
|
import LinphoneEnums 1.0
|
|
|
|
import ColorsList 1.0
|
|
|
|
import 'Message.js' as Logic
|
|
// TODO : into Loader
|
|
// =============================================================================
|
|
TextEdit {
|
|
id: message
|
|
property ContentModel contentModel
|
|
property string lastTextSelected : ''
|
|
property font customFont : SettingsModel.textMessageFont
|
|
property int fitHeight: visible ? contentHeight + padding : 0
|
|
property int fitWidth: visible ? implicitWidth + padding*2 : 0
|
|
|
|
|
|
property int removeWarningFromBindingLoop : implicitWidth // Just a dummy variable to remove meaningless binding loop on implicitWidth
|
|
|
|
height: fitHeight
|
|
width: parent.width
|
|
visible: contentModel && contentModel.isText()
|
|
clip: true
|
|
padding: ChatStyle.entry.message.padding
|
|
readOnly: true
|
|
selectByMouse: true
|
|
font.family: customFont.family
|
|
font.pointSize: Units.dp * customFont.pointSize
|
|
text: visible ? Utils.encodeTextToQmlRichFormat(contentModel.text, {
|
|
imagesHeight: ChatStyle.entry.message.images.height,
|
|
imagesWidth: ChatStyle.entry.message.images.width
|
|
})
|
|
: ''
|
|
|
|
// See http://doc.qt.io/qt-5/qml-qtquick-text.html#textFormat-prop
|
|
// and http://doc.qt.io/qt-5/richtext-html-subset.html
|
|
textFormat: Text.RichText // To supports links and imgs.
|
|
wrapMode: TextEdit.Wrap
|
|
|
|
onCursorRectangleChanged: Logic.ensureVisible(cursorRectangle)
|
|
onLinkActivated: Qt.openUrlExternally(link)
|
|
onSelectedTextChanged:if(selectedText != '') lastTextSelected = selectedText
|
|
onActiveFocusChanged: {
|
|
if(activeFocus)
|
|
lastTextSelected = ''
|
|
deselect()
|
|
}
|
|
}
|