13 lines
232 B
QML
13 lines
232 B
QML
import QtQuick
|
|
|
|
ListModel {
|
|
id: eventListModel
|
|
|
|
ListElement {
|
|
eventId: "enterPressed"
|
|
eventDescription: "Emitted when pressing the enter button"
|
|
shortcut: "Return"
|
|
parameters: "Enter"
|
|
}
|
|
}
|