aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/qquickapplicationwindow/data/clearfocusondestruction.qml
blob: 56dfa89e6874eb712fa20e7eceb93da9c74f092b (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
28
29
30
31
32
33
34
35
36
37
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtGraphicalEffects

ApplicationWindow {
    width: 200
    height: 200
    visible: true

    property alias textfield: textfield

    /*
     * The code below is the simplest way we can trigger that the signal
     * activeFocusItemChanged() is emitted during destruction of the
     * ApplicationWindow. This caused a crash in QQuickApplicationWindow.
     */
    FastBlur {
        id: fastBlur
        anchors.fill: parent
        radius: 30
        source: ShaderEffectSource {
            id: effectsource
            sourceItem: textfield
            sourceRect: Qt.rect( 0, 0, fastBlur.width, fastBlur.height )
        }
    }

    TextField {
        id: textfield
        anchors.bottom: parent.bottom
        focus: true
    }
}