Skip to content
Snippets Groups Projects
QuickSwitcher.qml 2.57 KiB
Newer Older
  • Learn to ignore specific revisions
  • // SPDX-FileCopyrightText: 2021 Nheko Contributors
    //
    // SPDX-License-Identifier: GPL-3.0-or-later
    
    
    import QtQuick 2.9
    import QtQuick.Controls 2.3
    import im.nheko 1.0
    
    Popup {
    
    Jedi18's avatar
    Jedi18 committed
    
    
        property int textHeight: Math.round(Qt.application.font.pixelSize * 2.4)
        property int textMargin: Math.round(textHeight / 8)
    
    Jedi18's avatar
    Jedi18 committed
    
    
        background: null
    
        width: Math.round(parent.width / 2)
        x: Math.round(parent.width / 2 - width / 2)
        y: Math.round(parent.height / 4 - height / 2)
    
        modal: true
        closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
        parent: Overlay.overlay
    
        palette: Nheko.colors
    
        onOpened: {
            completerPopup.open();
    
            roomTextInput.forceActiveFocus();
    
        }
        onClosed: {
            completerPopup.close();
    
    Jedi18's avatar
    Jedi18 committed
        MatrixTextField {
    
            font.pixelSize: Math.ceil(quickSwitcher.textHeight * 0.6)
    
            color: Nheko.colors.text
    
                completerPopup.completer.searchString = text;
    
            Keys.onPressed: {
                if (event.key == Qt.Key_Up && completerPopup.opened) {
                    event.accepted = true;
                    completerPopup.up();
                } else if (event.key == Qt.Key_Down && completerPopup.opened) {
                    event.accepted = true;
                    completerPopup.down();
    
                } else if (event.matches(StandardKey.InsertParagraphSeparator)) {
    
                    completerPopup.finishCompletion();
    
                    event.accepted = true;
    
            y: roomTextInput.y + quickSwitcher.textHeight + quickSwitcher.textMargin
            visible: roomTextInput.length > 0
    
            avatarHeight: quickSwitcher.textHeight
            avatarWidth: quickSwitcher.textHeight
    
    Jedi18's avatar
    Jedi18 committed
            centerRowContent: false
    
            rowMargin: Math.round(quickSwitcher.textMargin / 2)
            rowSpacing: quickSwitcher.textMargin
    
            closePolicy: Popup.NoAutoClose
    
        Connections {
            onCompletionSelected: {
    
                Rooms.setCurrentRoom(id);
    
                quickSwitcher.close();
            }
            onCountChanged: {
                if (completerPopup.count > 0 && (completerPopup.currentIndex < 0 || completerPopup.currentIndex >= completerPopup.count))
                    completerPopup.currentIndex = 0;
    
    
    Jedi18's avatar
    Jedi18 committed
    
    
        Overlay.modal: Rectangle {
            color: "#aa1E1E1E"
    
    Jedi18's avatar
    Jedi18 committed
        }