matrixion/resources/qml/QuickSwitcher.qml

94 lines
2.9 KiB
QML
Raw Permalink Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
2021-03-14 04:45:20 +03:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
2022-02-21 06:06:49 +03: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 19:06:21 +03:00
property int textHeight: Math.round(Qt.application.font.pixelSize * 2.4)
2023-06-02 02:45:24 +03:00
property int textMargin: Nheko.paddingSmall
2021-02-23 19:06:21 +03:00
background: null
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
2023-06-02 02:45:24 +03:00
modal: true
2023-06-08 02:51:27 +03:00
// Workaround palettes not inheriting for popups
palette: timelineRoot.palette
parent: Overlay.overlay
2023-06-02 02:45:24 +03: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
x: Math.round(parent.width / 2 - contentWidth / 2)
y: Math.round(parent.height / 4)
Overlay.modal: Rectangle {
color: "#aa1E1E1E"
}
onClosed: TimelineManager.focusMessageInput()
onOpened: {
2021-04-11 23:24:39 +03:00
roomTextInput.forceActiveFocus();
}
2023-06-02 02:45:24 +03:00
Column {
anchors.fill: parent
2022-02-21 06:06:49 +03:00
spacing: 1
MatrixTextField {
id: roomTextInput
color: palette.text
2023-06-02 02:45:24 +03:00
font.pixelSize: Math.ceil(quickSwitcher.textHeight * 0.6)
width: parent.width
2023-06-03 00:03:56 +03:00
Keys.onPressed: event => {
2022-02-21 06:06:49 +03:00
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))
2023-06-02 02:45:24 +03:00
completerPopup.up();
2022-02-21 06:06:49 +03:00
else
2023-06-02 02:45:24 +03:00
completerPopup.down();
2022-02-21 06:06:49 +03:00
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
completerPopup.finishCompletion();
event.accepted = true;
}
}
2023-06-02 02:45:24 +03:00
onTextEdited: {
completerPopup.completer.searchString = text;
}
}
2022-02-21 06:06:49 +03:00
Completer {
id: completerPopup
2022-02-21 06:06:49 +03:00
avatarHeight: quickSwitcher.textHeight
avatarWidth: quickSwitcher.textHeight
2023-06-02 02:45:24 +03:00
bottomToTop: false
2022-02-21 06:06:49 +03:00
centerRowContent: false
2023-06-02 02:45:24 +03:00
completerName: "room"
fullWidth: true
2022-02-21 06:06:49 +03:00
rowMargin: Math.round(quickSwitcher.textMargin / 2)
rowSpacing: quickSwitcher.textMargin
2023-06-02 02:45:24 +03:00
visible: roomTextInput.text.length > 0
width: parent.width
2022-02-21 06:06:49 +03:00
}
}
Connections {
function onCompletionSelected(id) {
Rooms.setCurrentRoom(id);
quickSwitcher.close();
}
function onCountChanged() {
if (completerPopup.count > 0 && (completerPopup.currentIndex < 0 || completerPopup.currentIndex >= completerPopup.count))
2023-06-02 02:45:24 +03:00
completerPopup.currentIndex = 0;
}
target: completerPopup
}
}