mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-21 21:58:06 +00:00
22 lines
444 B
QML
22 lines
444 B
QML
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
// =============================================================================
|
|
|
|
// Wrapper to use `icon` property.
|
|
Item {
|
|
property var level: null
|
|
|
|
Icon {
|
|
anchors.centerIn: parent
|
|
|
|
icon: (level !== -1 && level != null)
|
|
? Presence.getPresenceLevelIconName(level)
|
|
: ''
|
|
iconSize: parent.height > parent.width
|
|
? parent.width
|
|
: parent.height
|
|
}
|
|
}
|