mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 20:08:11 +00:00
26 lines
479 B
QML
26 lines
479 B
QML
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// =============================================================================
|
|
|
|
DesktopPopup {
|
|
id: notification
|
|
|
|
property var notificationData: ({})
|
|
|
|
signal deleteNotification (var notification)
|
|
|
|
function _close (cb) {
|
|
if (cb) {
|
|
cb()
|
|
}
|
|
|
|
deleteNotification(notification)
|
|
}
|
|
|
|
flags: {
|
|
return (Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint) |
|
|
(Qt.platform.os === 'osx' ? Qt.Window : Qt.Popup)
|
|
}
|
|
}
|