27 lines
443 B
QML
27 lines
443 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
|
|
TextField {
|
|
id: field
|
|
|
|
signal submitted(query: string)
|
|
|
|
Layout.preferredWidth: 300
|
|
placeholderText: qsTr("Suche")
|
|
|
|
Keys.onReturnPressed: {
|
|
field.submitted(field.text);
|
|
}
|
|
|
|
Button {
|
|
icon.source: "qrc:/images/MagnifyingGlass.svg"
|
|
isFieldButton: true
|
|
|
|
onClicked: {
|
|
field.submitted(field.text)
|
|
}
|
|
}
|
|
}
|