nheko/resources/qml/QuickSwitcher.qml

95 lines
2.9 KiB
QML
Raw Normal View History

2021-03-14 02:45:20 +01:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-14 02:45:20 +01:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2022-02-21 04:06:49 +01:00
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import im.nheko 1.0
Popup {
id: quickSwitcher
2021-02-23 17:06:21 +01:00
property int textHeight: Math.round(Qt.application.font.pixelSize * 2.4)
2021-02-23 17:06:21 +01:00
background: null
2022-02-18 21:06:28 +01:00
width: Math.min(Math.max(Math.round(parent.width / 2),450),parent.width) // limiting width to parent.width/2 can be a bit narrow
2022-02-21 04:06:49 +01:00
x: Math.round(parent.width / 2 - contentWidth / 2)
y: Math.round(parent.height / 4)
modal: true
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
parent: Overlay.overlay
2021-05-13 08:23:56 +02:00
palette: Nheko.colors
onOpened: {
2021-04-11 22:24:39 +02:00
roomTextInput.forceActiveFocus();
}
2022-03-01 01:59:06 +01:00
property int textMargin: Nheko.paddingSmall
2022-02-21 04:06:49 +01:00
Column{
anchors.fill: parent
2022-02-21 04:06:49 +01:00
spacing: 1
MatrixTextField {
id: roomTextInput
width: parent.width
font.pixelSize: Math.ceil(quickSwitcher.textHeight * 0.6)
color: Nheko.colors.text
onTextEdited: {
completerPopup.completer.searchString = text;
}
Keys.onPressed: {
if (event.key == Qt.Key_Up || event.key == Qt.Key_Backtab) {
event.accepted = true;
completerPopup.up();
} else if (event.key == Qt.Key_Down || event.key == Qt.Key_Tab) {
event.accepted = true;
if (event.key == Qt.Key_Tab && (event.modifiers & Qt.ShiftModifier))
completerPopup.up();
2022-02-21 04:06:49 +01:00
else
completerPopup.down();
2022-02-21 04:06:49 +01:00
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
completerPopup.finishCompletion();
event.accepted = true;
}
}
}
2022-02-21 04:06:49 +01:00
Completer {
id: completerPopup
2022-02-21 04:06:49 +01:00
visible: roomTextInput.text.length > 0
width: parent.width
completerName: "room"
bottomToTop: false
fullWidth: true
avatarHeight: quickSwitcher.textHeight
avatarWidth: quickSwitcher.textHeight
centerRowContent: false
rowMargin: Math.round(quickSwitcher.textMargin / 2)
rowSpacing: quickSwitcher.textMargin
}
}
Connections {
function onCompletionSelected(id) {
Rooms.setCurrentRoom(id);
quickSwitcher.close();
}
function onCountChanged() {
if (completerPopup.count > 0 && (completerPopup.currentIndex < 0 || completerPopup.currentIndex >= completerPopup.count))
2022-02-21 04:06:49 +01:00
completerPopup.currentIndex = 0;
}
target: completerPopup
}
2021-02-23 17:06:21 +01:00
Overlay.modal: Rectangle {
color: "#aa1E1E1E"
2021-02-23 17:06:21 +01:00
}
}