23 lines
419 B
QML
Raw Normal View History

2019-03-25 18:29:46 -04:00
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
2019-04-28 12:45:12 -04:00
import "../Base" as Base
2019-03-25 18:29:46 -04:00
Base.HRowLayout {
id: toolBar
2019-03-25 18:29:46 -04:00
spacing: 0
Layout.fillWidth: true
Layout.preferredHeight: 32
2019-03-25 18:29:46 -04:00
Base.HButton { iconName: "settings" }
2019-03-25 18:29:46 -04:00
Base.HTextField {
2019-03-25 18:29:46 -04:00
id: filterField
placeholderText: qsTr("Filter rooms")
2019-03-25 18:29:46 -04:00
Layout.fillWidth: true
Layout.preferredHeight: 32
2019-03-25 18:29:46 -04:00
}
}