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
|
|
|
|
|
2022-02-21 06:06:49 +03:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
2021-02-21 20:40:21 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
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)
|
2021-02-23 19:06:21 +03:00
|
|
|
|
2021-03-14 04:42:41 +03:00
|
|
|
background: null
|
2022-02-18 23:06:28 +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
|
2022-02-21 06:06:49 +03:00
|
|
|
x: Math.round(parent.width / 2 - contentWidth / 2)
|
|
|
|
y: Math.round(parent.height / 4)
|
2021-02-21 20:40:21 +03:00
|
|
|
modal: true
|
|
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
|
|
|
parent: Overlay.overlay
|
2021-05-13 09:23:56 +03:00
|
|
|
palette: Nheko.colors
|
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
|
|
|
}
|
2023-02-14 17:24:03 +03:00
|
|
|
onClosed: TimelineManager.focusMessageInput()
|
2022-03-01 03:59:06 +03:00
|
|
|
property int textMargin: Nheko.paddingSmall
|
2021-02-21 20:40:21 +03:00
|
|
|
|
2022-02-21 06:06:49 +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
|
|
|
|
|
|
|
|
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))
|
2021-08-22 19:02:26 +03:00
|
|
|
completerPopup.up();
|
2022-02-21 06:06:49 +03:00
|
|
|
else
|
2021-08-22 19:02:26 +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
|
|
|
}
|
|
|
|
}
|
2021-02-21 20:40:21 +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
|
|
|
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
|
|
|
|
}
|
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))
|
2022-02-21 06:06:49 +03:00
|
|
|
completerPopup.currentIndex = 0;
|
2021-03-14 03:24:26 +03:00
|
|
|
|
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-02-23 19:06:21 +03:00
|
|
|
|
2021-03-14 03:24:26 +03:00
|
|
|
Overlay.modal: Rectangle {
|
|
|
|
color: "#aa1E1E1E"
|
2021-02-23 19:06:21 +03:00
|
|
|
}
|
2021-03-14 03:24:26 +03:00
|
|
|
|
2021-03-14 01:52:46 +03:00
|
|
|
}
|