mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Show graphics engine in about dialog and titlebar
This commit is contained in:
parent
42d29ae75c
commit
9aee5a328d
@ -179,11 +179,13 @@ int main(int argc, char *argv[])
|
||||
initializeStrings(); // Important, call this AFTER translator is installed.
|
||||
a.setApplicationName(STR_TR_SleepyHead);
|
||||
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
#ifndef BROKEN_OPENGL_BUILD
|
||||
// True openGL will meanly return nothing here, but ANGLE will give useful info
|
||||
QString glversion = (char *)glGetString(GL_VERSION);
|
||||
qDebug() << "OpenGL Version detected:" << glversion;
|
||||
// if (QSysInfo::windowsVersion() < QSysInfo::WV_VISTA) {
|
||||
|
||||
#ifndef BROKEN_OPENGL_BUILD
|
||||
if (QSysInfo::windowsVersion() < QSysInfo::WV_VISTA) {
|
||||
if (glversion.contains("ANGLE")) {
|
||||
QMessageBox::warning(nullptr, QObject::tr("You have the wrong version of SleepyHead"),
|
||||
QObject::tr("This build of SleepyHead was designed to work with computers lacking full OpenGL 2.0 support, and only runs on (native) Windows Vista or higher.") + "<br/><br/>"+
|
||||
@ -191,18 +193,23 @@ int main(int argc, char *argv[])
|
||||
QObject::tr("Because graphs will not render correctly, this version will now exit."), QMessageBox::Ok, QMessageBox::Ok);
|
||||
exit(1);
|
||||
}
|
||||
// }
|
||||
#else
|
||||
}
|
||||
#else
|
||||
settings.remove("Settings/BrokenGL2");
|
||||
if (QSysInfo::windowsVersion() > QSysInfo::WV_VISTA) {
|
||||
if (!settings.contains("Settings/BrokenGL2")) {
|
||||
QMessageBox::information(nullptr, QObject::tr("A faster build may be available"),
|
||||
QObject::tr("This special build of SleepyHead was designed to work with computers lacking OpenGL 2.0 support.") + "<br/><br/>"+
|
||||
QObject::tr("There is another special build available for computers running Windows Vista or higher that do not support OpenGL 2.0, tagged 'ANGLE', which will work faster on your computer.")+"<br/><br/>"+
|
||||
QObject::tr("If your running Windows in a Virutal machine, disregard this message, because the version you are running works best.")
|
||||
|
||||
QObject::tr("This special build of SleepyHead was designed to work with older computers lacking OpenGL 2.0 support.") + "<br/><br/>"+
|
||||
QObject::tr("There is a <b>better build available</b> for computers running (native) Windows Vista or higher that do not support OpenGL 2.0, tagged '<b>-ANGLE</b>', which will work faster on your computer.")+"<br/><br/>"+
|
||||
QObject::tr("If your running Windows in a Virutal Machine, like VirtualBox or VMware, disregard this message, because the version you are running works best.")+"<br/><br/>"+
|
||||
QObject::tr("<b>There is no harm in running this version, it's just quite a bit slower.</b>")+"<br/><br/>"+
|
||||
QObject::tr("You will not be shown this message again."),
|
||||
QMessageBox::Ok, QMessageBox::Ok);
|
||||
settings.setValue("Settings/BrokenGL2", true);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////
|
||||
@ -400,6 +407,7 @@ retry_directory:
|
||||
|
||||
// Must be initialized AFTER profile creation
|
||||
MainWindow w;
|
||||
|
||||
mainwin = &w;
|
||||
|
||||
if (check_updates) { mainwin->CheckForUpdates(); }
|
||||
|
@ -109,7 +109,18 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
ui->warningLabel->hide();
|
||||
#endif
|
||||
|
||||
if (QString(GIT_BRANCH) != "master") { version += " (" + QString(GIT_BRANCH)+" branch)"; }
|
||||
#ifdef BROKEN_OPENGL_BUILD
|
||||
version += " BrokenGL2";
|
||||
#else
|
||||
QString glversion = (char *)glGetString(GL_VERSION);
|
||||
if (glversion.contains("ANGLE")) {
|
||||
version += " ANGLE";
|
||||
} else {
|
||||
version += " OpenGL";
|
||||
}
|
||||
|
||||
#endif
|
||||
if (QString(GIT_BRANCH) != "master") { version += " [" + QString(GIT_BRANCH)+" branch]"; }
|
||||
|
||||
|
||||
this->setWindowTitle(STR_TR_SleepyHead + QString(" v%1 (" + tr("Profile") + ": %2)").arg(version).arg(PREF[STR_GEN_Profile].toString()));
|
||||
@ -406,7 +417,6 @@ void MainWindow::Startup()
|
||||
importCPAPBackups();
|
||||
PROFILE.p_preferences[STR_PREF_ReimportBackup]=false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
int MainWindow::importCPAP(const QString &path, const QString &message)
|
||||
@ -1051,13 +1061,26 @@ void MainWindow::aboutBoxLinkClicked(const QUrl &url)
|
||||
|
||||
void MainWindow::on_action_About_triggered()
|
||||
{
|
||||
QString gfxengine;
|
||||
#ifdef BROKEN_OPENGL_BUILD
|
||||
gfxengine = "BrokenGL2";
|
||||
#else
|
||||
QString glversion = (char *)glGetString(GL_VERSION);
|
||||
if (glversion.contains("ANGLE")) {
|
||||
gfxengine = "ANGLE";
|
||||
} else {
|
||||
gfxengine = "OpenGL";
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
QString gitrev = QString(GIT_REVISION);
|
||||
|
||||
if (!gitrev.isEmpty()) { gitrev = tr("Revision:")+" " + gitrev + " (" + QString(GIT_BRANCH) + " " + tr("branch") + ")"; }
|
||||
|
||||
// "<style type=\"text/css\">body { margin:0; padding:0; } html, body, #bg { height:100%; width:100% } #bg { position: absolute; left:0; right:0; bottom:0; top:0; overflow:hidden; z-index:1; } #bg img { width:100%; min-width:100%; min-height:100%; } #content { z-index:0; }</style><body><div id=\"bg\"> <img style=\"display:block;\" src=\"qrc:/icons/Bob Strikes Back.png\"></div><div id=\"content\">"
|
||||
QString msg = QString("<html>"
|
||||
QString msg = QString(
|
||||
"<html>"
|
||||
"<head><style type=\"text/css\">a:link, a:visited { color: #000044; text-decoration: underline; font-weight: normal;}"
|
||||
"a:hover { background-color: inherit; color: #4444ff; text-decoration:none; font-weight: normal; }"
|
||||
"</style></head>"
|
||||
@ -1065,9 +1088,14 @@ void MainWindow::on_action_About_triggered()
|
||||
"<body>"
|
||||
"<span style=\"color:#000000; font-weight:600; vertical-align:middle;\">"
|
||||
"<table width=100%><tr><td>"
|
||||
"<p><h1>" + STR_TR_SleepyHead + " v%1 (%2)</h1></p><font color=black><p>" +
|
||||
tr("Build Date") + ": %3 %4<br/>%5<br/>" + tr("Data Folder Location") + ": %6<hr/>" +
|
||||
tr("Copyright") + " ©2011-2014 Mark Watkins (jedimark) <br/> \n" +
|
||||
"<p><h1>" + STR_TR_SleepyHead +
|
||||
QString(" v%1 (%2)</h1></p><font color=black><p>").arg(VersionString).arg(ReleaseStatus) +
|
||||
tr("Build Date: %1 %2").arg(__DATE__).arg(__TIME__) +
|
||||
QString("<br/>%1<br/>").arg(gitrev) +
|
||||
tr("Graphics Engine: %1").arg(gfxengine)+
|
||||
"<br/>" +
|
||||
tr("Data Folder Location: %1").arg(QDir::toNativeSeparators(GetAppRoot()) +
|
||||
"<hr/>"+tr("Copyright") + " ©2011-2014 Mark Watkins (jedimark) <br/> \n" +
|
||||
tr("This software is released under the GNU Public License v3.0<br/>") +
|
||||
"<hr>"
|
||||
|
||||
@ -1126,12 +1154,7 @@ void MainWindow::on_action_About_triggered()
|
||||
+ "</p><p><b>" +
|
||||
tr("Use this software entirely at your own risk.") + "</b></i></p>"
|
||||
"</font></td></tr></table></span></body>"
|
||||
). arg(VersionString).
|
||||
arg(ReleaseStatus).
|
||||
arg(__DATE__).
|
||||
arg(__TIME__).
|
||||
arg(gitrev).
|
||||
arg(QDir::toNativeSeparators(GetAppRoot()));
|
||||
));
|
||||
//"</div></body></html>"
|
||||
|
||||
QDialog aboutbox;
|
||||
|
Loading…
Reference in New Issue
Block a user