aboutsummaryrefslogtreecommitdiffstats
path: root/doc/qtdesignstudio/examples/Loginui1/imports/loginui1/EventListModel.qml
blob: cf19b4f949f9985654b62ba66cb25373897c714e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0

import QtQuick

ListModel {
    id: eventListModel

    ListElement {
        eventId: "enterPressed"
        eventDescription: "Emitted when pressing the enter button"
        shortcut: "Return"
        parameters: "Enter"
    }
}