> This is on OS X, so I could also use a native API like KVO on [NSApp windows]
> but that doesn't seem to work as I'd like, possibly because that's not an
> observable property and undoubtedly also because not all WIds are NSWindows.
On OS X with Qt 5, WId's are NSViews. You can get the NSWindo
Den 27-02-2016 kl. 07:15 skrev Syam:
Hello,
Inspired from the recent discussions on QThread, I have the following
question.
I have:
class MyThread : public QThread
{
Q_OBJECT
//the constructor and other stuff
signals:
void mySignal();
protected:
virtual void run()
{