Help me understand Qt.quit()

• júl 18, 2018 - 03:31

The attached plugin code has the following onRun block:

    onRun: {
        console.log("flag 1");
 
        if (true) {
            console.log("flag 2");
            Qt.quit();
            console.log("flag 3");
        }
 
        console.log("flag 4");
        applyToNotesInSelection(
            function(note) {
                note.color = "orange";
            }
        );
        console.log("flag 5");
 
        Qt.quit();
    }

As I would expect, flags 1 and 2 print, and flags 3-5 don't. But I don't understand why applyToNotesInSelection is executed, coloring any selected notes orange.

Could someone explain what's happening here?

Príloha Veľkosť
quitTest.qml 2.97 KB

Comments

I'll make an attempt to clarify. The main reason for this behavior is that a QML plugin is run on top of the Qt Event(loop) system.

See http://doc.qt.io/qt-5/qml-qtqml-qt.html#quit-method and the related signal description. When you call Qt.quit() you're not actually quitting the execution of your script. You are sending out a signal saying that you would like to stop executing the script and the QmlEngine running you should stop you.
So you place that signal (event) onto the eventlist to be processed by the QmlEngine, but you may still be further executing in your script.

At a later point in time, control is switched away from your script and to the next thread; eventually the QmlEngine will be swapped in.
It is only now that it can start processing its Eventlist; and only once it reaches the quit-event you've sent out in that list, will it actually terminate your script; thus preventing further execution.

In reply to by jeetee

Thank you jeetee! That's very helpful and gives me an idea where to look for more details. And I can set a boolean variable to prevent note-processing if there are errors, now that I understand why Qt.quit() isn't doing it for me.

Do you still have an unanswered question? Please log in first to post your question.