Alisa/native/QTprojeckt/NativGuiAlisa/imports/NativGuiAlisa/EventListModel.qml
2024-07-08 14:07:07 +02:00

15 lines
348 B
QML

// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick 6.2
ListModel {
id: eventListModel
ListElement {
eventId: "enterPressed"
eventDescription: "Emitted when pressing the enter button"
shortcut: "Return"
parameters: "Enter"
}
}