moment/harmonyqml/components/SidePane/PaneToolBar.qml

23 lines
419 B
QML
Raw Normal View History

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