moment/harmonyqml/components/SidePane/PaneToolBar.qml

26 lines
524 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
import "../Base"
2019-03-26 09:29:46 +11:00
HRowLayout {
id: toolBar
2019-03-26 09:29:46 +11:00
Layout.fillWidth: true
Layout.preferredHeight: 32
2019-03-26 09:29:46 +11:00
HButton {
2019-04-29 05:13:18 +10:00
iconName: "settings"
backgroundColor: HStyle.sidePane.settingsButton.background
2019-04-29 05:13:18 +10:00
}
2019-03-26 09:29:46 +11:00
HTextField {
2019-03-26 09:29:46 +11:00
id: filterField
placeholderText: qsTr("Filter rooms")
backgroundColor: HStyle.sidePane.filterRooms.background
2019-03-26 09:29:46 +11:00
Layout.fillWidth: true
Layout.preferredHeight: 32
2019-03-26 09:29:46 +11:00
}
}