usually yes, but for current project I use webkit to automate navigating deep into a javascript powered website, and the logic would be simpler if I could block while loading the HTML.
Is there a cleaner way to block than:
Qt Code:
loaded = false; // set to true in loadFinished() load(url); while(!loaded) { // wait } // process htmlTo copy to clipboard, switch view to plain text mode
Bookmarks