diff --git a/sleepyhead/main.cpp b/sleepyhead/main.cpp index 3d3984d6..230493c1 100644 --- a/sleepyhead/main.cpp +++ b/sleepyhead/main.cpp @@ -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.") + "

"+ @@ -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) { - 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.") + "

"+ - 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.")+"

"+ - QObject::tr("If your running Windows in a Virutal machine, disregard this message, because the version you are running works best.") - + 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 older computers lacking OpenGL 2.0 support.") + "

"+ + QObject::tr("There is a better build available for computers running (native) Windows Vista or higher that do not support OpenGL 2.0, tagged '-ANGLE', which will work faster on your computer.")+"

"+ + 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.")+"

"+ + QObject::tr("There is no harm in running this version, it's just quite a bit slower.")+"

"+ + 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(); } diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index adab1e05..351a4c46 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -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,87 +1061,100 @@ 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") + ")"; } // "
" - QString msg = QString("" - "" + QString msg = QString( + "" + "" - "" - "" - "
" - "

" + STR_TR_SleepyHead + " v%1 (%2)

" + - tr("Build Date") + ": %3 %4
%5
" + tr("Data Folder Location") + ": %6


" + - tr("Copyright") + " ©2011-2014 Mark Watkins (jedimark)
\n" + - tr("This software is released under the GNU Public License v3.0
") + - "
" + "" + "" + "
" + "

" + STR_TR_SleepyHead + + QString(" v%1 (%2)

").arg(VersionString).arg(ReleaseStatus) + + tr("Build Date: %1 %2").arg(__DATE__).arg(__TIME__) + + QString("
%1
").arg(gitrev) + + tr("Graphics Engine: %1").arg(gfxengine)+ + "
" + + tr("Data Folder Location: %1").arg(QDir::toNativeSeparators(GetAppRoot()) + + "


"+tr("Copyright") + " ©2011-2014 Mark Watkins (jedimark)
\n" + + tr("This software is released under the GNU Public License v3.0
") + + "
" - // Project links - "

" +tr("SleepyHead Project Page") + - ": http://sourceforge.net/projects/sleepyhead
" - + - tr("SleepyHead Wiki") + - ": http://sleepyhead.sourceforge.net

" + + // Project links + "

" +tr("SleepyHead Project Page") + + ": http://sourceforge.net/projects/sleepyhead
" + + + tr("SleepyHead Wiki") + + ": http://sleepyhead.sourceforge.net

" + - // Social media links.. (Dear Translators, if one of these isn't available in your country, it's ok to leave it out.) - tr("Don't forget to Like/+1 SleepyHead on Facebook or Google+") - + "

" + + // Social media links.. (Dear Translators, if one of these isn't available in your country, it's ok to leave it out.) + tr("Don't forget to Like/+1 SleepyHead on Facebook or Google+") + + "

" + - // Image - "


" - +tr("SleepyHead, brought to you by Jedimark") + "
" + + // Image + "

" + +tr("SleepyHead, brought to you by Jedimark") + "
" + - // Credits section - "

" +tr("Kudos & Credits") + "

" + - tr("Bugfixes, Patches and Platform Help:") + " " + - tr("James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl and Roy Stone.") - + "

" + // Credits section + "

" +tr("Kudos & Credits") + "

" + + tr("Bugfixes, Patches and Platform Help:") + " " + + tr("James Marshall, Rich Freeman, John Masters, Keary Griffin, Patricia Shanahan, Alec Clews, manders99, Sean Stangl and Roy Stone.") + + "

" - "

" + tr("Translators:") + " " + tr("Arie Klerk (Dutch), Steffen Reitz (German), and others I've still to add here.") + - "

" + "

" + tr("Translators:") + " " + tr("Arie Klerk (Dutch), Steffen Reitz (German), and others I've still to add here.") + + "

" - "

" + tr("3rd Party Libaries:") + " " + - tr("SleepyHead is built using the Qt Application Framework.") - + " " + - tr("It uses the cross platform QExtSerialPort library for serial port access in the Oximetry module.") - + " " + - tr("In the updater code, SleepyHead uses QuaZip by Sergey A. Tachenov, which is a C++ wrapper over Gilles Vollant's ZIP/UNZIP package.") - + "
" - "

" + tr("Special thanks to Pugsy from CPAPTalk for her help with documentation and tutorials, as well as everyone who helped out by testing and sharing their CPAP data.") - + "

" + "

" + tr("3rd Party Libaries:") + " " + + tr("SleepyHead is built using the Qt Application Framework.") + + " " + + tr("It uses the cross platform QExtSerialPort library for serial port access in the Oximetry module.") + + " " + + tr("In the updater code, SleepyHead uses QuaZip by Sergey A. Tachenov, which is a C++ wrapper over Gilles Vollant's ZIP/UNZIP package.") + + "
" + "

" + tr("Special thanks to Pugsy from CPAPTalk for her help with documentation and tutorials, as well as everyone who helped out by testing and sharing their CPAP data.") + + "

" - // Donations - "

" + - tr("Thanks for using SleepyHead. If you find it within your means, please consider encouraging future development by making a donation via Paypal.") - + "" + // Donations + "


" + + tr("Thanks for using SleepyHead. If you find it within your means, please consider encouraging future development by making a donation via Paypal.") + + "" - "


Disclaimer
" + - tr("This software comes with absolutely no warranty, either express of implied.") + " " + - tr("It comes with no guarantee of fitness for any particular purpose.") + " " + - tr("No guarantees are made regarding the accuracy of any data this program displays.") + "

" - "

" + - tr("This is NOT medical software, it is merely a research tool that provides a visual interpretation of data recorded by supported devices.") - + - " " + tr("This software is NOT suitable for medical diagnostics purposes, neither is it fit for CPAP complaince reporting purposes, or ANY other medical use for that matter.") - + "

" - "

" + - tr("The author and anyone associated with him accepts NO responsibilty for damages, issues or non-issues resulting from the use or mis-use of this software.") - + "

" + - tr("Use this software entirely at your own risk.") + "

" - "
" - ). arg(VersionString). - arg(ReleaseStatus). - arg(__DATE__). - arg(__TIME__). - arg(gitrev). - arg(QDir::toNativeSeparators(GetAppRoot())); + "

Disclaimer
" + + tr("This software comes with absolutely no warranty, either express of implied.") + " " + + tr("It comes with no guarantee of fitness for any particular purpose.") + " " + + tr("No guarantees are made regarding the accuracy of any data this program displays.") + "

" + "

" + + tr("This is NOT medical software, it is merely a research tool that provides a visual interpretation of data recorded by supported devices.") + + + " " + tr("This software is NOT suitable for medical diagnostics purposes, neither is it fit for CPAP complaince reporting purposes, or ANY other medical use for that matter.") + + "

" + "

" + + tr("The author and anyone associated with him accepts NO responsibilty for damages, issues or non-issues resulting from the use or mis-use of this software.") + + "

" + + tr("Use this software entirely at your own risk.") + "

" + "
" + )); //"
" QDialog aboutbox;