mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-22 14:18:09 +00:00
51 lines
1.3 KiB
QML
51 lines
1.3 KiB
QML
import QtQuick 2.7
|
|
|
|
// Warning: This import is necessary to use the attached property `Screen`.
|
|
// See: https://doc-snapshots.qt.io/qt5-5.7/qml-qtquick-window-screen.html
|
|
import QtQuick.Window 2.2
|
|
|
|
import Common 1.0
|
|
import Linphone.Styles 1.0
|
|
import Utils 1.0
|
|
|
|
// =============================================================================
|
|
|
|
DesktopPopup {
|
|
id: notification
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
property int notificationOffset: 0
|
|
property alias notificationHeight: notification.popupHeight
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
flags: Qt.Popup
|
|
|
|
Component.onCompleted: {
|
|
var window = data[0]
|
|
|
|
Utils.assert(
|
|
Utils.qmlTypeof(window, 'QQuickWindowQmlImpl'), true,
|
|
'Unable to found `Window` object in `DesktopPopup`.'
|
|
)
|
|
|
|
window.x = Qt.binding(function () {
|
|
var screen = window.Screen
|
|
return screen != null
|
|
? screen.width - window.width - NotificationStyle.margin
|
|
: 0
|
|
})
|
|
|
|
window.y = Qt.binding(function () {
|
|
var screen = window.Screen
|
|
|
|
if (screen == null) {
|
|
return 0
|
|
}
|
|
|
|
var height = screen.desktopAvailableHeight - window.height
|
|
return height - notificationOffset % height
|
|
})
|
|
}
|
|
}
|