mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
12 lines
236 B
QML
12 lines
236 B
QML
import QtQuick
|
|
import QtQuick.Dialogs
|
|
|
|
MessageDialog {
|
|
title: "LQML"
|
|
buttons: MessageDialog.Save | MessageDialog.Cancel
|
|
|
|
property string callback
|
|
|
|
onAccepted: Lisp.call(callback, true)
|
|
onRejected: Lisp.call(callback, false)
|
|
}
|