2019-04-28 15:45:42 -04:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-28 15:18:36 -04:00
|
|
|
import "../Base"
|
2019-03-25 18:29:46 -04:00
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HRowLayout {
|
2019-04-20 17:45:51 -04:00
|
|
|
id: toolBar
|
2019-03-25 18:29:46 -04:00
|
|
|
|
2019-04-28 12:08:54 -04:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.preferredHeight: 32
|
2019-03-25 18:29:46 -04:00
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HButton {
|
2019-04-28 15:13:18 -04:00
|
|
|
iconName: "settings"
|
2019-04-28 15:18:36 -04:00
|
|
|
backgroundColor: HStyle.sidePane.settingsButton.background
|
2019-04-28 15:13:18 -04:00
|
|
|
}
|
2019-03-25 18:29:46 -04:00
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HTextField {
|
2019-03-25 18:29:46 -04:00
|
|
|
id: filterField
|
|
|
|
placeholderText: qsTr("Filter rooms")
|
2019-04-28 15:18:36 -04:00
|
|
|
backgroundColor: HStyle.sidePane.filterRooms.background
|
2019-04-28 12:08:54 -04:00
|
|
|
|
2019-03-25 18:29:46 -04:00
|
|
|
Layout.fillWidth: true
|
2019-04-28 12:08:54 -04:00
|
|
|
Layout.preferredHeight: 32
|
2019-03-25 18:29:46 -04:00
|
|
|
}
|
|
|
|
}
|