vote up 0 vote down star

Hi all,

Is there a (Qt) way to determine the platform a Qt application is running on at runtime?

flag

50% accept rate

3 Answers

vote up 7 vote down check

Note that the Q_WS_* macros are defined at compile time, but QSysInfo gives some run time details.

To extend gs's function to get the specific windows version at runtime, you can do

#ifdef Q_WS_WIN
switch(QSysInfo::windowsVersion())
{
  case QSysInfo::WV_2000: return "Windows 2000";
  case QSysInfo::WV_XP: return "Windows XP";
  case QSysInfo::WV_VISTA: return "Windows Vista";
  default: return "Windows";
}
#endif

and similar for Mac.

link|flag
vote up 3 vote down

There are macro that are defined on the corresponding platforms:

Q_WS_X11
Q_WS_MAC
Q_WS_QWS
Q_WS_WIN

For more informations there is the QSysInfo class.

link|flag
Nope the macros are compiletime. Good call on QSysInfo though, even though it's not comprehensive. – Iraimbilanja Jan 24 at 9:45
A Qt application is going to be compiled separately for different platforms though - why is it necessary to know at runtime? – thekidder Jan 24 at 17:12
No idea, and what's not comprehensive about QSysInfo I don't know either. QSysInfo is only usable in combination with those macros. – gs Jan 24 at 17:33
thekidder, now that you ask no idea ;) The OP did request it though. gs, for one thing, QSysInfo lacks the Linux version – Iraimbilanja Jan 24 at 18:34
Linux has no clearly defined versions. The only thing that it's got is the kernel version. – gs Jan 24 at 19:01
show 1 more comment
vote up 3 vote down

You can write this function:

QString getSystem() {
    #ifdef Q_WS_X11
    return QString("Linux");
    #endif

    #ifdef Q_WS_MAC
    return QString("Mac");
    #endif

    #ifdef Q_WS_QWS
    return QString("Embedded Linux");
    #endif

    #ifdef Q_WS_WIN
    return QString("Windows");
    #endif
}

I think this is as dynamic as it gets, why would you want to have it more dynamic?

Some more informations can be found here: http://stackoverflow.com/questions/341594/how-do-i-read-system-information-in-c

link|flag

Your Answer

Get an OpenID
or

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