moment/harmonyqml/components/SidePane/PaneToolBar.qml

26 lines
557 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
Layout.fillWidth: true
Layout.preferredHeight: 32
2019-03-26 09:29:46 +11:00
2019-04-29 05:13:18 +10:00
Base.HButton {
iconName: "settings"
backgroundColor: Base.HStyle.sidePane.settingsButton.background
}
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-04-29 05:13:18 +10:00
backgroundColor: Base.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
}
}