From 04420e0a5738f47ad1954b19ef076a20b344dba7 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 7 Jun 2018 15:30:31 +1000 Subject: [PATCH] Move git_info.h related stuff out of common_gui.h --- sleepyhead/Graphs/glcommon.cpp | 2 +- sleepyhead/SleepLib/common.cpp | 104 +++++++++++++++++++++++++++++++ sleepyhead/SleepLib/common.h | 20 ++++++ sleepyhead/UpdaterWindow.cpp | 1 - sleepyhead/aboutdialog.cpp | 6 +- sleepyhead/common_gui.cpp | 99 +---------------------------- sleepyhead/common_gui.h | 18 +----- sleepyhead/exportcsv.cpp | 3 +- sleepyhead/help.cpp | 2 +- sleepyhead/main.cpp | 2 - sleepyhead/preferencesdialog.cpp | 1 - sleepyhead/sessionbar.cpp | 2 +- sleepyhead/translation.cpp | 2 +- 13 files changed, 135 insertions(+), 127 deletions(-) diff --git a/sleepyhead/Graphs/glcommon.cpp b/sleepyhead/Graphs/glcommon.cpp index 82b70848..ff1dab53 100644 --- a/sleepyhead/Graphs/glcommon.cpp +++ b/sleepyhead/Graphs/glcommon.cpp @@ -1,4 +1,4 @@ -/* glcommon GL code & font stuff +/* glcommon GL code & font stuff * * Copyright (c) 2011-2018 Mark Watkins * diff --git a/sleepyhead/SleepLib/common.cpp b/sleepyhead/SleepLib/common.cpp index 634a0e0d..635793ee 100644 --- a/sleepyhead/SleepLib/common.cpp +++ b/sleepyhead/SleepLib/common.cpp @@ -9,6 +9,17 @@ #include #include #include +#include +#include +#include +#include +#include + +#include "SleepLib/common.h" + +#ifndef BUILD_WITH_MSVC +# include +#endif #ifdef _MSC_VER #include @@ -22,6 +33,16 @@ // Used by internal settings + +const QString & gitRevision() +{ + return GIT_REVISION; +} +const QString & gitBranch() +{ + return GIT_BRANCH; +} + const QString getDeveloperName() { return STR_DeveloperName; @@ -42,6 +63,89 @@ const QString getDefaultAppRoot() return approot; } +QString getOpenGLVersionString() +{ + static QString glversion; + + if (glversion.isEmpty()) { + QGLWidget w; + w.makeCurrent(); + +#if QT_VERSION < QT_VERSION_CHECK(5,4,0) + glversion = QString(QLatin1String(reinterpret_cast(glGetString(GL_VERSION)))); +#else + QOpenGLFunctions f; + f.initializeOpenGLFunctions(); + glversion = QString(QLatin1String(reinterpret_cast(f.glGetString(GL_VERSION)))); +#endif + qDebug() << "OpenGL Version:" << glversion; + } + return glversion; +} + +float getOpenGLVersion() +{ + QString glversion = getOpenGLVersionString(); + glversion = glversion.section(" ",0,0); + bool ok; + float v = glversion.toFloat(&ok); + + if (!ok) { + QString tmp = glversion.section(".",0,1); + v = tmp.toFloat(&ok); + if (!ok) { + // just look at major, we are only interested in whether we have OpenGL 2.0 anyway + tmp = glversion.section(".",0,0); + v = tmp.toFloat(&ok); + } + } + return v; +} + +QString getGraphicsEngine() +{ + QString gfxEngine = QString(); +#ifdef BROKEN_OPENGL_BUILD + gfxEngine = CSTR_GFX_BrokenGL; +#else + QString glversion = getOpenGLVersionString(); + if (glversion.contains(CSTR_GFX_ANGLE)) { + gfxEngine = CSTR_GFX_ANGLE; + } else { + gfxEngine = CSTR_GFX_OpenGL; + } +#endif + return gfxEngine; +} +QString getBranchVersion() +{ + QString version = STR_TR_AppVersion; + version += " ["; + if (GIT_BRANCH != "master") { + version += GIT_BRANCH+"-"; + } + version += GIT_REVISION +" "; + version += getGraphicsEngine()+"]"; + + return version; +} + +QString appResourcePath() +{ +#ifdef Q_OS_MAC + QString path = QDir::cleanPath(QCoreApplication::applicationDirPath() + "/../Resources"); +#else + // not sure where it goes on Linux yet + QString path = QCoreApplication::applicationDirPath(); +#endif + return path; +} + +Qt::DayOfWeek firstDayOfWeekFromLocale() +{ + return QLocale::system().firstDayOfWeek(); +} + int idealThreads() { return QThread::idealThreadCount(); } qint64 timezoneOffset() diff --git a/sleepyhead/SleepLib/common.h b/sleepyhead/SleepLib/common.h index 18028db0..e853ce01 100644 --- a/sleepyhead/SleepLib/common.h +++ b/sleepyhead/SleepLib/common.h @@ -16,6 +16,26 @@ #define DEBUG_EFFICIENCY 1 +#include +#include "Graphs/glcommon.h" + +const QString CSTR_GFX_ANGLE = "ANGLE"; +const QString CSTR_GFX_OpenGL = "OpenGL"; +const QString CSTR_GFX_BrokenGL = "QWidget"; + +//! \brief Gets the first day of week from the system locale, to show in the calendars. +Qt::DayOfWeek firstDayOfWeekFromLocale(); + +QString getBranchVersion(); + +QString appResourcePath(); +QString getGraphicsEngine(); +QString getOpenGLVersionString(); +float getOpenGLVersion(); +const QString & gitRevision(); +const QString & gitBranch(); + + QByteArray gCompress(const QByteArray& data); QByteArray gUncompress(const QByteArray &data); diff --git a/sleepyhead/UpdaterWindow.cpp b/sleepyhead/UpdaterWindow.cpp index 08ad9a02..9ebf313f 100644 --- a/sleepyhead/UpdaterWindow.cpp +++ b/sleepyhead/UpdaterWindow.cpp @@ -29,7 +29,6 @@ #include "ui_UpdaterWindow.h" #include "version.h" #include "mainwindow.h" -#include "common_gui.h" extern MainWindow *mainwin; diff --git a/sleepyhead/aboutdialog.cpp b/sleepyhead/aboutdialog.cpp index bcbc3444..c9a30736 100644 --- a/sleepyhead/aboutdialog.cpp +++ b/sleepyhead/aboutdialog.cpp @@ -14,8 +14,6 @@ #include "SleepLib/appsettings.h" #include "aboutdialog.h" #include "ui_aboutdialog.h" -#include "common_gui.h" -#include "git_info.h" AboutDialog::AboutDialog(QWidget *parent) : @@ -28,11 +26,11 @@ AboutDialog::AboutDialog(QWidget *parent) : ui->relnotesText->setHtml(getRelnotes()); ui->versionLabel->setText(VersionString); - QString gitrev = GIT_REVISION; + QString gitrev = gitRevision(); if (!gitrev.isEmpty()) { gitrev = tr("Revision: %1").arg(QString("%1").arg(gitrev))+"
" - +tr("Branch: %1").arg(QString("%1").arg(GIT_BRANCH))+"
" + +tr("Branch: %1").arg(QString("%1").arg(gitBranch()))+"
" +tr("Build Date: %1").arg(__DATE__)+"
" +tr("Graphics Engine: %1").arg(getGraphicsEngine()); } diff --git a/sleepyhead/common_gui.cpp b/sleepyhead/common_gui.cpp index e46276ec..1ecbc603 100644 --- a/sleepyhead/common_gui.cpp +++ b/sleepyhead/common_gui.cpp @@ -5,103 +5,8 @@ * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the source code * for more details. */ - -#include -#include -#include -#include -#include - -#include "SleepLib/common.h" -#include "common_gui.h" -#include "git_info.h" - -#ifndef BUILD_WITH_MSVC -# include -#endif - -QString getOpenGLVersionString() -{ - static QString glversion; - - if (glversion.isEmpty()) { - QGLWidget w; - w.makeCurrent(); - -#if QT_VERSION < QT_VERSION_CHECK(5,4,0) - glversion = QString(QLatin1String(reinterpret_cast(glGetString(GL_VERSION)))); -#else - QOpenGLFunctions f; - f.initializeOpenGLFunctions(); - glversion = QString(QLatin1String(reinterpret_cast(f.glGetString(GL_VERSION)))); -#endif - qDebug() << "OpenGL Version:" << glversion; - } - return glversion; -} - -float getOpenGLVersion() -{ - QString glversion = getOpenGLVersionString(); - glversion = glversion.section(" ",0,0); - bool ok; - float v = glversion.toFloat(&ok); - - if (!ok) { - QString tmp = glversion.section(".",0,1); - v = tmp.toFloat(&ok); - if (!ok) { - // just look at major, we are only interested in whether we have OpenGL 2.0 anyway - tmp = glversion.section(".",0,0); - v = tmp.toFloat(&ok); - } - } - return v; -} - -QString getGraphicsEngine() -{ - QString gfxEngine = QString(); -#ifdef BROKEN_OPENGL_BUILD - gfxEngine = CSTR_GFX_BrokenGL; -#else - QString glversion = getOpenGLVersionString(); - if (glversion.contains(CSTR_GFX_ANGLE)) { - gfxEngine = CSTR_GFX_ANGLE; - } else { - gfxEngine = CSTR_GFX_OpenGL; - } -#endif - return gfxEngine; -} -QString getBranchVersion() -{ - QString version = STR_TR_AppVersion; - version += " ["; - if (GIT_BRANCH != "master") { - version += GIT_BRANCH+"-"; - } - version += GIT_REVISION +" "; - version += getGraphicsEngine()+"]"; - - return version; -} - -QString appResourcePath() -{ -#ifdef Q_OS_MAC - QString path = QDir::cleanPath(QCoreApplication::applicationDirPath() + "/../Resources"); -#else - // not sure where it goes on Linux yet - QString path = QCoreApplication::applicationDirPath(); -#endif - return path; -} - -Qt::DayOfWeek firstDayOfWeekFromLocale() -{ - return QLocale::system().firstDayOfWeek(); -} +#include +#include "Graphs/glcommon.h" // Flag Colors QColor COLOR_Hypopnea = Qt::blue; diff --git a/sleepyhead/common_gui.h b/sleepyhead/common_gui.h index e96dead0..45ef3bff 100644 --- a/sleepyhead/common_gui.h +++ b/sleepyhead/common_gui.h @@ -9,20 +9,9 @@ #ifndef COMMON_GUI_H #define COMMON_GUI_H -#include -#include "Graphs/glcommon.h" +#include +#include -//! \brief Gets the first day of week from the system locale, to show in the calendars. -Qt::DayOfWeek firstDayOfWeekFromLocale(); - - -QString getBranchVersion(); - -QString appResourcePath(); - -const QString CSTR_GFX_ANGLE = "ANGLE"; -const QString CSTR_GFX_OpenGL = "OpenGL"; -const QString CSTR_GFX_BrokenGL = "QWidget"; const QString STR_GRAPH_EventBreakdown = "EventBreakdown"; const QString STR_GRAPH_SleepFlags = "SF"; @@ -36,9 +25,6 @@ const QString STR_GRAPH_AHI = "AHI"; const QString STR_GRAPH_PeakAHI = "PeakAHI"; //! \brief Returns a text string naming the current graphics engine -QString getGraphicsEngine(); -QString getOpenGLVersionString(); -float getOpenGLVersion(); // Flag Colors diff --git a/sleepyhead/exportcsv.cpp b/sleepyhead/exportcsv.cpp index 6e5f39c8..727b1567 100644 --- a/sleepyhead/exportcsv.cpp +++ b/sleepyhead/exportcsv.cpp @@ -1,4 +1,4 @@ -/* ExportCSV module implementation +/* ExportCSV module implementation * * Copyright (c) 2011-2018 Mark Watkins * @@ -13,7 +13,6 @@ #include #include "SleepLib/profiles.h" #include "SleepLib/day.h" -#include "common_gui.h" #include "exportcsv.h" #include "ui_exportcsv.h" #include "mainwindow.h" diff --git a/sleepyhead/help.cpp b/sleepyhead/help.cpp index f0682ae8..c3385f77 100644 --- a/sleepyhead/help.cpp +++ b/sleepyhead/help.cpp @@ -11,7 +11,7 @@ #include #include -#include "common_gui.h" +#include "SleepLib/common.h" #include "help.h" #include "ui_help.h" diff --git a/sleepyhead/main.cpp b/sleepyhead/main.cpp index 32362779..e882842f 100644 --- a/sleepyhead/main.cpp +++ b/sleepyhead/main.cpp @@ -19,8 +19,6 @@ #include "mainwindow.h" #include "SleepLib/profiles.h" #include "translation.h" -#include "common_gui.h" -//#include "SleepLib/machine_loader.h" // Gah! I must add the real darn plugin system one day. #include "SleepLib/loader_plugins/prs1_loader.h" diff --git a/sleepyhead/preferencesdialog.cpp b/sleepyhead/preferencesdialog.cpp index 31addc2d..c8a7911c 100644 --- a/sleepyhead/preferencesdialog.cpp +++ b/sleepyhead/preferencesdialog.cpp @@ -21,7 +21,6 @@ #include #include "preferencesdialog.h" -#include "common_gui.h" #include #include diff --git a/sleepyhead/sessionbar.cpp b/sleepyhead/sessionbar.cpp index 44bd95c8..5d647e62 100644 --- a/sleepyhead/sessionbar.cpp +++ b/sleepyhead/sessionbar.cpp @@ -125,7 +125,7 @@ SegType SessionBar::max() return max; } -QColor brighten(QColor, float f=2.0); +QColor brighten(QColor, float f); void SessionBar::mousePressEvent(QMouseEvent *ev) { diff --git a/sleepyhead/translation.cpp b/sleepyhead/translation.cpp index 3fcc5536..8a54ea72 100644 --- a/sleepyhead/translation.cpp +++ b/sleepyhead/translation.cpp @@ -20,7 +20,7 @@ #include #include -#include "common_gui.h" +#include "SleepLib/common.h" //#ifndef nullptr //#define nullptr NULL