Skip to content
Snippets Groups Projects
QuickSwitcher.qml 2.28 KiB
Newer Older
  • Learn to ignore specific revisions
  • import QtQuick 2.9
    import QtQuick.Controls 2.3
    import im.nheko 1.0
    
    Popup {
    
    Jedi18's avatar
    Jedi18 committed
    
    
        property int textMargin: 8
    
    Jedi18's avatar
    Jedi18 committed
    
    
        x: parent.width / 2 - width / 2
        y: parent.height / 4 - height / 2
        width: parent.width / 2
        modal: true
        closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
        parent: Overlay.overlay
    
        Overlay.modal: Rectangle {
            color: "#aa1E1E1E"
        }
    
    
    Jedi18's avatar
    Jedi18 committed
        MatrixTextField {
    
            font.pixelSize: Math.ceil(quickSwitcher.textHeight * 0.6)
    
            color: colors.text
    
    
            onTextEdited: {
                completerPopup.completer.setSearchString(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;
    
            x: roomTextInput.x
            y: roomTextInput.y + roomTextInput.height + textMargin
            width: parent.width
    
            avatarHeight: textHeight
            avatarWidth: textHeight
    
    Jedi18's avatar
    Jedi18 committed
            centerRowContent: false
    
            rowMargin: 8
            rowSpacing: 6
    
    
            closePolicy: Popup.NoAutoClose
    
    Jedi18's avatar
    Jedi18 committed
            delay(200, function() {
                roomTextInput.forceActiveFocus()
            })
    
        }
    
        onClosed: {
            completerPopup.close()
    
    
        Connections {
            onCompletionSelected: {
                TimelineManager.setHistoryView(id)
    
                TimelineManager.highlightRoom(id)
    
                quickSwitcher.close()
            }
            target: completerPopup
        }
    
    Jedi18's avatar
    Jedi18 committed
    
        Timer {
            id: timer
        }
    
        function delay(delayTime, cb) {
            timer.interval = delayTime;
            timer.repeat = false;
            timer.triggered.connect(cb);
            timer.start();
        }