summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/mock-delegates/QtWebEngine/ControlsDelegates/PromptDialog.qml
blob: 81a63d91843ae06bbd94b6d16dbb3a42421fdea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

import QtQml
import QtTest
import "../../TestParams"

QtObject {
    property string text
    property string title
    signal accepted()
    signal rejected()
    signal input(string text)
    signal closing()

    function open() {
        JSDialogParams.dialogTitle = title;
        JSDialogParams.dialogMessage = text;
        JSDialogParams.dialogCount++;
        if (JSDialogParams.shouldAcceptDialog) {
            input(JSDialogParams.inputForPrompt)
            accepted();
        } else {
            rejected();
        }
    }
}