determine platform Qt application is running on at runtime - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T06:36:37Zhttp://stackoverflow.com/feeds/question/475758http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/475758/determine-platform-qt-application-is-running-on-at-runtime0determine platform Qt application is running on at runtimeandreas buykx2009-01-24T08:54:53Z2009-01-24T18:27:08Z
<p>Hi all,</p>
<p>Is there a (Qt) way to determine the platform a Qt application is running on at runtime?</p>
http://stackoverflow.com/questions/475758/determine-platform-qt-application-is-running-on-at-runtime/475783#4757833Answer by gs for determine platform Qt application is running on at runtimegs2009-01-24T09:24:33Z2009-01-24T09:24:33Z<p>There are macro that are defined on the corresponding platforms:</p>
<blockquote>
<p><a href="http://doc.trolltech.com/4.4/qtglobal.html#Q_WS_X11" rel="nofollow">Q_WS_X11</a><br />
<a href="http://doc.trolltech.com/4.4/qtglobal.html#Q_WS_MAC" rel="nofollow">Q_WS_MAC</a><br />
<a href="http://doc.trolltech.com/4.4/qtglobal.html#Q_WS_QWS" rel="nofollow">Q_WS_QWS</a><br />
<a href="http://doc.trolltech.com/4.4/qtglobal.html#Q_WS_WIN" rel="nofollow">Q_WS_WIN</a><br /></p>
</blockquote>
<p>For more informations there is the <a href="http://doc.trolltech.com/4.4/qsysinfo.html" rel="nofollow">QSysInfo</a> class.</p>
http://stackoverflow.com/questions/475758/determine-platform-qt-application-is-running-on-at-runtime/476345#4763453Answer by gs for determine platform Qt application is running on at runtimegs2009-01-24T17:09:58Z2009-01-24T17:09:58Z<p>You can write this function:</p>
<pre><code>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
}
</code></pre>
<p>I think this is as dynamic as it gets, why would you want to have it more dynamic?</p>
<p>Some more informations can be found here:
<a href="http://stackoverflow.com/questions/341594/how-do-i-read-system-information-in-c">http://stackoverflow.com/questions/341594/how-do-i-read-system-information-in-c</a></p>
http://stackoverflow.com/questions/475758/determine-platform-qt-application-is-running-on-at-runtime/476450#4764507Answer by Reed Hedges for determine platform Qt application is running on at runtimeReed Hedges2009-01-24T18:27:08Z2009-01-24T18:27:08Z<p>Note that the Q_WS_* macros are defined at compile time, but QSysInfo gives some run time details.</p>
<p>To extend gs's function to get the specific windows version at runtime, you can do</p>
<pre><code>#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
</code></pre>
<p>and similar for Mac.</p>