Get OS name

From Qt Wiki
Revision as of 18:35, 28 November 2016 by Jake Petroules (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.
 QString Get::osName()
 {
 #if defined(Q_OS_ANDROID)
 return QLatin1String("android");
 #elif defined(Q_OS_BLACKBERRY)
 return QLatin1String("blackberry");
 #elif defined(Q_OS_IOS)
 return QLatin1String("ios");
 #elif defined(Q_OS_MACOS)
 return QLatin1String("macos");
 #elif defined(Q_OS_TVOS)
 return QLatin1String("tvos");
 #elif defined(Q_OS_WATCHOS)
 return QLatin1String("watchos");
 #elif defined(Q_OS_WINCE)
 return QLatin1String("wince");
 #elif defined(Q_OS_WIN)
 return QLatin1String("windows");
 #elif defined(Q_OS_LINUX)
 return QLatin1String("linux");
 #elif defined(Q_OS_UNIX)
 return QLatin1String("unix");
 #else
 return QLatin1String("unknown");
 #endif
 }

If single required

#ifdef Q_OS_LINUX
return QString::fromLatin1(DATADIR"/"APPLICATION_EXECUTABLE"/i18n/");
#endif
#ifdef Q_OS_MACOS
return QApplication::applicationDirPath()+QLatin1String("/../Resources/translations"); // path defaults to app dir.
#endif
#ifdef Q_OS_DARWIN
return QApplication::applicationDirPath()+QLatin1String("/translations"); // path defaults to app dir.
#endif
#ifdef Q_OS_WIN
return QApplication::applicationDirPath();
#endif