Warning, /rolisteam/rolisteam/src/libraries/qml_views/InstantMessaging/AvatarPanel.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick
0002 import QtQuick.Controls
0003 import QtQuick.Layouts
0004 import Customization
0005 
0006 ColumnLayout {
0007     id: root
0008     property QtObject styleSheet: Theme.styleSheet("InstantMessaging")
0009     property alias source: img.source
0010     property alias text: timestamp.text
0011 
0012     Image {
0013         id: img
0014         //source: "image://avatar/%1".arg(model.writerId)
0015         sourceSize.width:  root.styleSheet.imageSize
0016         sourceSize.height: root.styleSheet.imageSize
0017         fillMode: Image.PreserveAspectFit
0018     }
0019     Label {
0020         id: timestamp
0021         //text: "%1 - %2".arg(model.time).arg(model.writerName)
0022         font: Theme.imLittleFont
0023         opacity: root.styleSheet.opacityTime
0024     }
0025 }