vote up 3 vote down star

I am porting an application from Qt3 to Qt4, and need a Qt4 replacement for QApplication::mainWidget() which used to return the top-level widget in Qt3. Does anyone know how to do this in Qt4?

flag

3 Answers

vote up 2 vote down check

Technically, any widget initialized with NULL is a top level widget so QApplication shouldn't assume that one of them is better than another.
The way I usually do it is to save a pointer to the "real" main widget somewhere, even a global variable or a singleton and reference it when needed.

link|flag
vote up 2 vote down

I think topLevelWidgets() is as close at it can be.

Edit:

Yup. Qt4 added complexity (and power). There is no application wide MainWidget anymore. Many QMainWindows can be created and shown, and hidden, and shown again. This is a good thing, though :) As shoosh noticed, QT3 behaviour can be easily simulated with global variable (yuck!) or QApplication subclass.

link|flag
Yeah, I saw this method. But it felt like a step in the wrong direction since it adds complexity. This is so far the only case where I feel that the Qt3 was better than Qt4, and that's why I had to ask. I will leave the question open a little bit longer, but if no one comes up with anything better I will accept your answer. Thanks.. – Kristian Jul 19 at 20:54
Well, you always can keep track of "main widget" yourself, depending on your app. – Eugene Jul 19 at 21:03
vote up 1 vote down

I think what you're looking for has been replaced by the QMainWindow class, which does allow you to set a set and get a central widget.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.