Qobject close and show
Unsolved
General and Desktop
-
Hi
Since its not visible im not sure what show() or close() should do. ?
Often you dispose with deletelater
http://doc.qt.io/qt-5/qobject.html#deleteLaterWhat do you need a show() or close() for ?
-
Hi,
Why do you want to change your QWidget into QObject ?
-
Then you can stop immediately. GUI objects should only be accessed in the GUI thread. Moving them around is wrong. Use signals and slots to communicate from threads back to your GUI.
By the way, you don't move functions between threads, you move objects.