20 lines
472 B
QML
20 lines
472 B
QML
|
import QtQuick 2.12
|
||
|
import QtQuick.Layouts 1.12
|
||
|
import QtAV 1.7
|
||
|
import "../../Base"
|
||
|
import "../../Base/MediaPlayer"
|
||
|
import "../../utils.js" as Utils
|
||
|
|
||
|
VideoPlayer {
|
||
|
id: video
|
||
|
width: fullScreen ? implicitWidth : Math.min(
|
||
|
mainColumn.width - eventContent.spacing * 2,
|
||
|
theme.chat.message.videoWidth,
|
||
|
)
|
||
|
|
||
|
onHoveredChanged: {
|
||
|
eventDelegate.hoveredMediaTypeUrl =
|
||
|
hovered ? [EventDelegate.Media.Video, video.source] : []
|
||
|
}
|
||
|
}
|