Newer
Older
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick
import QtQuick.Controls
import im.nheko
Jedi18
committed
Popup {
id: quickSwitcher
property int textHeight: Math.round(Qt.application.font.pixelSize * 2.4)
Jedi18
committed
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
// Workaround palettes not inheriting for popups
palette: timelineRoot.palette
Jedi18
committed
parent: Overlay.overlay
width: Math.min(Math.max(Math.round(parent.width / 2), 450), parent.width) // limiting width to parent.width/2 can be a bit narrow
x: Math.round(parent.width / 2 - contentWidth / 2)
y: Math.round(parent.height / 4)
Overlay.modal: Rectangle {
color: "#aa1E1E1E"
}
onClosed: TimelineManager.focusMessageInput()
Jedi18
committed
spacing: 1
MatrixTextField {
id: roomTextInput
font.pixelSize: Math.ceil(quickSwitcher.textHeight * 0.6)
width: parent.width
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))
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
completerPopup.finishCompletion();
event.accepted = true;
}
onTextEdited: {
completerPopup.completer.searchString = text;
}
Jedi18
committed
avatarHeight: quickSwitcher.textHeight
avatarWidth: quickSwitcher.textHeight
rowMargin: Math.round(quickSwitcher.textMargin / 2)
rowSpacing: quickSwitcher.textMargin
visible: roomTextInput.text.length > 0
width: parent.width
Jedi18
committed
}
Connections {
Rooms.setCurrentRoom(id);
quickSwitcher.close();
}
if (completerPopup.count > 0 && (completerPopup.currentIndex < 0 || completerPopup.currentIndex >= completerPopup.count))
target: completerPopup
}