2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-14 04:45:20 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-10-26 17:43:09 +03:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import im.nheko
|
2021-02-21 20:40:21 +03:00
|
|
|
|
|
|
|
Popup {
|
2021-02-22 20:38:42 +03:00
|
|
|
id: quickSwitcher
|
2021-02-23 19:06:21 +03:00
|
|
|
|
2021-03-14 03:24:26 +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
|
|
|
|
2021-03-14 04:42:41 +03:00
|
|
|
background: null
|
2021-02-21 20:40:21 +03:00
|
|
|
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
|
2021-02-21 20:40:21 +03:00
|
|
|
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()
|
2021-03-14 03:24:26 +03:00
|
|
|
onOpened: {
|
2021-04-11 23:24:39 +03:00
|
|
|
roomTextInput.forceActiveFocus();
|
2021-03-14 03:24:26 +03:00
|
|
|
}
|
2021-02-21 20:40:21 +03:00
|
|
|
|
2023-06-02 02:45:24 +03:00
|
|
|
Column {
|
2021-02-21 21:31:50 +03:00
|
|
|
anchors.fill: parent
|
2022-02-21 06:06:49 +03:00
|
|
|
spacing: 1
|
|
|
|
|
|
|
|
MatrixTextField {
|
|
|
|
id: roomTextInput
|
|
|
|
|
2023-06-02 02:29:05 +03:00
|
|
|
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;
|
|
|
|
}
|
2021-02-22 20:38:42 +03:00
|
|
|
}
|
2023-06-02 02:45:24 +03:00
|
|
|
onTextEdited: {
|
|
|
|
completerPopup.completer.searchString = text;
|
|
|
|
}
|
2021-02-22 20:38:42 +03:00
|
|
|
}
|
2022-02-21 06:06:49 +03:00
|
|
|
Completer {
|
|
|
|
id: completerPopup
|
2021-02-21 20:40:21 +03:00
|
|
|
|
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
|
|
|
}
|
2021-02-21 20:40:21 +03:00
|
|
|
}
|
2021-02-22 20:38:42 +03:00
|
|
|
Connections {
|
2021-07-27 23:35:38 +03:00
|
|
|
function onCompletionSelected(id) {
|
2021-05-28 23:14:59 +03:00
|
|
|
Rooms.setCurrentRoom(id);
|
2021-03-14 03:24:26 +03:00
|
|
|
quickSwitcher.close();
|
|
|
|
}
|
2021-07-27 23:35:38 +03:00
|
|
|
function onCountChanged() {
|
2021-03-14 03:24:26 +03:00
|
|
|
if (completerPopup.count > 0 && (completerPopup.currentIndex < 0 || completerPopup.currentIndex >= completerPopup.count))
|
2023-06-02 02:45:24 +03:00
|
|
|
completerPopup.currentIndex = 0;
|
2021-02-22 20:38:42 +03:00
|
|
|
}
|
2021-07-27 23:35:38 +03:00
|
|
|
|
2021-02-22 20:38:42 +03:00
|
|
|
target: completerPopup
|
|
|
|
}
|
2021-03-14 01:52:46 +03:00
|
|
|
}
|