This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/example/doric/resources/alert.qml
2021-07-21 19:03:29 +08:00

56 lines
1.0 KiB
QML

import QtQuick 2.12
import QtQuick.Controls 2.12
ApplicationWindow {
id: window
flags: Qt.WindowStaysOnTopHint | Qt.Tool | Qt.FramelessWindowHint
visible: true
modality: Qt.ApplicationModal
property var pointer
property var plugin
property var callbackId
property var title
property var msg
property var okLabel
onTitleChanged: {
dialog.title = title
}
onMsgChanged: {
content.text = msg
}
onOkLabelChanged: {
dialog.standardButton(Dialog.Ok).text = qsTrId(okLabel)
}
Dialog {
id: dialog
standardButtons: Dialog.Ok
modal: true
contentItem: Text {
id: content
}
onAccepted: {
dialogBridge.onAccepted(pointer, plugin, callbackId)
}
onWidthChanged: {
window.width = implicitWidth
}
onHeightChanged: {
window.height = implicitHeight
}
}
Component.onCompleted: {
dialog.open()
}
}