Hello,

at the moment i try to program a simple multithreaded internet search application. In the beginning, there is one QWidget with an input field and a push button. upon pressing the pushbutton, a new qwidget pops up containing two QWebViews, each of those searching for the same query, one through google and the other one through wikipedia.

The problem is the multithreading. I want to design it, so that each QWebView runs in its own thread using QThread, thus performing the rendering in different threads.
Now, how can i let a class deriving from QThread create a QWebView which will be displayed in another class's QWidget?

thank you for your time! if you need further information i am more than happy to share it with you!

yours sincerely
replax