You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
366 B
28 lines
366 B
10 years ago
|
import QtQuick 2.2
|
||
|
import QtQuick.Window 2.0
|
||
|
|
||
|
Window
|
||
|
{
|
||
|
id: alertMessageDialog
|
||
|
title: ""
|
||
|
modality: Qt.WindowModal
|
||
|
height: 150
|
||
|
width: 200
|
||
|
visible: false
|
||
|
Loader
|
||
|
{
|
||
|
focus: true
|
||
|
id: alertMessageDialogContent
|
||
|
objectName: "alertMessageDialogContent"
|
||
|
anchors.fill: parent
|
||
|
}
|
||
|
function open()
|
||
|
{
|
||
|
visible = true
|
||
|
}
|
||
|
function close()
|
||
|
{
|
||
|
visible = false
|
||
|
}
|
||
|
}
|