moment/harmonyqml/components/sidePane/HToolBar.qml
miruka 2e8e042808 Replace HToolButton usages with HButton
Also change sidePane toolbar: option button and filter rooms field
2019-04-28 12:10:34 -04:00

23 lines
419 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
import "../base" as Base
Base.HRowLayout {
id: toolBar
spacing: 0
Layout.fillWidth: true
Layout.preferredHeight: 32
Base.HButton { iconName: "settings" }
Base.HTextField {
id: filterField
placeholderText: qsTr("Filter rooms")
Layout.fillWidth: true
Layout.preferredHeight: 32
}
}