summaryrefslogtreecommitdiffstats
path: root/examples/sensors/sensorsshowcase/Proximity.qml
blob: 41121983ee051b211dc632a464962dd2a5f832ce (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Layouts
import QtSensors

Item {
    id: root

    required property int imageSize
    required property int fontSize

    property bool near: false

    ProximitySensor {
        id: proximity
        onReadingChanged: root.near = (reading as ProximityReading).near
        active: true
    }

    ColumnLayout {
        id: layout

        anchors.fill: parent
        spacing: 10

        Image {
            id: image

            Layout.alignment: Qt.AlignHCenter
            Layout.preferredWidth: root.near ? root.imageSize : root.imageSize * 0.75
            Layout.fillHeight: true

            source: "images/qt_logo.png"
            fillMode: Image.PreserveAspectFit
        }

        Rectangle {
            id: separator
            Layout.topMargin: 10
            Layout.bottomMargin: 10
            Layout.preferredWidth: parent.width * 0.75
            Layout.preferredHeight: 1
            Layout.alignment: Qt.AlignHCenter
            color: "black"
        }

        Text {
            Layout.fillHeight: true
            font.pixelSize: root.fontSize
            text: "Near: " + root.near
        }
    }
}