PDA

View Full Version : Determine if QCoreApplication or QApplication is running



doberkofler
15th September 2010, 22:54
Is it possible to determine on run-time if a QCoreApplication or a QApplication is running?

wysota
15th September 2010, 23:13
There is QCoreApplication::startingUp() if that's what you are after.

doberkofler
15th September 2010, 23:27
Unfortunately not! I would need to determine if a console (QCoreApplication) or GUI (QApplication) has been instantiated.

wysota
16th September 2010, 00:01
You mean you want to know whether you have a QCoreApplication instance or a QApplication instance? That's quite easy actually:

bool hasGuiApp = (qobject_cast<QApplication*>(QCoreApplication::instance())!=0);
But the fact that you have a QApplication instance doesn't mean you have a GUI. QApplication can be used with a console app as well (see the third parameter to one of QApplicaiton constructors).

doberkofler
16th September 2010, 07:55
Is there a way to determine if I'm running a console or a GUI app?

ChrisW67
16th September 2010, 08:23
QApplication::type() looks very promising but failing that I suspect QApplication::topLevelWidgets() should be non-empty for a GUI app.

wysota
16th September 2010, 10:32
I suspect QApplication::topLevelWidgets() should be non-empty for a GUI app.
You can have a perfectly good GUI application without any windows being open. I'd go for type(). On X11 you could check if you have a Display structure available.

ChrisW67
16th September 2010, 23:30
I must be missing the obvious... How can you have a GUI without any top level widgets? This list will contain top level widgets even if they are hidden from view.

wysota
16th September 2010, 23:33
How can you have a GUI without any top level widgets?
I meant a GUI app, not a GUI so this is a perfectly good GUI app:

#include <QtGui>
int main(int argc, char **argv){
QApplication app(argc, argv); // GUI

return app.exec();
}

But even if we talk about an app that has a GUI this is still possible - you can have an application that only has a system tray icon, I doubt that's considered a "top-level widget".

Besides, I think the OP wants to be able to check the availability of the GUI at an arbitrary moment so it might happen that he does it when no windows are present in the application (visible or not).

doberkofler
17th September 2010, 08:14
I make of with the following that seems to work fine for me:


bool isGuiApp()
{
bool aIsGuiApp = false;
QApplication* aApplication = qobject_cast<QApplication*>(QCoreApplication::instance());
if (aApplication)
{
aIsGuiApp = (aApplication->type() == QApplication::GuiClient);
}

return aIsGuiApp;
}

wysota
17th September 2010, 10:11
By the way, what do you need it for?

doberkofler
17th September 2010, 10:40
I was looking for a way to make my error handling working in console and GUI applications. If I'm running without a GUI, I will no longer try to offer the user a "nice" graphical error dialog.
Any better way to do this?

wysota
17th September 2010, 10:53
Are you writing a library or is it for your own application?

doberkofler
17th September 2010, 11:01
A library for a set of own applications

wysota
17th September 2010, 11:13
If you don't intend to ever link with QtGui and run a non-gui application then you don't have to worry about it. It's a bit strange combination anyway.

doberkofler
17th September 2010, 11:17
Maybe I got it wrong but I for example this is exactly my setup when compiling my QTest based test cases that need to be linked with QtGui but internally QTest instantiates a console application.

wysota
17th September 2010, 11:38
So you are instantiating a QCoreApplication yourself?

doberkofler
17th September 2010, 12:11
No, I'm using the QTEST_APPLESS_MAIN() macro.

wysota
17th September 2010, 12:18
So you don't have any application object - neither console nor non-console. In this case QCoreApplication::startingUp() would be enough.

doberkofler
17th September 2010, 12:24
This is correct! I was nevertheless looking for a more generic way that would also allow me to work if a QCoreApplication would be instantiated explicitly.

wysota
17th September 2010, 18:45
Then qobject_cast<QApplication*>(QCoreApplication::instance()) works.