moment/harmonyqml/components/SidePane/PaneToolBar.qml
2019-04-28 15:36:43 -04:00

24 lines
477 B
QML

import QtQuick.Layouts 1.0
import "../Base"
HRowLayout {
id: toolBar
Layout.fillWidth: true
Layout.preferredHeight: 32
HButton {
iconName: "settings"
backgroundColor: HStyle.sidePane.settingsButton.background
}
HTextField {
id: filterField
placeholderText: qsTr("Filter rooms")
backgroundColor: HStyle.sidePane.filterRooms.background
Layout.fillWidth: true
Layout.preferredHeight: 32
}
}