2020-05-13 22:03:50 +10:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import "../Base"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
// Hide filter field overflowing for a sec on size changes
|
|
|
|
clip: true
|
|
|
|
implicitHeight: theme.baseElementsHeight
|
|
|
|
color: theme.mainPane.bottomBar.background
|
|
|
|
|
|
|
|
|
|
|
|
property RoomList roomList
|
|
|
|
readonly property alias addAccountButton: addAccountButton
|
|
|
|
readonly property alias filterField: filterField
|
|
|
|
|
|
|
|
|
|
|
|
HRowLayout {
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
HButton {
|
|
|
|
id: addAccountButton
|
|
|
|
icon.name: "add-account"
|
|
|
|
toolTip.text: qsTr("Add another account")
|
|
|
|
backgroundColor: theme.mainPane.bottomBar.settingsButtonBackground
|
2020-07-11 00:33:00 +10:00
|
|
|
onClicked: {
|
|
|
|
pageLoader.showPage("AddAccount/AddAccount")
|
|
|
|
roomList.startCorrectItemSearch()
|
|
|
|
}
|
2020-05-13 22:03:50 +10:00
|
|
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
|
|
|
HShortcut {
|
|
|
|
sequences: window.settings.keys.addNewAccount
|
|
|
|
onActivated: addAccountButton.clicked()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HTextField {
|
|
|
|
id: filterField
|
|
|
|
saveName: "roomFilterField"
|
|
|
|
|
|
|
|
placeholderText: qsTr("Filter rooms")
|
2020-05-13 22:24:53 +10:00
|
|
|
backgroundColor: theme.mainPane.bottomBar.filterFieldBackground
|
2020-05-13 22:03:50 +10:00
|
|
|
bordered: false
|
|
|
|
opacity: width >= 16 * theme.uiScale ? 1 : 0
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
2020-07-10 10:44:36 +10:00
|
|
|
Keys.forwardTo: [roomList]
|
|
|
|
Keys.priority: Keys.AfterItem
|
2020-05-13 22:03:50 +10:00
|
|
|
|
|
|
|
Keys.onEnterPressed: Keys.onReturnPressed(event)
|
|
|
|
Keys.onReturnPressed: {
|
|
|
|
roomList.showItemAtIndex()
|
|
|
|
if (window.settings.clearRoomFilterOnEnter) text = ""
|
|
|
|
}
|
|
|
|
|
2020-07-10 11:40:33 +10:00
|
|
|
Keys.onMenuPressed:
|
|
|
|
if (roomList.currentItem)
|
|
|
|
roomList.currentItem.doRightClick(false)
|
|
|
|
|
2020-05-13 22:03:50 +10:00
|
|
|
Keys.onEscapePressed: {
|
2020-05-14 16:14:54 +10:00
|
|
|
mainPane.toggleFocus()
|
2020-05-13 22:03:50 +10:00
|
|
|
if (window.settings.clearRoomFilterOnEscape) text = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Behavior on opacity { HNumberAnimation {} }
|
|
|
|
|
|
|
|
HShortcut {
|
|
|
|
sequences: window.settings.keys.clearRoomFilter
|
|
|
|
onActivated: filterField.text = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
HShortcut {
|
|
|
|
sequences: window.settings.keys.toggleFocusMainPane
|
2020-05-14 16:14:54 +10:00
|
|
|
onActivated: mainPane.toggleFocus()
|
2020-05-13 22:03:50 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|