moment/harmonyqml/components/SidePane/PaneToolBar.qml

24 lines
477 B
QML

import QtQuick.Layouts 1.3
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
}
}