linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml
2017-06-14 18:05:18 +02:00

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)
}
}